blob: ace5eff828e96acba509994790974531cb87e2f1 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters
4 *
5 * Copyright (c) 1995-2000 Advanced System Products, Inc.
6 * Copyright (c) 2000-2001 ConnectCom Solutions, Inc.
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -04007 * Copyright (c) 2007 Matthew Wilcox <matthew@wil.cx>
Hannes Reinecke6571fb32015-04-24 13:18:42 +02008 * Copyright (c) 2014 Hannes Reinecke <hare@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All Rights Reserved.
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040010 */
11
12/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * As of March 8, 2000 Advanced System Products, Inc. (AdvanSys)
14 * changed its name to ConnectCom Solutions, Inc.
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040015 * On June 18, 2001 Initio Corp. acquired ConnectCom's SCSI assets
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/string.h>
20#include <linux/kernel.h>
21#include <linux/types.h>
22#include <linux/ioport.h>
23#include <linux/interrupt.h>
24#include <linux/delay.h>
25#include <linux/slab.h>
26#include <linux/mm.h>
27#include <linux/proc_fs.h>
28#include <linux/init.h>
29#include <linux/blkdev.h>
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060030#include <linux/isa.h>
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060031#include <linux/eisa.h>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040032#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/spinlock.h>
34#include <linux/dma-mapping.h>
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +053035#include <linux/firmware.h>
Johannes Thumshirn8810eac2015-06-03 09:56:42 +020036#include <linux/dmapool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/dma.h>
40
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040041#include <scsi/scsi_cmnd.h>
42#include <scsi/scsi_device.h>
43#include <scsi/scsi_tcq.h>
44#include <scsi/scsi.h>
45#include <scsi/scsi_host.h>
46
Hannes Reinecke6571fb32015-04-24 13:18:42 +020047#define DRV_NAME "advansys"
48#define ASC_VERSION "3.5" /* AdvanSys Driver Version */
49
Matthew Wilcox4bd6d7f2007-07-30 08:41:03 -060050/* FIXME:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 *
Hannes Reinecke6571fb32015-04-24 13:18:42 +020052 * 1. Use scsi_transport_spi
53 * 2. advansys_info is not safe against multiple simultaneous callers
54 * 3. Add module_param to override ISA/VLB ioport array
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* Enable driver /proc statistics. */
58#define ADVANSYS_STATS
59
60/* Enable driver tracing. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040061#undef ADVANSYS_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063typedef unsigned char uchar;
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define isodd_word(val) ((((uint)val) & (uint)0x0001) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Dave Jones2672ea82006-08-02 17:11:49 -040067#define PCI_VENDOR_ID_ASP 0x10cd
68#define PCI_DEVICE_ID_ASP_1200A 0x1100
69#define PCI_DEVICE_ID_ASP_ABP940 0x1200
70#define PCI_DEVICE_ID_ASP_ABP940U 0x1300
71#define PCI_DEVICE_ID_ASP_ABP940UW 0x2300
72#define PCI_DEVICE_ID_38C0800_REV1 0x2500
73#define PCI_DEVICE_ID_38C1600_REV1 0x2700
74
Matthew Wilcox9d511a42007-10-02 21:55:42 -040075#define PortAddr unsigned int /* port address size */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define inp(port) inb(port)
77#define outp(port, byte) outb((byte), (port))
78
79#define inpw(port) inw(port)
80#define outpw(port, word) outw((word), (port))
81
82#define ASC_MAX_SG_QUEUE 7
83#define ASC_MAX_SG_LIST 255
84
85#define ASC_CS_TYPE unsigned short
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define ASC_IS_EISA (0x0002)
88#define ASC_IS_PCI (0x0004)
89#define ASC_IS_PCI_ULTRA (0x0104)
90#define ASC_IS_PCMCIA (0x0008)
91#define ASC_IS_MCA (0x0020)
92#define ASC_IS_VL (0x0040)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define ASC_IS_WIDESCSI_16 (0x0100)
94#define ASC_IS_WIDESCSI_32 (0x0200)
95#define ASC_IS_BIG_ENDIAN (0x8000)
Matthew Wilcox95c9f162007-09-09 08:56:39 -060096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define ASC_CHIP_MIN_VER_VL (0x01)
98#define ASC_CHIP_MAX_VER_VL (0x07)
99#define ASC_CHIP_MIN_VER_PCI (0x09)
100#define ASC_CHIP_MAX_VER_PCI (0x0F)
101#define ASC_CHIP_VER_PCI_BIT (0x08)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define ASC_CHIP_VER_ASYN_BUG (0x21)
103#define ASC_CHIP_VER_PCI 0x08
104#define ASC_CHIP_VER_PCI_ULTRA_3150 (ASC_CHIP_VER_PCI | 0x02)
105#define ASC_CHIP_VER_PCI_ULTRA_3050 (ASC_CHIP_VER_PCI | 0x03)
106#define ASC_CHIP_MIN_VER_EISA (0x41)
107#define ASC_CHIP_MAX_VER_EISA (0x47)
108#define ASC_CHIP_VER_EISA_BIT (0x40)
109#define ASC_CHIP_LATEST_VER_EISA ((ASC_CHIP_MIN_VER_EISA - 1) + 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define ASC_MAX_VL_DMA_COUNT (0x07FFFFFFL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define ASC_MAX_PCI_DMA_COUNT (0xFFFFFFFFL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113#define ASC_SCSI_ID_BITS 3
114#define ASC_SCSI_TIX_TYPE uchar
115#define ASC_ALL_DEVICE_BIT_SET 0xFF
116#define ASC_SCSI_BIT_ID_TYPE uchar
117#define ASC_MAX_TID 7
118#define ASC_MAX_LUN 7
119#define ASC_SCSI_WIDTH_BIT_SET 0xFF
120#define ASC_MAX_SENSE_LEN 32
121#define ASC_MIN_SENSE_LEN 14
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define ASC_SCSI_RESET_HOLD_TIME_US 60
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
Matthew Wilcoxf05ec592007-09-09 08:56:36 -0600125 * Narrow boards only support 12-byte commands, while wide boards
126 * extend to 16-byte commands.
127 */
128#define ASC_MAX_CDB_LEN 12
129#define ADV_MAX_CDB_LEN 16
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#define MS_SDTR_LEN 0x03
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define MS_WDTR_LEN 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134#define ASC_SG_LIST_PER_Q 7
135#define QS_FREE 0x00
136#define QS_READY 0x01
137#define QS_DISC1 0x02
138#define QS_DISC2 0x04
139#define QS_BUSY 0x08
140#define QS_ABORTED 0x40
141#define QS_DONE 0x80
142#define QC_NO_CALLBACK 0x01
143#define QC_SG_SWAP_QUEUE 0x02
144#define QC_SG_HEAD 0x04
145#define QC_DATA_IN 0x08
146#define QC_DATA_OUT 0x10
147#define QC_URGENT 0x20
148#define QC_MSG_OUT 0x40
149#define QC_REQ_SENSE 0x80
150#define QCSG_SG_XFER_LIST 0x02
151#define QCSG_SG_XFER_MORE 0x04
152#define QCSG_SG_XFER_END 0x08
153#define QD_IN_PROGRESS 0x00
154#define QD_NO_ERROR 0x01
155#define QD_ABORTED_BY_HOST 0x02
156#define QD_WITH_ERROR 0x04
157#define QD_INVALID_REQUEST 0x80
158#define QD_INVALID_HOST_NUM 0x81
159#define QD_INVALID_DEVICE 0x82
160#define QD_ERR_INTERNAL 0xFF
161#define QHSTA_NO_ERROR 0x00
162#define QHSTA_M_SEL_TIMEOUT 0x11
163#define QHSTA_M_DATA_OVER_RUN 0x12
164#define QHSTA_M_DATA_UNDER_RUN 0x12
165#define QHSTA_M_UNEXPECTED_BUS_FREE 0x13
166#define QHSTA_M_BAD_BUS_PHASE_SEQ 0x14
167#define QHSTA_D_QDONE_SG_LIST_CORRUPTED 0x21
168#define QHSTA_D_ASC_DVC_ERROR_CODE_SET 0x22
169#define QHSTA_D_HOST_ABORT_FAILED 0x23
170#define QHSTA_D_EXE_SCSI_Q_FAILED 0x24
171#define QHSTA_D_EXE_SCSI_Q_BUSY_TIMEOUT 0x25
172#define QHSTA_D_ASPI_NO_BUF_POOL 0x26
173#define QHSTA_M_WTM_TIMEOUT 0x41
174#define QHSTA_M_BAD_CMPL_STATUS_IN 0x42
175#define QHSTA_M_NO_AUTO_REQ_SENSE 0x43
176#define QHSTA_M_AUTO_REQ_SENSE_FAIL 0x44
177#define QHSTA_M_TARGET_STATUS_BUSY 0x45
178#define QHSTA_M_BAD_TAG_CODE 0x46
179#define QHSTA_M_BAD_QUEUE_FULL_OR_BUSY 0x47
180#define QHSTA_M_HUNG_REQ_SCSI_BUS_RESET 0x48
181#define QHSTA_D_LRAM_CMP_ERROR 0x81
182#define QHSTA_M_MICRO_CODE_ERROR_HALT 0xA1
183#define ASC_FLAG_SCSIQ_REQ 0x01
184#define ASC_FLAG_BIOS_SCSIQ_REQ 0x02
185#define ASC_FLAG_BIOS_ASYNC_IO 0x04
186#define ASC_FLAG_SRB_LINEAR_ADDR 0x08
187#define ASC_FLAG_WIN16 0x10
188#define ASC_FLAG_WIN32 0x20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#define ASC_FLAG_DOS_VM_CALLBACK 0x80
190#define ASC_TAG_FLAG_EXTRA_BYTES 0x10
191#define ASC_TAG_FLAG_DISABLE_DISCONNECT 0x04
192#define ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX 0x08
193#define ASC_TAG_FLAG_DISABLE_CHK_COND_INT_HOST 0x40
194#define ASC_SCSIQ_CPY_BEG 4
195#define ASC_SCSIQ_SGHD_CPY_BEG 2
196#define ASC_SCSIQ_B_FWD 0
197#define ASC_SCSIQ_B_BWD 1
198#define ASC_SCSIQ_B_STATUS 2
199#define ASC_SCSIQ_B_QNO 3
200#define ASC_SCSIQ_B_CNTL 4
201#define ASC_SCSIQ_B_SG_QUEUE_CNT 5
202#define ASC_SCSIQ_D_DATA_ADDR 8
203#define ASC_SCSIQ_D_DATA_CNT 12
204#define ASC_SCSIQ_B_SENSE_LEN 20
205#define ASC_SCSIQ_DONE_INFO_BEG 22
206#define ASC_SCSIQ_D_SRBPTR 22
207#define ASC_SCSIQ_B_TARGET_IX 26
208#define ASC_SCSIQ_B_CDB_LEN 28
209#define ASC_SCSIQ_B_TAG_CODE 29
210#define ASC_SCSIQ_W_VM_ID 30
211#define ASC_SCSIQ_DONE_STATUS 32
212#define ASC_SCSIQ_HOST_STATUS 33
213#define ASC_SCSIQ_SCSI_STATUS 34
214#define ASC_SCSIQ_CDB_BEG 36
215#define ASC_SCSIQ_DW_REMAIN_XFER_ADDR 56
216#define ASC_SCSIQ_DW_REMAIN_XFER_CNT 60
217#define ASC_SCSIQ_B_FIRST_SG_WK_QP 48
218#define ASC_SCSIQ_B_SG_WK_QP 49
219#define ASC_SCSIQ_B_SG_WK_IX 50
220#define ASC_SCSIQ_W_ALT_DC1 52
221#define ASC_SCSIQ_B_LIST_CNT 6
222#define ASC_SCSIQ_B_CUR_LIST_CNT 7
223#define ASC_SGQ_B_SG_CNTL 4
224#define ASC_SGQ_B_SG_HEAD_QP 5
225#define ASC_SGQ_B_SG_LIST_CNT 6
226#define ASC_SGQ_B_SG_CUR_LIST_CNT 7
227#define ASC_SGQ_LIST_BEG 8
228#define ASC_DEF_SCSI1_QNG 4
229#define ASC_MAX_SCSI1_QNG 4
230#define ASC_DEF_SCSI2_QNG 16
231#define ASC_MAX_SCSI2_QNG 32
232#define ASC_TAG_CODE_MASK 0x23
233#define ASC_STOP_REQ_RISC_STOP 0x01
234#define ASC_STOP_ACK_RISC_STOP 0x03
235#define ASC_STOP_CLEAN_UP_BUSY_Q 0x10
236#define ASC_STOP_CLEAN_UP_DISC_Q 0x20
237#define ASC_STOP_HOST_REQ_RISC_HALT 0x40
238#define ASC_TIDLUN_TO_IX(tid, lun) (ASC_SCSI_TIX_TYPE)((tid) + ((lun)<<ASC_SCSI_ID_BITS))
239#define ASC_TID_TO_TARGET_ID(tid) (ASC_SCSI_BIT_ID_TYPE)(0x01 << (tid))
240#define ASC_TIX_TO_TARGET_ID(tix) (0x01 << ((tix) & ASC_MAX_TID))
241#define ASC_TIX_TO_TID(tix) ((tix) & ASC_MAX_TID)
242#define ASC_TID_TO_TIX(tid) ((tid) & ASC_MAX_TID)
243#define ASC_TIX_TO_LUN(tix) (((tix) >> ASC_SCSI_ID_BITS) & ASC_MAX_LUN)
244#define ASC_QNO_TO_QADDR(q_no) ((ASC_QADR_BEG)+((int)(q_no) << 6))
245
246typedef struct asc_scsiq_1 {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400247 uchar status;
248 uchar q_no;
249 uchar cntl;
250 uchar sg_queue_cnt;
251 uchar target_id;
252 uchar target_lun;
Hannes Reinecke95cfab62015-04-24 13:18:27 +0200253 __le32 data_addr;
254 __le32 data_cnt;
255 __le32 sense_addr;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400256 uchar sense_len;
257 uchar extra_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258} ASC_SCSIQ_1;
259
260typedef struct asc_scsiq_2 {
Hannes Reinecke9c17c622015-04-24 13:18:21 +0200261 u32 srb_tag;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400262 uchar target_ix;
263 uchar flag;
264 uchar cdb_len;
265 uchar tag_code;
266 ushort vm_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267} ASC_SCSIQ_2;
268
269typedef struct asc_scsiq_3 {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400270 uchar done_stat;
271 uchar host_stat;
272 uchar scsi_stat;
273 uchar scsi_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274} ASC_SCSIQ_3;
275
276typedef struct asc_scsiq_4 {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400277 uchar cdb[ASC_MAX_CDB_LEN];
278 uchar y_first_sg_list_qp;
279 uchar y_working_sg_qp;
280 uchar y_working_sg_ix;
281 uchar y_res;
282 ushort x_req_count;
283 ushort x_reconnect_rtn;
Hannes Reinecke95cfab62015-04-24 13:18:27 +0200284 __le32 x_saved_data_addr;
285 __le32 x_saved_data_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286} ASC_SCSIQ_4;
287
288typedef struct asc_q_done_info {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400289 ASC_SCSIQ_2 d2;
290 ASC_SCSIQ_3 d3;
291 uchar q_status;
292 uchar q_no;
293 uchar cntl;
294 uchar sense_len;
295 uchar extra_bytes;
296 uchar res;
Hannes Reinecke95cfab62015-04-24 13:18:27 +0200297 u32 remain_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298} ASC_QDONE_INFO;
299
300typedef struct asc_sg_list {
Hannes Reinecke95cfab62015-04-24 13:18:27 +0200301 __le32 addr;
302 __le32 bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303} ASC_SG_LIST;
304
305typedef struct asc_sg_head {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400306 ushort entry_cnt;
307 ushort queue_cnt;
308 ushort entry_to_copy;
309 ushort res;
Gustavo A. R. Silvab4171072020-02-12 18:02:11 -0600310 ASC_SG_LIST sg_list[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311} ASC_SG_HEAD;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313typedef struct asc_scsi_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400314 ASC_SCSIQ_1 q1;
315 ASC_SCSIQ_2 q2;
316 uchar *cdbptr;
317 ASC_SG_HEAD *sg_head;
318 ushort remain_sg_entry_cnt;
319 ushort next_sg_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320} ASC_SCSI_Q;
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322typedef struct asc_scsi_bios_req_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400323 ASC_SCSIQ_1 r1;
324 ASC_SCSIQ_2 r2;
325 uchar *cdbptr;
326 ASC_SG_HEAD *sg_head;
327 uchar *sense_ptr;
328 ASC_SCSIQ_3 r3;
329 uchar cdb[ASC_MAX_CDB_LEN];
330 uchar sense[ASC_MIN_SENSE_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331} ASC_SCSI_BIOS_REQ_Q;
332
333typedef struct asc_risc_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400334 uchar fwd;
335 uchar bwd;
336 ASC_SCSIQ_1 i1;
337 ASC_SCSIQ_2 i2;
338 ASC_SCSIQ_3 i3;
339 ASC_SCSIQ_4 i4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340} ASC_RISC_Q;
341
342typedef struct asc_sg_list_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400343 uchar seq_no;
344 uchar q_no;
345 uchar cntl;
346 uchar sg_head_qp;
347 uchar sg_list_cnt;
348 uchar sg_cur_list_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349} ASC_SG_LIST_Q;
350
351typedef struct asc_risc_sg_list_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400352 uchar fwd;
353 uchar bwd;
354 ASC_SG_LIST_Q sg;
355 ASC_SG_LIST sg_list[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356} ASC_RISC_SG_LIST_Q;
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358#define ASCQ_ERR_Q_STATUS 0x0D
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359#define ASCQ_ERR_CUR_QNG 0x17
360#define ASCQ_ERR_SG_Q_LINKS 0x18
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#define ASCQ_ERR_ISR_RE_ENTRY 0x1A
362#define ASCQ_ERR_CRITICAL_RE_ENTRY 0x1B
363#define ASCQ_ERR_ISR_ON_CRITICAL 0x1C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365/*
366 * Warning code values are set in ASC_DVC_VAR 'warn_code'.
367 */
368#define ASC_WARN_NO_ERROR 0x0000
369#define ASC_WARN_IO_PORT_ROTATE 0x0001
370#define ASC_WARN_EEPROM_CHKSUM 0x0002
371#define ASC_WARN_IRQ_MODIFIED 0x0004
372#define ASC_WARN_AUTO_CONFIG 0x0008
373#define ASC_WARN_CMD_QNG_CONFLICT 0x0010
374#define ASC_WARN_EEPROM_RECOVER 0x0020
375#define ASC_WARN_CFG_MSW_RECOVER 0x0040
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377/*
Matthew Wilcox720349a2007-10-02 21:55:30 -0400378 * Error code values are set in {ASC/ADV}_DVC_VAR 'err_code'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
Matthew Wilcox720349a2007-10-02 21:55:30 -0400380#define ASC_IERR_NO_CARRIER 0x0001 /* No more carrier memory */
381#define ASC_IERR_MCODE_CHKSUM 0x0002 /* micro code check sum error */
382#define ASC_IERR_SET_PC_ADDR 0x0004
383#define ASC_IERR_START_STOP_CHIP 0x0008 /* start/stop chip failed */
384#define ASC_IERR_ILLEGAL_CONNECTION 0x0010 /* Illegal cable connection */
385#define ASC_IERR_SINGLE_END_DEVICE 0x0020 /* SE device on DIFF bus */
386#define ASC_IERR_REVERSED_CABLE 0x0040 /* Narrow flat cable reversed */
387#define ASC_IERR_SET_SCSI_ID 0x0080 /* set SCSI ID failed */
388#define ASC_IERR_HVD_DEVICE 0x0100 /* HVD device on LVD port */
389#define ASC_IERR_BAD_SIGNATURE 0x0200 /* signature not found */
390#define ASC_IERR_NO_BUS_TYPE 0x0400
391#define ASC_IERR_BIST_PRE_TEST 0x0800 /* BIST pre-test error */
392#define ASC_IERR_BIST_RAM_TEST 0x1000 /* BIST RAM test error */
393#define ASC_IERR_BAD_CHIPTYPE 0x2000 /* Invalid chip_type setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#define ASC_DEF_MAX_TOTAL_QNG (0xF0)
396#define ASC_MIN_TAG_Q_PER_DVC (0x04)
Matthew Wilcox95c9f162007-09-09 08:56:39 -0600397#define ASC_MIN_FREE_Q (0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#define ASC_MIN_TOTAL_QNG ((ASC_MAX_SG_QUEUE)+(ASC_MIN_FREE_Q))
399#define ASC_MAX_TOTAL_QNG 240
400#define ASC_MAX_PCI_ULTRA_INRAM_TOTAL_QNG 16
401#define ASC_MAX_PCI_ULTRA_INRAM_TAG_QNG 8
402#define ASC_MAX_PCI_INRAM_TOTAL_QNG 20
403#define ASC_MAX_INRAM_TAG_QNG 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#define ASC_IOADR_GAP 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405#define ASC_SYN_MAX_OFFSET 0x0F
406#define ASC_DEF_SDTR_OFFSET 0x0F
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#define ASC_SDTR_ULTRA_PCI_10MB_INDEX 0x02
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -0400408#define ASYN_SDTR_DATA_FIX_PCI_REV_AB 0x41
409
410/* The narrow chip only supports a limited selection of transfer rates.
411 * These are encoded in the range 0..7 or 0..15 depending whether the chip
412 * is Ultra-capable or not. These tables let us convert from one to the other.
413 */
414static const unsigned char asc_syn_xfer_period[8] = {
415 25, 30, 35, 40, 50, 60, 70, 85
416};
417
418static const unsigned char asc_syn_ultra_xfer_period[16] = {
419 12, 19, 25, 32, 38, 44, 50, 57, 63, 69, 75, 82, 88, 94, 100, 107
420};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422typedef struct ext_msg {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400423 uchar msg_type;
424 uchar msg_len;
425 uchar msg_req;
426 union {
427 struct {
428 uchar sdtr_xfer_period;
429 uchar sdtr_req_ack_offset;
430 } sdtr;
431 struct {
432 uchar wdtr_width;
433 } wdtr;
434 struct {
435 uchar mdp_b3;
436 uchar mdp_b2;
437 uchar mdp_b1;
438 uchar mdp_b0;
439 } mdp;
440 } u_ext_msg;
441 uchar res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442} EXT_MSG;
443
444#define xfer_period u_ext_msg.sdtr.sdtr_xfer_period
445#define req_ack_offset u_ext_msg.sdtr.sdtr_req_ack_offset
446#define wdtr_width u_ext_msg.wdtr.wdtr_width
447#define mdp_b3 u_ext_msg.mdp_b3
448#define mdp_b2 u_ext_msg.mdp_b2
449#define mdp_b1 u_ext_msg.mdp_b1
450#define mdp_b0 u_ext_msg.mdp_b0
451
452typedef struct asc_dvc_cfg {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400453 ASC_SCSI_BIT_ID_TYPE can_tagged_qng;
454 ASC_SCSI_BIT_ID_TYPE cmd_qng_enabled;
455 ASC_SCSI_BIT_ID_TYPE disc_enable;
456 ASC_SCSI_BIT_ID_TYPE sdtr_enable;
457 uchar chip_scsi_id;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400458 uchar chip_version;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400459 ushort mcode_date;
460 ushort mcode_version;
461 uchar max_tag_qng[ASC_MAX_TID + 1];
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400462 uchar sdtr_period_offset[ASC_MAX_TID + 1];
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400463 uchar adapter_info[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464} ASC_DVC_CFG;
465
466#define ASC_DEF_DVC_CNTL 0xFFFF
467#define ASC_DEF_CHIP_SCSI_ID 7
468#define ASC_DEF_ISA_DMA_SPEED 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#define ASC_INIT_STATE_BEG_GET_CFG 0x0001
470#define ASC_INIT_STATE_END_GET_CFG 0x0002
471#define ASC_INIT_STATE_BEG_SET_CFG 0x0004
472#define ASC_INIT_STATE_END_SET_CFG 0x0008
473#define ASC_INIT_STATE_BEG_LOAD_MC 0x0010
474#define ASC_INIT_STATE_END_LOAD_MC 0x0020
475#define ASC_INIT_STATE_BEG_INQUIRY 0x0040
476#define ASC_INIT_STATE_END_INQUIRY 0x0080
477#define ASC_INIT_RESET_SCSI_DONE 0x0100
478#define ASC_INIT_STATE_WITHOUT_EEP 0x8000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#define ASC_BUG_FIX_IF_NOT_DWB 0x0001
480#define ASC_BUG_FIX_ASYN_USE_SYN 0x0002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#define ASC_MIN_TAGGED_CMD 7
482#define ASC_MAX_SCSI_RESET_WAIT 30
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -0400483#define ASC_OVERRUN_BSIZE 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400485struct asc_dvc_var; /* Forward Declaration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487typedef struct asc_dvc_var {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400488 PortAddr iop_base;
489 ushort err_code;
490 ushort dvc_cntl;
491 ushort bug_fix_cntl;
492 ushort bus_type;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400493 ASC_SCSI_BIT_ID_TYPE init_sdtr;
494 ASC_SCSI_BIT_ID_TYPE sdtr_done;
495 ASC_SCSI_BIT_ID_TYPE use_tagged_qng;
496 ASC_SCSI_BIT_ID_TYPE unit_not_ready;
497 ASC_SCSI_BIT_ID_TYPE queue_full_or_busy;
498 ASC_SCSI_BIT_ID_TYPE start_motor;
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +0900499 uchar *overrun_buf;
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -0400500 dma_addr_t overrun_dma;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400501 uchar scsi_reset_wait;
502 uchar chip_no;
Hannes Reineckeae267592015-04-24 13:18:28 +0200503 bool is_in_int;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400504 uchar max_total_qng;
505 uchar cur_total_qng;
506 uchar in_critical_cnt;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400507 uchar last_q_shortage;
508 ushort init_state;
509 uchar cur_dvc_qng[ASC_MAX_TID + 1];
510 uchar max_dvc_qng[ASC_MAX_TID + 1];
511 ASC_SCSI_Q *scsiq_busy_head[ASC_MAX_TID + 1];
512 ASC_SCSI_Q *scsiq_busy_tail[ASC_MAX_TID + 1];
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -0400513 const uchar *sdtr_period_tbl;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400514 ASC_DVC_CFG *cfg;
515 ASC_SCSI_BIT_ID_TYPE pci_fix_asyn_xfer_always;
516 char redo_scam;
517 ushort res2;
518 uchar dos_int13_table[ASC_MAX_TID + 1];
Hannes Reinecke95cfab62015-04-24 13:18:27 +0200519 unsigned int max_dma_count;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400520 ASC_SCSI_BIT_ID_TYPE no_scam;
521 ASC_SCSI_BIT_ID_TYPE pci_fix_asyn_xfer;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -0400522 uchar min_sdtr_index;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400523 uchar max_sdtr_index;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400524 struct asc_board *drv_ptr;
Hannes Reinecke95cfab62015-04-24 13:18:27 +0200525 unsigned int uc_break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526} ASC_DVC_VAR;
527
528typedef struct asc_dvc_inq_info {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400529 uchar type[ASC_MAX_TID + 1][ASC_MAX_LUN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530} ASC_DVC_INQ_INFO;
531
532typedef struct asc_cap_info {
Hannes Reinecke95cfab62015-04-24 13:18:27 +0200533 u32 lba;
534 u32 blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535} ASC_CAP_INFO;
536
537typedef struct asc_cap_info_array {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400538 ASC_CAP_INFO cap_info[ASC_MAX_TID + 1][ASC_MAX_LUN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539} ASC_CAP_INFO_ARRAY;
540
541#define ASC_MCNTL_NO_SEL_TIMEOUT (ushort)0x0001
542#define ASC_MCNTL_NULL_TARGET (ushort)0x0002
543#define ASC_CNTL_INITIATOR (ushort)0x0001
544#define ASC_CNTL_BIOS_GT_1GB (ushort)0x0002
545#define ASC_CNTL_BIOS_GT_2_DISK (ushort)0x0004
546#define ASC_CNTL_BIOS_REMOVABLE (ushort)0x0008
547#define ASC_CNTL_NO_SCAM (ushort)0x0010
548#define ASC_CNTL_INT_MULTI_Q (ushort)0x0080
549#define ASC_CNTL_NO_LUN_SUPPORT (ushort)0x0040
550#define ASC_CNTL_NO_VERIFY_COPY (ushort)0x0100
551#define ASC_CNTL_RESET_SCSI (ushort)0x0200
552#define ASC_CNTL_INIT_INQUIRY (ushort)0x0400
553#define ASC_CNTL_INIT_VERBOSE (ushort)0x0800
554#define ASC_CNTL_SCSI_PARITY (ushort)0x1000
555#define ASC_CNTL_BURST_MODE (ushort)0x2000
556#define ASC_CNTL_SDTR_ENABLE_ULTRA (ushort)0x4000
557#define ASC_EEP_DVC_CFG_BEG_VL 2
558#define ASC_EEP_MAX_DVC_ADDR_VL 15
559#define ASC_EEP_DVC_CFG_BEG 32
560#define ASC_EEP_MAX_DVC_ADDR 45
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561#define ASC_EEP_MAX_RETRY 20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563/*
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +0200564 * These macros keep the chip SCSI id bitfields in board order. C bitfields
565 * aren't portable between big and little-endian platforms so they are not used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
567
568#define ASC_EEP_GET_CHIP_ID(cfg) ((cfg)->id_speed & 0x0f)
569#define ASC_EEP_GET_DMA_SPD(cfg) (((cfg)->id_speed & 0xf0) >> 4)
570#define ASC_EEP_SET_CHIP_ID(cfg, sid) \
571 ((cfg)->id_speed = ((cfg)->id_speed & 0xf0) | ((sid) & ASC_MAX_TID))
572#define ASC_EEP_SET_DMA_SPD(cfg, spd) \
573 ((cfg)->id_speed = ((cfg)->id_speed & 0x0f) | ((spd) & 0x0f) << 4)
574
575typedef struct asceep_config {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400576 ushort cfg_lsw;
577 ushort cfg_msw;
578 uchar init_sdtr;
579 uchar disc_enable;
580 uchar use_cmd_qng;
581 uchar start_motor;
582 uchar max_total_qng;
583 uchar max_tag_qng;
584 uchar bios_scan;
585 uchar power_up_wait;
586 uchar no_scam;
587 uchar id_speed; /* low order 4 bits is chip scsi id */
588 /* high order 4 bits is isa dma speed */
589 uchar dos_int13_table[ASC_MAX_TID + 1];
590 uchar adapter_info[6];
591 ushort cntl;
592 ushort chksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593} ASCEEP_CONFIG;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#define ASC_EEP_CMD_READ 0x80
596#define ASC_EEP_CMD_WRITE 0x40
597#define ASC_EEP_CMD_WRITE_ABLE 0x30
598#define ASC_EEP_CMD_WRITE_DISABLE 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599#define ASCV_MSGOUT_BEG 0x0000
600#define ASCV_MSGOUT_SDTR_PERIOD (ASCV_MSGOUT_BEG+3)
601#define ASCV_MSGOUT_SDTR_OFFSET (ASCV_MSGOUT_BEG+4)
602#define ASCV_BREAK_SAVED_CODE (ushort)0x0006
603#define ASCV_MSGIN_BEG (ASCV_MSGOUT_BEG+8)
604#define ASCV_MSGIN_SDTR_PERIOD (ASCV_MSGIN_BEG+3)
605#define ASCV_MSGIN_SDTR_OFFSET (ASCV_MSGIN_BEG+4)
606#define ASCV_SDTR_DATA_BEG (ASCV_MSGIN_BEG+8)
607#define ASCV_SDTR_DONE_BEG (ASCV_SDTR_DATA_BEG+8)
608#define ASCV_MAX_DVC_QNG_BEG (ushort)0x0020
609#define ASCV_BREAK_ADDR (ushort)0x0028
610#define ASCV_BREAK_NOTIFY_COUNT (ushort)0x002A
611#define ASCV_BREAK_CONTROL (ushort)0x002C
612#define ASCV_BREAK_HIT_COUNT (ushort)0x002E
613
614#define ASCV_ASCDVC_ERR_CODE_W (ushort)0x0030
615#define ASCV_MCODE_CHKSUM_W (ushort)0x0032
616#define ASCV_MCODE_SIZE_W (ushort)0x0034
617#define ASCV_STOP_CODE_B (ushort)0x0036
618#define ASCV_DVC_ERR_CODE_B (ushort)0x0037
619#define ASCV_OVERRUN_PADDR_D (ushort)0x0038
620#define ASCV_OVERRUN_BSIZE_D (ushort)0x003C
621#define ASCV_HALTCODE_W (ushort)0x0040
622#define ASCV_CHKSUM_W (ushort)0x0042
623#define ASCV_MC_DATE_W (ushort)0x0044
624#define ASCV_MC_VER_W (ushort)0x0046
625#define ASCV_NEXTRDY_B (ushort)0x0048
626#define ASCV_DONENEXT_B (ushort)0x0049
627#define ASCV_USE_TAGGED_QNG_B (ushort)0x004A
628#define ASCV_SCSIBUSY_B (ushort)0x004B
629#define ASCV_Q_DONE_IN_PROGRESS_B (ushort)0x004C
630#define ASCV_CURCDB_B (ushort)0x004D
631#define ASCV_RCLUN_B (ushort)0x004E
632#define ASCV_BUSY_QHEAD_B (ushort)0x004F
633#define ASCV_DISC1_QHEAD_B (ushort)0x0050
634#define ASCV_DISC_ENABLE_B (ushort)0x0052
635#define ASCV_CAN_TAGGED_QNG_B (ushort)0x0053
636#define ASCV_HOSTSCSI_ID_B (ushort)0x0055
637#define ASCV_MCODE_CNTL_B (ushort)0x0056
638#define ASCV_NULL_TARGET_B (ushort)0x0057
639#define ASCV_FREE_Q_HEAD_W (ushort)0x0058
640#define ASCV_DONE_Q_TAIL_W (ushort)0x005A
641#define ASCV_FREE_Q_HEAD_B (ushort)(ASCV_FREE_Q_HEAD_W+1)
642#define ASCV_DONE_Q_TAIL_B (ushort)(ASCV_DONE_Q_TAIL_W+1)
643#define ASCV_HOST_FLAG_B (ushort)0x005D
644#define ASCV_TOTAL_READY_Q_B (ushort)0x0064
645#define ASCV_VER_SERIAL_B (ushort)0x0065
646#define ASCV_HALTCODE_SAVED_W (ushort)0x0066
647#define ASCV_WTM_FLAG_B (ushort)0x0068
648#define ASCV_RISC_FLAG_B (ushort)0x006A
649#define ASCV_REQ_SG_LIST_QP (ushort)0x006B
650#define ASC_HOST_FLAG_IN_ISR 0x01
651#define ASC_HOST_FLAG_ACK_INT 0x02
652#define ASC_RISC_FLAG_GEN_INT 0x01
653#define ASC_RISC_FLAG_REQ_SG_LIST 0x02
654#define IOP_CTRL (0x0F)
655#define IOP_STATUS (0x0E)
656#define IOP_INT_ACK IOP_STATUS
657#define IOP_REG_IFC (0x0D)
658#define IOP_SYN_OFFSET (0x0B)
659#define IOP_EXTRA_CONTROL (0x0D)
660#define IOP_REG_PC (0x0C)
661#define IOP_RAM_ADDR (0x0A)
662#define IOP_RAM_DATA (0x08)
663#define IOP_EEP_DATA (0x06)
664#define IOP_EEP_CMD (0x07)
665#define IOP_VERSION (0x03)
666#define IOP_CONFIG_HIGH (0x04)
667#define IOP_CONFIG_LOW (0x02)
668#define IOP_SIG_BYTE (0x01)
669#define IOP_SIG_WORD (0x00)
670#define IOP_REG_DC1 (0x0E)
671#define IOP_REG_DC0 (0x0C)
672#define IOP_REG_SB (0x0B)
673#define IOP_REG_DA1 (0x0A)
674#define IOP_REG_DA0 (0x08)
675#define IOP_REG_SC (0x09)
676#define IOP_DMA_SPEED (0x07)
677#define IOP_REG_FLAG (0x07)
678#define IOP_FIFO_H (0x06)
679#define IOP_FIFO_L (0x04)
680#define IOP_REG_ID (0x05)
681#define IOP_REG_QP (0x03)
682#define IOP_REG_IH (0x02)
683#define IOP_REG_IX (0x01)
684#define IOP_REG_AX (0x00)
685#define IFC_REG_LOCK (0x00)
686#define IFC_REG_UNLOCK (0x09)
687#define IFC_WR_EN_FILTER (0x10)
688#define IFC_RD_NO_EEPROM (0x10)
689#define IFC_SLEW_RATE (0x20)
690#define IFC_ACT_NEG (0x40)
691#define IFC_INP_FILTER (0x80)
692#define IFC_INIT_DEFAULT (IFC_ACT_NEG | IFC_REG_UNLOCK)
693#define SC_SEL (uchar)(0x80)
694#define SC_BSY (uchar)(0x40)
695#define SC_ACK (uchar)(0x20)
696#define SC_REQ (uchar)(0x10)
697#define SC_ATN (uchar)(0x08)
698#define SC_IO (uchar)(0x04)
699#define SC_CD (uchar)(0x02)
700#define SC_MSG (uchar)(0x01)
701#define SEC_SCSI_CTL (uchar)(0x80)
702#define SEC_ACTIVE_NEGATE (uchar)(0x40)
703#define SEC_SLEW_RATE (uchar)(0x20)
704#define SEC_ENABLE_FILTER (uchar)(0x10)
705#define ASC_HALT_EXTMSG_IN (ushort)0x8000
706#define ASC_HALT_CHK_CONDITION (ushort)0x8100
707#define ASC_HALT_SS_QUEUE_FULL (ushort)0x8200
708#define ASC_HALT_DISABLE_ASYN_USE_SYN_FIX (ushort)0x8300
709#define ASC_HALT_ENABLE_ASYN_USE_SYN_FIX (ushort)0x8400
710#define ASC_HALT_SDTR_REJECTED (ushort)0x4000
711#define ASC_HALT_HOST_COPY_SG_LIST_TO_RISC ( ushort )0x2000
712#define ASC_MAX_QNO 0xF8
713#define ASC_DATA_SEC_BEG (ushort)0x0080
714#define ASC_DATA_SEC_END (ushort)0x0080
715#define ASC_CODE_SEC_BEG (ushort)0x0080
716#define ASC_CODE_SEC_END (ushort)0x0080
717#define ASC_QADR_BEG (0x4000)
718#define ASC_QADR_USED (ushort)(ASC_MAX_QNO * 64)
719#define ASC_QADR_END (ushort)0x7FFF
720#define ASC_QLAST_ADR (ushort)0x7FC0
721#define ASC_QBLK_SIZE 0x40
722#define ASC_BIOS_DATA_QBEG 0xF8
723#define ASC_MIN_ACTIVE_QNO 0x01
724#define ASC_QLINK_END 0xFF
725#define ASC_EEPROM_WORDS 0x10
726#define ASC_MAX_MGS_LEN 0x10
727#define ASC_BIOS_ADDR_DEF 0xDC00
728#define ASC_BIOS_SIZE 0x3800
729#define ASC_BIOS_RAM_OFF 0x3800
730#define ASC_BIOS_RAM_SIZE 0x800
731#define ASC_BIOS_MIN_ADDR 0xC000
732#define ASC_BIOS_MAX_ADDR 0xEC00
733#define ASC_BIOS_BANK_SIZE 0x0400
734#define ASC_MCODE_START_ADDR 0x0080
735#define ASC_CFG0_HOST_INT_ON 0x0020
736#define ASC_CFG0_BIOS_ON 0x0040
737#define ASC_CFG0_VERA_BURST_ON 0x0080
738#define ASC_CFG0_SCSI_PARITY_ON 0x0800
739#define ASC_CFG1_SCSI_TARGET_ON 0x0080
740#define ASC_CFG1_LRAM_8BITS_ON 0x0800
741#define ASC_CFG_MSW_CLR_MASK 0x3080
742#define CSW_TEST1 (ASC_CS_TYPE)0x8000
743#define CSW_AUTO_CONFIG (ASC_CS_TYPE)0x4000
744#define CSW_RESERVED1 (ASC_CS_TYPE)0x2000
745#define CSW_IRQ_WRITTEN (ASC_CS_TYPE)0x1000
746#define CSW_33MHZ_SELECTED (ASC_CS_TYPE)0x0800
747#define CSW_TEST2 (ASC_CS_TYPE)0x0400
748#define CSW_TEST3 (ASC_CS_TYPE)0x0200
749#define CSW_RESERVED2 (ASC_CS_TYPE)0x0100
750#define CSW_DMA_DONE (ASC_CS_TYPE)0x0080
751#define CSW_FIFO_RDY (ASC_CS_TYPE)0x0040
752#define CSW_EEP_READ_DONE (ASC_CS_TYPE)0x0020
753#define CSW_HALTED (ASC_CS_TYPE)0x0010
754#define CSW_SCSI_RESET_ACTIVE (ASC_CS_TYPE)0x0008
755#define CSW_PARITY_ERR (ASC_CS_TYPE)0x0004
756#define CSW_SCSI_RESET_LATCH (ASC_CS_TYPE)0x0002
757#define CSW_INT_PENDING (ASC_CS_TYPE)0x0001
758#define CIW_CLR_SCSI_RESET_INT (ASC_CS_TYPE)0x1000
759#define CIW_INT_ACK (ASC_CS_TYPE)0x0100
760#define CIW_TEST1 (ASC_CS_TYPE)0x0200
761#define CIW_TEST2 (ASC_CS_TYPE)0x0400
762#define CIW_SEL_33MHZ (ASC_CS_TYPE)0x0800
763#define CIW_IRQ_ACT (ASC_CS_TYPE)0x1000
764#define CC_CHIP_RESET (uchar)0x80
765#define CC_SCSI_RESET (uchar)0x40
766#define CC_HALT (uchar)0x20
767#define CC_SINGLE_STEP (uchar)0x10
768#define CC_DMA_ABLE (uchar)0x08
769#define CC_TEST (uchar)0x04
770#define CC_BANK_ONE (uchar)0x02
771#define CC_DIAG (uchar)0x01
772#define ASC_1000_ID0W 0x04C1
773#define ASC_1000_ID0W_FIX 0x00C1
774#define ASC_1000_ID1B 0x25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775#define ASC_EISA_REV_IOP_MASK (0x0C83)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776#define ASC_EISA_CFG_IOP_MASK (0x0C86)
777#define ASC_GET_EISA_SLOT(iop) (PortAddr)((iop) & 0xF000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778#define INS_HALTINT (ushort)0x6281
779#define INS_HALT (ushort)0x6280
780#define INS_SINT (ushort)0x6200
781#define INS_RFLAG_WTM (ushort)0x7380
782#define ASC_MC_SAVE_CODE_WSIZE 0x500
783#define ASC_MC_SAVE_DATA_WSIZE 0x40
784
785typedef struct asc_mc_saved {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400786 ushort data[ASC_MC_SAVE_DATA_WSIZE];
787 ushort code[ASC_MC_SAVE_CODE_WSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788} ASC_MC_SAVED;
789
790#define AscGetQDoneInProgress(port) AscReadLramByte((port), ASCV_Q_DONE_IN_PROGRESS_B)
791#define AscPutQDoneInProgress(port, val) AscWriteLramByte((port), ASCV_Q_DONE_IN_PROGRESS_B, val)
792#define AscGetVarFreeQHead(port) AscReadLramWord((port), ASCV_FREE_Q_HEAD_W)
793#define AscGetVarDoneQTail(port) AscReadLramWord((port), ASCV_DONE_Q_TAIL_W)
794#define AscPutVarFreeQHead(port, val) AscWriteLramWord((port), ASCV_FREE_Q_HEAD_W, val)
795#define AscPutVarDoneQTail(port, val) AscWriteLramWord((port), ASCV_DONE_Q_TAIL_W, val)
796#define AscGetRiscVarFreeQHead(port) AscReadLramByte((port), ASCV_NEXTRDY_B)
797#define AscGetRiscVarDoneQTail(port) AscReadLramByte((port), ASCV_DONENEXT_B)
798#define AscPutRiscVarFreeQHead(port, val) AscWriteLramByte((port), ASCV_NEXTRDY_B, val)
799#define AscPutRiscVarDoneQTail(port, val) AscWriteLramByte((port), ASCV_DONENEXT_B, val)
Matthew Wilcox51219352007-10-02 21:55:22 -0400800#define AscPutMCodeSDTRDoneAtID(port, id, data) AscWriteLramByte((port), (ushort)((ushort)ASCV_SDTR_DONE_BEG+(ushort)id), (data))
801#define AscGetMCodeSDTRDoneAtID(port, id) AscReadLramByte((port), (ushort)((ushort)ASCV_SDTR_DONE_BEG+(ushort)id))
802#define AscPutMCodeInitSDTRAtID(port, id, data) AscWriteLramByte((port), (ushort)((ushort)ASCV_SDTR_DATA_BEG+(ushort)id), data)
803#define AscGetMCodeInitSDTRAtID(port, id) AscReadLramByte((port), (ushort)((ushort)ASCV_SDTR_DATA_BEG+(ushort)id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804#define AscGetChipSignatureByte(port) (uchar)inp((port)+IOP_SIG_BYTE)
805#define AscGetChipSignatureWord(port) (ushort)inpw((port)+IOP_SIG_WORD)
806#define AscGetChipVerNo(port) (uchar)inp((port)+IOP_VERSION)
807#define AscGetChipCfgLsw(port) (ushort)inpw((port)+IOP_CONFIG_LOW)
808#define AscGetChipCfgMsw(port) (ushort)inpw((port)+IOP_CONFIG_HIGH)
809#define AscSetChipCfgLsw(port, data) outpw((port)+IOP_CONFIG_LOW, data)
810#define AscSetChipCfgMsw(port, data) outpw((port)+IOP_CONFIG_HIGH, data)
811#define AscGetChipEEPCmd(port) (uchar)inp((port)+IOP_EEP_CMD)
812#define AscSetChipEEPCmd(port, data) outp((port)+IOP_EEP_CMD, data)
813#define AscGetChipEEPData(port) (ushort)inpw((port)+IOP_EEP_DATA)
814#define AscSetChipEEPData(port, data) outpw((port)+IOP_EEP_DATA, data)
815#define AscGetChipLramAddr(port) (ushort)inpw((PortAddr)((port)+IOP_RAM_ADDR))
816#define AscSetChipLramAddr(port, addr) outpw((PortAddr)((port)+IOP_RAM_ADDR), addr)
817#define AscGetChipLramData(port) (ushort)inpw((port)+IOP_RAM_DATA)
818#define AscSetChipLramData(port, data) outpw((port)+IOP_RAM_DATA, data)
819#define AscGetChipIFC(port) (uchar)inp((port)+IOP_REG_IFC)
820#define AscSetChipIFC(port, data) outp((port)+IOP_REG_IFC, data)
821#define AscGetChipStatus(port) (ASC_CS_TYPE)inpw((port)+IOP_STATUS)
822#define AscSetChipStatus(port, cs_val) outpw((port)+IOP_STATUS, cs_val)
823#define AscGetChipControl(port) (uchar)inp((port)+IOP_CTRL)
824#define AscSetChipControl(port, cc_val) outp((port)+IOP_CTRL, cc_val)
825#define AscGetChipSyn(port) (uchar)inp((port)+IOP_SYN_OFFSET)
826#define AscSetChipSyn(port, data) outp((port)+IOP_SYN_OFFSET, data)
827#define AscSetPCAddr(port, data) outpw((port)+IOP_REG_PC, data)
828#define AscGetPCAddr(port) (ushort)inpw((port)+IOP_REG_PC)
829#define AscIsIntPending(port) (AscGetChipStatus(port) & (CSW_INT_PENDING | CSW_SCSI_RESET_LATCH))
830#define AscGetChipScsiID(port) ((AscGetChipCfgLsw(port) >> 8) & ASC_MAX_TID)
831#define AscGetExtraControl(port) (uchar)inp((port)+IOP_EXTRA_CONTROL)
832#define AscSetExtraControl(port, data) outp((port)+IOP_EXTRA_CONTROL, data)
833#define AscReadChipAX(port) (ushort)inpw((port)+IOP_REG_AX)
834#define AscWriteChipAX(port, data) outpw((port)+IOP_REG_AX, data)
835#define AscReadChipIX(port) (uchar)inp((port)+IOP_REG_IX)
836#define AscWriteChipIX(port, data) outp((port)+IOP_REG_IX, data)
837#define AscReadChipIH(port) (ushort)inpw((port)+IOP_REG_IH)
838#define AscWriteChipIH(port, data) outpw((port)+IOP_REG_IH, data)
839#define AscReadChipQP(port) (uchar)inp((port)+IOP_REG_QP)
840#define AscWriteChipQP(port, data) outp((port)+IOP_REG_QP, data)
841#define AscReadChipFIFO_L(port) (ushort)inpw((port)+IOP_REG_FIFO_L)
842#define AscWriteChipFIFO_L(port, data) outpw((port)+IOP_REG_FIFO_L, data)
843#define AscReadChipFIFO_H(port) (ushort)inpw((port)+IOP_REG_FIFO_H)
844#define AscWriteChipFIFO_H(port, data) outpw((port)+IOP_REG_FIFO_H, data)
845#define AscReadChipDmaSpeed(port) (uchar)inp((port)+IOP_DMA_SPEED)
846#define AscWriteChipDmaSpeed(port, data) outp((port)+IOP_DMA_SPEED, data)
847#define AscReadChipDA0(port) (ushort)inpw((port)+IOP_REG_DA0)
848#define AscWriteChipDA0(port) outpw((port)+IOP_REG_DA0, data)
849#define AscReadChipDA1(port) (ushort)inpw((port)+IOP_REG_DA1)
850#define AscWriteChipDA1(port) outpw((port)+IOP_REG_DA1, data)
851#define AscReadChipDC0(port) (ushort)inpw((port)+IOP_REG_DC0)
852#define AscWriteChipDC0(port) outpw((port)+IOP_REG_DC0, data)
853#define AscReadChipDC1(port) (ushort)inpw((port)+IOP_REG_DC1)
854#define AscWriteChipDC1(port) outpw((port)+IOP_REG_DC1, data)
855#define AscReadChipDvcID(port) (uchar)inp((port)+IOP_REG_ID)
856#define AscWriteChipDvcID(port, data) outp((port)+IOP_REG_ID, data)
857
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400858#define AdvPortAddr void __iomem * /* Virtual memory address size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860/*
861 * Define Adv Library required memory access macros.
862 */
863#define ADV_MEM_READB(addr) readb(addr)
864#define ADV_MEM_READW(addr) readw(addr)
865#define ADV_MEM_WRITEB(addr, byte) writeb(byte, addr)
866#define ADV_MEM_WRITEW(addr, word) writew(word, addr)
867#define ADV_MEM_WRITEDW(addr, dword) writel(dword, addr)
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 * Define total number of simultaneous maximum element scatter-gather
871 * request blocks per wide adapter. ASC_DEF_MAX_HOST_QNG (253) is the
872 * maximum number of outstanding commands per wide host adapter. Each
873 * command uses one or more ADV_SG_BLOCK each with 15 scatter-gather
874 * elements. Allow each command to have at least one ADV_SG_BLOCK structure.
875 * This allows about 15 commands to have the maximum 17 ADV_SG_BLOCK
876 * structures or 255 scatter-gather elements.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
878#define ADV_TOT_SG_BLOCK ASC_DEF_MAX_HOST_QNG
879
880/*
Matthew Wilcox98d41c22007-10-02 21:55:37 -0400881 * Define maximum number of scatter-gather elements per request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 */
883#define ADV_MAX_SG_LIST 255
Matthew Wilcox98d41c22007-10-02 21:55:37 -0400884#define NO_OF_SG_PER_BLOCK 15
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886#define ADV_EEP_DVC_CFG_BEGIN (0x00)
887#define ADV_EEP_DVC_CFG_END (0x15)
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400888#define ADV_EEP_DVC_CTL_BEGIN (0x16) /* location of OEM name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889#define ADV_EEP_MAX_WORD_ADDR (0x1E)
890
891#define ADV_EEP_DELAY_MS 100
892
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400893#define ADV_EEPROM_BIG_ENDIAN 0x8000 /* EEPROM Bit 15 */
894#define ADV_EEPROM_BIOS_ENABLE 0x4000 /* EEPROM Bit 14 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/*
896 * For the ASC3550 Bit 13 is Termination Polarity control bit.
897 * For later ICs Bit 13 controls whether the CIS (Card Information
898 * Service Section) is loaded from EEPROM.
899 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400900#define ADV_EEPROM_TERM_POL 0x2000 /* EEPROM Bit 13 */
901#define ADV_EEPROM_CIS_LD 0x2000 /* EEPROM Bit 13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/*
903 * ASC38C1600 Bit 11
904 *
905 * If EEPROM Bit 11 is 0 for Function 0, then Function 0 will specify
906 * INT A in the PCI Configuration Space Int Pin field. If it is 1, then
907 * Function 0 will specify INT B.
908 *
909 * If EEPROM Bit 11 is 0 for Function 1, then Function 1 will specify
910 * INT B in the PCI Configuration Space Int Pin field. If it is 1, then
911 * Function 1 will specify INT A.
912 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400913#define ADV_EEPROM_INTAB 0x0800 /* EEPROM Bit 11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400915typedef struct adveep_3550_config {
916 /* Word Offset, Description */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400918 ushort cfg_lsw; /* 00 power up initialization */
919 /* bit 13 set - Term Polarity Control */
920 /* bit 14 set - BIOS Enable */
921 /* bit 15 set - Big Endian Mode */
922 ushort cfg_msw; /* 01 unused */
923 ushort disc_enable; /* 02 disconnect enable */
924 ushort wdtr_able; /* 03 Wide DTR able */
925 ushort sdtr_able; /* 04 Synchronous DTR able */
926 ushort start_motor; /* 05 send start up motor */
927 ushort tagqng_able; /* 06 tag queuing able */
928 ushort bios_scan; /* 07 BIOS device control */
929 ushort scam_tolerant; /* 08 no scam */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400931 uchar adapter_scsi_id; /* 09 Host Adapter ID */
932 uchar bios_boot_delay; /* power up wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400934 uchar scsi_reset_delay; /* 10 reset delay */
935 uchar bios_id_lun; /* first boot device scsi id & lun */
936 /* high nibble is lun */
937 /* low nibble is scsi id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400939 uchar termination; /* 11 0 - automatic */
940 /* 1 - low off / high off */
941 /* 2 - low off / high on */
942 /* 3 - low on / high on */
943 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400945 uchar reserved1; /* reserved byte (not used) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400947 ushort bios_ctrl; /* 12 BIOS control bits */
948 /* bit 0 BIOS don't act as initiator. */
949 /* bit 1 BIOS > 1 GB support */
950 /* bit 2 BIOS > 2 Disk Support */
951 /* bit 3 BIOS don't support removables */
952 /* bit 4 BIOS support bootable CD */
953 /* bit 5 BIOS scan enabled */
954 /* bit 6 BIOS support multiple LUNs */
955 /* bit 7 BIOS display of message */
956 /* bit 8 SCAM disabled */
957 /* bit 9 Reset SCSI bus during init. */
958 /* bit 10 */
959 /* bit 11 No verbose initialization. */
960 /* bit 12 SCSI parity enabled */
961 /* bit 13 */
962 /* bit 14 */
963 /* bit 15 */
964 ushort ultra_able; /* 13 ULTRA speed able */
965 ushort reserved2; /* 14 reserved */
966 uchar max_host_qng; /* 15 maximum host queuing */
967 uchar max_dvc_qng; /* maximum per device queuing */
968 ushort dvc_cntl; /* 16 control bit for driver */
969 ushort bug_fix; /* 17 control bit for bug fix */
970 ushort serial_number_word1; /* 18 Board serial number word 1 */
971 ushort serial_number_word2; /* 19 Board serial number word 2 */
972 ushort serial_number_word3; /* 20 Board serial number word 3 */
973 ushort check_sum; /* 21 EEP check sum */
974 uchar oem_name[16]; /* 22 OEM name */
975 ushort dvc_err_code; /* 30 last device driver error code */
976 ushort adv_err_code; /* 31 last uc and Adv Lib error code */
977 ushort adv_err_addr; /* 32 last uc error address */
978 ushort saved_dvc_err_code; /* 33 saved last dev. driver error code */
979 ushort saved_adv_err_code; /* 34 saved last uc and Adv Lib error code */
980 ushort saved_adv_err_addr; /* 35 saved last uc error address */
981 ushort num_of_err; /* 36 number of error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982} ADVEEP_3550_CONFIG;
983
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400984typedef struct adveep_38C0800_config {
985 /* Word Offset, Description */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400987 ushort cfg_lsw; /* 00 power up initialization */
988 /* bit 13 set - Load CIS */
989 /* bit 14 set - BIOS Enable */
990 /* bit 15 set - Big Endian Mode */
991 ushort cfg_msw; /* 01 unused */
992 ushort disc_enable; /* 02 disconnect enable */
993 ushort wdtr_able; /* 03 Wide DTR able */
994 ushort sdtr_speed1; /* 04 SDTR Speed TID 0-3 */
995 ushort start_motor; /* 05 send start up motor */
996 ushort tagqng_able; /* 06 tag queuing able */
997 ushort bios_scan; /* 07 BIOS device control */
998 ushort scam_tolerant; /* 08 no scam */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001000 uchar adapter_scsi_id; /* 09 Host Adapter ID */
1001 uchar bios_boot_delay; /* power up wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001003 uchar scsi_reset_delay; /* 10 reset delay */
1004 uchar bios_id_lun; /* first boot device scsi id & lun */
1005 /* high nibble is lun */
1006 /* low nibble is scsi id */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001008 uchar termination_se; /* 11 0 - automatic */
1009 /* 1 - low off / high off */
1010 /* 2 - low off / high on */
1011 /* 3 - low on / high on */
1012 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001014 uchar termination_lvd; /* 11 0 - automatic */
1015 /* 1 - low off / high off */
1016 /* 2 - low off / high on */
1017 /* 3 - low on / high on */
1018 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001020 ushort bios_ctrl; /* 12 BIOS control bits */
1021 /* bit 0 BIOS don't act as initiator. */
1022 /* bit 1 BIOS > 1 GB support */
1023 /* bit 2 BIOS > 2 Disk Support */
1024 /* bit 3 BIOS don't support removables */
1025 /* bit 4 BIOS support bootable CD */
1026 /* bit 5 BIOS scan enabled */
1027 /* bit 6 BIOS support multiple LUNs */
1028 /* bit 7 BIOS display of message */
1029 /* bit 8 SCAM disabled */
1030 /* bit 9 Reset SCSI bus during init. */
1031 /* bit 10 */
1032 /* bit 11 No verbose initialization. */
1033 /* bit 12 SCSI parity enabled */
1034 /* bit 13 */
1035 /* bit 14 */
1036 /* bit 15 */
1037 ushort sdtr_speed2; /* 13 SDTR speed TID 4-7 */
1038 ushort sdtr_speed3; /* 14 SDTR speed TID 8-11 */
1039 uchar max_host_qng; /* 15 maximum host queueing */
1040 uchar max_dvc_qng; /* maximum per device queuing */
1041 ushort dvc_cntl; /* 16 control bit for driver */
1042 ushort sdtr_speed4; /* 17 SDTR speed 4 TID 12-15 */
1043 ushort serial_number_word1; /* 18 Board serial number word 1 */
1044 ushort serial_number_word2; /* 19 Board serial number word 2 */
1045 ushort serial_number_word3; /* 20 Board serial number word 3 */
1046 ushort check_sum; /* 21 EEP check sum */
1047 uchar oem_name[16]; /* 22 OEM name */
1048 ushort dvc_err_code; /* 30 last device driver error code */
1049 ushort adv_err_code; /* 31 last uc and Adv Lib error code */
1050 ushort adv_err_addr; /* 32 last uc error address */
1051 ushort saved_dvc_err_code; /* 33 saved last dev. driver error code */
1052 ushort saved_adv_err_code; /* 34 saved last uc and Adv Lib error code */
1053 ushort saved_adv_err_addr; /* 35 saved last uc error address */
1054 ushort reserved36; /* 36 reserved */
1055 ushort reserved37; /* 37 reserved */
1056 ushort reserved38; /* 38 reserved */
1057 ushort reserved39; /* 39 reserved */
1058 ushort reserved40; /* 40 reserved */
1059 ushort reserved41; /* 41 reserved */
1060 ushort reserved42; /* 42 reserved */
1061 ushort reserved43; /* 43 reserved */
1062 ushort reserved44; /* 44 reserved */
1063 ushort reserved45; /* 45 reserved */
1064 ushort reserved46; /* 46 reserved */
1065 ushort reserved47; /* 47 reserved */
1066 ushort reserved48; /* 48 reserved */
1067 ushort reserved49; /* 49 reserved */
1068 ushort reserved50; /* 50 reserved */
1069 ushort reserved51; /* 51 reserved */
1070 ushort reserved52; /* 52 reserved */
1071 ushort reserved53; /* 53 reserved */
1072 ushort reserved54; /* 54 reserved */
1073 ushort reserved55; /* 55 reserved */
1074 ushort cisptr_lsw; /* 56 CIS PTR LSW */
1075 ushort cisprt_msw; /* 57 CIS PTR MSW */
1076 ushort subsysvid; /* 58 SubSystem Vendor ID */
1077 ushort subsysid; /* 59 SubSystem ID */
1078 ushort reserved60; /* 60 reserved */
1079 ushort reserved61; /* 61 reserved */
1080 ushort reserved62; /* 62 reserved */
1081 ushort reserved63; /* 63 reserved */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082} ADVEEP_38C0800_CONFIG;
1083
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001084typedef struct adveep_38C1600_config {
1085 /* Word Offset, Description */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001087 ushort cfg_lsw; /* 00 power up initialization */
1088 /* bit 11 set - Func. 0 INTB, Func. 1 INTA */
1089 /* clear - Func. 0 INTA, Func. 1 INTB */
1090 /* bit 13 set - Load CIS */
1091 /* bit 14 set - BIOS Enable */
1092 /* bit 15 set - Big Endian Mode */
1093 ushort cfg_msw; /* 01 unused */
1094 ushort disc_enable; /* 02 disconnect enable */
1095 ushort wdtr_able; /* 03 Wide DTR able */
1096 ushort sdtr_speed1; /* 04 SDTR Speed TID 0-3 */
1097 ushort start_motor; /* 05 send start up motor */
1098 ushort tagqng_able; /* 06 tag queuing able */
1099 ushort bios_scan; /* 07 BIOS device control */
1100 ushort scam_tolerant; /* 08 no scam */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001102 uchar adapter_scsi_id; /* 09 Host Adapter ID */
1103 uchar bios_boot_delay; /* power up wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001105 uchar scsi_reset_delay; /* 10 reset delay */
1106 uchar bios_id_lun; /* first boot device scsi id & lun */
1107 /* high nibble is lun */
1108 /* low nibble is scsi id */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001110 uchar termination_se; /* 11 0 - automatic */
1111 /* 1 - low off / high off */
1112 /* 2 - low off / high on */
1113 /* 3 - low on / high on */
1114 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001116 uchar termination_lvd; /* 11 0 - automatic */
1117 /* 1 - low off / high off */
1118 /* 2 - low off / high on */
1119 /* 3 - low on / high on */
1120 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001122 ushort bios_ctrl; /* 12 BIOS control bits */
1123 /* bit 0 BIOS don't act as initiator. */
1124 /* bit 1 BIOS > 1 GB support */
1125 /* bit 2 BIOS > 2 Disk Support */
1126 /* bit 3 BIOS don't support removables */
1127 /* bit 4 BIOS support bootable CD */
1128 /* bit 5 BIOS scan enabled */
1129 /* bit 6 BIOS support multiple LUNs */
1130 /* bit 7 BIOS display of message */
1131 /* bit 8 SCAM disabled */
1132 /* bit 9 Reset SCSI bus during init. */
1133 /* bit 10 Basic Integrity Checking disabled */
1134 /* bit 11 No verbose initialization. */
1135 /* bit 12 SCSI parity enabled */
1136 /* bit 13 AIPP (Asyn. Info. Ph. Prot.) dis. */
1137 /* bit 14 */
1138 /* bit 15 */
1139 ushort sdtr_speed2; /* 13 SDTR speed TID 4-7 */
1140 ushort sdtr_speed3; /* 14 SDTR speed TID 8-11 */
1141 uchar max_host_qng; /* 15 maximum host queueing */
1142 uchar max_dvc_qng; /* maximum per device queuing */
1143 ushort dvc_cntl; /* 16 control bit for driver */
1144 ushort sdtr_speed4; /* 17 SDTR speed 4 TID 12-15 */
1145 ushort serial_number_word1; /* 18 Board serial number word 1 */
1146 ushort serial_number_word2; /* 19 Board serial number word 2 */
1147 ushort serial_number_word3; /* 20 Board serial number word 3 */
1148 ushort check_sum; /* 21 EEP check sum */
1149 uchar oem_name[16]; /* 22 OEM name */
1150 ushort dvc_err_code; /* 30 last device driver error code */
1151 ushort adv_err_code; /* 31 last uc and Adv Lib error code */
1152 ushort adv_err_addr; /* 32 last uc error address */
1153 ushort saved_dvc_err_code; /* 33 saved last dev. driver error code */
1154 ushort saved_adv_err_code; /* 34 saved last uc and Adv Lib error code */
1155 ushort saved_adv_err_addr; /* 35 saved last uc error address */
1156 ushort reserved36; /* 36 reserved */
1157 ushort reserved37; /* 37 reserved */
1158 ushort reserved38; /* 38 reserved */
1159 ushort reserved39; /* 39 reserved */
1160 ushort reserved40; /* 40 reserved */
1161 ushort reserved41; /* 41 reserved */
1162 ushort reserved42; /* 42 reserved */
1163 ushort reserved43; /* 43 reserved */
1164 ushort reserved44; /* 44 reserved */
1165 ushort reserved45; /* 45 reserved */
1166 ushort reserved46; /* 46 reserved */
1167 ushort reserved47; /* 47 reserved */
1168 ushort reserved48; /* 48 reserved */
1169 ushort reserved49; /* 49 reserved */
1170 ushort reserved50; /* 50 reserved */
1171 ushort reserved51; /* 51 reserved */
1172 ushort reserved52; /* 52 reserved */
1173 ushort reserved53; /* 53 reserved */
1174 ushort reserved54; /* 54 reserved */
1175 ushort reserved55; /* 55 reserved */
1176 ushort cisptr_lsw; /* 56 CIS PTR LSW */
1177 ushort cisprt_msw; /* 57 CIS PTR MSW */
1178 ushort subsysvid; /* 58 SubSystem Vendor ID */
1179 ushort subsysid; /* 59 SubSystem ID */
1180 ushort reserved60; /* 60 reserved */
1181 ushort reserved61; /* 61 reserved */
1182 ushort reserved62; /* 62 reserved */
1183 ushort reserved63; /* 63 reserved */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184} ADVEEP_38C1600_CONFIG;
1185
1186/*
1187 * EEPROM Commands
1188 */
1189#define ASC_EEP_CMD_DONE 0x0200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191/* bios_ctrl */
1192#define BIOS_CTRL_BIOS 0x0001
1193#define BIOS_CTRL_EXTENDED_XLAT 0x0002
1194#define BIOS_CTRL_GT_2_DISK 0x0004
1195#define BIOS_CTRL_BIOS_REMOVABLE 0x0008
1196#define BIOS_CTRL_BOOTABLE_CD 0x0010
1197#define BIOS_CTRL_MULTIPLE_LUN 0x0040
1198#define BIOS_CTRL_DISPLAY_MSG 0x0080
1199#define BIOS_CTRL_NO_SCAM 0x0100
1200#define BIOS_CTRL_RESET_SCSI_BUS 0x0200
1201#define BIOS_CTRL_INIT_VERBOSE 0x0800
1202#define BIOS_CTRL_SCSI_PARITY 0x1000
1203#define BIOS_CTRL_AIPP_DIS 0x2000
1204
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001205#define ADV_3550_MEMSIZE 0x2000 /* 8 KB Internal Memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001207#define ADV_38C0800_MEMSIZE 0x4000 /* 16 KB Internal Memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209/*
1210 * XXX - Since ASC38C1600 Rev.3 has a local RAM failure issue, there is
1211 * a special 16K Adv Library and Microcode version. After the issue is
1212 * resolved, should restore 32K support.
1213 *
1214 * #define ADV_38C1600_MEMSIZE 0x8000L * 32 KB Internal Memory *
1215 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001216#define ADV_38C1600_MEMSIZE 0x4000 /* 16 KB Internal Memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218/*
1219 * Byte I/O register address from base of 'iop_base'.
1220 */
1221#define IOPB_INTR_STATUS_REG 0x00
1222#define IOPB_CHIP_ID_1 0x01
1223#define IOPB_INTR_ENABLES 0x02
1224#define IOPB_CHIP_TYPE_REV 0x03
1225#define IOPB_RES_ADDR_4 0x04
1226#define IOPB_RES_ADDR_5 0x05
1227#define IOPB_RAM_DATA 0x06
1228#define IOPB_RES_ADDR_7 0x07
1229#define IOPB_FLAG_REG 0x08
1230#define IOPB_RES_ADDR_9 0x09
1231#define IOPB_RISC_CSR 0x0A
1232#define IOPB_RES_ADDR_B 0x0B
1233#define IOPB_RES_ADDR_C 0x0C
1234#define IOPB_RES_ADDR_D 0x0D
1235#define IOPB_SOFT_OVER_WR 0x0E
1236#define IOPB_RES_ADDR_F 0x0F
1237#define IOPB_MEM_CFG 0x10
1238#define IOPB_RES_ADDR_11 0x11
1239#define IOPB_GPIO_DATA 0x12
1240#define IOPB_RES_ADDR_13 0x13
1241#define IOPB_FLASH_PAGE 0x14
1242#define IOPB_RES_ADDR_15 0x15
1243#define IOPB_GPIO_CNTL 0x16
1244#define IOPB_RES_ADDR_17 0x17
1245#define IOPB_FLASH_DATA 0x18
1246#define IOPB_RES_ADDR_19 0x19
1247#define IOPB_RES_ADDR_1A 0x1A
1248#define IOPB_RES_ADDR_1B 0x1B
1249#define IOPB_RES_ADDR_1C 0x1C
1250#define IOPB_RES_ADDR_1D 0x1D
1251#define IOPB_RES_ADDR_1E 0x1E
1252#define IOPB_RES_ADDR_1F 0x1F
1253#define IOPB_DMA_CFG0 0x20
1254#define IOPB_DMA_CFG1 0x21
1255#define IOPB_TICKLE 0x22
1256#define IOPB_DMA_REG_WR 0x23
1257#define IOPB_SDMA_STATUS 0x24
1258#define IOPB_SCSI_BYTE_CNT 0x25
1259#define IOPB_HOST_BYTE_CNT 0x26
1260#define IOPB_BYTE_LEFT_TO_XFER 0x27
1261#define IOPB_BYTE_TO_XFER_0 0x28
1262#define IOPB_BYTE_TO_XFER_1 0x29
1263#define IOPB_BYTE_TO_XFER_2 0x2A
1264#define IOPB_BYTE_TO_XFER_3 0x2B
1265#define IOPB_ACC_GRP 0x2C
1266#define IOPB_RES_ADDR_2D 0x2D
1267#define IOPB_DEV_ID 0x2E
1268#define IOPB_RES_ADDR_2F 0x2F
1269#define IOPB_SCSI_DATA 0x30
1270#define IOPB_RES_ADDR_31 0x31
1271#define IOPB_RES_ADDR_32 0x32
1272#define IOPB_SCSI_DATA_HSHK 0x33
1273#define IOPB_SCSI_CTRL 0x34
1274#define IOPB_RES_ADDR_35 0x35
1275#define IOPB_RES_ADDR_36 0x36
1276#define IOPB_RES_ADDR_37 0x37
1277#define IOPB_RAM_BIST 0x38
1278#define IOPB_PLL_TEST 0x39
1279#define IOPB_PCI_INT_CFG 0x3A
1280#define IOPB_RES_ADDR_3B 0x3B
1281#define IOPB_RFIFO_CNT 0x3C
1282#define IOPB_RES_ADDR_3D 0x3D
1283#define IOPB_RES_ADDR_3E 0x3E
1284#define IOPB_RES_ADDR_3F 0x3F
1285
1286/*
1287 * Word I/O register address from base of 'iop_base'.
1288 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001289#define IOPW_CHIP_ID_0 0x00 /* CID0 */
1290#define IOPW_CTRL_REG 0x02 /* CC */
1291#define IOPW_RAM_ADDR 0x04 /* LA */
1292#define IOPW_RAM_DATA 0x06 /* LD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293#define IOPW_RES_ADDR_08 0x08
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001294#define IOPW_RISC_CSR 0x0A /* CSR */
1295#define IOPW_SCSI_CFG0 0x0C /* CFG0 */
1296#define IOPW_SCSI_CFG1 0x0E /* CFG1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297#define IOPW_RES_ADDR_10 0x10
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001298#define IOPW_SEL_MASK 0x12 /* SM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299#define IOPW_RES_ADDR_14 0x14
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001300#define IOPW_FLASH_ADDR 0x16 /* FA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301#define IOPW_RES_ADDR_18 0x18
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001302#define IOPW_EE_CMD 0x1A /* EC */
1303#define IOPW_EE_DATA 0x1C /* ED */
1304#define IOPW_SFIFO_CNT 0x1E /* SFC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305#define IOPW_RES_ADDR_20 0x20
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001306#define IOPW_Q_BASE 0x22 /* QB */
1307#define IOPW_QP 0x24 /* QP */
1308#define IOPW_IX 0x26 /* IX */
1309#define IOPW_SP 0x28 /* SP */
1310#define IOPW_PC 0x2A /* PC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311#define IOPW_RES_ADDR_2C 0x2C
1312#define IOPW_RES_ADDR_2E 0x2E
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001313#define IOPW_SCSI_DATA 0x30 /* SD */
1314#define IOPW_SCSI_DATA_HSHK 0x32 /* SDH */
1315#define IOPW_SCSI_CTRL 0x34 /* SC */
1316#define IOPW_HSHK_CFG 0x36 /* HCFG */
1317#define IOPW_SXFR_STATUS 0x36 /* SXS */
1318#define IOPW_SXFR_CNTL 0x38 /* SXL */
1319#define IOPW_SXFR_CNTH 0x3A /* SXH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320#define IOPW_RES_ADDR_3C 0x3C
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001321#define IOPW_RFIFO_DATA 0x3E /* RFD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323/*
1324 * Doubleword I/O register address from base of 'iop_base'.
1325 */
1326#define IOPDW_RES_ADDR_0 0x00
1327#define IOPDW_RAM_DATA 0x04
1328#define IOPDW_RES_ADDR_8 0x08
1329#define IOPDW_RES_ADDR_C 0x0C
1330#define IOPDW_RES_ADDR_10 0x10
1331#define IOPDW_COMMA 0x14
1332#define IOPDW_COMMB 0x18
1333#define IOPDW_RES_ADDR_1C 0x1C
1334#define IOPDW_SDMA_ADDR0 0x20
1335#define IOPDW_SDMA_ADDR1 0x24
1336#define IOPDW_SDMA_COUNT 0x28
1337#define IOPDW_SDMA_ERROR 0x2C
1338#define IOPDW_RDMA_ADDR0 0x30
1339#define IOPDW_RDMA_ADDR1 0x34
1340#define IOPDW_RDMA_COUNT 0x38
1341#define IOPDW_RDMA_ERROR 0x3C
1342
1343#define ADV_CHIP_ID_BYTE 0x25
1344#define ADV_CHIP_ID_WORD 0x04C1
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346#define ADV_INTR_ENABLE_HOST_INTR 0x01
1347#define ADV_INTR_ENABLE_SEL_INTR 0x02
1348#define ADV_INTR_ENABLE_DPR_INTR 0x04
1349#define ADV_INTR_ENABLE_RTA_INTR 0x08
1350#define ADV_INTR_ENABLE_RMA_INTR 0x10
1351#define ADV_INTR_ENABLE_RST_INTR 0x20
1352#define ADV_INTR_ENABLE_DPE_INTR 0x40
1353#define ADV_INTR_ENABLE_GLOBAL_INTR 0x80
1354
1355#define ADV_INTR_STATUS_INTRA 0x01
1356#define ADV_INTR_STATUS_INTRB 0x02
1357#define ADV_INTR_STATUS_INTRC 0x04
1358
1359#define ADV_RISC_CSR_STOP (0x0000)
1360#define ADV_RISC_TEST_COND (0x2000)
1361#define ADV_RISC_CSR_RUN (0x4000)
1362#define ADV_RISC_CSR_SINGLE_STEP (0x8000)
1363
1364#define ADV_CTRL_REG_HOST_INTR 0x0100
1365#define ADV_CTRL_REG_SEL_INTR 0x0200
1366#define ADV_CTRL_REG_DPR_INTR 0x0400
1367#define ADV_CTRL_REG_RTA_INTR 0x0800
1368#define ADV_CTRL_REG_RMA_INTR 0x1000
1369#define ADV_CTRL_REG_RES_BIT14 0x2000
1370#define ADV_CTRL_REG_DPE_INTR 0x4000
1371#define ADV_CTRL_REG_POWER_DONE 0x8000
1372#define ADV_CTRL_REG_ANY_INTR 0xFF00
1373
1374#define ADV_CTRL_REG_CMD_RESET 0x00C6
1375#define ADV_CTRL_REG_CMD_WR_IO_REG 0x00C5
1376#define ADV_CTRL_REG_CMD_RD_IO_REG 0x00C4
1377#define ADV_CTRL_REG_CMD_WR_PCI_CFG_SPACE 0x00C3
1378#define ADV_CTRL_REG_CMD_RD_PCI_CFG_SPACE 0x00C2
1379
1380#define ADV_TICKLE_NOP 0x00
1381#define ADV_TICKLE_A 0x01
1382#define ADV_TICKLE_B 0x02
1383#define ADV_TICKLE_C 0x03
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385#define AdvIsIntPending(port) \
1386 (AdvReadWordRegister(port, IOPW_CTRL_REG) & ADV_CTRL_REG_HOST_INTR)
1387
1388/*
1389 * SCSI_CFG0 Register bit definitions
1390 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001391#define TIMER_MODEAB 0xC000 /* Watchdog, Second, and Select. Timer Ctrl. */
1392#define PARITY_EN 0x2000 /* Enable SCSI Parity Error detection */
1393#define EVEN_PARITY 0x1000 /* Select Even Parity */
1394#define WD_LONG 0x0800 /* Watchdog Interval, 1: 57 min, 0: 13 sec */
1395#define QUEUE_128 0x0400 /* Queue Size, 1: 128 byte, 0: 64 byte */
1396#define PRIM_MODE 0x0100 /* Primitive SCSI mode */
1397#define SCAM_EN 0x0080 /* Enable SCAM selection */
1398#define SEL_TMO_LONG 0x0040 /* Sel/Resel Timeout, 1: 400 ms, 0: 1.6 ms */
1399#define CFRM_ID 0x0020 /* SCAM id sel. confirm., 1: fast, 0: 6.4 ms */
1400#define OUR_ID_EN 0x0010 /* Enable OUR_ID bits */
1401#define OUR_ID 0x000F /* SCSI ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403/*
1404 * SCSI_CFG1 Register bit definitions
1405 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001406#define BIG_ENDIAN 0x8000 /* Enable Big Endian Mode MIO:15, EEP:15 */
1407#define TERM_POL 0x2000 /* Terminator Polarity Ctrl. MIO:13, EEP:13 */
1408#define SLEW_RATE 0x1000 /* SCSI output buffer slew rate */
1409#define FILTER_SEL 0x0C00 /* Filter Period Selection */
1410#define FLTR_DISABLE 0x0000 /* Input Filtering Disabled */
1411#define FLTR_11_TO_20NS 0x0800 /* Input Filtering 11ns to 20ns */
1412#define FLTR_21_TO_39NS 0x0C00 /* Input Filtering 21ns to 39ns */
1413#define ACTIVE_DBL 0x0200 /* Disable Active Negation */
1414#define DIFF_MODE 0x0100 /* SCSI differential Mode (Read-Only) */
1415#define DIFF_SENSE 0x0080 /* 1: No SE cables, 0: SE cable (Read-Only) */
1416#define TERM_CTL_SEL 0x0040 /* Enable TERM_CTL_H and TERM_CTL_L */
1417#define TERM_CTL 0x0030 /* External SCSI Termination Bits */
1418#define TERM_CTL_H 0x0020 /* Enable External SCSI Upper Termination */
1419#define TERM_CTL_L 0x0010 /* Enable External SCSI Lower Termination */
1420#define CABLE_DETECT 0x000F /* External SCSI Cable Connection Status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422/*
1423 * Addendum for ASC-38C0800 Chip
1424 *
1425 * The ASC-38C1600 Chip uses the same definitions except that the
1426 * bus mode override bits [12:10] have been moved to byte register
1427 * offset 0xE (IOPB_SOFT_OVER_WR) bits [12:10]. The [12:10] bits in
1428 * SCSI_CFG1 are read-only and always available. Bit 14 (DIS_TERM_DRV)
1429 * is not needed. The [12:10] bits in IOPB_SOFT_OVER_WR are write-only.
1430 * Also each ASC-38C1600 function or channel uses only cable bits [5:4]
1431 * and [1:0]. Bits [14], [7:6], [3:2] are unused.
1432 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001433#define DIS_TERM_DRV 0x4000 /* 1: Read c_det[3:0], 0: cannot read */
1434#define HVD_LVD_SE 0x1C00 /* Device Detect Bits */
1435#define HVD 0x1000 /* HVD Device Detect */
1436#define LVD 0x0800 /* LVD Device Detect */
1437#define SE 0x0400 /* SE Device Detect */
1438#define TERM_LVD 0x00C0 /* LVD Termination Bits */
1439#define TERM_LVD_HI 0x0080 /* Enable LVD Upper Termination */
1440#define TERM_LVD_LO 0x0040 /* Enable LVD Lower Termination */
1441#define TERM_SE 0x0030 /* SE Termination Bits */
1442#define TERM_SE_HI 0x0020 /* Enable SE Upper Termination */
1443#define TERM_SE_LO 0x0010 /* Enable SE Lower Termination */
1444#define C_DET_LVD 0x000C /* LVD Cable Detect Bits */
1445#define C_DET3 0x0008 /* Cable Detect for LVD External Wide */
1446#define C_DET2 0x0004 /* Cable Detect for LVD Internal Wide */
1447#define C_DET_SE 0x0003 /* SE Cable Detect Bits */
1448#define C_DET1 0x0002 /* Cable Detect for SE Internal Wide */
1449#define C_DET0 0x0001 /* Cable Detect for SE Internal Narrow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451#define CABLE_ILLEGAL_A 0x7
1452 /* x 0 0 0 | on on | Illegal (all 3 connectors are used) */
1453
1454#define CABLE_ILLEGAL_B 0xB
1455 /* 0 x 0 0 | on on | Illegal (all 3 connectors are used) */
1456
1457/*
1458 * MEM_CFG Register bit definitions
1459 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001460#define BIOS_EN 0x40 /* BIOS Enable MIO:14,EEP:14 */
1461#define FAST_EE_CLK 0x20 /* Diagnostic Bit */
1462#define RAM_SZ 0x1C /* Specify size of RAM to RISC */
1463#define RAM_SZ_2KB 0x00 /* 2 KB */
1464#define RAM_SZ_4KB 0x04 /* 4 KB */
1465#define RAM_SZ_8KB 0x08 /* 8 KB */
1466#define RAM_SZ_16KB 0x0C /* 16 KB */
1467#define RAM_SZ_32KB 0x10 /* 32 KB */
1468#define RAM_SZ_64KB 0x14 /* 64 KB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470/*
1471 * DMA_CFG0 Register bit definitions
1472 *
1473 * This register is only accessible to the host.
1474 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001475#define BC_THRESH_ENB 0x80 /* PCI DMA Start Conditions */
1476#define FIFO_THRESH 0x70 /* PCI DMA FIFO Threshold */
1477#define FIFO_THRESH_16B 0x00 /* 16 bytes */
1478#define FIFO_THRESH_32B 0x20 /* 32 bytes */
1479#define FIFO_THRESH_48B 0x30 /* 48 bytes */
1480#define FIFO_THRESH_64B 0x40 /* 64 bytes */
1481#define FIFO_THRESH_80B 0x50 /* 80 bytes (default) */
1482#define FIFO_THRESH_96B 0x60 /* 96 bytes */
1483#define FIFO_THRESH_112B 0x70 /* 112 bytes */
1484#define START_CTL 0x0C /* DMA start conditions */
1485#define START_CTL_TH 0x00 /* Wait threshold level (default) */
1486#define START_CTL_ID 0x04 /* Wait SDMA/SBUS idle */
1487#define START_CTL_THID 0x08 /* Wait threshold and SDMA/SBUS idle */
1488#define START_CTL_EMFU 0x0C /* Wait SDMA FIFO empty/full */
1489#define READ_CMD 0x03 /* Memory Read Method */
1490#define READ_CMD_MR 0x00 /* Memory Read */
1491#define READ_CMD_MRL 0x02 /* Memory Read Long */
1492#define READ_CMD_MRM 0x03 /* Memory Read Multiple (default) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494/*
1495 * ASC-38C0800 RAM BIST Register bit definitions
1496 */
1497#define RAM_TEST_MODE 0x80
1498#define PRE_TEST_MODE 0x40
1499#define NORMAL_MODE 0x00
1500#define RAM_TEST_DONE 0x10
1501#define RAM_TEST_STATUS 0x0F
1502#define RAM_TEST_HOST_ERROR 0x08
1503#define RAM_TEST_INTRAM_ERROR 0x04
1504#define RAM_TEST_RISC_ERROR 0x02
1505#define RAM_TEST_SCSI_ERROR 0x01
1506#define RAM_TEST_SUCCESS 0x00
1507#define PRE_TEST_VALUE 0x05
1508#define NORMAL_VALUE 0x00
1509
1510/*
1511 * ASC38C1600 Definitions
1512 *
1513 * IOPB_PCI_INT_CFG Bit Field Definitions
1514 */
1515
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001516#define INTAB_LD 0x80 /* Value loaded from EEPROM Bit 11. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518/*
1519 * Bit 1 can be set to change the interrupt for the Function to operate in
1520 * Totem Pole mode. By default Bit 1 is 0 and the interrupt operates in
1521 * Open Drain mode. Both functions of the ASC38C1600 must be set to the same
1522 * mode, otherwise the operating mode is undefined.
1523 */
1524#define TOTEMPOLE 0x02
1525
1526/*
1527 * Bit 0 can be used to change the Int Pin for the Function. The value is
1528 * 0 by default for both Functions with Function 0 using INT A and Function
1529 * B using INT B. For Function 0 if set, INT B is used. For Function 1 if set,
1530 * INT A is used.
1531 *
1532 * EEPROM Word 0 Bit 11 for each Function may change the initial Int Pin
1533 * value specified in the PCI Configuration Space.
1534 */
1535#define INTAB 0x01
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537/*
1538 * Adv Library Status Definitions
1539 */
1540#define ADV_TRUE 1
1541#define ADV_FALSE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542#define ADV_SUCCESS 1
1543#define ADV_BUSY 0
1544#define ADV_ERROR (-1)
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546/*
1547 * ADV_DVC_VAR 'warn_code' values
1548 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001549#define ASC_WARN_BUSRESET_ERROR 0x0001 /* SCSI Bus Reset error */
1550#define ASC_WARN_EEPROM_CHKSUM 0x0002 /* EEP check sum error */
1551#define ASC_WARN_EEPROM_TERMINATION 0x0004 /* EEP termination bad field */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001552#define ASC_WARN_ERROR 0xFFFF /* ADV_ERROR return */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001554#define ADV_MAX_TID 15 /* max. target identifier */
1555#define ADV_MAX_LUN 7 /* max. logical unit number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 * Fixed locations of microcode operating variables.
1559 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001560#define ASC_MC_CODE_BEGIN_ADDR 0x0028 /* microcode start address */
1561#define ASC_MC_CODE_END_ADDR 0x002A /* microcode end address */
1562#define ASC_MC_CODE_CHK_SUM 0x002C /* microcode code checksum */
1563#define ASC_MC_VERSION_DATE 0x0038 /* microcode version */
1564#define ASC_MC_VERSION_NUM 0x003A /* microcode number */
1565#define ASC_MC_BIOSMEM 0x0040 /* BIOS RISC Memory Start */
1566#define ASC_MC_BIOSLEN 0x0050 /* BIOS RISC Memory Length */
1567#define ASC_MC_BIOS_SIGNATURE 0x0058 /* BIOS Signature 0x55AA */
1568#define ASC_MC_BIOS_VERSION 0x005A /* BIOS Version (2 bytes) */
1569#define ASC_MC_SDTR_SPEED1 0x0090 /* SDTR Speed for TID 0-3 */
1570#define ASC_MC_SDTR_SPEED2 0x0092 /* SDTR Speed for TID 4-7 */
1571#define ASC_MC_SDTR_SPEED3 0x0094 /* SDTR Speed for TID 8-11 */
1572#define ASC_MC_SDTR_SPEED4 0x0096 /* SDTR Speed for TID 12-15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573#define ASC_MC_CHIP_TYPE 0x009A
1574#define ASC_MC_INTRB_CODE 0x009B
1575#define ASC_MC_WDTR_ABLE 0x009C
1576#define ASC_MC_SDTR_ABLE 0x009E
1577#define ASC_MC_TAGQNG_ABLE 0x00A0
1578#define ASC_MC_DISC_ENABLE 0x00A2
1579#define ASC_MC_IDLE_CMD_STATUS 0x00A4
1580#define ASC_MC_IDLE_CMD 0x00A6
1581#define ASC_MC_IDLE_CMD_PARAMETER 0x00A8
1582#define ASC_MC_DEFAULT_SCSI_CFG0 0x00AC
1583#define ASC_MC_DEFAULT_SCSI_CFG1 0x00AE
1584#define ASC_MC_DEFAULT_MEM_CFG 0x00B0
1585#define ASC_MC_DEFAULT_SEL_MASK 0x00B2
1586#define ASC_MC_SDTR_DONE 0x00B6
1587#define ASC_MC_NUMBER_OF_QUEUED_CMD 0x00C0
1588#define ASC_MC_NUMBER_OF_MAX_CMD 0x00D0
1589#define ASC_MC_DEVICE_HSHK_CFG_TABLE 0x0100
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001590#define ASC_MC_CONTROL_FLAG 0x0122 /* Microcode control flag. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591#define ASC_MC_WDTR_DONE 0x0124
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001592#define ASC_MC_CAM_MODE_MASK 0x015E /* CAM mode TID bitmask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593#define ASC_MC_ICQ 0x0160
1594#define ASC_MC_IRQ 0x0164
1595#define ASC_MC_PPR_ABLE 0x017A
1596
1597/*
1598 * BIOS LRAM variable absolute offsets.
1599 */
1600#define BIOS_CODESEG 0x54
1601#define BIOS_CODELEN 0x56
1602#define BIOS_SIGNATURE 0x58
1603#define BIOS_VERSION 0x5A
1604
1605/*
1606 * Microcode Control Flags
1607 *
1608 * Flags set by the Adv Library in RISC variable 'control_flag' (0x122)
1609 * and handled by the microcode.
1610 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001611#define CONTROL_FLAG_IGNORE_PERR 0x0001 /* Ignore DMA Parity Errors */
1612#define CONTROL_FLAG_ENABLE_AIPP 0x0002 /* Enabled AIPP checking. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614/*
1615 * ASC_MC_DEVICE_HSHK_CFG_TABLE microcode table or HSHK_CFG register format
1616 */
1617#define HSHK_CFG_WIDE_XFR 0x8000
1618#define HSHK_CFG_RATE 0x0F00
1619#define HSHK_CFG_OFFSET 0x001F
1620
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001621#define ASC_DEF_MAX_HOST_QNG 0xFD /* Max. number of host commands (253) */
1622#define ASC_DEF_MIN_HOST_QNG 0x10 /* Min. number of host commands (16) */
1623#define ASC_DEF_MAX_DVC_QNG 0x3F /* Max. number commands per device (63) */
1624#define ASC_DEF_MIN_DVC_QNG 0x04 /* Min. number commands per device (4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001626#define ASC_QC_DATA_CHECK 0x01 /* Require ASC_QC_DATA_OUT set or clear. */
1627#define ASC_QC_DATA_OUT 0x02 /* Data out DMA transfer. */
1628#define ASC_QC_START_MOTOR 0x04 /* Send auto-start motor before request. */
1629#define ASC_QC_NO_OVERRUN 0x08 /* Don't report overrun. */
1630#define ASC_QC_FREEZE_TIDQ 0x10 /* Freeze TID queue after request. XXX TBD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001632#define ASC_QSC_NO_DISC 0x01 /* Don't allow disconnect for request. */
1633#define ASC_QSC_NO_TAGMSG 0x02 /* Don't allow tag queuing for request. */
1634#define ASC_QSC_NO_SYNC 0x04 /* Don't use Synch. transfer on request. */
1635#define ASC_QSC_NO_WIDE 0x08 /* Don't use Wide transfer on request. */
1636#define ASC_QSC_REDO_DTR 0x10 /* Renegotiate WDTR/SDTR before request. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637/*
1638 * Note: If a Tag Message is to be sent and neither ASC_QSC_HEAD_TAG or
1639 * ASC_QSC_ORDERED_TAG is set, then a Simple Tag Message (0x20) is used.
1640 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001641#define ASC_QSC_HEAD_TAG 0x40 /* Use Head Tag Message (0x21). */
1642#define ASC_QSC_ORDERED_TAG 0x80 /* Use Ordered Tag Message (0x22). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644/*
1645 * All fields here are accessed by the board microcode and need to be
1646 * little-endian.
1647 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001648typedef struct adv_carr_t {
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001649 __le32 carr_va; /* Carrier Virtual Address */
1650 __le32 carr_pa; /* Carrier Physical Address */
Hannes Reinecke9fef6ba2015-04-24 13:18:33 +02001651 __le32 areq_vpa; /* ADV_SCSI_REQ_Q Virtual or Physical Address */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001652 /*
1653 * next_vpa [31:4] Carrier Virtual or Physical Next Pointer
1654 *
1655 * next_vpa [3:1] Reserved Bits
1656 * next_vpa [0] Done Flag set in Response Queue.
1657 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001658 __le32 next_vpa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659} ADV_CARR_T;
1660
1661/*
1662 * Mask used to eliminate low 4 bits of carrier 'next_vpa' field.
1663 */
Hannes Reinecke084e6c32015-04-24 13:18:35 +02001664#define ADV_NEXT_VPA_MASK 0xFFFFFFF0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Hannes Reinecke084e6c32015-04-24 13:18:35 +02001666#define ADV_RQ_DONE 0x00000001
1667#define ADV_RQ_GOOD 0x00000002
1668#define ADV_CQ_STOPPER 0x00000000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Hannes Reinecke084e6c32015-04-24 13:18:35 +02001670#define ADV_GET_CARRP(carrp) ((carrp) & ADV_NEXT_VPA_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001672/*
1673 * Each carrier is 64 bytes, and we need three additional
1674 * carrier for icq, irq, and the termination carrier.
1675 */
1676#define ADV_CARRIER_COUNT (ASC_DEF_MAX_HOST_QNG + 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678#define ADV_CARRIER_BUFSIZE \
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001679 (ADV_CARRIER_COUNT * sizeof(ADV_CARR_T))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001681#define ADV_CHIP_ASC3550 0x01 /* Ultra-Wide IC */
1682#define ADV_CHIP_ASC38C0800 0x02 /* Ultra2-Wide/LVD IC */
1683#define ADV_CHIP_ASC38C1600 0x03 /* Ultra3-Wide/LVD2 IC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685/*
1686 * Adapter temporary configuration structure
1687 *
1688 * This structure can be discarded after initialization. Don't add
1689 * fields here needed after initialization.
1690 *
1691 * Field naming convention:
1692 *
1693 * *_enable indicates the field enables or disables a feature. The
1694 * value of the field is never reset.
1695 */
1696typedef struct adv_dvc_cfg {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001697 ushort disc_enable; /* enable disconnection */
1698 uchar chip_version; /* chip version */
1699 uchar termination; /* Term. Ctrl. bits 6-5 of SCSI_CFG1 register */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001700 ushort control_flag; /* Microcode Control Flag */
1701 ushort mcode_date; /* Microcode date */
1702 ushort mcode_version; /* Microcode version */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001703 ushort serial1; /* EEPROM serial number word 1 */
1704 ushort serial2; /* EEPROM serial number word 2 */
1705 ushort serial3; /* EEPROM serial number word 3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706} ADV_DVC_CFG;
1707
1708struct adv_dvc_var;
1709struct adv_scsi_req_q;
1710
Hannes Reinecke0ce53822015-04-24 13:18:25 +02001711typedef struct adv_sg_block {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001712 uchar reserved1;
1713 uchar reserved2;
1714 uchar reserved3;
1715 uchar sg_cnt; /* Valid entries in block. */
Hannes Reinecke0ce53822015-04-24 13:18:25 +02001716 __le32 sg_ptr; /* Pointer to next sg block. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001717 struct {
Hannes Reinecke0ce53822015-04-24 13:18:25 +02001718 __le32 sg_addr; /* SG element address. */
1719 __le32 sg_count; /* SG element count. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001720 } sg_list[NO_OF_SG_PER_BLOCK];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721} ADV_SG_BLOCK;
1722
1723/*
1724 * ADV_SCSI_REQ_Q - microcode request structure
1725 *
1726 * All fields in this structure up to byte 60 are used by the microcode.
1727 * The microcode makes assumptions about the size and ordering of fields
1728 * in this structure. Do not change the structure definition here without
1729 * coordinating the change with the microcode.
1730 *
1731 * All fields accessed by microcode must be maintained in little_endian
1732 * order.
1733 */
1734typedef struct adv_scsi_req_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001735 uchar cntl; /* Ucode flags and state (ASC_MC_QC_*). */
1736 uchar target_cmd;
1737 uchar target_id; /* Device target identifier. */
1738 uchar target_lun; /* Device target logical unit number. */
Hannes Reinecke95cfab62015-04-24 13:18:27 +02001739 __le32 data_addr; /* Data buffer physical address. */
1740 __le32 data_cnt; /* Data count. Ucode sets to residual. */
Hannes Reinecke811ddc02015-04-24 13:18:22 +02001741 __le32 sense_addr;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001742 __le32 carr_pa;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001743 uchar mflag;
1744 uchar sense_len;
1745 uchar cdb_len; /* SCSI CDB length. Must <= 16 bytes. */
1746 uchar scsi_cntl;
1747 uchar done_status; /* Completion status. */
1748 uchar scsi_status; /* SCSI status byte. */
1749 uchar host_status; /* Ucode host status. */
1750 uchar sg_working_ix;
1751 uchar cdb[12]; /* SCSI CDB bytes 0-11. */
Hannes Reinecke95cfab62015-04-24 13:18:27 +02001752 __le32 sg_real_addr; /* SG list physical address. */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001753 __le32 scsiq_rptr;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001754 uchar cdb16[4]; /* SCSI CDB bytes 12-15. */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001755 __le32 scsiq_ptr;
1756 __le32 carr_va;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001757 /*
1758 * End of microcode structure - 60 bytes. The rest of the structure
1759 * is used by the Adv Library and ignored by the microcode.
1760 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02001761 u32 srb_tag;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001762 ADV_SG_BLOCK *sg_list_ptr; /* SG list virtual address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763} ADV_SCSI_REQ_Q;
1764
1765/*
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001766 * The following two structures are used to process Wide Board requests.
1767 *
1768 * The ADV_SCSI_REQ_Q structure in adv_req_t is passed to the Adv Library
Hannes Reinecke9c17c622015-04-24 13:18:21 +02001769 * and microcode with the ADV_SCSI_REQ_Q field 'srb_tag' set to the
1770 * SCSI request tag. The adv_req_t structure 'cmndp' field in turn points
1771 * to the Mid-Level SCSI request structure.
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001772 *
1773 * Zero or more ADV_SG_BLOCK are used with each ADV_SCSI_REQ_Q. Each
1774 * ADV_SG_BLOCK structure holds 15 scatter-gather elements. Under Linux
1775 * up to 255 scatter-gather elements may be used per request or
1776 * ADV_SCSI_REQ_Q.
1777 *
1778 * Both structures must be 32 byte aligned.
1779 */
1780typedef struct adv_sgblk {
1781 ADV_SG_BLOCK sg_block; /* Sgblock structure. */
Hannes Reinecke0ce53822015-04-24 13:18:25 +02001782 dma_addr_t sg_addr; /* Physical address */
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001783 struct adv_sgblk *next_sgblkp; /* Next scatter-gather structure. */
1784} adv_sgblk_t;
1785
1786typedef struct adv_req {
1787 ADV_SCSI_REQ_Q scsi_req_q; /* Adv Library request structure. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02001788 uchar align[24]; /* Request structure padding. */
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001789 struct scsi_cmnd *cmndp; /* Mid-Level SCSI command pointer. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02001790 dma_addr_t req_addr;
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001791 adv_sgblk_t *sgblkp; /* Adv Library scatter-gather pointer. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02001792} adv_req_t __aligned(32);
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001793
1794/*
1795 * Adapter operation variable structure.
1796 *
1797 * One structure is required per host adapter.
1798 *
1799 * Field naming convention:
1800 *
1801 * *_able indicates both whether a feature should be enabled or disabled
ganjishengce0b6e32021-03-26 11:04:12 +08001802 * and whether a device is capable of the feature. At initialization
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001803 * this field may be set, but later if a device is found to be incapable
1804 * of the feature, the field is cleared.
1805 */
1806typedef struct adv_dvc_var {
1807 AdvPortAddr iop_base; /* I/O port address */
1808 ushort err_code; /* fatal error code */
1809 ushort bios_ctrl; /* BIOS control word, EEPROM word 12 */
1810 ushort wdtr_able; /* try WDTR for a device */
1811 ushort sdtr_able; /* try SDTR for a device */
1812 ushort ultra_able; /* try SDTR Ultra speed for a device */
1813 ushort sdtr_speed1; /* EEPROM SDTR Speed for TID 0-3 */
1814 ushort sdtr_speed2; /* EEPROM SDTR Speed for TID 4-7 */
1815 ushort sdtr_speed3; /* EEPROM SDTR Speed for TID 8-11 */
1816 ushort sdtr_speed4; /* EEPROM SDTR Speed for TID 12-15 */
1817 ushort tagqng_able; /* try tagged queuing with a device */
1818 ushort ppr_able; /* PPR message capable per TID bitmask. */
1819 uchar max_dvc_qng; /* maximum number of tagged commands per device */
1820 ushort start_motor; /* start motor command allowed */
1821 uchar scsi_reset_wait; /* delay in seconds after scsi bus reset */
1822 uchar chip_no; /* should be assigned by caller */
1823 uchar max_host_qng; /* maximum number of Q'ed command allowed */
1824 ushort no_scam; /* scam_tolerant of EEPROM */
1825 struct asc_board *drv_ptr; /* driver pointer to private structure */
1826 uchar chip_scsi_id; /* chip SCSI target ID */
1827 uchar chip_type;
1828 uchar bist_err_code;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001829 ADV_CARR_T *carrier;
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001830 ADV_CARR_T *carr_freelist; /* Carrier free list. */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001831 dma_addr_t carrier_addr;
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001832 ADV_CARR_T *icq_sp; /* Initiator command queue stopper pointer. */
1833 ADV_CARR_T *irq_sp; /* Initiator response queue stopper pointer. */
1834 ushort carr_pending_cnt; /* Count of pending carriers. */
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001835 /*
1836 * Note: The following fields will not be used after initialization. The
1837 * driver may discard the buffer after initialization is done.
1838 */
1839 ADV_DVC_CFG *cfg; /* temporary configuration structure */
1840} ADV_DVC_VAR;
1841
1842/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 * Microcode idle loop commands
1844 */
1845#define IDLE_CMD_COMPLETED 0
1846#define IDLE_CMD_STOP_CHIP 0x0001
1847#define IDLE_CMD_STOP_CHIP_SEND_INT 0x0002
1848#define IDLE_CMD_SEND_INT 0x0004
1849#define IDLE_CMD_ABORT 0x0008
1850#define IDLE_CMD_DEVICE_RESET 0x0010
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001851#define IDLE_CMD_SCSI_RESET_START 0x0020 /* Assert SCSI Bus Reset */
1852#define IDLE_CMD_SCSI_RESET_END 0x0040 /* Deassert SCSI Bus Reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853#define IDLE_CMD_SCSIREQ 0x0080
1854
1855#define IDLE_CMD_STATUS_SUCCESS 0x0001
1856#define IDLE_CMD_STATUS_FAILURE 0x0002
1857
1858/*
1859 * AdvSendIdleCmd() flag definitions.
1860 */
1861#define ADV_NOWAIT 0x01
1862
1863/*
1864 * Wait loop time out values.
1865 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001866#define SCSI_WAIT_100_MSEC 100UL /* 100 milliseconds */
1867#define SCSI_US_PER_MSEC 1000 /* microseconds per millisecond */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001868#define SCSI_MAX_RETRY 10 /* retry count */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001870#define ADV_ASYNC_RDMA_FAILURE 0x01 /* Fatal RDMA failure. */
1871#define ADV_ASYNC_SCSI_BUS_RESET_DET 0x02 /* Detected SCSI Bus Reset. */
1872#define ADV_ASYNC_CARRIER_READY_FAILURE 0x03 /* Carrier Ready failure. */
1873#define ADV_RDMA_IN_CARR_AND_Q_INVALID 0x04 /* RDMAed-in data invalid. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001875#define ADV_HOST_SCSI_BUS_RESET 0x80 /* Host Initiated SCSI Bus Reset. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877/* Read byte from a register. */
1878#define AdvReadByteRegister(iop_base, reg_off) \
1879 (ADV_MEM_READB((iop_base) + (reg_off)))
1880
1881/* Write byte to a register. */
1882#define AdvWriteByteRegister(iop_base, reg_off, byte) \
1883 (ADV_MEM_WRITEB((iop_base) + (reg_off), (byte)))
1884
1885/* Read word (2 bytes) from a register. */
1886#define AdvReadWordRegister(iop_base, reg_off) \
1887 (ADV_MEM_READW((iop_base) + (reg_off)))
1888
1889/* Write word (2 bytes) to a register. */
1890#define AdvWriteWordRegister(iop_base, reg_off, word) \
1891 (ADV_MEM_WRITEW((iop_base) + (reg_off), (word)))
1892
1893/* Write dword (4 bytes) to a register. */
1894#define AdvWriteDWordRegister(iop_base, reg_off, dword) \
1895 (ADV_MEM_WRITEDW((iop_base) + (reg_off), (dword)))
1896
1897/* Read byte from LRAM. */
1898#define AdvReadByteLram(iop_base, addr, byte) \
1899do { \
1900 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)); \
1901 (byte) = ADV_MEM_READB((iop_base) + IOPB_RAM_DATA); \
1902} while (0)
1903
1904/* Write byte to LRAM. */
1905#define AdvWriteByteLram(iop_base, addr, byte) \
1906 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
1907 ADV_MEM_WRITEB((iop_base) + IOPB_RAM_DATA, (byte)))
1908
1909/* Read word (2 bytes) from LRAM. */
1910#define AdvReadWordLram(iop_base, addr, word) \
1911do { \
1912 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)); \
1913 (word) = (ADV_MEM_READW((iop_base) + IOPW_RAM_DATA)); \
1914} while (0)
1915
1916/* Write word (2 bytes) to LRAM. */
1917#define AdvWriteWordLram(iop_base, addr, word) \
1918 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
1919 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, (word)))
1920
1921/* Write little-endian double word (4 bytes) to LRAM */
1922/* Because of unspecified C language ordering don't use auto-increment. */
1923#define AdvWriteDWordLramNoSwap(iop_base, addr, dword) \
1924 ((ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
1925 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, \
1926 cpu_to_le16((ushort) ((dword) & 0xFFFF)))), \
1927 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr) + 2), \
1928 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, \
1929 cpu_to_le16((ushort) ((dword >> 16) & 0xFFFF)))))
1930
1931/* Read word (2 bytes) from LRAM assuming that the address is already set. */
1932#define AdvReadWordAutoIncLram(iop_base) \
1933 (ADV_MEM_READW((iop_base) + IOPW_RAM_DATA))
1934
1935/* Write word (2 bytes) to LRAM assuming that the address is already set. */
1936#define AdvWriteWordAutoIncLram(iop_base, word) \
1937 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, (word)))
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939/*
1940 * Define macro to check for Condor signature.
1941 *
1942 * Evaluate to ADV_TRUE if a Condor chip is found the specified port
1943 * address 'iop_base'. Otherwise evalue to ADV_FALSE.
1944 */
1945#define AdvFindSignature(iop_base) \
1946 (((AdvReadByteRegister((iop_base), IOPB_CHIP_ID_1) == \
1947 ADV_CHIP_ID_BYTE) && \
1948 (AdvReadWordRegister((iop_base), IOPW_CHIP_ID_0) == \
1949 ADV_CHIP_ID_WORD)) ? ADV_TRUE : ADV_FALSE)
1950
1951/*
1952 * Define macro to Return the version number of the chip at 'iop_base'.
1953 *
1954 * The second parameter 'bus_type' is currently unused.
1955 */
1956#define AdvGetChipVersion(iop_base, bus_type) \
1957 AdvReadByteRegister((iop_base), IOPB_CHIP_TYPE_REV)
1958
1959/*
Hannes Reinecke9c17c622015-04-24 13:18:21 +02001960 * Abort an SRB in the chip's RISC Memory. The 'srb_tag' argument must
Hannes Reinecke9fef6ba2015-04-24 13:18:33 +02001961 * match the ADV_SCSI_REQ_Q 'srb_tag' field.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 *
1963 * If the request has not yet been sent to the device it will simply be
1964 * aborted from RISC memory. If the request is disconnected it will be
1965 * aborted on reselection by sending an Abort Message to the target ID.
1966 *
1967 * Return value:
1968 * ADV_TRUE(1) - Queue was successfully aborted.
1969 * ADV_FALSE(0) - Queue was not found on the active queue list.
1970 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02001971#define AdvAbortQueue(asc_dvc, srb_tag) \
1972 AdvSendIdleCmd((asc_dvc), (ushort) IDLE_CMD_ABORT, \
1973 (ADV_DCNT) (srb_tag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975/*
1976 * Send a Bus Device Reset Message to the specified target ID.
1977 *
1978 * All outstanding commands will be purged if sending the
1979 * Bus Device Reset Message is successful.
1980 *
1981 * Return Value:
1982 * ADV_TRUE(1) - All requests on the target are purged.
1983 * ADV_FALSE(0) - Couldn't issue Bus Device Reset Message; Requests
1984 * are not purged.
1985 */
1986#define AdvResetDevice(asc_dvc, target_id) \
Hannes Reinecke9c17c622015-04-24 13:18:21 +02001987 AdvSendIdleCmd((asc_dvc), (ushort) IDLE_CMD_DEVICE_RESET, \
1988 (ADV_DCNT) (target_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990/*
1991 * SCSI Wide Type definition.
1992 */
1993#define ADV_SCSI_BIT_ID_TYPE ushort
1994
1995/*
1996 * AdvInitScsiTarget() 'cntl_flag' options.
1997 */
1998#define ADV_SCAN_LUN 0x01
1999#define ADV_CAPINFO_NOLUN 0x02
2000
2001/*
2002 * Convert target id to target id bit mask.
2003 */
2004#define ADV_TID_TO_TIDMASK(tid) (0x01 << ((tid) & ADV_MAX_TID))
2005
2006/*
Hannes Reinecke9fef6ba2015-04-24 13:18:33 +02002007 * ADV_SCSI_REQ_Q 'done_status' and 'host_status' return values.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 */
2009
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002010#define QD_NO_STATUS 0x00 /* Request not completed yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011#define QD_NO_ERROR 0x01
2012#define QD_ABORTED_BY_HOST 0x02
2013#define QD_WITH_ERROR 0x04
2014
2015#define QHSTA_NO_ERROR 0x00
2016#define QHSTA_M_SEL_TIMEOUT 0x11
2017#define QHSTA_M_DATA_OVER_RUN 0x12
2018#define QHSTA_M_UNEXPECTED_BUS_FREE 0x13
2019#define QHSTA_M_QUEUE_ABORTED 0x15
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002020#define QHSTA_M_SXFR_SDMA_ERR 0x16 /* SXFR_STATUS SCSI DMA Error */
2021#define QHSTA_M_SXFR_SXFR_PERR 0x17 /* SXFR_STATUS SCSI Bus Parity Error */
2022#define QHSTA_M_RDMA_PERR 0x18 /* RISC PCI DMA parity error */
2023#define QHSTA_M_SXFR_OFF_UFLW 0x19 /* SXFR_STATUS Offset Underflow */
2024#define QHSTA_M_SXFR_OFF_OFLW 0x20 /* SXFR_STATUS Offset Overflow */
2025#define QHSTA_M_SXFR_WD_TMO 0x21 /* SXFR_STATUS Watchdog Timeout */
2026#define QHSTA_M_SXFR_DESELECTED 0x22 /* SXFR_STATUS Deselected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027/* Note: QHSTA_M_SXFR_XFR_OFLW is identical to QHSTA_M_DATA_OVER_RUN. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002028#define QHSTA_M_SXFR_XFR_OFLW 0x12 /* SXFR_STATUS Transfer Overflow */
2029#define QHSTA_M_SXFR_XFR_PH_ERR 0x24 /* SXFR_STATUS Transfer Phase Error */
2030#define QHSTA_M_SXFR_UNKNOWN_ERROR 0x25 /* SXFR_STATUS Unknown Error */
2031#define QHSTA_M_SCSI_BUS_RESET 0x30 /* Request aborted from SBR */
2032#define QHSTA_M_SCSI_BUS_RESET_UNSOL 0x31 /* Request aborted from unsol. SBR */
2033#define QHSTA_M_BUS_DEVICE_RESET 0x32 /* Request aborted from BDR */
2034#define QHSTA_M_DIRECTION_ERR 0x35 /* Data Phase mismatch */
2035#define QHSTA_M_DIRECTION_ERR_HUNG 0x36 /* Data Phase mismatch and bus hang */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036#define QHSTA_M_WTM_TIMEOUT 0x41
2037#define QHSTA_M_BAD_CMPL_STATUS_IN 0x42
2038#define QHSTA_M_NO_AUTO_REQ_SENSE 0x43
2039#define QHSTA_M_AUTO_REQ_SENSE_FAIL 0x44
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002040#define QHSTA_M_INVALID_DEVICE 0x45 /* Bad target ID */
2041#define QHSTA_M_FROZEN_TIDQ 0x46 /* TID Queue frozen. */
2042#define QHSTA_M_SGBACKUP_ERROR 0x47 /* Scatter-Gather backup error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044/* Return the address that is aligned at the next doubleword >= to 'addr'. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045#define ADV_32BALIGN(addr) (((ulong) (addr) + 0x1F) & ~0x1F)
2046
2047/*
2048 * Total contiguous memory needed for driver SG blocks.
2049 *
2050 * ADV_MAX_SG_LIST must be defined by a driver. It is the maximum
2051 * number of scatter-gather elements the driver supports in a
2052 * single request.
2053 */
2054
2055#define ADV_SG_LIST_MAX_BYTE_SIZE \
2056 (sizeof(ADV_SG_BLOCK) * \
2057 ((ADV_MAX_SG_LIST + (NO_OF_SG_PER_BLOCK - 1))/NO_OF_SG_PER_BLOCK))
2058
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002059/* struct asc_board flags */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002060#define ASC_IS_WIDE_BOARD 0x04 /* AdvanSys Wide Board */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062#define ASC_NARROW_BOARD(boardp) (((boardp)->flags & ASC_IS_WIDE_BOARD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002064#define NO_ISA_DMA 0xff /* No ISA DMA Channel Used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002066#define ASC_INFO_SIZE 128 /* advansys_info() line size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/* Asc Library return codes */
2069#define ASC_TRUE 1
2070#define ASC_FALSE 0
2071#define ASC_NOERROR 1
2072#define ASC_BUSY 0
2073#define ASC_ERROR (-1)
2074
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002075#define ASC_STATS(shost, counter) ASC_STATS_ADD(shost, counter, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076#ifndef ADVANSYS_STATS
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002077#define ASC_STATS_ADD(shost, counter, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078#else /* ADVANSYS_STATS */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002079#define ASC_STATS_ADD(shost, counter, count) \
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002080 (((struct asc_board *) shost_priv(shost))->asc_stats.counter += (count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081#endif /* ADVANSYS_STATS */
2082
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083/* If the result wraps when calculating tenths, return 0. */
2084#define ASC_TENTHS(num, den) \
2085 (((10 * ((num)/(den))) > (((num) * 10)/(den))) ? \
2086 0 : ((((num) * 10)/(den)) - (10 * ((num)/(den)))))
2087
2088/*
2089 * Display a message to the console.
2090 */
2091#define ASC_PRINT(s) \
2092 { \
2093 printk("advansys: "); \
2094 printk(s); \
2095 }
2096
2097#define ASC_PRINT1(s, a1) \
2098 { \
2099 printk("advansys: "); \
2100 printk((s), (a1)); \
2101 }
2102
2103#define ASC_PRINT2(s, a1, a2) \
2104 { \
2105 printk("advansys: "); \
2106 printk((s), (a1), (a2)); \
2107 }
2108
2109#define ASC_PRINT3(s, a1, a2, a3) \
2110 { \
2111 printk("advansys: "); \
2112 printk((s), (a1), (a2), (a3)); \
2113 }
2114
2115#define ASC_PRINT4(s, a1, a2, a3, a4) \
2116 { \
2117 printk("advansys: "); \
2118 printk((s), (a1), (a2), (a3), (a4)); \
2119 }
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121#ifndef ADVANSYS_DEBUG
2122
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002123#define ASC_DBG(lvl, s...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124#define ASC_DBG_PRT_SCSI_HOST(lvl, s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125#define ASC_DBG_PRT_ASC_SCSI_Q(lvl, scsiqp)
2126#define ASC_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp)
2127#define ASC_DBG_PRT_ASC_QDONE_INFO(lvl, qdone)
2128#define ADV_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp)
2129#define ASC_DBG_PRT_HEX(lvl, name, start, length)
2130#define ASC_DBG_PRT_CDB(lvl, cdb, len)
2131#define ASC_DBG_PRT_SENSE(lvl, sense, len)
2132#define ASC_DBG_PRT_INQUIRY(lvl, inq, len)
2133
2134#else /* ADVANSYS_DEBUG */
2135
2136/*
2137 * Debugging Message Levels:
2138 * 0: Errors Only
2139 * 1: High-Level Tracing
2140 * 2-N: Verbose Tracing
2141 */
2142
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002143#define ASC_DBG(lvl, format, arg...) { \
2144 if (asc_dbglvl >= (lvl)) \
2145 printk(KERN_DEBUG "%s: %s: " format, DRV_NAME, \
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002146 __func__ , ## arg); \
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149#define ASC_DBG_PRT_SCSI_HOST(lvl, s) \
2150 { \
2151 if (asc_dbglvl >= (lvl)) { \
2152 asc_prt_scsi_host(s); \
2153 } \
2154 }
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156#define ASC_DBG_PRT_ASC_SCSI_Q(lvl, scsiqp) \
2157 { \
2158 if (asc_dbglvl >= (lvl)) { \
2159 asc_prt_asc_scsi_q(scsiqp); \
2160 } \
2161 }
2162
2163#define ASC_DBG_PRT_ASC_QDONE_INFO(lvl, qdone) \
2164 { \
2165 if (asc_dbglvl >= (lvl)) { \
2166 asc_prt_asc_qdone_info(qdone); \
2167 } \
2168 }
2169
2170#define ASC_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp) \
2171 { \
2172 if (asc_dbglvl >= (lvl)) { \
2173 asc_prt_adv_scsi_req_q(scsiqp); \
2174 } \
2175 }
2176
2177#define ASC_DBG_PRT_HEX(lvl, name, start, length) \
2178 { \
2179 if (asc_dbglvl >= (lvl)) { \
2180 asc_prt_hex((name), (start), (length)); \
2181 } \
2182 }
2183
2184#define ASC_DBG_PRT_CDB(lvl, cdb, len) \
2185 ASC_DBG_PRT_HEX((lvl), "CDB", (uchar *) (cdb), (len));
2186
2187#define ASC_DBG_PRT_SENSE(lvl, sense, len) \
2188 ASC_DBG_PRT_HEX((lvl), "SENSE", (uchar *) (sense), (len));
2189
2190#define ASC_DBG_PRT_INQUIRY(lvl, inq, len) \
2191 ASC_DBG_PRT_HEX((lvl), "INQUIRY", (uchar *) (inq), (len));
2192#endif /* ADVANSYS_DEBUG */
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194#ifdef ADVANSYS_STATS
2195
2196/* Per board statistics structure */
2197struct asc_stats {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002198 /* Driver Entrypoint Statistics */
Hannes Reinecke95cfab62015-04-24 13:18:27 +02002199 unsigned int queuecommand; /* # calls to advansys_queuecommand() */
2200 unsigned int reset; /* # calls to advansys_eh_bus_reset() */
2201 unsigned int biosparam; /* # calls to advansys_biosparam() */
2202 unsigned int interrupt; /* # advansys_interrupt() calls */
2203 unsigned int callback; /* # calls to asc/adv_isr_callback() */
2204 unsigned int done; /* # calls to request's scsi_done function */
2205 unsigned int build_error; /* # asc/adv_build_req() ASC_ERROR returns. */
2206 unsigned int adv_build_noreq; /* # adv_build_req() adv_req_t alloc. fail. */
2207 unsigned int adv_build_nosg; /* # adv_build_req() adv_sgblk_t alloc. fail. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002208 /* AscExeScsiQueue()/AdvExeScsiQueue() Statistics */
Hannes Reinecke95cfab62015-04-24 13:18:27 +02002209 unsigned int exe_noerror; /* # ASC_NOERROR returns. */
2210 unsigned int exe_busy; /* # ASC_BUSY returns. */
2211 unsigned int exe_error; /* # ASC_ERROR returns. */
2212 unsigned int exe_unknown; /* # unknown returns. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002213 /* Data Transfer Statistics */
Hannes Reinecke95cfab62015-04-24 13:18:27 +02002214 unsigned int xfer_cnt; /* # I/O requests received */
2215 unsigned int xfer_elem; /* # scatter-gather elements */
2216 unsigned int xfer_sect; /* # 512-byte blocks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217};
2218#endif /* ADVANSYS_STATS */
2219
2220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 * Structure allocated for each board.
2222 *
Matthew Wilcox8dfb5372007-07-30 09:08:34 -06002223 * This structure is allocated by scsi_host_alloc() at the end
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 * of the 'Scsi_Host' structure starting at the 'hostdata'
2225 * field. It is guaranteed to be allocated from DMA-able memory.
2226 */
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002227struct asc_board {
Matthew Wilcox394dbf32007-07-26 11:56:40 -04002228 struct device *dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002229 struct Scsi_Host *shost;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002230 uint flags; /* Board flags */
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002231 unsigned int irq;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002232 union {
2233 ASC_DVC_VAR asc_dvc_var; /* Narrow board */
2234 ADV_DVC_VAR adv_dvc_var; /* Wide board */
2235 } dvc_var;
2236 union {
2237 ASC_DVC_CFG asc_dvc_cfg; /* Narrow board */
2238 ADV_DVC_CFG adv_dvc_cfg; /* Wide board */
2239 } dvc_cfg;
2240 ushort asc_n_io_port; /* Number I/O ports. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002241 ADV_SCSI_BIT_ID_TYPE init_tidmask; /* Target init./valid mask */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002242 ushort reqcnt[ADV_MAX_TID + 1]; /* Starvation request count */
2243 ADV_SCSI_BIT_ID_TYPE queue_full; /* Queue full mask */
2244 ushort queue_full_cnt[ADV_MAX_TID + 1]; /* Queue full count */
2245 union {
2246 ASCEEP_CONFIG asc_eep; /* Narrow EEPROM config. */
2247 ADVEEP_3550_CONFIG adv_3550_eep; /* 3550 EEPROM config. */
2248 ADVEEP_38C0800_CONFIG adv_38C0800_eep; /* 38C0800 EEPROM config. */
2249 ADVEEP_38C1600_CONFIG adv_38C1600_eep; /* 38C1600 EEPROM config. */
2250 } eep_config;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002251 /* /proc/scsi/advansys/[0...] */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252#ifdef ADVANSYS_STATS
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002253 struct asc_stats asc_stats; /* Board statistics */
2254#endif /* ADVANSYS_STATS */
2255 /*
2256 * The following fields are used only for Narrow Boards.
2257 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002258 uchar sdtr_data[ASC_MAX_TID + 1]; /* SDTR information */
2259 /*
2260 * The following fields are used only for Wide Boards.
2261 */
2262 void __iomem *ioremap_addr; /* I/O Memory remap address. */
2263 ushort ioport; /* I/O Port address. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002264 adv_req_t *adv_reqp; /* Request structures. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02002265 dma_addr_t adv_reqp_addr;
2266 size_t adv_reqp_size;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02002267 struct dma_pool *adv_sgblk_pool; /* Scatter-gather structures. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002268 ushort bios_signature; /* BIOS Signature. */
2269 ushort bios_version; /* BIOS Version. */
2270 ushort bios_codeseg; /* BIOS Code Segment. */
2271 ushort bios_codelen; /* BIOS Code Segment Length. */
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002272};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04002274#define asc_dvc_to_board(asc_dvc) container_of(asc_dvc, struct asc_board, \
2275 dvc_var.asc_dvc_var)
Matthew Wilcox13ac2d92007-07-30 08:10:23 -06002276#define adv_dvc_to_board(adv_dvc) container_of(adv_dvc, struct asc_board, \
2277 dvc_var.adv_dvc_var)
2278#define adv_dvc_to_pdev(adv_dvc) to_pci_dev(adv_dvc_to_board(adv_dvc)->dev)
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280#ifdef ADVANSYS_DEBUG
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002281static int asc_dbglvl = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283/*
Matthew Wilcox51219352007-10-02 21:55:22 -04002284 * asc_prt_asc_dvc_var()
2285 */
2286static void asc_prt_asc_dvc_var(ASC_DVC_VAR *h)
2287{
2288 printk("ASC_DVC_VAR at addr 0x%lx\n", (ulong)h);
2289
2290 printk(" iop_base 0x%x, err_code 0x%x, dvc_cntl 0x%x, bug_fix_cntl "
2291 "%d,\n", h->iop_base, h->err_code, h->dvc_cntl, h->bug_fix_cntl);
2292
2293 printk(" bus_type %d, init_sdtr 0x%x,\n", h->bus_type,
2294 (unsigned)h->init_sdtr);
2295
2296 printk(" sdtr_done 0x%x, use_tagged_qng 0x%x, unit_not_ready 0x%x, "
2297 "chip_no 0x%x,\n", (unsigned)h->sdtr_done,
2298 (unsigned)h->use_tagged_qng, (unsigned)h->unit_not_ready,
2299 (unsigned)h->chip_no);
2300
2301 printk(" queue_full_or_busy 0x%x, start_motor 0x%x, scsi_reset_wait "
2302 "%u,\n", (unsigned)h->queue_full_or_busy,
2303 (unsigned)h->start_motor, (unsigned)h->scsi_reset_wait);
2304
2305 printk(" is_in_int %u, max_total_qng %u, cur_total_qng %u, "
2306 "in_critical_cnt %u,\n", (unsigned)h->is_in_int,
2307 (unsigned)h->max_total_qng, (unsigned)h->cur_total_qng,
2308 (unsigned)h->in_critical_cnt);
2309
2310 printk(" last_q_shortage %u, init_state 0x%x, no_scam 0x%x, "
2311 "pci_fix_asyn_xfer 0x%x,\n", (unsigned)h->last_q_shortage,
2312 (unsigned)h->init_state, (unsigned)h->no_scam,
2313 (unsigned)h->pci_fix_asyn_xfer);
2314
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002315 printk(" cfg 0x%lx\n", (ulong)h->cfg);
Matthew Wilcox51219352007-10-02 21:55:22 -04002316}
2317
2318/*
2319 * asc_prt_asc_dvc_cfg()
2320 */
2321static void asc_prt_asc_dvc_cfg(ASC_DVC_CFG *h)
2322{
2323 printk("ASC_DVC_CFG at addr 0x%lx\n", (ulong)h);
2324
2325 printk(" can_tagged_qng 0x%x, cmd_qng_enabled 0x%x,\n",
2326 h->can_tagged_qng, h->cmd_qng_enabled);
2327 printk(" disc_enable 0x%x, sdtr_enable 0x%x,\n",
2328 h->disc_enable, h->sdtr_enable);
2329
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02002330 printk(" chip_scsi_id %d, chip_version %d,\n",
2331 h->chip_scsi_id, h->chip_version);
Matthew Wilcox51219352007-10-02 21:55:22 -04002332
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04002333 printk(" mcode_date 0x%x, mcode_version %d\n",
2334 h->mcode_date, h->mcode_version);
Matthew Wilcox51219352007-10-02 21:55:22 -04002335}
2336
2337/*
Matthew Wilcox51219352007-10-02 21:55:22 -04002338 * asc_prt_adv_dvc_var()
2339 *
2340 * Display an ADV_DVC_VAR structure.
2341 */
2342static void asc_prt_adv_dvc_var(ADV_DVC_VAR *h)
2343{
2344 printk(" ADV_DVC_VAR at addr 0x%lx\n", (ulong)h);
2345
2346 printk(" iop_base 0x%lx, err_code 0x%x, ultra_able 0x%x\n",
2347 (ulong)h->iop_base, h->err_code, (unsigned)h->ultra_able);
2348
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002349 printk(" sdtr_able 0x%x, wdtr_able 0x%x\n",
2350 (unsigned)h->sdtr_able, (unsigned)h->wdtr_able);
Matthew Wilcox51219352007-10-02 21:55:22 -04002351
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002352 printk(" start_motor 0x%x, scsi_reset_wait 0x%x\n",
2353 (unsigned)h->start_motor, (unsigned)h->scsi_reset_wait);
Matthew Wilcox51219352007-10-02 21:55:22 -04002354
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002355 printk(" max_host_qng %u, max_dvc_qng %u, carr_freelist 0x%p\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04002356 (unsigned)h->max_host_qng, (unsigned)h->max_dvc_qng,
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002357 h->carr_freelist);
Matthew Wilcox51219352007-10-02 21:55:22 -04002358
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002359 printk(" icq_sp 0x%p, irq_sp 0x%p\n", h->icq_sp, h->irq_sp);
Matthew Wilcox51219352007-10-02 21:55:22 -04002360
2361 printk(" no_scam 0x%x, tagqng_able 0x%x\n",
2362 (unsigned)h->no_scam, (unsigned)h->tagqng_able);
2363
2364 printk(" chip_scsi_id 0x%x, cfg 0x%lx\n",
2365 (unsigned)h->chip_scsi_id, (ulong)h->cfg);
2366}
2367
2368/*
2369 * asc_prt_adv_dvc_cfg()
2370 *
2371 * Display an ADV_DVC_CFG structure.
2372 */
2373static void asc_prt_adv_dvc_cfg(ADV_DVC_CFG *h)
2374{
2375 printk(" ADV_DVC_CFG at addr 0x%lx\n", (ulong)h);
2376
2377 printk(" disc_enable 0x%x, termination 0x%x\n",
2378 h->disc_enable, h->termination);
2379
2380 printk(" chip_version 0x%x, mcode_date 0x%x\n",
2381 h->chip_version, h->mcode_date);
2382
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002383 printk(" mcode_version 0x%x, control_flag 0x%x\n",
2384 h->mcode_version, h->control_flag);
Matthew Wilcox51219352007-10-02 21:55:22 -04002385}
2386
2387/*
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002388 * asc_prt_scsi_host()
Matthew Wilcox51219352007-10-02 21:55:22 -04002389 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002390static void asc_prt_scsi_host(struct Scsi_Host *s)
Matthew Wilcox51219352007-10-02 21:55:22 -04002391{
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002392 struct asc_board *boardp = shost_priv(s);
Matthew Wilcox51219352007-10-02 21:55:22 -04002393
Kay Sievers71610f52008-12-03 22:41:36 +01002394 printk("Scsi_Host at addr 0x%p, device %s\n", s, dev_name(boardp->dev));
Ming Leic84b0232018-06-24 22:03:26 +08002395 printk(" host_busy %d, host_no %d,\n",
2396 scsi_host_busy(s), s->host_no);
Matthew Wilcox51219352007-10-02 21:55:22 -04002397
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002398 printk(" base 0x%lx, io_port 0x%lx, irq %d,\n",
2399 (ulong)s->base, (ulong)s->io_port, boardp->irq);
Matthew Wilcox51219352007-10-02 21:55:22 -04002400
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002401 printk(" dma_channel %d, this_id %d, can_queue %d,\n",
2402 s->dma_channel, s->this_id, s->can_queue);
Matthew Wilcox51219352007-10-02 21:55:22 -04002403
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02002404 printk(" cmd_per_lun %d, sg_tablesize %d\n",
2405 s->cmd_per_lun, s->sg_tablesize);
Matthew Wilcox51219352007-10-02 21:55:22 -04002406
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002407 if (ASC_NARROW_BOARD(boardp)) {
2408 asc_prt_asc_dvc_var(&boardp->dvc_var.asc_dvc_var);
2409 asc_prt_asc_dvc_cfg(&boardp->dvc_cfg.asc_dvc_cfg);
2410 } else {
2411 asc_prt_adv_dvc_var(&boardp->dvc_var.adv_dvc_var);
2412 asc_prt_adv_dvc_cfg(&boardp->dvc_cfg.adv_dvc_cfg);
Matthew Wilcox51219352007-10-02 21:55:22 -04002413 }
2414}
2415
2416/*
2417 * asc_prt_hex()
2418 *
2419 * Print hexadecimal output in 4 byte groupings 32 bytes
2420 * or 8 double-words per line.
2421 */
2422static void asc_prt_hex(char *f, uchar *s, int l)
2423{
2424 int i;
2425 int j;
2426 int k;
2427 int m;
2428
2429 printk("%s: (%d bytes)\n", f, l);
2430
2431 for (i = 0; i < l; i += 32) {
2432
2433 /* Display a maximum of 8 double-words per line. */
2434 if ((k = (l - i) / 4) >= 8) {
2435 k = 8;
2436 m = 0;
2437 } else {
2438 m = (l - i) % 4;
2439 }
2440
2441 for (j = 0; j < k; j++) {
2442 printk(" %2.2X%2.2X%2.2X%2.2X",
2443 (unsigned)s[i + (j * 4)],
2444 (unsigned)s[i + (j * 4) + 1],
2445 (unsigned)s[i + (j * 4) + 2],
2446 (unsigned)s[i + (j * 4) + 3]);
2447 }
2448
2449 switch (m) {
2450 case 0:
2451 default:
2452 break;
2453 case 1:
2454 printk(" %2.2X", (unsigned)s[i + (j * 4)]);
2455 break;
2456 case 2:
2457 printk(" %2.2X%2.2X",
2458 (unsigned)s[i + (j * 4)],
2459 (unsigned)s[i + (j * 4) + 1]);
2460 break;
2461 case 3:
2462 printk(" %2.2X%2.2X%2.2X",
2463 (unsigned)s[i + (j * 4) + 1],
2464 (unsigned)s[i + (j * 4) + 2],
2465 (unsigned)s[i + (j * 4) + 3]);
2466 break;
2467 }
2468
2469 printk("\n");
2470 }
2471}
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002472
2473/*
2474 * asc_prt_asc_scsi_q()
2475 */
2476static void asc_prt_asc_scsi_q(ASC_SCSI_Q *q)
2477{
2478 ASC_SG_HEAD *sgp;
2479 int i;
2480
2481 printk("ASC_SCSI_Q at addr 0x%lx\n", (ulong)q);
2482
2483 printk
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002484 (" target_ix 0x%x, target_lun %u, srb_tag 0x%x, tag_code 0x%x,\n",
2485 q->q2.target_ix, q->q1.target_lun, q->q2.srb_tag,
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002486 q->q2.tag_code);
2487
2488 printk
2489 (" data_addr 0x%lx, data_cnt %lu, sense_addr 0x%lx, sense_len %u,\n",
2490 (ulong)le32_to_cpu(q->q1.data_addr),
2491 (ulong)le32_to_cpu(q->q1.data_cnt),
2492 (ulong)le32_to_cpu(q->q1.sense_addr), q->q1.sense_len);
2493
2494 printk(" cdbptr 0x%lx, cdb_len %u, sg_head 0x%lx, sg_queue_cnt %u\n",
2495 (ulong)q->cdbptr, q->q2.cdb_len,
2496 (ulong)q->sg_head, q->q1.sg_queue_cnt);
2497
2498 if (q->sg_head) {
2499 sgp = q->sg_head;
2500 printk("ASC_SG_HEAD at addr 0x%lx\n", (ulong)sgp);
2501 printk(" entry_cnt %u, queue_cnt %u\n", sgp->entry_cnt,
2502 sgp->queue_cnt);
2503 for (i = 0; i < sgp->entry_cnt; i++) {
2504 printk(" [%u]: addr 0x%lx, bytes %lu\n",
2505 i, (ulong)le32_to_cpu(sgp->sg_list[i].addr),
2506 (ulong)le32_to_cpu(sgp->sg_list[i].bytes));
2507 }
2508
2509 }
2510}
2511
2512/*
2513 * asc_prt_asc_qdone_info()
2514 */
2515static void asc_prt_asc_qdone_info(ASC_QDONE_INFO *q)
2516{
2517 printk("ASC_QDONE_INFO at addr 0x%lx\n", (ulong)q);
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002518 printk(" srb_tag 0x%x, target_ix %u, cdb_len %u, tag_code %u,\n",
2519 q->d2.srb_tag, q->d2.target_ix, q->d2.cdb_len,
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002520 q->d2.tag_code);
2521 printk
2522 (" done_stat 0x%x, host_stat 0x%x, scsi_stat 0x%x, scsi_msg 0x%x\n",
2523 q->d3.done_stat, q->d3.host_stat, q->d3.scsi_stat, q->d3.scsi_msg);
2524}
2525
2526/*
2527 * asc_prt_adv_sgblock()
2528 *
2529 * Display an ADV_SG_BLOCK structure.
2530 */
2531static void asc_prt_adv_sgblock(int sgblockno, ADV_SG_BLOCK *b)
2532{
2533 int i;
2534
Hannes Reinecke0ce53822015-04-24 13:18:25 +02002535 printk(" ADV_SG_BLOCK at addr 0x%lx (sgblockno %d)\n",
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002536 (ulong)b, sgblockno);
Hannes Reinecked9748db2015-04-24 13:18:36 +02002537 printk(" sg_cnt %u, sg_ptr 0x%x\n",
2538 b->sg_cnt, (u32)le32_to_cpu(b->sg_ptr));
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002539 BUG_ON(b->sg_cnt > NO_OF_SG_PER_BLOCK);
2540 if (b->sg_ptr != 0)
2541 BUG_ON(b->sg_cnt != NO_OF_SG_PER_BLOCK);
2542 for (i = 0; i < b->sg_cnt; i++) {
Hannes Reinecked9748db2015-04-24 13:18:36 +02002543 printk(" [%u]: sg_addr 0x%x, sg_count 0x%x\n",
2544 i, (u32)le32_to_cpu(b->sg_list[i].sg_addr),
2545 (u32)le32_to_cpu(b->sg_list[i].sg_count));
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002546 }
2547}
2548
2549/*
2550 * asc_prt_adv_scsi_req_q()
2551 *
2552 * Display an ADV_SCSI_REQ_Q structure.
2553 */
2554static void asc_prt_adv_scsi_req_q(ADV_SCSI_REQ_Q *q)
2555{
2556 int sg_blk_cnt;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02002557 struct adv_sg_block *sg_ptr;
2558 adv_sgblk_t *sgblkp;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002559
2560 printk("ADV_SCSI_REQ_Q at addr 0x%lx\n", (ulong)q);
2561
Hannes Reinecked9748db2015-04-24 13:18:36 +02002562 printk(" target_id %u, target_lun %u, srb_tag 0x%x\n",
2563 q->target_id, q->target_lun, q->srb_tag);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002564
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002565 printk(" cntl 0x%x, data_addr 0x%lx\n",
2566 q->cntl, (ulong)le32_to_cpu(q->data_addr));
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002567
2568 printk(" data_cnt %lu, sense_addr 0x%lx, sense_len %u,\n",
2569 (ulong)le32_to_cpu(q->data_cnt),
2570 (ulong)le32_to_cpu(q->sense_addr), q->sense_len);
2571
2572 printk
2573 (" cdb_len %u, done_status 0x%x, host_status 0x%x, scsi_status 0x%x\n",
2574 q->cdb_len, q->done_status, q->host_status, q->scsi_status);
2575
2576 printk(" sg_working_ix 0x%x, target_cmd %u\n",
2577 q->sg_working_ix, q->target_cmd);
2578
2579 printk(" scsiq_rptr 0x%lx, sg_real_addr 0x%lx, sg_list_ptr 0x%lx\n",
2580 (ulong)le32_to_cpu(q->scsiq_rptr),
2581 (ulong)le32_to_cpu(q->sg_real_addr), (ulong)q->sg_list_ptr);
2582
2583 /* Display the request's ADV_SG_BLOCK structures. */
2584 if (q->sg_list_ptr != NULL) {
Hannes Reinecke0ce53822015-04-24 13:18:25 +02002585 sgblkp = container_of(q->sg_list_ptr, adv_sgblk_t, sg_block);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002586 sg_blk_cnt = 0;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02002587 while (sgblkp) {
2588 sg_ptr = &sgblkp->sg_block;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002589 asc_prt_adv_sgblock(sg_blk_cnt, sg_ptr);
2590 if (sg_ptr->sg_ptr == 0) {
2591 break;
2592 }
Hannes Reinecke0ce53822015-04-24 13:18:25 +02002593 sgblkp = sgblkp->next_sgblkp;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002594 sg_blk_cnt++;
2595 }
2596 }
2597}
Matthew Wilcox51219352007-10-02 21:55:22 -04002598#endif /* ADVANSYS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 * advansys_info()
2602 *
2603 * Return suitable for printing on the console with the argument
2604 * adapter's configuration information.
2605 *
2606 * Note: The information line should not exceed ASC_INFO_SIZE bytes,
2607 * otherwise the static 'info' array will be overrun.
2608 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002609static const char *advansys_info(struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002611 static char info[ASC_INFO_SIZE];
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002612 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002613 ASC_DVC_VAR *asc_dvc_varp;
2614 ADV_DVC_VAR *adv_dvc_varp;
2615 char *busname;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002616 char *widename = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002618 if (ASC_NARROW_BOARD(boardp)) {
2619 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002620 ASC_DBG(1, "begin\n");
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02002621
2622 if (asc_dvc_varp->bus_type & ASC_IS_VL) {
2623 busname = "VL";
2624 } else if (asc_dvc_varp->bus_type & ASC_IS_EISA) {
2625 busname = "EISA";
2626 } else if (asc_dvc_varp->bus_type & ASC_IS_PCI) {
2627 if ((asc_dvc_varp->bus_type & ASC_IS_PCI_ULTRA)
2628 == ASC_IS_PCI_ULTRA) {
2629 busname = "PCI Ultra";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002630 } else {
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02002631 busname = "PCI";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002632 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002633 } else {
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02002634 busname = "?";
2635 shost_printk(KERN_ERR, shost, "unknown bus "
2636 "type %d\n", asc_dvc_varp->bus_type);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002637 }
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02002638 sprintf(info,
2639 "AdvanSys SCSI %s: %s: IO 0x%lX-0x%lX, IRQ 0x%X",
2640 ASC_VERSION, busname, (ulong)shost->io_port,
2641 (ulong)shost->io_port + ASC_IOADR_GAP - 1,
2642 boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002643 } else {
2644 /*
2645 * Wide Adapter Information
2646 *
2647 * Memory-mapped I/O is used instead of I/O space to access
2648 * the adapter, but display the I/O Port range. The Memory
2649 * I/O address is displayed through the driver /proc file.
2650 */
2651 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
2652 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002653 widename = "Ultra-Wide";
2654 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002655 widename = "Ultra2-Wide";
2656 } else {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002657 widename = "Ultra3-Wide";
2658 }
2659 sprintf(info,
2660 "AdvanSys SCSI %s: PCI %s: PCIMEM 0x%lX-0x%lX, IRQ 0x%X",
2661 ASC_VERSION, widename, (ulong)adv_dvc_varp->iop_base,
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002662 (ulong)adv_dvc_varp->iop_base + boardp->asc_n_io_port - 1, boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002663 }
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06002664 BUG_ON(strlen(info) >= ASC_INFO_SIZE);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002665 ASC_DBG(1, "end\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002666 return info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667}
2668
Matthew Wilcox51219352007-10-02 21:55:22 -04002669#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
2671/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 * asc_prt_board_devices()
2673 *
2674 * Print driver information for devices attached to the board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 */
Al Virob59fb6f2013-03-31 02:59:55 -04002676static void asc_prt_board_devices(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002678 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002679 int chip_scsi_id;
2680 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
Al Virob59fb6f2013-03-31 02:59:55 -04002682 seq_printf(m,
2683 "\nDevice Information for AdvanSys SCSI Host %d:\n",
2684 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002686 if (ASC_NARROW_BOARD(boardp)) {
2687 chip_scsi_id = boardp->dvc_cfg.asc_dvc_cfg.chip_scsi_id;
2688 } else {
2689 chip_scsi_id = boardp->dvc_var.adv_dvc_var.chip_scsi_id;
2690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002692 seq_puts(m, "Target IDs Detected:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002693 for (i = 0; i <= ADV_MAX_TID; i++) {
Al Virob59fb6f2013-03-31 02:59:55 -04002694 if (boardp->init_tidmask & ADV_TID_TO_TIDMASK(i))
2695 seq_printf(m, " %X,", i);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002696 }
Al Virob59fb6f2013-03-31 02:59:55 -04002697 seq_printf(m, " (%X=Host Adapter)\n", chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
2699
2700/*
2701 * Display Wide Board BIOS Information.
2702 */
Al Virob59fb6f2013-03-31 02:59:55 -04002703static void asc_prt_adv_bios(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002705 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002706 ushort major, minor, letter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002708 seq_puts(m, "\nROM BIOS Version: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002710 /*
2711 * If the BIOS saved a valid signature, then fill in
2712 * the BIOS code segment base address.
2713 */
2714 if (boardp->bios_signature != 0x55AA) {
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002715 seq_puts(m, "Disabled or Pre-3.1\n"
2716 "BIOS either disabled or Pre-3.1. If it is pre-3.1, then a newer version\n"
2717 "can be found at the ConnectCom FTP site: ftp://ftp.connectcom.net/pub\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002718 } else {
2719 major = (boardp->bios_version >> 12) & 0xF;
2720 minor = (boardp->bios_version >> 8) & 0xF;
2721 letter = (boardp->bios_version & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Al Virob59fb6f2013-03-31 02:59:55 -04002723 seq_printf(m, "%d.%d%c\n",
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002724 major, minor,
2725 letter >= 26 ? '?' : letter + 'A');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002726 /*
2727 * Current available ROM BIOS release is 3.1I for UW
2728 * and 3.2I for U2W. This code doesn't differentiate
2729 * UW and U2W boards.
2730 */
2731 if (major < 3 || (major <= 3 && minor < 1) ||
2732 (major <= 3 && minor <= 1 && letter < ('I' - 'A'))) {
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002733 seq_puts(m, "Newer version of ROM BIOS is available at the ConnectCom FTP site:\n"
2734 "ftp://ftp.connectcom.net/pub\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002735 }
2736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
2739/*
2740 * Add serial number to information bar if signature AAh
2741 * is found in at bit 15-9 (7 bits) of word 1.
2742 *
2743 * Serial Number consists fo 12 alpha-numeric digits.
2744 *
2745 * 1 - Product type (A,B,C,D..) Word0: 15-13 (3 bits)
2746 * 2 - MFG Location (A,B,C,D..) Word0: 12-10 (3 bits)
2747 * 3-4 - Product ID (0-99) Word0: 9-0 (10 bits)
2748 * 5 - Product revision (A-J) Word0: " "
2749 *
2750 * Signature Word1: 15-9 (7 bits)
2751 * 6 - Year (0-9) Word1: 8-6 (3 bits) & Word2: 15 (1 bit)
2752 * 7-8 - Week of the year (1-52) Word1: 5-0 (6 bits)
2753 *
2754 * 9-12 - Serial Number (A001-Z999) Word2: 14-0 (15 bits)
2755 *
2756 * Note 1: Only production cards will have a serial number.
2757 *
2758 * Note 2: Signature is most significant 7 bits (0xFE).
2759 *
2760 * Returns ASC_TRUE if serial number found, otherwise returns ASC_FALSE.
2761 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002762static int asc_get_eeprom_string(ushort *serialnum, uchar *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002764 ushort w, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002766 if ((serialnum[1] & 0xFE00) != ((ushort)0xAA << 8)) {
2767 return ASC_FALSE;
2768 } else {
2769 /*
2770 * First word - 6 digits.
2771 */
2772 w = serialnum[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002774 /* Product type - 1st digit. */
2775 if ((*cp = 'A' + ((w & 0xE000) >> 13)) == 'H') {
2776 /* Product type is P=Prototype */
2777 *cp += 0x8;
2778 }
2779 cp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002781 /* Manufacturing location - 2nd digit. */
2782 *cp++ = 'A' + ((w & 0x1C00) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002784 /* Product ID - 3rd, 4th digits. */
2785 num = w & 0x3FF;
2786 *cp++ = '0' + (num / 100);
2787 num %= 100;
2788 *cp++ = '0' + (num / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002790 /* Product revision - 5th digit. */
2791 *cp++ = 'A' + (num % 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002793 /*
2794 * Second word
2795 */
2796 w = serialnum[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002798 /*
2799 * Year - 6th digit.
2800 *
2801 * If bit 15 of third word is set, then the
2802 * last digit of the year is greater than 7.
2803 */
2804 if (serialnum[2] & 0x8000) {
2805 *cp++ = '8' + ((w & 0x1C0) >> 6);
2806 } else {
2807 *cp++ = '0' + ((w & 0x1C0) >> 6);
2808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002810 /* Week of year - 7th, 8th digits. */
2811 num = w & 0x003F;
2812 *cp++ = '0' + num / 10;
2813 num %= 10;
2814 *cp++ = '0' + num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002816 /*
2817 * Third word
2818 */
2819 w = serialnum[2] & 0x7FFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002821 /* Serial number - 9th digit. */
2822 *cp++ = 'A' + (w / 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002824 /* 10th, 11th, 12th digits. */
2825 num = w % 1000;
2826 *cp++ = '0' + num / 100;
2827 num %= 100;
2828 *cp++ = '0' + num / 10;
2829 num %= 10;
2830 *cp++ = '0' + num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002832 *cp = '\0'; /* Null Terminate the string. */
2833 return ASC_TRUE;
2834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
2837/*
2838 * asc_prt_asc_board_eeprom()
2839 *
2840 * Print board EEPROM configuration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 */
Al Virob59fb6f2013-03-31 02:59:55 -04002842static void asc_prt_asc_board_eeprom(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002844 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002845 ASCEEP_CONFIG *ep;
2846 int i;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002847 uchar serialstr[13];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002849 ep = &boardp->eep_config.asc_eep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
Al Virob59fb6f2013-03-31 02:59:55 -04002851 seq_printf(m,
2852 "\nEEPROM Settings for AdvanSys SCSI Host %d:\n",
2853 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002855 if (asc_get_eeprom_string((ushort *)&ep->adapter_info[0], serialstr)
Al Virob59fb6f2013-03-31 02:59:55 -04002856 == ASC_TRUE)
2857 seq_printf(m, " Serial Number: %s\n", serialstr);
2858 else if (ep->adapter_info[5] == 0xBB)
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002859 seq_puts(m,
2860 " Default Settings Used for EEPROM-less Adapter.\n");
Al Virob59fb6f2013-03-31 02:59:55 -04002861 else
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002862 seq_puts(m, " Serial Number Signature Not Present.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Al Virob59fb6f2013-03-31 02:59:55 -04002864 seq_printf(m,
2865 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
2866 ASC_EEP_GET_CHIP_ID(ep), ep->max_total_qng,
2867 ep->max_tag_qng);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Al Virob59fb6f2013-03-31 02:59:55 -04002869 seq_printf(m,
2870 " cntl 0x%x, no_scam 0x%x\n", ep->cntl, ep->no_scam);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002872 seq_puts(m, " Target ID: ");
Al Virob59fb6f2013-03-31 02:59:55 -04002873 for (i = 0; i <= ASC_MAX_TID; i++)
2874 seq_printf(m, " %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002876 seq_puts(m, "\n Disconnects: ");
Al Virob59fb6f2013-03-31 02:59:55 -04002877 for (i = 0; i <= ASC_MAX_TID; i++)
2878 seq_printf(m, " %c",
2879 (ep->disc_enable & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002881 seq_puts(m, "\n Command Queuing: ");
Al Virob59fb6f2013-03-31 02:59:55 -04002882 for (i = 0; i <= ASC_MAX_TID; i++)
2883 seq_printf(m, " %c",
2884 (ep->use_cmd_qng & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002886 seq_puts(m, "\n Start Motor: ");
Al Virob59fb6f2013-03-31 02:59:55 -04002887 for (i = 0; i <= ASC_MAX_TID; i++)
2888 seq_printf(m, " %c",
2889 (ep->start_motor & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002891 seq_puts(m, "\n Synchronous Transfer:");
Al Virob59fb6f2013-03-31 02:59:55 -04002892 for (i = 0; i <= ASC_MAX_TID; i++)
2893 seq_printf(m, " %c",
2894 (ep->init_sdtr & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01002895 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896}
2897
2898/*
2899 * asc_prt_adv_board_eeprom()
2900 *
2901 * Print board EEPROM configuration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 */
Al Virob59fb6f2013-03-31 02:59:55 -04002903static void asc_prt_adv_board_eeprom(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002905 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002906 ADV_DVC_VAR *adv_dvc_varp;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002907 int i;
2908 char *termstr;
2909 uchar serialstr[13];
2910 ADVEEP_3550_CONFIG *ep_3550 = NULL;
2911 ADVEEP_38C0800_CONFIG *ep_38C0800 = NULL;
2912 ADVEEP_38C1600_CONFIG *ep_38C1600 = NULL;
2913 ushort word;
2914 ushort *wordp;
2915 ushort sdtr_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002917 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
2918 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
2919 ep_3550 = &boardp->eep_config.adv_3550_eep;
2920 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
2921 ep_38C0800 = &boardp->eep_config.adv_38C0800_eep;
2922 } else {
2923 ep_38C1600 = &boardp->eep_config.adv_38C1600_eep;
2924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
Al Virob59fb6f2013-03-31 02:59:55 -04002926 seq_printf(m,
2927 "\nEEPROM Settings for AdvanSys SCSI Host %d:\n",
2928 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002930 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
2931 wordp = &ep_3550->serial_number_word1;
2932 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
2933 wordp = &ep_38C0800->serial_number_word1;
2934 } else {
2935 wordp = &ep_38C1600->serial_number_word1;
2936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
Al Virob59fb6f2013-03-31 02:59:55 -04002938 if (asc_get_eeprom_string(wordp, serialstr) == ASC_TRUE)
2939 seq_printf(m, " Serial Number: %s\n", serialstr);
2940 else
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002941 seq_puts(m, " Serial Number Signature Not Present.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
Al Virob59fb6f2013-03-31 02:59:55 -04002943 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550)
2944 seq_printf(m,
2945 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
2946 ep_3550->adapter_scsi_id,
2947 ep_3550->max_host_qng, ep_3550->max_dvc_qng);
2948 else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800)
2949 seq_printf(m,
2950 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
2951 ep_38C0800->adapter_scsi_id,
2952 ep_38C0800->max_host_qng,
2953 ep_38C0800->max_dvc_qng);
2954 else
2955 seq_printf(m,
2956 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
2957 ep_38C1600->adapter_scsi_id,
2958 ep_38C1600->max_host_qng,
2959 ep_38C1600->max_dvc_qng);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002960 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
2961 word = ep_3550->termination;
2962 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
2963 word = ep_38C0800->termination_lvd;
2964 } else {
2965 word = ep_38C1600->termination_lvd;
2966 }
2967 switch (word) {
2968 case 1:
2969 termstr = "Low Off/High Off";
2970 break;
2971 case 2:
2972 termstr = "Low Off/High On";
2973 break;
2974 case 3:
2975 termstr = "Low On/High On";
2976 break;
2977 default:
2978 case 0:
2979 termstr = "Automatic";
2980 break;
2981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Al Virob59fb6f2013-03-31 02:59:55 -04002983 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550)
2984 seq_printf(m,
2985 " termination: %u (%s), bios_ctrl: 0x%x\n",
2986 ep_3550->termination, termstr,
2987 ep_3550->bios_ctrl);
2988 else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800)
2989 seq_printf(m,
2990 " termination: %u (%s), bios_ctrl: 0x%x\n",
2991 ep_38C0800->termination_lvd, termstr,
2992 ep_38C0800->bios_ctrl);
2993 else
2994 seq_printf(m,
2995 " termination: %u (%s), bios_ctrl: 0x%x\n",
2996 ep_38C1600->termination_lvd, termstr,
2997 ep_38C1600->bios_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002999 seq_puts(m, " Target ID: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003000 for (i = 0; i <= ADV_MAX_TID; i++)
3001 seq_printf(m, " %X", i);
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003002 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003004 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3005 word = ep_3550->disc_enable;
3006 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3007 word = ep_38C0800->disc_enable;
3008 } else {
3009 word = ep_38C1600->disc_enable;
3010 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003011 seq_puts(m, " Disconnects: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003012 for (i = 0; i <= ADV_MAX_TID; i++)
3013 seq_printf(m, " %c",
3014 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003015 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003017 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3018 word = ep_3550->tagqng_able;
3019 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3020 word = ep_38C0800->tagqng_able;
3021 } else {
3022 word = ep_38C1600->tagqng_able;
3023 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003024 seq_puts(m, " Command Queuing: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003025 for (i = 0; i <= ADV_MAX_TID; i++)
3026 seq_printf(m, " %c",
3027 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003028 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003030 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3031 word = ep_3550->start_motor;
3032 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3033 word = ep_38C0800->start_motor;
3034 } else {
3035 word = ep_38C1600->start_motor;
3036 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003037 seq_puts(m, " Start Motor: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003038 for (i = 0; i <= ADV_MAX_TID; i++)
3039 seq_printf(m, " %c",
3040 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003041 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003043 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003044 seq_puts(m, " Synchronous Transfer:");
Al Virob59fb6f2013-03-31 02:59:55 -04003045 for (i = 0; i <= ADV_MAX_TID; i++)
3046 seq_printf(m, " %c",
3047 (ep_3550->sdtr_able & ADV_TID_TO_TIDMASK(i)) ?
3048 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003049 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003052 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003053 seq_puts(m, " Ultra Transfer: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003054 for (i = 0; i <= ADV_MAX_TID; i++)
3055 seq_printf(m, " %c",
3056 (ep_3550->ultra_able & ADV_TID_TO_TIDMASK(i))
3057 ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003058 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003061 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3062 word = ep_3550->wdtr_able;
3063 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3064 word = ep_38C0800->wdtr_able;
3065 } else {
3066 word = ep_38C1600->wdtr_able;
3067 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003068 seq_puts(m, " Wide Transfer: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003069 for (i = 0; i <= ADV_MAX_TID; i++)
3070 seq_printf(m, " %c",
3071 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003072 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003074 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800 ||
3075 adv_dvc_varp->chip_type == ADV_CHIP_ASC38C1600) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003076 seq_puts(m, " Synchronous Transfer Speed (Mhz):\n ");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003077 for (i = 0; i <= ADV_MAX_TID; i++) {
3078 char *speed_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003080 if (i == 0) {
3081 sdtr_speed = adv_dvc_varp->sdtr_speed1;
3082 } else if (i == 4) {
3083 sdtr_speed = adv_dvc_varp->sdtr_speed2;
3084 } else if (i == 8) {
3085 sdtr_speed = adv_dvc_varp->sdtr_speed3;
3086 } else if (i == 12) {
3087 sdtr_speed = adv_dvc_varp->sdtr_speed4;
3088 }
3089 switch (sdtr_speed & ADV_MAX_TID) {
3090 case 0:
3091 speed_str = "Off";
3092 break;
3093 case 1:
3094 speed_str = " 5";
3095 break;
3096 case 2:
3097 speed_str = " 10";
3098 break;
3099 case 3:
3100 speed_str = " 20";
3101 break;
3102 case 4:
3103 speed_str = " 40";
3104 break;
3105 case 5:
3106 speed_str = " 80";
3107 break;
3108 default:
3109 speed_str = "Unk";
3110 break;
3111 }
Al Virob59fb6f2013-03-31 02:59:55 -04003112 seq_printf(m, "%X:%s ", i, speed_str);
3113 if (i == 7)
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003114 seq_puts(m, "\n ");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003115 sdtr_speed >>= 4;
3116 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003117 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119}
3120
3121/*
3122 * asc_prt_driver_conf()
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 */
Al Virob59fb6f2013-03-31 02:59:55 -04003124static void asc_prt_driver_conf(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003126 struct asc_board *boardp = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
Al Virob59fb6f2013-03-31 02:59:55 -04003128 seq_printf(m,
3129 "\nLinux Driver Configuration and Information for AdvanSys SCSI Host %d:\n",
3130 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Al Virob59fb6f2013-03-31 02:59:55 -04003132 seq_printf(m,
Ming Leic84b0232018-06-24 22:03:26 +08003133 " host_busy %d, max_id %u, max_lun %llu, max_channel %u\n",
3134 scsi_host_busy(shost), shost->max_id,
Al Virob59fb6f2013-03-31 02:59:55 -04003135 shost->max_lun, shost->max_channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
Al Virob59fb6f2013-03-31 02:59:55 -04003137 seq_printf(m,
3138 " unique_id %d, can_queue %d, this_id %d, sg_tablesize %u, cmd_per_lun %u\n",
3139 shost->unique_id, shost->can_queue, shost->this_id,
3140 shost->sg_tablesize, shost->cmd_per_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
Al Virob59fb6f2013-03-31 02:59:55 -04003142 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003143 " flags 0x%x, last_reset 0x%lx, jiffies 0x%lx, asc_n_io_port 0x%x\n",
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02003144 boardp->flags, shost->last_reset, jiffies,
Al Virob59fb6f2013-03-31 02:59:55 -04003145 boardp->asc_n_io_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Al Viro31491e12013-03-31 03:04:13 -04003147 seq_printf(m, " io_port 0x%lx\n", shost->io_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148}
3149
3150/*
3151 * asc_prt_asc_board_info()
3152 *
3153 * Print dynamic board configuration information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 */
Al Virob59fb6f2013-03-31 02:59:55 -04003155static void asc_prt_asc_board_info(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003157 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003158 int chip_scsi_id;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003159 ASC_DVC_VAR *v;
3160 ASC_DVC_CFG *c;
3161 int i;
3162 int renegotiate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003164 v = &boardp->dvc_var.asc_dvc_var;
3165 c = &boardp->dvc_cfg.asc_dvc_cfg;
3166 chip_scsi_id = c->chip_scsi_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
Al Virob59fb6f2013-03-31 02:59:55 -04003168 seq_printf(m,
3169 "\nAsc Library Configuration and Statistics for AdvanSys SCSI Host %d:\n",
3170 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Al Virob59fb6f2013-03-31 02:59:55 -04003172 seq_printf(m, " chip_version %u, mcode_date 0x%x, "
3173 "mcode_version 0x%x, err_code %u\n",
3174 c->chip_version, c->mcode_date, c->mcode_version,
3175 v->err_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003177 /* Current number of commands waiting for the host. */
Al Virob59fb6f2013-03-31 02:59:55 -04003178 seq_printf(m,
3179 " Total Command Pending: %d\n", v->cur_total_qng);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003181 seq_puts(m, " Command Queuing:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003182 for (i = 0; i <= ASC_MAX_TID; i++) {
3183 if ((chip_scsi_id == i) ||
3184 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3185 continue;
3186 }
Al Virob59fb6f2013-03-31 02:59:55 -04003187 seq_printf(m, " %X:%c",
3188 i,
3189 (v->use_tagged_qng & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003192 /* Current number of commands waiting for a device. */
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003193 seq_puts(m, "\n Command Queue Pending:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003194 for (i = 0; i <= ASC_MAX_TID; i++) {
3195 if ((chip_scsi_id == i) ||
3196 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3197 continue;
3198 }
Al Virob59fb6f2013-03-31 02:59:55 -04003199 seq_printf(m, " %X:%u", i, v->cur_dvc_qng[i]);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003202 /* Current limit on number of commands that can be sent to a device. */
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003203 seq_puts(m, "\n Command Queue Limit:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003204 for (i = 0; i <= ASC_MAX_TID; i++) {
3205 if ((chip_scsi_id == i) ||
3206 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3207 continue;
3208 }
Al Virob59fb6f2013-03-31 02:59:55 -04003209 seq_printf(m, " %X:%u", i, v->max_dvc_qng[i]);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003212 /* Indicate whether the device has returned queue full status. */
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003213 seq_puts(m, "\n Command Queue Full:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003214 for (i = 0; i <= ASC_MAX_TID; i++) {
3215 if ((chip_scsi_id == i) ||
3216 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3217 continue;
3218 }
Al Virob59fb6f2013-03-31 02:59:55 -04003219 if (boardp->queue_full & ADV_TID_TO_TIDMASK(i))
3220 seq_printf(m, " %X:Y-%d",
3221 i, boardp->queue_full_cnt[i]);
3222 else
3223 seq_printf(m, " %X:N", i);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003226 seq_puts(m, "\n Synchronous Transfer:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003227 for (i = 0; i <= ASC_MAX_TID; i++) {
3228 if ((chip_scsi_id == i) ||
3229 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3230 continue;
3231 }
Al Virob59fb6f2013-03-31 02:59:55 -04003232 seq_printf(m, " %X:%c",
3233 i,
3234 (v->sdtr_done & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003235 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003236 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003238 for (i = 0; i <= ASC_MAX_TID; i++) {
3239 uchar syn_period_ix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003241 if ((chip_scsi_id == i) ||
3242 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0) ||
3243 ((v->init_sdtr & ADV_TID_TO_TIDMASK(i)) == 0)) {
3244 continue;
3245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Al Virob59fb6f2013-03-31 02:59:55 -04003247 seq_printf(m, " %X:", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003249 if ((boardp->sdtr_data[i] & ASC_SYN_MAX_OFFSET) == 0) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003250 seq_puts(m, " Asynchronous");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003251 } else {
3252 syn_period_ix =
3253 (boardp->sdtr_data[i] >> 4) & (v->max_sdtr_index -
3254 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Al Virob59fb6f2013-03-31 02:59:55 -04003256 seq_printf(m,
3257 " Transfer Period Factor: %d (%d.%d Mhz),",
3258 v->sdtr_period_tbl[syn_period_ix],
3259 250 / v->sdtr_period_tbl[syn_period_ix],
3260 ASC_TENTHS(250,
3261 v->sdtr_period_tbl[syn_period_ix]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Al Virob59fb6f2013-03-31 02:59:55 -04003263 seq_printf(m, " REQ/ACK Offset: %d",
3264 boardp->sdtr_data[i] & ASC_SYN_MAX_OFFSET);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003267 if ((v->sdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003268 seq_puts(m, "*\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003269 renegotiate = 1;
3270 } else {
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003271 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003272 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003275 if (renegotiate) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003276 seq_puts(m, " * = Re-negotiation pending before next command.\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278}
3279
3280/*
3281 * asc_prt_adv_board_info()
3282 *
3283 * Print dynamic board configuration information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 */
Al Virob59fb6f2013-03-31 02:59:55 -04003285static void asc_prt_adv_board_info(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003287 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003288 int i;
3289 ADV_DVC_VAR *v;
3290 ADV_DVC_CFG *c;
3291 AdvPortAddr iop_base;
3292 ushort chip_scsi_id;
3293 ushort lramword;
3294 uchar lrambyte;
3295 ushort tagqng_able;
3296 ushort sdtr_able, wdtr_able;
3297 ushort wdtr_done, sdtr_done;
3298 ushort period = 0;
3299 int renegotiate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003301 v = &boardp->dvc_var.adv_dvc_var;
3302 c = &boardp->dvc_cfg.adv_dvc_cfg;
3303 iop_base = v->iop_base;
3304 chip_scsi_id = v->chip_scsi_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
Al Virob59fb6f2013-03-31 02:59:55 -04003306 seq_printf(m,
3307 "\nAdv Library Configuration and Statistics for AdvanSys SCSI Host %d:\n",
3308 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
Al Virob59fb6f2013-03-31 02:59:55 -04003310 seq_printf(m,
Guo Zhid4996c62021-09-29 20:25:37 +08003311 " iop_base 0x%p, cable_detect: %X, err_code %u\n",
3312 v->iop_base,
Al Virob59fb6f2013-03-31 02:59:55 -04003313 AdvReadWordRegister(iop_base,IOPW_SCSI_CFG1) & CABLE_DETECT,
3314 v->err_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
Al Virob59fb6f2013-03-31 02:59:55 -04003316 seq_printf(m, " chip_version %u, mcode_date 0x%x, "
3317 "mcode_version 0x%x\n", c->chip_version,
3318 c->mcode_date, c->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003320 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003321 seq_puts(m, " Queuing Enabled:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003322 for (i = 0; i <= ADV_MAX_TID; i++) {
3323 if ((chip_scsi_id == i) ||
3324 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3325 continue;
3326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Al Virob59fb6f2013-03-31 02:59:55 -04003328 seq_printf(m, " %X:%c",
3329 i,
3330 (tagqng_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003333 seq_puts(m, "\n Queue Limit:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003334 for (i = 0; i <= ADV_MAX_TID; i++) {
3335 if ((chip_scsi_id == i) ||
3336 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3337 continue;
3338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003340 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + i,
3341 lrambyte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Al Virob59fb6f2013-03-31 02:59:55 -04003343 seq_printf(m, " %X:%d", i, lrambyte);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003346 seq_puts(m, "\n Command Pending:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003347 for (i = 0; i <= ADV_MAX_TID; i++) {
3348 if ((chip_scsi_id == i) ||
3349 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3350 continue;
3351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003353 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_QUEUED_CMD + i,
3354 lrambyte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
Al Virob59fb6f2013-03-31 02:59:55 -04003356 seq_printf(m, " %X:%d", i, lrambyte);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003357 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003358 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003360 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003361 seq_puts(m, " Wide Enabled:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003362 for (i = 0; i <= ADV_MAX_TID; i++) {
3363 if ((chip_scsi_id == i) ||
3364 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3365 continue;
3366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
Al Virob59fb6f2013-03-31 02:59:55 -04003368 seq_printf(m, " %X:%c",
3369 i,
3370 (wdtr_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003371 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003372 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003374 AdvReadWordLram(iop_base, ASC_MC_WDTR_DONE, wdtr_done);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003375 seq_puts(m, " Transfer Bit Width:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003376 for (i = 0; i <= ADV_MAX_TID; i++) {
3377 if ((chip_scsi_id == i) ||
3378 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3379 continue;
3380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003382 AdvReadWordLram(iop_base,
3383 ASC_MC_DEVICE_HSHK_CFG_TABLE + (2 * i),
3384 lramword);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Al Virob59fb6f2013-03-31 02:59:55 -04003386 seq_printf(m, " %X:%d",
3387 i, (lramword & 0x8000) ? 16 : 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003389 if ((wdtr_able & ADV_TID_TO_TIDMASK(i)) &&
3390 (wdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003391 seq_putc(m, '*');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003392 renegotiate = 1;
3393 }
3394 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003395 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003397 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003398 seq_puts(m, " Synchronous Enabled:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003399 for (i = 0; i <= ADV_MAX_TID; i++) {
3400 if ((chip_scsi_id == i) ||
3401 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3402 continue;
3403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Al Virob59fb6f2013-03-31 02:59:55 -04003405 seq_printf(m, " %X:%c",
3406 i,
3407 (sdtr_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003408 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003409 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003411 AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, sdtr_done);
3412 for (i = 0; i <= ADV_MAX_TID; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003414 AdvReadWordLram(iop_base,
3415 ASC_MC_DEVICE_HSHK_CFG_TABLE + (2 * i),
3416 lramword);
3417 lramword &= ~0x8000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003419 if ((chip_scsi_id == i) ||
3420 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0) ||
3421 ((sdtr_able & ADV_TID_TO_TIDMASK(i)) == 0)) {
3422 continue;
3423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Al Virob59fb6f2013-03-31 02:59:55 -04003425 seq_printf(m, " %X:", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003427 if ((lramword & 0x1F) == 0) { /* Check for REQ/ACK Offset 0. */
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003428 seq_puts(m, " Asynchronous");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003429 } else {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003430 seq_puts(m, " Transfer Period Factor: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003432 if ((lramword & 0x1F00) == 0x1100) { /* 80 Mhz */
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003433 seq_puts(m, "9 (80.0 Mhz),");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003434 } else if ((lramword & 0x1F00) == 0x1000) { /* 40 Mhz */
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003435 seq_puts(m, "10 (40.0 Mhz),");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003436 } else { /* 20 Mhz or below. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003438 period = (((lramword >> 8) * 25) + 50) / 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003440 if (period == 0) { /* Should never happen. */
Al Viro31491e12013-03-31 03:04:13 -04003441 seq_printf(m, "%d (? Mhz), ", period);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003442 } else {
Al Virob59fb6f2013-03-31 02:59:55 -04003443 seq_printf(m,
3444 "%d (%d.%d Mhz),",
3445 period, 250 / period,
3446 ASC_TENTHS(250, period));
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003447 }
3448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Al Virob59fb6f2013-03-31 02:59:55 -04003450 seq_printf(m, " REQ/ACK Offset: %d",
3451 lramword & 0x1F);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003454 if ((sdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003455 seq_puts(m, "*\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003456 renegotiate = 1;
3457 } else {
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003458 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003459 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003462 if (renegotiate) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003463 seq_puts(m, " * = Re-negotiation pending before next command.\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465}
3466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467#ifdef ADVANSYS_STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468/*
3469 * asc_prt_board_stats()
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 */
Al Virob59fb6f2013-03-31 02:59:55 -04003471static void asc_prt_board_stats(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003473 struct asc_board *boardp = shost_priv(shost);
3474 struct asc_stats *s = &boardp->asc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
Al Virob59fb6f2013-03-31 02:59:55 -04003476 seq_printf(m,
3477 "\nLinux Driver Statistics for AdvanSys SCSI Host %d:\n",
3478 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Al Virob59fb6f2013-03-31 02:59:55 -04003480 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003481 " queuecommand %u, reset %u, biosparam %u, interrupt %u\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003482 s->queuecommand, s->reset, s->biosparam,
3483 s->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Al Virob59fb6f2013-03-31 02:59:55 -04003485 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003486 " callback %u, done %u, build_error %u, build_noreq %u, build_nosg %u\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003487 s->callback, s->done, s->build_error,
3488 s->adv_build_noreq, s->adv_build_nosg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Al Virob59fb6f2013-03-31 02:59:55 -04003490 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003491 " exe_noerror %u, exe_busy %u, exe_error %u, exe_unknown %u\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003492 s->exe_noerror, s->exe_busy, s->exe_error,
3493 s->exe_unknown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003495 /*
3496 * Display data transfer statistics.
3497 */
Matthew Wilcox52c334e2007-10-02 21:55:39 -04003498 if (s->xfer_cnt > 0) {
Al Viro31491e12013-03-31 03:04:13 -04003499 seq_printf(m, " xfer_cnt %u, xfer_elem %u, ",
Al Virob59fb6f2013-03-31 02:59:55 -04003500 s->xfer_cnt, s->xfer_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501
Al Viro31491e12013-03-31 03:04:13 -04003502 seq_printf(m, "xfer_bytes %u.%01u kb\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003503 s->xfer_sect / 2, ASC_TENTHS(s->xfer_sect, 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003505 /* Scatter gather transfer statistics */
Al Viro31491e12013-03-31 03:04:13 -04003506 seq_printf(m, " avg_num_elem %u.%01u, ",
Al Virob59fb6f2013-03-31 02:59:55 -04003507 s->xfer_elem / s->xfer_cnt,
3508 ASC_TENTHS(s->xfer_elem, s->xfer_cnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
Al Viro31491e12013-03-31 03:04:13 -04003510 seq_printf(m, "avg_elem_size %u.%01u kb, ",
Al Virob59fb6f2013-03-31 02:59:55 -04003511 (s->xfer_sect / 2) / s->xfer_elem,
3512 ASC_TENTHS((s->xfer_sect / 2), s->xfer_elem));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Al Viro31491e12013-03-31 03:04:13 -04003514 seq_printf(m, "avg_xfer_size %u.%01u kb\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003515 (s->xfer_sect / 2) / s->xfer_cnt,
3516 ASC_TENTHS((s->xfer_sect / 2), s->xfer_cnt));
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519#endif /* ADVANSYS_STATS */
3520
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521/*
Al Virob59fb6f2013-03-31 02:59:55 -04003522 * advansys_show_info() - /proc/scsi/advansys/{0,1,2,3,...}
Matthew Wilcox51219352007-10-02 21:55:22 -04003523 *
Al Virob59fb6f2013-03-31 02:59:55 -04003524 * m: seq_file to print into
3525 * shost: Scsi_Host
Matthew Wilcox51219352007-10-02 21:55:22 -04003526 *
3527 * Return the number of bytes read from or written to a
3528 * /proc/scsi/advansys/[0...] file.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 */
Matthew Wilcox51219352007-10-02 21:55:22 -04003530static int
Al Virob59fb6f2013-03-31 02:59:55 -04003531advansys_show_info(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003533 struct asc_board *boardp = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003535 ASC_DBG(1, "begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
Matthew Wilcox51219352007-10-02 21:55:22 -04003537 /*
Matthew Wilcox51219352007-10-02 21:55:22 -04003538 * User read of /proc/scsi/advansys/[0...] file.
3539 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
Matthew Wilcox51219352007-10-02 21:55:22 -04003541 /*
3542 * Get board configuration information.
3543 *
3544 * advansys_info() returns the board string from its own static buffer.
3545 */
Matthew Wilcox51219352007-10-02 21:55:22 -04003546 /* Copy board information. */
Al Virob59fb6f2013-03-31 02:59:55 -04003547 seq_printf(m, "%s\n", (char *)advansys_info(shost));
Matthew Wilcox51219352007-10-02 21:55:22 -04003548 /*
3549 * Display Wide Board BIOS Information.
3550 */
Al Virob59fb6f2013-03-31 02:59:55 -04003551 if (!ASC_NARROW_BOARD(boardp))
3552 asc_prt_adv_bios(m, shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04003553
3554 /*
3555 * Display driver information for each device attached to the board.
3556 */
Al Virob59fb6f2013-03-31 02:59:55 -04003557 asc_prt_board_devices(m, shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04003558
3559 /*
3560 * Display EEPROM configuration for the board.
3561 */
Al Virob59fb6f2013-03-31 02:59:55 -04003562 if (ASC_NARROW_BOARD(boardp))
3563 asc_prt_asc_board_eeprom(m, shost);
3564 else
3565 asc_prt_adv_board_eeprom(m, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
Matthew Wilcox51219352007-10-02 21:55:22 -04003567 /*
3568 * Display driver configuration and information for the board.
3569 */
Al Virob59fb6f2013-03-31 02:59:55 -04003570 asc_prt_driver_conf(m, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Matthew Wilcox51219352007-10-02 21:55:22 -04003572#ifdef ADVANSYS_STATS
3573 /*
3574 * Display driver statistics for the board.
3575 */
Al Virob59fb6f2013-03-31 02:59:55 -04003576 asc_prt_board_stats(m, shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04003577#endif /* ADVANSYS_STATS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Matthew Wilcox51219352007-10-02 21:55:22 -04003579 /*
3580 * Display Asc Library dynamic configuration information
3581 * for the board.
3582 */
Al Virob59fb6f2013-03-31 02:59:55 -04003583 if (ASC_NARROW_BOARD(boardp))
3584 asc_prt_asc_board_info(m, shost);
3585 else
3586 asc_prt_adv_board_info(m, shost);
3587 return 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04003588}
3589#endif /* CONFIG_PROC_FS */
3590
3591static void asc_scsi_done(struct scsi_cmnd *scp)
3592{
Matthew Wilcox52c334e2007-10-02 21:55:39 -04003593 scsi_dma_unmap(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04003594 ASC_STATS(scp->device->host, done);
Bart Van Asschef3bc93382021-10-07 13:28:13 -07003595 scsi_done(scp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596}
3597
Matthew Wilcox51219352007-10-02 21:55:22 -04003598static void AscSetBank(PortAddr iop_base, uchar bank)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599{
Matthew Wilcox51219352007-10-02 21:55:22 -04003600 uchar val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601
Matthew Wilcox51219352007-10-02 21:55:22 -04003602 val = AscGetChipControl(iop_base) &
3603 (~
3604 (CC_SINGLE_STEP | CC_TEST | CC_DIAG | CC_SCSI_RESET |
3605 CC_CHIP_RESET));
3606 if (bank == 1) {
3607 val |= CC_BANK_ONE;
3608 } else if (bank == 2) {
3609 val |= CC_DIAG | CC_BANK_ONE;
3610 } else {
3611 val &= ~CC_BANK_ONE;
3612 }
3613 AscSetChipControl(iop_base, val);
Matthew Wilcox51219352007-10-02 21:55:22 -04003614}
3615
3616static void AscSetChipIH(PortAddr iop_base, ushort ins_code)
3617{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003618 AscSetBank(iop_base, 1);
Matthew Wilcox51219352007-10-02 21:55:22 -04003619 AscWriteChipIH(iop_base, ins_code);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003620 AscSetBank(iop_base, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621}
3622
Matthew Wilcox51219352007-10-02 21:55:22 -04003623static int AscStartChip(PortAddr iop_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624{
Matthew Wilcox51219352007-10-02 21:55:22 -04003625 AscSetChipControl(iop_base, 0);
3626 if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
3627 return (0);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003628 }
Matthew Wilcox51219352007-10-02 21:55:22 -04003629 return (1);
3630}
3631
Hannes Reineckeae267592015-04-24 13:18:28 +02003632static bool AscStopChip(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04003633{
3634 uchar cc_val;
3635
3636 cc_val =
3637 AscGetChipControl(iop_base) &
3638 (~(CC_SINGLE_STEP | CC_TEST | CC_DIAG));
3639 AscSetChipControl(iop_base, (uchar)(cc_val | CC_HALT));
3640 AscSetChipIH(iop_base, INS_HALT);
3641 AscSetChipIH(iop_base, INS_RFLAG_WTM);
3642 if ((AscGetChipStatus(iop_base) & CSW_HALTED) == 0) {
Hannes Reineckeae267592015-04-24 13:18:28 +02003643 return false;
Matthew Wilcox51219352007-10-02 21:55:22 -04003644 }
Hannes Reineckeae267592015-04-24 13:18:28 +02003645 return true;
Matthew Wilcox51219352007-10-02 21:55:22 -04003646}
3647
Hannes Reinecked647c782015-04-24 13:18:26 +02003648static bool AscIsChipHalted(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04003649{
3650 if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
3651 if ((AscGetChipControl(iop_base) & CC_HALT) != 0) {
Hannes Reinecked647c782015-04-24 13:18:26 +02003652 return true;
Matthew Wilcox51219352007-10-02 21:55:22 -04003653 }
3654 }
Hannes Reinecked647c782015-04-24 13:18:26 +02003655 return false;
Matthew Wilcox51219352007-10-02 21:55:22 -04003656}
3657
Hannes Reinecked647c782015-04-24 13:18:26 +02003658static bool AscResetChipAndScsiBus(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04003659{
3660 PortAddr iop_base;
3661 int i = 10;
3662
3663 iop_base = asc_dvc->iop_base;
3664 while ((AscGetChipStatus(iop_base) & CSW_SCSI_RESET_ACTIVE)
3665 && (i-- > 0)) {
3666 mdelay(100);
3667 }
3668 AscStopChip(iop_base);
3669 AscSetChipControl(iop_base, CC_CHIP_RESET | CC_SCSI_RESET | CC_HALT);
3670 udelay(60);
3671 AscSetChipIH(iop_base, INS_RFLAG_WTM);
3672 AscSetChipIH(iop_base, INS_HALT);
3673 AscSetChipControl(iop_base, CC_CHIP_RESET | CC_HALT);
3674 AscSetChipControl(iop_base, CC_HALT);
3675 mdelay(200);
3676 AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
3677 AscSetChipStatus(iop_base, 0);
3678 return (AscIsChipHalted(iop_base));
3679}
3680
3681static int AscFindSignature(PortAddr iop_base)
3682{
3683 ushort sig_word;
3684
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003685 ASC_DBG(1, "AscGetChipSignatureByte(0x%x) 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04003686 iop_base, AscGetChipSignatureByte(iop_base));
3687 if (AscGetChipSignatureByte(iop_base) == (uchar)ASC_1000_ID1B) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003688 ASC_DBG(1, "AscGetChipSignatureWord(0x%x) 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04003689 iop_base, AscGetChipSignatureWord(iop_base));
3690 sig_word = AscGetChipSignatureWord(iop_base);
3691 if ((sig_word == (ushort)ASC_1000_ID0W) ||
3692 (sig_word == (ushort)ASC_1000_ID0W_FIX)) {
3693 return (1);
3694 }
3695 }
3696 return (0);
3697}
3698
3699static void AscEnableInterrupt(PortAddr iop_base)
3700{
3701 ushort cfg;
3702
3703 cfg = AscGetChipCfgLsw(iop_base);
3704 AscSetChipCfgLsw(iop_base, cfg | ASC_CFG0_HOST_INT_ON);
Matthew Wilcox51219352007-10-02 21:55:22 -04003705}
3706
3707static void AscDisableInterrupt(PortAddr iop_base)
3708{
3709 ushort cfg;
3710
3711 cfg = AscGetChipCfgLsw(iop_base);
3712 AscSetChipCfgLsw(iop_base, cfg & (~ASC_CFG0_HOST_INT_ON));
Matthew Wilcox51219352007-10-02 21:55:22 -04003713}
3714
3715static uchar AscReadLramByte(PortAddr iop_base, ushort addr)
3716{
3717 unsigned char byte_data;
3718 unsigned short word_data;
3719
3720 if (isodd_word(addr)) {
3721 AscSetChipLramAddr(iop_base, addr - 1);
3722 word_data = AscGetChipLramData(iop_base);
3723 byte_data = (word_data >> 8) & 0xFF;
3724 } else {
3725 AscSetChipLramAddr(iop_base, addr);
3726 word_data = AscGetChipLramData(iop_base);
3727 byte_data = word_data & 0xFF;
3728 }
3729 return byte_data;
3730}
3731
3732static ushort AscReadLramWord(PortAddr iop_base, ushort addr)
3733{
3734 ushort word_data;
3735
3736 AscSetChipLramAddr(iop_base, addr);
3737 word_data = AscGetChipLramData(iop_base);
3738 return (word_data);
3739}
3740
Matthew Wilcox51219352007-10-02 21:55:22 -04003741static void
3742AscMemWordSetLram(PortAddr iop_base, ushort s_addr, ushort set_wval, int words)
3743{
3744 int i;
3745
3746 AscSetChipLramAddr(iop_base, s_addr);
3747 for (i = 0; i < words; i++) {
3748 AscSetChipLramData(iop_base, set_wval);
3749 }
3750}
3751
3752static void AscWriteLramWord(PortAddr iop_base, ushort addr, ushort word_val)
3753{
3754 AscSetChipLramAddr(iop_base, addr);
3755 AscSetChipLramData(iop_base, word_val);
Matthew Wilcox51219352007-10-02 21:55:22 -04003756}
3757
3758static void AscWriteLramByte(PortAddr iop_base, ushort addr, uchar byte_val)
3759{
3760 ushort word_data;
3761
3762 if (isodd_word(addr)) {
3763 addr--;
3764 word_data = AscReadLramWord(iop_base, addr);
3765 word_data &= 0x00FF;
3766 word_data |= (((ushort)byte_val << 8) & 0xFF00);
3767 } else {
3768 word_data = AscReadLramWord(iop_base, addr);
3769 word_data &= 0xFF00;
3770 word_data |= ((ushort)byte_val & 0x00FF);
3771 }
3772 AscWriteLramWord(iop_base, addr, word_data);
Matthew Wilcox51219352007-10-02 21:55:22 -04003773}
3774
3775/*
3776 * Copy 2 bytes to LRAM.
3777 *
3778 * The source data is assumed to be in little-endian order in memory
3779 * and is maintained in little-endian order when written to LRAM.
3780 */
3781static void
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05303782AscMemWordCopyPtrToLram(PortAddr iop_base, ushort s_addr,
3783 const uchar *s_buffer, int words)
Matthew Wilcox51219352007-10-02 21:55:22 -04003784{
3785 int i;
3786
3787 AscSetChipLramAddr(iop_base, s_addr);
3788 for (i = 0; i < 2 * words; i += 2) {
3789 /*
3790 * On a little-endian system the second argument below
3791 * produces a little-endian ushort which is written to
3792 * LRAM in little-endian order. On a big-endian system
3793 * the second argument produces a big-endian ushort which
3794 * is "transparently" byte-swapped by outpw() and written
3795 * in little-endian order to LRAM.
3796 */
3797 outpw(iop_base + IOP_RAM_DATA,
3798 ((ushort)s_buffer[i + 1] << 8) | s_buffer[i]);
3799 }
Matthew Wilcox51219352007-10-02 21:55:22 -04003800}
3801
3802/*
3803 * Copy 4 bytes to LRAM.
3804 *
3805 * The source data is assumed to be in little-endian order in memory
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003806 * and is maintained in little-endian order when written to LRAM.
Matthew Wilcox51219352007-10-02 21:55:22 -04003807 */
3808static void
3809AscMemDWordCopyPtrToLram(PortAddr iop_base,
3810 ushort s_addr, uchar *s_buffer, int dwords)
3811{
3812 int i;
3813
3814 AscSetChipLramAddr(iop_base, s_addr);
3815 for (i = 0; i < 4 * dwords; i += 4) {
3816 outpw(iop_base + IOP_RAM_DATA, ((ushort)s_buffer[i + 1] << 8) | s_buffer[i]); /* LSW */
3817 outpw(iop_base + IOP_RAM_DATA, ((ushort)s_buffer[i + 3] << 8) | s_buffer[i + 2]); /* MSW */
3818 }
Matthew Wilcox51219352007-10-02 21:55:22 -04003819}
3820
3821/*
3822 * Copy 2 bytes from LRAM.
3823 *
3824 * The source data is assumed to be in little-endian order in LRAM
3825 * and is maintained in little-endian order when written to memory.
3826 */
3827static void
3828AscMemWordCopyPtrFromLram(PortAddr iop_base,
3829 ushort s_addr, uchar *d_buffer, int words)
3830{
3831 int i;
3832 ushort word;
3833
3834 AscSetChipLramAddr(iop_base, s_addr);
3835 for (i = 0; i < 2 * words; i += 2) {
3836 word = inpw(iop_base + IOP_RAM_DATA);
3837 d_buffer[i] = word & 0xff;
3838 d_buffer[i + 1] = (word >> 8) & 0xff;
3839 }
Matthew Wilcox51219352007-10-02 21:55:22 -04003840}
3841
Hannes Reinecke95cfab62015-04-24 13:18:27 +02003842static u32 AscMemSumLramWord(PortAddr iop_base, ushort s_addr, int words)
Matthew Wilcox51219352007-10-02 21:55:22 -04003843{
Hannes Reinecke95cfab62015-04-24 13:18:27 +02003844 u32 sum = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04003845 int i;
3846
Matthew Wilcox51219352007-10-02 21:55:22 -04003847 for (i = 0; i < words; i++, s_addr += 2) {
3848 sum += AscReadLramWord(iop_base, s_addr);
3849 }
3850 return (sum);
3851}
3852
Hannes Reineckef33134e2015-04-24 13:18:31 +02003853static void AscInitLram(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04003854{
3855 uchar i;
3856 ushort s_addr;
3857 PortAddr iop_base;
Matthew Wilcox51219352007-10-02 21:55:22 -04003858
3859 iop_base = asc_dvc->iop_base;
Matthew Wilcox51219352007-10-02 21:55:22 -04003860 AscMemWordSetLram(iop_base, ASC_QADR_BEG, 0,
3861 (ushort)(((int)(asc_dvc->max_total_qng + 2 + 1) *
3862 64) >> 1));
3863 i = ASC_MIN_ACTIVE_QNO;
3864 s_addr = ASC_QADR_BEG + ASC_QBLK_SIZE;
3865 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
3866 (uchar)(i + 1));
3867 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
3868 (uchar)(asc_dvc->max_total_qng));
3869 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
3870 (uchar)i);
3871 i++;
3872 s_addr += ASC_QBLK_SIZE;
3873 for (; i < asc_dvc->max_total_qng; i++, s_addr += ASC_QBLK_SIZE) {
3874 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
3875 (uchar)(i + 1));
3876 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
3877 (uchar)(i - 1));
3878 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
3879 (uchar)i);
3880 }
3881 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
3882 (uchar)ASC_QLINK_END);
3883 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
3884 (uchar)(asc_dvc->max_total_qng - 1));
3885 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
3886 (uchar)asc_dvc->max_total_qng);
3887 i++;
3888 s_addr += ASC_QBLK_SIZE;
3889 for (; i <= (uchar)(asc_dvc->max_total_qng + 3);
3890 i++, s_addr += ASC_QBLK_SIZE) {
3891 AscWriteLramByte(iop_base,
3892 (ushort)(s_addr + (ushort)ASC_SCSIQ_B_FWD), i);
3893 AscWriteLramByte(iop_base,
3894 (ushort)(s_addr + (ushort)ASC_SCSIQ_B_BWD), i);
3895 AscWriteLramByte(iop_base,
3896 (ushort)(s_addr + (ushort)ASC_SCSIQ_B_QNO), i);
3897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898}
3899
Hannes Reinecke95cfab62015-04-24 13:18:27 +02003900static u32
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05303901AscLoadMicroCode(PortAddr iop_base, ushort s_addr,
3902 const uchar *mcode_buf, ushort mcode_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903{
Hannes Reinecke95cfab62015-04-24 13:18:27 +02003904 u32 chksum;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003905 ushort mcode_word_size;
3906 ushort mcode_chksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003908 /* Write the microcode buffer starting at LRAM address 0. */
3909 mcode_word_size = (ushort)(mcode_size >> 1);
3910 AscMemWordSetLram(iop_base, s_addr, 0, mcode_word_size);
3911 AscMemWordCopyPtrToLram(iop_base, s_addr, mcode_buf, mcode_word_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003913 chksum = AscMemSumLramWord(iop_base, s_addr, mcode_word_size);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003914 ASC_DBG(1, "chksum 0x%lx\n", (ulong)chksum);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003915 mcode_chksum = (ushort)AscMemSumLramWord(iop_base,
3916 (ushort)ASC_CODE_SEC_BEG,
3917 (ushort)((mcode_size -
3918 s_addr - (ushort)
3919 ASC_CODE_SEC_BEG) /
3920 2));
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003921 ASC_DBG(1, "mcode_chksum 0x%lx\n", (ulong)mcode_chksum);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003922 AscWriteLramWord(iop_base, ASCV_MCODE_CHKSUM_W, mcode_chksum);
3923 AscWriteLramWord(iop_base, ASCV_MCODE_SIZE_W, mcode_size);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003924 return chksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925}
3926
Matthew Wilcox51219352007-10-02 21:55:22 -04003927static void AscInitQLinkVar(ASC_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928{
Matthew Wilcox51219352007-10-02 21:55:22 -04003929 PortAddr iop_base;
3930 int i;
3931 ushort lram_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Matthew Wilcox51219352007-10-02 21:55:22 -04003933 iop_base = asc_dvc->iop_base;
3934 AscPutRiscVarFreeQHead(iop_base, 1);
3935 AscPutRiscVarDoneQTail(iop_base, asc_dvc->max_total_qng);
3936 AscPutVarFreeQHead(iop_base, 1);
3937 AscPutVarDoneQTail(iop_base, asc_dvc->max_total_qng);
3938 AscWriteLramByte(iop_base, ASCV_BUSY_QHEAD_B,
3939 (uchar)((int)asc_dvc->max_total_qng + 1));
3940 AscWriteLramByte(iop_base, ASCV_DISC1_QHEAD_B,
3941 (uchar)((int)asc_dvc->max_total_qng + 2));
3942 AscWriteLramByte(iop_base, (ushort)ASCV_TOTAL_READY_Q_B,
3943 asc_dvc->max_total_qng);
3944 AscWriteLramWord(iop_base, ASCV_ASCDVC_ERR_CODE_W, 0);
3945 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
3946 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, 0);
3947 AscWriteLramByte(iop_base, ASCV_SCSIBUSY_B, 0);
3948 AscWriteLramByte(iop_base, ASCV_WTM_FLAG_B, 0);
3949 AscPutQDoneInProgress(iop_base, 0);
3950 lram_addr = ASC_QADR_BEG;
3951 for (i = 0; i < 32; i++, lram_addr += 2) {
3952 AscWriteLramWord(iop_base, lram_addr, 0);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954}
3955
Hannes Reineckef33134e2015-04-24 13:18:31 +02003956static int AscInitMicroCodeVar(ASC_DVC_VAR *asc_dvc)
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06003957{
Matthew Wilcox51219352007-10-02 21:55:22 -04003958 int i;
Hannes Reineckef33134e2015-04-24 13:18:31 +02003959 int warn_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04003960 PortAddr iop_base;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02003961 __le32 phy_addr;
3962 __le32 phy_size;
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04003963 struct asc_board *board = asc_dvc_to_board(asc_dvc);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06003964
Matthew Wilcox51219352007-10-02 21:55:22 -04003965 iop_base = asc_dvc->iop_base;
3966 warn_code = 0;
3967 for (i = 0; i <= ASC_MAX_TID; i++) {
3968 AscPutMCodeInitSDTRAtID(iop_base, i,
3969 asc_dvc->cfg->sdtr_period_offset[i]);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06003970 }
3971
Matthew Wilcox51219352007-10-02 21:55:22 -04003972 AscInitQLinkVar(asc_dvc);
3973 AscWriteLramByte(iop_base, ASCV_DISC_ENABLE_B,
3974 asc_dvc->cfg->disc_enable);
3975 AscWriteLramByte(iop_base, ASCV_HOSTSCSI_ID_B,
3976 ASC_TID_TO_TARGET_ID(asc_dvc->cfg->chip_scsi_id));
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06003977
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04003978 /* Ensure overrun buffer is aligned on an 8 byte boundary. */
3979 BUG_ON((unsigned long)asc_dvc->overrun_buf & 7);
3980 asc_dvc->overrun_dma = dma_map_single(board->dev, asc_dvc->overrun_buf,
3981 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03003982 if (dma_mapping_error(board->dev, asc_dvc->overrun_dma)) {
3983 warn_code = -ENOMEM;
3984 goto err_dma_map;
3985 }
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04003986 phy_addr = cpu_to_le32(asc_dvc->overrun_dma);
Matthew Wilcox51219352007-10-02 21:55:22 -04003987 AscMemDWordCopyPtrToLram(iop_base, ASCV_OVERRUN_PADDR_D,
3988 (uchar *)&phy_addr, 1);
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04003989 phy_size = cpu_to_le32(ASC_OVERRUN_BSIZE);
Matthew Wilcox51219352007-10-02 21:55:22 -04003990 AscMemDWordCopyPtrToLram(iop_base, ASCV_OVERRUN_BSIZE_D,
3991 (uchar *)&phy_size, 1);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06003992
Matthew Wilcox51219352007-10-02 21:55:22 -04003993 asc_dvc->cfg->mcode_date =
3994 AscReadLramWord(iop_base, (ushort)ASCV_MC_DATE_W);
3995 asc_dvc->cfg->mcode_version =
3996 AscReadLramWord(iop_base, (ushort)ASCV_MC_VER_W);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06003997
Matthew Wilcox51219352007-10-02 21:55:22 -04003998 AscSetPCAddr(iop_base, ASC_MCODE_START_ADDR);
3999 if (AscGetPCAddr(iop_base) != ASC_MCODE_START_ADDR) {
4000 asc_dvc->err_code |= ASC_IERR_SET_PC_ADDR;
Hannes Reineckef33134e2015-04-24 13:18:31 +02004001 warn_code = -EINVAL;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004002 goto err_mcode_start;
Matthew Wilcox51219352007-10-02 21:55:22 -04004003 }
4004 if (AscStartChip(iop_base) != 1) {
4005 asc_dvc->err_code |= ASC_IERR_START_STOP_CHIP;
Hannes Reineckef33134e2015-04-24 13:18:31 +02004006 warn_code = -EIO;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004007 goto err_mcode_start;
Matthew Wilcox51219352007-10-02 21:55:22 -04004008 }
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004009
Matthew Wilcox51219352007-10-02 21:55:22 -04004010 return warn_code;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004011
4012err_mcode_start:
4013 dma_unmap_single(board->dev, asc_dvc->overrun_dma,
4014 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
4015err_dma_map:
4016 asc_dvc->overrun_dma = 0;
4017 return warn_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04004018}
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004019
Hannes Reineckef33134e2015-04-24 13:18:31 +02004020static int AscInitAsc1000Driver(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04004021{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304022 const struct firmware *fw;
4023 const char fwname[] = "advansys/mcode.bin";
4024 int err;
4025 unsigned long chksum;
Hannes Reineckef33134e2015-04-24 13:18:31 +02004026 int warn_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04004027 PortAddr iop_base;
4028
4029 iop_base = asc_dvc->iop_base;
4030 warn_code = 0;
4031 if ((asc_dvc->dvc_cntl & ASC_CNTL_RESET_SCSI) &&
4032 !(asc_dvc->init_state & ASC_INIT_RESET_SCSI_DONE)) {
4033 AscResetChipAndScsiBus(asc_dvc);
4034 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
4035 }
4036 asc_dvc->init_state |= ASC_INIT_STATE_BEG_LOAD_MC;
4037 if (asc_dvc->err_code != 0)
Hannes Reineckef33134e2015-04-24 13:18:31 +02004038 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04004039 if (!AscFindSignature(asc_dvc->iop_base)) {
4040 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
4041 return warn_code;
4042 }
4043 AscDisableInterrupt(iop_base);
Hannes Reineckef33134e2015-04-24 13:18:31 +02004044 AscInitLram(asc_dvc);
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304045
4046 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
4047 if (err) {
4048 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
4049 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004050 asc_dvc->err_code |= ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304051 return err;
4052 }
4053 if (fw->size < 4) {
4054 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
4055 fw->size, fwname);
4056 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004057 asc_dvc->err_code |= ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304058 return -EINVAL;
4059 }
4060 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
4061 (fw->data[1] << 8) | fw->data[0];
4062 ASC_DBG(1, "_asc_mcode_chksum 0x%lx\n", (ulong)chksum);
4063 if (AscLoadMicroCode(iop_base, 0, &fw->data[4],
4064 fw->size - 4) != chksum) {
Matthew Wilcox51219352007-10-02 21:55:22 -04004065 asc_dvc->err_code |= ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304066 release_firmware(fw);
Matthew Wilcox51219352007-10-02 21:55:22 -04004067 return warn_code;
4068 }
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304069 release_firmware(fw);
Matthew Wilcox51219352007-10-02 21:55:22 -04004070 warn_code |= AscInitMicroCodeVar(asc_dvc);
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004071 if (!asc_dvc->overrun_dma)
4072 return warn_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04004073 asc_dvc->init_state |= ASC_INIT_STATE_END_LOAD_MC;
4074 AscEnableInterrupt(iop_base);
4075 return warn_code;
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004076}
4077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078/*
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004079 * Load the Microcode
4080 *
4081 * Write the microcode image to RISC memory starting at address 0.
4082 *
4083 * The microcode is stored compressed in the following format:
4084 *
4085 * 254 word (508 byte) table indexed by byte code followed
4086 * by the following byte codes:
4087 *
4088 * 1-Byte Code:
4089 * 00: Emit word 0 in table.
4090 * 01: Emit word 1 in table.
4091 * .
4092 * FD: Emit word 253 in table.
4093 *
4094 * Multi-Byte Code:
4095 * FE WW WW: (3 byte code) Word to emit is the next word WW WW.
4096 * FF BB WW WW: (4 byte code) Emit BB count times next word WW WW.
4097 *
4098 * Returns 0 or an error if the checksum doesn't match
4099 */
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304100static int AdvLoadMicrocode(AdvPortAddr iop_base, const unsigned char *buf,
4101 int size, int memsize, int chksum)
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004102{
4103 int i, j, end, len = 0;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02004104 u32 sum;
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004105
4106 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, 0);
4107
4108 for (i = 253 * 2; i < size; i++) {
4109 if (buf[i] == 0xff) {
4110 unsigned short word = (buf[i + 3] << 8) | buf[i + 2];
4111 for (j = 0; j < buf[i + 1]; j++) {
4112 AdvWriteWordAutoIncLram(iop_base, word);
4113 len += 2;
4114 }
4115 i += 3;
4116 } else if (buf[i] == 0xfe) {
4117 unsigned short word = (buf[i + 2] << 8) | buf[i + 1];
4118 AdvWriteWordAutoIncLram(iop_base, word);
4119 i += 2;
4120 len += 2;
4121 } else {
Matthew Wilcox951b62c2007-10-05 15:57:06 -04004122 unsigned int off = buf[i] * 2;
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004123 unsigned short word = (buf[off + 1] << 8) | buf[off];
4124 AdvWriteWordAutoIncLram(iop_base, word);
4125 len += 2;
4126 }
4127 }
4128
4129 end = len;
4130
4131 while (len < memsize) {
4132 AdvWriteWordAutoIncLram(iop_base, 0);
4133 len += 2;
4134 }
4135
4136 /* Verify the microcode checksum. */
4137 sum = 0;
4138 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, 0);
4139
4140 for (len = 0; len < end; len += 2) {
4141 sum += AdvReadWordAutoIncLram(iop_base);
4142 }
4143
4144 if (sum != chksum)
4145 return ASC_IERR_MCODE_CHKSUM;
4146
4147 return 0;
4148}
4149
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004150static void AdvBuildCarrierFreelist(struct adv_dvc_var *adv_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04004151{
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004152 off_t carr_offset = 0, next_offset;
4153 dma_addr_t carr_paddr;
4154 int carr_num = ADV_CARRIER_BUFSIZE / sizeof(ADV_CARR_T), i;
Matthew Wilcox51219352007-10-02 21:55:22 -04004155
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004156 for (i = 0; i < carr_num; i++) {
4157 carr_offset = i * sizeof(ADV_CARR_T);
4158 /* Get physical address of the carrier 'carrp'. */
4159 carr_paddr = adv_dvc->carrier_addr + carr_offset;
4160
4161 adv_dvc->carrier[i].carr_pa = cpu_to_le32(carr_paddr);
4162 adv_dvc->carrier[i].carr_va = cpu_to_le32(carr_offset);
4163 adv_dvc->carrier[i].areq_vpa = 0;
4164 next_offset = carr_offset + sizeof(ADV_CARR_T);
4165 if (i == carr_num)
4166 next_offset = ~0;
4167 adv_dvc->carrier[i].next_vpa = cpu_to_le32(next_offset);
4168 }
4169 /*
4170 * We cannot have a carrier with 'carr_va' of '0', as
4171 * a reference to this carrier would be interpreted as
4172 * list termination.
4173 * So start at carrier 1 with the freelist.
4174 */
4175 adv_dvc->carr_freelist = &adv_dvc->carrier[1];
4176}
4177
4178static ADV_CARR_T *adv_get_carrier(struct adv_dvc_var *adv_dvc, u32 offset)
4179{
4180 int index;
4181
4182 BUG_ON(offset > ADV_CARRIER_BUFSIZE);
4183
4184 index = offset / sizeof(ADV_CARR_T);
4185 return &adv_dvc->carrier[index];
4186}
4187
4188static ADV_CARR_T *adv_get_next_carrier(struct adv_dvc_var *adv_dvc)
4189{
4190 ADV_CARR_T *carrp = adv_dvc->carr_freelist;
4191 u32 next_vpa = le32_to_cpu(carrp->next_vpa);
4192
4193 if (next_vpa == 0 || next_vpa == ~0) {
4194 ASC_DBG(1, "invalid vpa offset 0x%x\n", next_vpa);
4195 return NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04004196 }
4197
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004198 adv_dvc->carr_freelist = adv_get_carrier(adv_dvc, next_vpa);
4199 /*
4200 * insert stopper carrier to terminate list
4201 */
Hannes Reinecke084e6c32015-04-24 13:18:35 +02004202 carrp->next_vpa = cpu_to_le32(ADV_CQ_STOPPER);
Matthew Wilcox51219352007-10-02 21:55:22 -04004203
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004204 return carrp;
Matthew Wilcox51219352007-10-02 21:55:22 -04004205}
4206
4207/*
Hannes Reinecke4b47e462015-04-24 13:18:24 +02004208 * 'offset' is the index in the request pointer array
4209 */
4210static adv_req_t * adv_get_reqp(struct adv_dvc_var *adv_dvc, u32 offset)
4211{
4212 struct asc_board *boardp = adv_dvc->drv_ptr;
4213
4214 BUG_ON(offset > adv_dvc->max_host_qng);
4215 return &boardp->adv_reqp[offset];
4216}
4217
4218/*
Matthew Wilcox51219352007-10-02 21:55:22 -04004219 * Send an idle command to the chip and wait for completion.
4220 *
4221 * Command completion is polled for once per microsecond.
4222 *
4223 * The function can be called from anywhere including an interrupt handler.
4224 * But the function is not re-entrant, so it uses the DvcEnter/LeaveCritical()
4225 * functions to prevent reentrancy.
4226 *
4227 * Return Values:
4228 * ADV_TRUE - command completed successfully
4229 * ADV_FALSE - command failed
4230 * ADV_ERROR - command timed out
4231 */
4232static int
4233AdvSendIdleCmd(ADV_DVC_VAR *asc_dvc,
Hannes Reinecke95cfab62015-04-24 13:18:27 +02004234 ushort idle_cmd, u32 idle_cmd_parameter)
Matthew Wilcox51219352007-10-02 21:55:22 -04004235{
Hannes Reinecke95cfab62015-04-24 13:18:27 +02004236 int result, i, j;
Matthew Wilcox51219352007-10-02 21:55:22 -04004237 AdvPortAddr iop_base;
4238
4239 iop_base = asc_dvc->iop_base;
4240
4241 /*
4242 * Clear the idle command status which is set by the microcode
4243 * to a non-zero value to indicate when the command is completed.
4244 * The non-zero result is one of the IDLE_CMD_STATUS_* values
4245 */
4246 AdvWriteWordLram(iop_base, ASC_MC_IDLE_CMD_STATUS, (ushort)0);
4247
4248 /*
4249 * Write the idle command value after the idle command parameter
4250 * has been written to avoid a race condition. If the order is not
4251 * followed, the microcode may process the idle command before the
4252 * parameters have been written to LRAM.
4253 */
4254 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IDLE_CMD_PARAMETER,
4255 cpu_to_le32(idle_cmd_parameter));
4256 AdvWriteWordLram(iop_base, ASC_MC_IDLE_CMD, idle_cmd);
4257
4258 /*
4259 * Tickle the RISC to tell it to process the idle command.
4260 */
4261 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_B);
4262 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
4263 /*
4264 * Clear the tickle value. In the ASC-3550 the RISC flag
4265 * command 'clr_tickle_b' does not work unless the host
4266 * value is cleared.
4267 */
4268 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_NOP);
4269 }
4270
4271 /* Wait for up to 100 millisecond for the idle command to timeout. */
4272 for (i = 0; i < SCSI_WAIT_100_MSEC; i++) {
4273 /* Poll once each microsecond for command completion. */
4274 for (j = 0; j < SCSI_US_PER_MSEC; j++) {
4275 AdvReadWordLram(iop_base, ASC_MC_IDLE_CMD_STATUS,
4276 result);
4277 if (result != 0)
4278 return result;
4279 udelay(1);
4280 }
4281 }
4282
4283 BUG(); /* The idle command should never timeout. */
4284 return ADV_ERROR;
4285}
4286
4287/*
4288 * Reset SCSI Bus and purge all outstanding requests.
4289 *
4290 * Return Value:
4291 * ADV_TRUE(1) - All requests are purged and SCSI Bus is reset.
4292 * ADV_FALSE(0) - Microcode command failed.
4293 * ADV_ERROR(-1) - Microcode command timed-out. Microcode or IC
4294 * may be hung which requires driver recovery.
4295 */
4296static int AdvResetSB(ADV_DVC_VAR *asc_dvc)
4297{
4298 int status;
4299
4300 /*
4301 * Send the SCSI Bus Reset idle start idle command which asserts
4302 * the SCSI Bus Reset signal.
4303 */
4304 status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_START, 0L);
4305 if (status != ADV_TRUE) {
4306 return status;
4307 }
4308
4309 /*
4310 * Delay for the specified SCSI Bus Reset hold time.
4311 *
4312 * The hold time delay is done on the host because the RISC has no
4313 * microsecond accurate timer.
4314 */
4315 udelay(ASC_SCSI_RESET_HOLD_TIME_US);
4316
4317 /*
4318 * Send the SCSI Bus Reset end idle command which de-asserts
4319 * the SCSI Bus Reset signal and purges any pending requests.
4320 */
4321 status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_END, 0L);
4322 if (status != ADV_TRUE) {
4323 return status;
4324 }
4325
4326 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
4327
4328 return status;
4329}
4330
4331/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 * Initialize the ASC-3550.
4333 *
4334 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
4335 *
4336 * For a non-fatal error return a warning code. If there are no warnings
4337 * then 0 is returned.
4338 *
4339 * Needed after initialization for error recovery.
4340 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004341static int AdvInitAsc3550Driver(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304343 const struct firmware *fw;
4344 const char fwname[] = "advansys/3550.bin";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004345 AdvPortAddr iop_base;
4346 ushort warn_code;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004347 int begin_addr;
4348 int end_addr;
4349 ushort code_sum;
4350 int word;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004351 int i;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304352 int err;
4353 unsigned long chksum;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004354 ushort scsi_cfg1;
4355 uchar tid;
4356 ushort bios_mem[ASC_MC_BIOSLEN / 2]; /* BIOS RISC Memory 0x40-0x8F. */
4357 ushort wdtr_able = 0, sdtr_able, tagqng_able;
4358 uchar max_cmd[ADV_MAX_TID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004360 /* If there is already an error, don't continue. */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004361 if (asc_dvc->err_code != 0)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004362 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004364 /*
4365 * The caller must set 'chip_type' to ADV_CHIP_ASC3550.
4366 */
4367 if (asc_dvc->chip_type != ADV_CHIP_ASC3550) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004368 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004369 return ADV_ERROR;
4370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004372 warn_code = 0;
4373 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004375 /*
4376 * Save the RISC memory BIOS region before writing the microcode.
4377 * The BIOS may already be loaded and using its RISC LRAM region
4378 * so its region must be saved and restored.
4379 *
4380 * Note: This code makes the assumption, which is currently true,
4381 * that a chip reset does not clear RISC LRAM.
4382 */
4383 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
4384 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
4385 bios_mem[i]);
4386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004388 /*
4389 * Save current per TID negotiated values.
4390 */
4391 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] == 0x55AA) {
4392 ushort bios_version, major, minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004394 bios_version =
4395 bios_mem[(ASC_MC_BIOS_VERSION - ASC_MC_BIOSMEM) / 2];
4396 major = (bios_version >> 12) & 0xF;
4397 minor = (bios_version >> 8) & 0xF;
4398 if (major < 3 || (major == 3 && minor == 1)) {
4399 /* BIOS 3.1 and earlier location of 'wdtr_able' variable. */
4400 AdvReadWordLram(iop_base, 0x120, wdtr_able);
4401 } else {
4402 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
4403 }
4404 }
4405 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
4406 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
4407 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
4408 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
4409 max_cmd[tid]);
4410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304412 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
4413 if (err) {
4414 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
4415 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004416 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304417 return err;
4418 }
4419 if (fw->size < 4) {
4420 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
4421 fw->size, fwname);
4422 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004423 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304424 return -EINVAL;
4425 }
4426 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
4427 (fw->data[1] << 8) | fw->data[0];
4428 asc_dvc->err_code = AdvLoadMicrocode(iop_base, &fw->data[4],
4429 fw->size - 4, ADV_3550_MEMSIZE,
4430 chksum);
4431 release_firmware(fw);
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004432 if (asc_dvc->err_code)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004433 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004435 /*
4436 * Restore the RISC memory BIOS region.
4437 */
4438 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
4439 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
4440 bios_mem[i]);
4441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004443 /*
4444 * Calculate and write the microcode code checksum to the microcode
4445 * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
4446 */
4447 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
4448 AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
4449 code_sum = 0;
4450 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
4451 for (word = begin_addr; word < end_addr; word += 2) {
4452 code_sum += AdvReadWordAutoIncLram(iop_base);
4453 }
4454 AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004456 /*
4457 * Read and save microcode version and date.
4458 */
4459 AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
4460 asc_dvc->cfg->mcode_date);
4461 AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
4462 asc_dvc->cfg->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004464 /*
4465 * Set the chip type to indicate the ASC3550.
4466 */
4467 AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC3550);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004469 /*
4470 * If the PCI Configuration Command Register "Parity Error Response
4471 * Control" Bit was clear (0), then set the microcode variable
4472 * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
4473 * to ignore DMA parity errors.
4474 */
4475 if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
4476 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
4477 word |= CONTROL_FLAG_IGNORE_PERR;
4478 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
4479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004481 /*
4482 * For ASC-3550, setting the START_CTL_EMFU [3:2] bits sets a FIFO
4483 * threshold of 128 bytes. This register is only accessible to the host.
4484 */
4485 AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
4486 START_CTL_EMFU | READ_CMD_MRM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004488 /*
4489 * Microcode operating variables for WDTR, SDTR, and command tag
Matthew Wilcox47d853c2007-07-26 11:41:33 -04004490 * queuing will be set in slave_configure() based on what a
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004491 * device reports it is capable of in Inquiry byte 7.
4492 *
4493 * If SCSI Bus Resets have been disabled, then directly set
4494 * SDTR and WDTR from the EEPROM configuration. This will allow
4495 * the BIOS and warm boot to work without a SCSI bus hang on
4496 * the Inquiry caused by host and target mismatched DTR values.
4497 * Without the SCSI Bus Reset, before an Inquiry a device can't
4498 * be assumed to be in Asynchronous, Narrow mode.
4499 */
4500 if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
4501 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
4502 asc_dvc->wdtr_able);
4503 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
4504 asc_dvc->sdtr_able);
4505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004507 /*
4508 * Set microcode operating variables for SDTR_SPEED1, SDTR_SPEED2,
4509 * SDTR_SPEED3, and SDTR_SPEED4 based on the ULTRA EEPROM per TID
4510 * bitmask. These values determine the maximum SDTR speed negotiated
4511 * with a device.
4512 *
4513 * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
4514 * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
4515 * without determining here whether the device supports SDTR.
4516 *
4517 * 4-bit speed SDTR speed name
4518 * =========== ===============
4519 * 0000b (0x0) SDTR disabled
4520 * 0001b (0x1) 5 Mhz
4521 * 0010b (0x2) 10 Mhz
4522 * 0011b (0x3) 20 Mhz (Ultra)
4523 * 0100b (0x4) 40 Mhz (LVD/Ultra2)
4524 * 0101b (0x5) 80 Mhz (LVD2/Ultra3)
4525 * 0110b (0x6) Undefined
4526 * .
4527 * 1111b (0xF) Undefined
4528 */
4529 word = 0;
4530 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
4531 if (ADV_TID_TO_TIDMASK(tid) & asc_dvc->ultra_able) {
4532 /* Set Ultra speed for TID 'tid'. */
4533 word |= (0x3 << (4 * (tid % 4)));
4534 } else {
4535 /* Set Fast speed for TID 'tid'. */
4536 word |= (0x2 << (4 * (tid % 4)));
4537 }
4538 if (tid == 3) { /* Check if done with sdtr_speed1. */
4539 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, word);
4540 word = 0;
4541 } else if (tid == 7) { /* Check if done with sdtr_speed2. */
4542 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, word);
4543 word = 0;
4544 } else if (tid == 11) { /* Check if done with sdtr_speed3. */
4545 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, word);
4546 word = 0;
4547 } else if (tid == 15) { /* Check if done with sdtr_speed4. */
4548 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, word);
4549 /* End of loop. */
4550 }
4551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004553 /*
4554 * Set microcode operating variable for the disconnect per TID bitmask.
4555 */
4556 AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
4557 asc_dvc->cfg->disc_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004559 /*
4560 * Set SCSI_CFG0 Microcode Default Value.
4561 *
4562 * The microcode will set the SCSI_CFG0 register using this value
4563 * after it is started below.
4564 */
4565 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
4566 PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
4567 asc_dvc->chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004569 /*
4570 * Determine SCSI_CFG1 Microcode Default Value.
4571 *
4572 * The microcode will set the SCSI_CFG1 register using this value
4573 * after it is started below.
4574 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004576 /* Read current SCSI_CFG1 Register value. */
4577 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004579 /*
4580 * If all three connectors are in use, return an error.
4581 */
4582 if ((scsi_cfg1 & CABLE_ILLEGAL_A) == 0 ||
4583 (scsi_cfg1 & CABLE_ILLEGAL_B) == 0) {
4584 asc_dvc->err_code |= ASC_IERR_ILLEGAL_CONNECTION;
4585 return ADV_ERROR;
4586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004588 /*
4589 * If the internal narrow cable is reversed all of the SCSI_CTRL
4590 * register signals will be set. Check for and return an error if
4591 * this condition is found.
4592 */
4593 if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
4594 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
4595 return ADV_ERROR;
4596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004598 /*
4599 * If this is a differential board and a single-ended device
4600 * is attached to one of the connectors, return an error.
4601 */
4602 if ((scsi_cfg1 & DIFF_MODE) && (scsi_cfg1 & DIFF_SENSE) == 0) {
4603 asc_dvc->err_code |= ASC_IERR_SINGLE_END_DEVICE;
4604 return ADV_ERROR;
4605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004607 /*
4608 * If automatic termination control is enabled, then set the
4609 * termination value based on a table listed in a_condor.h.
4610 *
4611 * If manual termination was specified with an EEPROM setting
4612 * then 'termination' was set-up in AdvInitFrom3550EEPROM() and
4613 * is ready to be 'ored' into SCSI_CFG1.
4614 */
4615 if (asc_dvc->cfg->termination == 0) {
4616 /*
4617 * The software always controls termination by setting TERM_CTL_SEL.
4618 * If TERM_CTL_SEL were set to 0, the hardware would set termination.
4619 */
4620 asc_dvc->cfg->termination |= TERM_CTL_SEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004622 switch (scsi_cfg1 & CABLE_DETECT) {
4623 /* TERM_CTL_H: on, TERM_CTL_L: on */
4624 case 0x3:
4625 case 0x7:
4626 case 0xB:
4627 case 0xD:
4628 case 0xE:
4629 case 0xF:
4630 asc_dvc->cfg->termination |= (TERM_CTL_H | TERM_CTL_L);
4631 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004633 /* TERM_CTL_H: on, TERM_CTL_L: off */
4634 case 0x1:
4635 case 0x5:
4636 case 0x9:
4637 case 0xA:
4638 case 0xC:
4639 asc_dvc->cfg->termination |= TERM_CTL_H;
4640 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004642 /* TERM_CTL_H: off, TERM_CTL_L: off */
4643 case 0x2:
4644 case 0x6:
4645 break;
4646 }
4647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004649 /*
4650 * Clear any set TERM_CTL_H and TERM_CTL_L bits.
4651 */
4652 scsi_cfg1 &= ~TERM_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004654 /*
4655 * Invert the TERM_CTL_H and TERM_CTL_L bits and then
4656 * set 'scsi_cfg1'. The TERM_POL bit does not need to be
4657 * referenced, because the hardware internally inverts
4658 * the Termination High and Low bits if TERM_POL is set.
4659 */
4660 scsi_cfg1 |= (TERM_CTL_SEL | (~asc_dvc->cfg->termination & TERM_CTL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004662 /*
4663 * Set SCSI_CFG1 Microcode Default Value
4664 *
4665 * Set filter value and possibly modified termination control
4666 * bits in the Microcode SCSI_CFG1 Register Value.
4667 *
4668 * The microcode will set the SCSI_CFG1 register using this value
4669 * after it is started below.
4670 */
4671 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1,
4672 FLTR_DISABLE | scsi_cfg1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004674 /*
4675 * Set MEM_CFG Microcode Default Value
4676 *
4677 * The microcode will set the MEM_CFG register using this value
4678 * after it is started below.
4679 *
4680 * MEM_CFG may be accessed as a word or byte, but only bits 0-7
4681 * are defined.
4682 *
4683 * ASC-3550 has 8KB internal memory.
4684 */
4685 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
4686 BIOS_EN | RAM_SZ_8KB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004688 /*
4689 * Set SEL_MASK Microcode Default Value
4690 *
4691 * The microcode will set the SEL_MASK register using this value
4692 * after it is started below.
4693 */
4694 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
4695 ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004697 AdvBuildCarrierFreelist(asc_dvc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004699 /*
4700 * Set-up the Host->RISC Initiator Command Queue (ICQ).
4701 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004703 asc_dvc->icq_sp = adv_get_next_carrier(asc_dvc);
4704 if (!asc_dvc->icq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004705 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
4706 return ADV_ERROR;
4707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004709 /*
4710 * Set RISC ICQ physical address start value.
4711 */
4712 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004714 /*
4715 * Set-up the RISC->Host Initiator Response Queue (IRQ).
4716 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004717 asc_dvc->irq_sp = adv_get_next_carrier(asc_dvc);
4718 if (!asc_dvc->irq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004719 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
4720 return ADV_ERROR;
4721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004723 /*
4724 * Set RISC IRQ physical address start value.
4725 */
4726 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
4727 asc_dvc->carr_pending_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004729 AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
4730 (ADV_INTR_ENABLE_HOST_INTR |
4731 ADV_INTR_ENABLE_GLOBAL_INTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004733 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
4734 AdvWriteWordRegister(iop_base, IOPW_PC, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004736 /* finally, finally, gentlemen, start your engine */
4737 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004739 /*
4740 * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
4741 * Resets should be performed. The RISC has to be running
4742 * to issue a SCSI Bus Reset.
4743 */
4744 if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
4745 /*
4746 * If the BIOS Signature is present in memory, restore the
4747 * BIOS Handshake Configuration Table and do not perform
4748 * a SCSI Bus Reset.
4749 */
4750 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
4751 0x55AA) {
4752 /*
4753 * Restore per TID negotiated values.
4754 */
4755 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
4756 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
4757 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
4758 tagqng_able);
4759 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
4760 AdvWriteByteLram(iop_base,
4761 ASC_MC_NUMBER_OF_MAX_CMD + tid,
4762 max_cmd[tid]);
4763 }
4764 } else {
4765 if (AdvResetSB(asc_dvc) != ADV_TRUE) {
4766 warn_code = ASC_WARN_BUSRESET_ERROR;
4767 }
4768 }
4769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004771 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772}
4773
4774/*
4775 * Initialize the ASC-38C0800.
4776 *
4777 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
4778 *
4779 * For a non-fatal error return a warning code. If there are no warnings
4780 * then 0 is returned.
4781 *
4782 * Needed after initialization for error recovery.
4783 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004784static int AdvInitAsc38C0800Driver(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304786 const struct firmware *fw;
4787 const char fwname[] = "advansys/38C0800.bin";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004788 AdvPortAddr iop_base;
4789 ushort warn_code;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004790 int begin_addr;
4791 int end_addr;
4792 ushort code_sum;
4793 int word;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004794 int i;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304795 int err;
4796 unsigned long chksum;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004797 ushort scsi_cfg1;
4798 uchar byte;
4799 uchar tid;
4800 ushort bios_mem[ASC_MC_BIOSLEN / 2]; /* BIOS RISC Memory 0x40-0x8F. */
4801 ushort wdtr_able, sdtr_able, tagqng_able;
4802 uchar max_cmd[ADV_MAX_TID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004804 /* If there is already an error, don't continue. */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004805 if (asc_dvc->err_code != 0)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004806 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004808 /*
4809 * The caller must set 'chip_type' to ADV_CHIP_ASC38C0800.
4810 */
4811 if (asc_dvc->chip_type != ADV_CHIP_ASC38C0800) {
4812 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
4813 return ADV_ERROR;
4814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004816 warn_code = 0;
4817 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004819 /*
4820 * Save the RISC memory BIOS region before writing the microcode.
4821 * The BIOS may already be loaded and using its RISC LRAM region
4822 * so its region must be saved and restored.
4823 *
4824 * Note: This code makes the assumption, which is currently true,
4825 * that a chip reset does not clear RISC LRAM.
4826 */
4827 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
4828 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
4829 bios_mem[i]);
4830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004832 /*
4833 * Save current per TID negotiated values.
4834 */
4835 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
4836 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
4837 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
4838 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
4839 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
4840 max_cmd[tid]);
4841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004843 /*
4844 * RAM BIST (RAM Built-In Self Test)
4845 *
4846 * Address : I/O base + offset 0x38h register (byte).
4847 * Function: Bit 7-6(RW) : RAM mode
4848 * Normal Mode : 0x00
4849 * Pre-test Mode : 0x40
4850 * RAM Test Mode : 0x80
4851 * Bit 5 : unused
4852 * Bit 4(RO) : Done bit
4853 * Bit 3-0(RO) : Status
4854 * Host Error : 0x08
4855 * Int_RAM Error : 0x04
4856 * RISC Error : 0x02
4857 * SCSI Error : 0x01
4858 * No Error : 0x00
4859 *
4860 * Note: RAM BIST code should be put right here, before loading the
4861 * microcode and after saving the RISC memory BIOS region.
4862 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004864 /*
4865 * LRAM Pre-test
4866 *
4867 * Write PRE_TEST_MODE (0x40) to register and wait for 10 milliseconds.
4868 * If Done bit not set or low nibble not PRE_TEST_VALUE (0x05), return
4869 * an error. Reset to NORMAL_MODE (0x00) and do again. If cannot reset
4870 * to NORMAL_MODE, return an error too.
4871 */
4872 for (i = 0; i < 2; i++) {
4873 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, PRE_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06004874 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004875 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
4876 if ((byte & RAM_TEST_DONE) == 0
4877 || (byte & 0x0F) != PRE_TEST_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004878 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004879 return ADV_ERROR;
4880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004882 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06004883 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004884 if (AdvReadByteRegister(iop_base, IOPB_RAM_BIST)
4885 != NORMAL_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004886 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004887 return ADV_ERROR;
4888 }
4889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004891 /*
4892 * LRAM Test - It takes about 1.5 ms to run through the test.
4893 *
4894 * Write RAM_TEST_MODE (0x80) to register and wait for 10 milliseconds.
4895 * If Done bit not set or Status not 0, save register byte, set the
4896 * err_code, and return an error.
4897 */
4898 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, RAM_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06004899 mdelay(10); /* Wait for 10ms before checking status. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004901 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
4902 if ((byte & RAM_TEST_DONE) == 0 || (byte & RAM_TEST_STATUS) != 0) {
4903 /* Get here if Done bit not set or Status not 0. */
4904 asc_dvc->bist_err_code = byte; /* for BIOS display message */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004905 asc_dvc->err_code = ASC_IERR_BIST_RAM_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004906 return ADV_ERROR;
4907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004909 /* We need to reset back to normal mode after LRAM test passes. */
4910 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304912 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
4913 if (err) {
4914 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
4915 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004916 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304917 return err;
4918 }
4919 if (fw->size < 4) {
4920 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
4921 fw->size, fwname);
4922 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004923 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304924 return -EINVAL;
4925 }
4926 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
4927 (fw->data[1] << 8) | fw->data[0];
4928 asc_dvc->err_code = AdvLoadMicrocode(iop_base, &fw->data[4],
4929 fw->size - 4, ADV_38C0800_MEMSIZE,
4930 chksum);
4931 release_firmware(fw);
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004932 if (asc_dvc->err_code)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004933 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004935 /*
4936 * Restore the RISC memory BIOS region.
4937 */
4938 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
4939 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
4940 bios_mem[i]);
4941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004943 /*
4944 * Calculate and write the microcode code checksum to the microcode
4945 * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
4946 */
4947 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
4948 AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
4949 code_sum = 0;
4950 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
4951 for (word = begin_addr; word < end_addr; word += 2) {
4952 code_sum += AdvReadWordAutoIncLram(iop_base);
4953 }
4954 AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004956 /*
4957 * Read microcode version and date.
4958 */
4959 AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
4960 asc_dvc->cfg->mcode_date);
4961 AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
4962 asc_dvc->cfg->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004964 /*
4965 * Set the chip type to indicate the ASC38C0800.
4966 */
4967 AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC38C0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004969 /*
4970 * Write 1 to bit 14 'DIS_TERM_DRV' in the SCSI_CFG1 register.
4971 * When DIS_TERM_DRV set to 1, C_DET[3:0] will reflect current
4972 * cable detection and then we are able to read C_DET[3:0].
4973 *
4974 * Note: We will reset DIS_TERM_DRV to 0 in the 'Set SCSI_CFG1
4975 * Microcode Default Value' section below.
4976 */
4977 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
4978 AdvWriteWordRegister(iop_base, IOPW_SCSI_CFG1,
4979 scsi_cfg1 | DIS_TERM_DRV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004981 /*
4982 * If the PCI Configuration Command Register "Parity Error Response
4983 * Control" Bit was clear (0), then set the microcode variable
4984 * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
4985 * to ignore DMA parity errors.
4986 */
4987 if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
4988 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
4989 word |= CONTROL_FLAG_IGNORE_PERR;
4990 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
4991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004993 /*
4994 * For ASC-38C0800, set FIFO_THRESH_80B [6:4] bits and START_CTL_TH [3:2]
4995 * bits for the default FIFO threshold.
4996 *
4997 * Note: ASC-38C0800 FIFO threshold has been changed to 256 bytes.
4998 *
4999 * For DMA Errata #4 set the BC_THRESH_ENB bit.
5000 */
5001 AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
5002 BC_THRESH_ENB | FIFO_THRESH_80B | START_CTL_TH |
5003 READ_CMD_MRM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005005 /*
5006 * Microcode operating variables for WDTR, SDTR, and command tag
Matthew Wilcox47d853c2007-07-26 11:41:33 -04005007 * queuing will be set in slave_configure() based on what a
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005008 * device reports it is capable of in Inquiry byte 7.
5009 *
5010 * If SCSI Bus Resets have been disabled, then directly set
5011 * SDTR and WDTR from the EEPROM configuration. This will allow
5012 * the BIOS and warm boot to work without a SCSI bus hang on
5013 * the Inquiry caused by host and target mismatched DTR values.
5014 * Without the SCSI Bus Reset, before an Inquiry a device can't
5015 * be assumed to be in Asynchronous, Narrow mode.
5016 */
5017 if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
5018 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
5019 asc_dvc->wdtr_able);
5020 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
5021 asc_dvc->sdtr_able);
5022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005024 /*
5025 * Set microcode operating variables for DISC and SDTR_SPEED1,
5026 * SDTR_SPEED2, SDTR_SPEED3, and SDTR_SPEED4 based on the EEPROM
5027 * configuration values.
5028 *
5029 * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
5030 * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
5031 * without determining here whether the device supports SDTR.
5032 */
5033 AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
5034 asc_dvc->cfg->disc_enable);
5035 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, asc_dvc->sdtr_speed1);
5036 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, asc_dvc->sdtr_speed2);
5037 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, asc_dvc->sdtr_speed3);
5038 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, asc_dvc->sdtr_speed4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005040 /*
5041 * Set SCSI_CFG0 Microcode Default Value.
5042 *
5043 * The microcode will set the SCSI_CFG0 register using this value
5044 * after it is started below.
5045 */
5046 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
5047 PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
5048 asc_dvc->chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005050 /*
5051 * Determine SCSI_CFG1 Microcode Default Value.
5052 *
5053 * The microcode will set the SCSI_CFG1 register using this value
5054 * after it is started below.
5055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005057 /* Read current SCSI_CFG1 Register value. */
5058 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005060 /*
5061 * If the internal narrow cable is reversed all of the SCSI_CTRL
5062 * register signals will be set. Check for and return an error if
5063 * this condition is found.
5064 */
5065 if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
5066 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
5067 return ADV_ERROR;
5068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005070 /*
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005071 * All kind of combinations of devices attached to one of four
5072 * connectors are acceptable except HVD device attached. For example,
5073 * LVD device can be attached to SE connector while SE device attached
5074 * to LVD connector. If LVD device attached to SE connector, it only
5075 * runs up to Ultra speed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005076 *
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005077 * If an HVD device is attached to one of LVD connectors, return an
5078 * error. However, there is no way to detect HVD device attached to
5079 * SE connectors.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005080 */
5081 if (scsi_cfg1 & HVD) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005082 asc_dvc->err_code = ASC_IERR_HVD_DEVICE;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005083 return ADV_ERROR;
5084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005086 /*
5087 * If either SE or LVD automatic termination control is enabled, then
5088 * set the termination value based on a table listed in a_condor.h.
5089 *
5090 * If manual termination was specified with an EEPROM setting then
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005091 * 'termination' was set-up in AdvInitFrom38C0800EEPROM() and is ready
5092 * to be 'ored' into SCSI_CFG1.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005093 */
5094 if ((asc_dvc->cfg->termination & TERM_SE) == 0) {
5095 /* SE automatic termination control is enabled. */
5096 switch (scsi_cfg1 & C_DET_SE) {
5097 /* TERM_SE_HI: on, TERM_SE_LO: on */
5098 case 0x1:
5099 case 0x2:
5100 case 0x3:
5101 asc_dvc->cfg->termination |= TERM_SE;
5102 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005104 /* TERM_SE_HI: on, TERM_SE_LO: off */
5105 case 0x0:
5106 asc_dvc->cfg->termination |= TERM_SE_HI;
5107 break;
5108 }
5109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005111 if ((asc_dvc->cfg->termination & TERM_LVD) == 0) {
5112 /* LVD automatic termination control is enabled. */
5113 switch (scsi_cfg1 & C_DET_LVD) {
5114 /* TERM_LVD_HI: on, TERM_LVD_LO: on */
5115 case 0x4:
5116 case 0x8:
5117 case 0xC:
5118 asc_dvc->cfg->termination |= TERM_LVD;
5119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005121 /* TERM_LVD_HI: off, TERM_LVD_LO: off */
5122 case 0x0:
5123 break;
5124 }
5125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005127 /*
5128 * Clear any set TERM_SE and TERM_LVD bits.
5129 */
5130 scsi_cfg1 &= (~TERM_SE & ~TERM_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005132 /*
5133 * Invert the TERM_SE and TERM_LVD bits and then set 'scsi_cfg1'.
5134 */
5135 scsi_cfg1 |= (~asc_dvc->cfg->termination & 0xF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005137 /*
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005138 * Clear BIG_ENDIAN, DIS_TERM_DRV, Terminator Polarity and HVD/LVD/SE
5139 * bits and set possibly modified termination control bits in the
5140 * Microcode SCSI_CFG1 Register Value.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005141 */
5142 scsi_cfg1 &= (~BIG_ENDIAN & ~DIS_TERM_DRV & ~TERM_POL & ~HVD_LVD_SE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005144 /*
5145 * Set SCSI_CFG1 Microcode Default Value
5146 *
5147 * Set possibly modified termination control and reset DIS_TERM_DRV
5148 * bits in the Microcode SCSI_CFG1 Register Value.
5149 *
5150 * The microcode will set the SCSI_CFG1 register using this value
5151 * after it is started below.
5152 */
5153 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1, scsi_cfg1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005155 /*
5156 * Set MEM_CFG Microcode Default Value
5157 *
5158 * The microcode will set the MEM_CFG register using this value
5159 * after it is started below.
5160 *
5161 * MEM_CFG may be accessed as a word or byte, but only bits 0-7
5162 * are defined.
5163 *
5164 * ASC-38C0800 has 16KB internal memory.
5165 */
5166 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
5167 BIOS_EN | RAM_SZ_16KB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005169 /*
5170 * Set SEL_MASK Microcode Default Value
5171 *
5172 * The microcode will set the SEL_MASK register using this value
5173 * after it is started below.
5174 */
5175 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
5176 ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06005178 AdvBuildCarrierFreelist(asc_dvc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005180 /*
5181 * Set-up the Host->RISC Initiator Command Queue (ICQ).
5182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005184 asc_dvc->icq_sp = adv_get_next_carrier(asc_dvc);
5185 if (!asc_dvc->icq_sp) {
5186 ASC_DBG(0, "Failed to get ICQ carrier\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005187 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5188 return ADV_ERROR;
5189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005191 /*
5192 * Set RISC ICQ physical address start value.
5193 * carr_pa is LE, must be native before write
5194 */
5195 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005197 /*
5198 * Set-up the RISC->Host Initiator Response Queue (IRQ).
5199 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005200 asc_dvc->irq_sp = adv_get_next_carrier(asc_dvc);
5201 if (!asc_dvc->irq_sp) {
5202 ASC_DBG(0, "Failed to get IRQ carrier\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005203 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5204 return ADV_ERROR;
5205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005207 /*
5208 * Set RISC IRQ physical address start value.
5209 *
5210 * carr_pa is LE, must be native before write *
5211 */
5212 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
5213 asc_dvc->carr_pending_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005215 AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
5216 (ADV_INTR_ENABLE_HOST_INTR |
5217 ADV_INTR_ENABLE_GLOBAL_INTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005219 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
5220 AdvWriteWordRegister(iop_base, IOPW_PC, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005222 /* finally, finally, gentlemen, start your engine */
5223 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005225 /*
5226 * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
5227 * Resets should be performed. The RISC has to be running
5228 * to issue a SCSI Bus Reset.
5229 */
5230 if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
5231 /*
5232 * If the BIOS Signature is present in memory, restore the
5233 * BIOS Handshake Configuration Table and do not perform
5234 * a SCSI Bus Reset.
5235 */
5236 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
5237 0x55AA) {
5238 /*
5239 * Restore per TID negotiated values.
5240 */
5241 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5242 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5243 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
5244 tagqng_able);
5245 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
5246 AdvWriteByteLram(iop_base,
5247 ASC_MC_NUMBER_OF_MAX_CMD + tid,
5248 max_cmd[tid]);
5249 }
5250 } else {
5251 if (AdvResetSB(asc_dvc) != ADV_TRUE) {
5252 warn_code = ASC_WARN_BUSRESET_ERROR;
5253 }
5254 }
5255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005257 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258}
5259
5260/*
5261 * Initialize the ASC-38C1600.
5262 *
5263 * On failure set the ASC_DVC_VAR field 'err_code' and return ADV_ERROR.
5264 *
5265 * For a non-fatal error return a warning code. If there are no warnings
5266 * then 0 is returned.
5267 *
5268 * Needed after initialization for error recovery.
5269 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005270static int AdvInitAsc38C1600Driver(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305272 const struct firmware *fw;
5273 const char fwname[] = "advansys/38C1600.bin";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005274 AdvPortAddr iop_base;
5275 ushort warn_code;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005276 int begin_addr;
5277 int end_addr;
5278 ushort code_sum;
5279 long word;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005280 int i;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305281 int err;
5282 unsigned long chksum;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005283 ushort scsi_cfg1;
5284 uchar byte;
5285 uchar tid;
5286 ushort bios_mem[ASC_MC_BIOSLEN / 2]; /* BIOS RISC Memory 0x40-0x8F. */
5287 ushort wdtr_able, sdtr_able, ppr_able, tagqng_able;
5288 uchar max_cmd[ASC_MAX_TID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005290 /* If there is already an error, don't continue. */
5291 if (asc_dvc->err_code != 0) {
5292 return ADV_ERROR;
5293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005295 /*
5296 * The caller must set 'chip_type' to ADV_CHIP_ASC38C1600.
5297 */
5298 if (asc_dvc->chip_type != ADV_CHIP_ASC38C1600) {
5299 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
5300 return ADV_ERROR;
5301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005303 warn_code = 0;
5304 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005306 /*
5307 * Save the RISC memory BIOS region before writing the microcode.
5308 * The BIOS may already be loaded and using its RISC LRAM region
5309 * so its region must be saved and restored.
5310 *
5311 * Note: This code makes the assumption, which is currently true,
5312 * that a chip reset does not clear RISC LRAM.
5313 */
5314 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
5315 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
5316 bios_mem[i]);
5317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005319 /*
5320 * Save current per TID negotiated values.
5321 */
5322 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5323 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5324 AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
5325 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
5326 for (tid = 0; tid <= ASC_MAX_TID; tid++) {
5327 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
5328 max_cmd[tid]);
5329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005331 /*
5332 * RAM BIST (Built-In Self Test)
5333 *
5334 * Address : I/O base + offset 0x38h register (byte).
5335 * Function: Bit 7-6(RW) : RAM mode
5336 * Normal Mode : 0x00
5337 * Pre-test Mode : 0x40
5338 * RAM Test Mode : 0x80
5339 * Bit 5 : unused
5340 * Bit 4(RO) : Done bit
5341 * Bit 3-0(RO) : Status
5342 * Host Error : 0x08
5343 * Int_RAM Error : 0x04
5344 * RISC Error : 0x02
5345 * SCSI Error : 0x01
5346 * No Error : 0x00
5347 *
5348 * Note: RAM BIST code should be put right here, before loading the
5349 * microcode and after saving the RISC memory BIOS region.
5350 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005352 /*
5353 * LRAM Pre-test
5354 *
5355 * Write PRE_TEST_MODE (0x40) to register and wait for 10 milliseconds.
5356 * If Done bit not set or low nibble not PRE_TEST_VALUE (0x05), return
5357 * an error. Reset to NORMAL_MODE (0x00) and do again. If cannot reset
5358 * to NORMAL_MODE, return an error too.
5359 */
5360 for (i = 0; i < 2; i++) {
5361 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, PRE_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005362 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005363 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
5364 if ((byte & RAM_TEST_DONE) == 0
5365 || (byte & 0x0F) != PRE_TEST_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005366 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005367 return ADV_ERROR;
5368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005370 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005371 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005372 if (AdvReadByteRegister(iop_base, IOPB_RAM_BIST)
5373 != NORMAL_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005374 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005375 return ADV_ERROR;
5376 }
5377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005379 /*
5380 * LRAM Test - It takes about 1.5 ms to run through the test.
5381 *
5382 * Write RAM_TEST_MODE (0x80) to register and wait for 10 milliseconds.
5383 * If Done bit not set or Status not 0, save register byte, set the
5384 * err_code, and return an error.
5385 */
5386 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, RAM_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005387 mdelay(10); /* Wait for 10ms before checking status. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005389 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
5390 if ((byte & RAM_TEST_DONE) == 0 || (byte & RAM_TEST_STATUS) != 0) {
5391 /* Get here if Done bit not set or Status not 0. */
5392 asc_dvc->bist_err_code = byte; /* for BIOS display message */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005393 asc_dvc->err_code = ASC_IERR_BIST_RAM_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005394 return ADV_ERROR;
5395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005397 /* We need to reset back to normal mode after LRAM test passes. */
5398 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305400 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
5401 if (err) {
5402 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
5403 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03005404 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305405 return err;
5406 }
5407 if (fw->size < 4) {
5408 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
5409 fw->size, fwname);
5410 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03005411 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305412 return -EINVAL;
5413 }
5414 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
5415 (fw->data[1] << 8) | fw->data[0];
5416 asc_dvc->err_code = AdvLoadMicrocode(iop_base, &fw->data[4],
5417 fw->size - 4, ADV_38C1600_MEMSIZE,
5418 chksum);
5419 release_firmware(fw);
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005420 if (asc_dvc->err_code)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005421 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005423 /*
5424 * Restore the RISC memory BIOS region.
5425 */
5426 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
5427 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
5428 bios_mem[i]);
5429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005431 /*
5432 * Calculate and write the microcode code checksum to the microcode
5433 * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
5434 */
5435 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
5436 AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
5437 code_sum = 0;
5438 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
5439 for (word = begin_addr; word < end_addr; word += 2) {
5440 code_sum += AdvReadWordAutoIncLram(iop_base);
5441 }
5442 AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005444 /*
5445 * Read microcode version and date.
5446 */
5447 AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
5448 asc_dvc->cfg->mcode_date);
5449 AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
5450 asc_dvc->cfg->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005452 /*
5453 * Set the chip type to indicate the ASC38C1600.
5454 */
5455 AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC38C1600);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005457 /*
5458 * Write 1 to bit 14 'DIS_TERM_DRV' in the SCSI_CFG1 register.
5459 * When DIS_TERM_DRV set to 1, C_DET[3:0] will reflect current
5460 * cable detection and then we are able to read C_DET[3:0].
5461 *
5462 * Note: We will reset DIS_TERM_DRV to 0 in the 'Set SCSI_CFG1
5463 * Microcode Default Value' section below.
5464 */
5465 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
5466 AdvWriteWordRegister(iop_base, IOPW_SCSI_CFG1,
5467 scsi_cfg1 | DIS_TERM_DRV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005469 /*
5470 * If the PCI Configuration Command Register "Parity Error Response
5471 * Control" Bit was clear (0), then set the microcode variable
5472 * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
5473 * to ignore DMA parity errors.
5474 */
5475 if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
5476 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5477 word |= CONTROL_FLAG_IGNORE_PERR;
5478 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005481 /*
5482 * If the BIOS control flag AIPP (Asynchronous Information
5483 * Phase Protection) disable bit is not set, then set the firmware
5484 * 'control_flag' CONTROL_FLAG_ENABLE_AIPP bit to enable
5485 * AIPP checking and encoding.
5486 */
5487 if ((asc_dvc->bios_ctrl & BIOS_CTRL_AIPP_DIS) == 0) {
5488 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5489 word |= CONTROL_FLAG_ENABLE_AIPP;
5490 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005493 /*
5494 * For ASC-38C1600 use DMA_CFG0 default values: FIFO_THRESH_80B [6:4],
5495 * and START_CTL_TH [3:2].
5496 */
5497 AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
5498 FIFO_THRESH_80B | START_CTL_TH | READ_CMD_MRM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005500 /*
5501 * Microcode operating variables for WDTR, SDTR, and command tag
Matthew Wilcox47d853c2007-07-26 11:41:33 -04005502 * queuing will be set in slave_configure() based on what a
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005503 * device reports it is capable of in Inquiry byte 7.
5504 *
5505 * If SCSI Bus Resets have been disabled, then directly set
5506 * SDTR and WDTR from the EEPROM configuration. This will allow
5507 * the BIOS and warm boot to work without a SCSI bus hang on
5508 * the Inquiry caused by host and target mismatched DTR values.
5509 * Without the SCSI Bus Reset, before an Inquiry a device can't
5510 * be assumed to be in Asynchronous, Narrow mode.
5511 */
5512 if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
5513 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
5514 asc_dvc->wdtr_able);
5515 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
5516 asc_dvc->sdtr_able);
5517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005518
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005519 /*
5520 * Set microcode operating variables for DISC and SDTR_SPEED1,
5521 * SDTR_SPEED2, SDTR_SPEED3, and SDTR_SPEED4 based on the EEPROM
5522 * configuration values.
5523 *
5524 * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
5525 * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
5526 * without determining here whether the device supports SDTR.
5527 */
5528 AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
5529 asc_dvc->cfg->disc_enable);
5530 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, asc_dvc->sdtr_speed1);
5531 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, asc_dvc->sdtr_speed2);
5532 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, asc_dvc->sdtr_speed3);
5533 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, asc_dvc->sdtr_speed4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005535 /*
5536 * Set SCSI_CFG0 Microcode Default Value.
5537 *
5538 * The microcode will set the SCSI_CFG0 register using this value
5539 * after it is started below.
5540 */
5541 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
5542 PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
5543 asc_dvc->chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005545 /*
5546 * Calculate SCSI_CFG1 Microcode Default Value.
5547 *
5548 * The microcode will set the SCSI_CFG1 register using this value
5549 * after it is started below.
5550 *
5551 * Each ASC-38C1600 function has only two cable detect bits.
5552 * The bus mode override bits are in IOPB_SOFT_OVER_WR.
5553 */
5554 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005556 /*
5557 * If the cable is reversed all of the SCSI_CTRL register signals
5558 * will be set. Check for and return an error if this condition is
5559 * found.
5560 */
5561 if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
5562 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
5563 return ADV_ERROR;
5564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005565
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005566 /*
5567 * Each ASC-38C1600 function has two connectors. Only an HVD device
5568 * can not be connected to either connector. An LVD device or SE device
5569 * may be connected to either connecor. If an SE device is connected,
5570 * then at most Ultra speed (20 Mhz) can be used on both connectors.
5571 *
5572 * If an HVD device is attached, return an error.
5573 */
5574 if (scsi_cfg1 & HVD) {
5575 asc_dvc->err_code |= ASC_IERR_HVD_DEVICE;
5576 return ADV_ERROR;
5577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005579 /*
5580 * Each function in the ASC-38C1600 uses only the SE cable detect and
5581 * termination because there are two connectors for each function. Each
5582 * function may use either LVD or SE mode. Corresponding the SE automatic
5583 * termination control EEPROM bits are used for each function. Each
5584 * function has its own EEPROM. If SE automatic control is enabled for
5585 * the function, then set the termination value based on a table listed
5586 * in a_condor.h.
5587 *
5588 * If manual termination is specified in the EEPROM for the function,
5589 * then 'termination' was set-up in AscInitFrom38C1600EEPROM() and is
5590 * ready to be 'ored' into SCSI_CFG1.
5591 */
5592 if ((asc_dvc->cfg->termination & TERM_SE) == 0) {
Matthew Wilcox13ac2d92007-07-30 08:10:23 -06005593 struct pci_dev *pdev = adv_dvc_to_pdev(asc_dvc);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005594 /* SE automatic termination control is enabled. */
5595 switch (scsi_cfg1 & C_DET_SE) {
5596 /* TERM_SE_HI: on, TERM_SE_LO: on */
5597 case 0x1:
5598 case 0x2:
5599 case 0x3:
5600 asc_dvc->cfg->termination |= TERM_SE;
5601 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005603 case 0x0:
Matthew Wilcox13ac2d92007-07-30 08:10:23 -06005604 if (PCI_FUNC(pdev->devfn) == 0) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005605 /* Function 0 - TERM_SE_HI: off, TERM_SE_LO: off */
5606 } else {
5607 /* Function 1 - TERM_SE_HI: on, TERM_SE_LO: off */
5608 asc_dvc->cfg->termination |= TERM_SE_HI;
5609 }
5610 break;
5611 }
5612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005614 /*
5615 * Clear any set TERM_SE bits.
5616 */
5617 scsi_cfg1 &= ~TERM_SE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005619 /*
5620 * Invert the TERM_SE bits and then set 'scsi_cfg1'.
5621 */
5622 scsi_cfg1 |= (~asc_dvc->cfg->termination & TERM_SE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005623
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005624 /*
5625 * Clear Big Endian and Terminator Polarity bits and set possibly
5626 * modified termination control bits in the Microcode SCSI_CFG1
5627 * Register Value.
5628 *
5629 * Big Endian bit is not used even on big endian machines.
5630 */
5631 scsi_cfg1 &= (~BIG_ENDIAN & ~DIS_TERM_DRV & ~TERM_POL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005633 /*
5634 * Set SCSI_CFG1 Microcode Default Value
5635 *
5636 * Set possibly modified termination control bits in the Microcode
5637 * SCSI_CFG1 Register Value.
5638 *
5639 * The microcode will set the SCSI_CFG1 register using this value
5640 * after it is started below.
5641 */
5642 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1, scsi_cfg1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005644 /*
5645 * Set MEM_CFG Microcode Default Value
5646 *
5647 * The microcode will set the MEM_CFG register using this value
5648 * after it is started below.
5649 *
5650 * MEM_CFG may be accessed as a word or byte, but only bits 0-7
5651 * are defined.
5652 *
5653 * ASC-38C1600 has 32KB internal memory.
5654 *
5655 * XXX - Since ASC38C1600 Rev.3 has a Local RAM failure issue, we come
5656 * out a special 16K Adv Library and Microcode version. After the issue
5657 * resolved, we should turn back to the 32K support. Both a_condor.h and
5658 * mcode.sas files also need to be updated.
5659 *
5660 * AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
5661 * BIOS_EN | RAM_SZ_32KB);
5662 */
5663 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
5664 BIOS_EN | RAM_SZ_16KB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005666 /*
5667 * Set SEL_MASK Microcode Default Value
5668 *
5669 * The microcode will set the SEL_MASK register using this value
5670 * after it is started below.
5671 */
5672 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
5673 ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06005675 AdvBuildCarrierFreelist(asc_dvc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005677 /*
5678 * Set-up the Host->RISC Initiator Command Queue (ICQ).
5679 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005680 asc_dvc->icq_sp = adv_get_next_carrier(asc_dvc);
5681 if (!asc_dvc->icq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005682 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5683 return ADV_ERROR;
5684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005686 /*
5687 * Set RISC ICQ physical address start value. Initialize the
5688 * COMMA register to the same value otherwise the RISC will
5689 * prematurely detect a command is available.
5690 */
5691 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
5692 AdvWriteDWordRegister(iop_base, IOPDW_COMMA,
5693 le32_to_cpu(asc_dvc->icq_sp->carr_pa));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005695 /*
5696 * Set-up the RISC->Host Initiator Response Queue (IRQ).
5697 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005698 asc_dvc->irq_sp = adv_get_next_carrier(asc_dvc);
5699 if (!asc_dvc->irq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005700 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5701 return ADV_ERROR;
5702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005704 /*
5705 * Set RISC IRQ physical address start value.
5706 */
5707 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
5708 asc_dvc->carr_pending_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005710 AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
5711 (ADV_INTR_ENABLE_HOST_INTR |
5712 ADV_INTR_ENABLE_GLOBAL_INTR));
5713 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
5714 AdvWriteWordRegister(iop_base, IOPW_PC, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005716 /* finally, finally, gentlemen, start your engine */
5717 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005719 /*
5720 * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
5721 * Resets should be performed. The RISC has to be running
5722 * to issue a SCSI Bus Reset.
5723 */
5724 if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
5725 /*
5726 * If the BIOS Signature is present in memory, restore the
5727 * per TID microcode operating variables.
5728 */
5729 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
5730 0x55AA) {
5731 /*
5732 * Restore per TID negotiated values.
5733 */
5734 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5735 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5736 AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
5737 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
5738 tagqng_able);
5739 for (tid = 0; tid <= ASC_MAX_TID; tid++) {
5740 AdvWriteByteLram(iop_base,
5741 ASC_MC_NUMBER_OF_MAX_CMD + tid,
5742 max_cmd[tid]);
5743 }
5744 } else {
5745 if (AdvResetSB(asc_dvc) != ADV_TRUE) {
5746 warn_code = ASC_WARN_BUSRESET_ERROR;
5747 }
5748 }
5749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005751 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005752}
5753
5754/*
Matthew Wilcox51219352007-10-02 21:55:22 -04005755 * Reset chip and SCSI Bus.
5756 *
5757 * Return Value:
5758 * ADV_TRUE(1) - Chip re-initialization and SCSI Bus Reset successful.
5759 * ADV_FALSE(0) - Chip re-initialization and SCSI Bus Reset failure.
5760 */
5761static int AdvResetChipAndSB(ADV_DVC_VAR *asc_dvc)
5762{
5763 int status;
5764 ushort wdtr_able, sdtr_able, tagqng_able;
5765 ushort ppr_able = 0;
5766 uchar tid, max_cmd[ADV_MAX_TID + 1];
5767 AdvPortAddr iop_base;
5768 ushort bios_sig;
5769
5770 iop_base = asc_dvc->iop_base;
5771
5772 /*
5773 * Save current per TID negotiated values.
5774 */
5775 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5776 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5777 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
5778 AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
5779 }
5780 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
5781 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
5782 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
5783 max_cmd[tid]);
5784 }
5785
5786 /*
5787 * Force the AdvInitAsc3550/38C0800Driver() function to
5788 * perform a SCSI Bus Reset by clearing the BIOS signature word.
5789 * The initialization functions assumes a SCSI Bus Reset is not
5790 * needed if the BIOS signature word is present.
5791 */
5792 AdvReadWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, bios_sig);
5793 AdvWriteWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, 0);
5794
5795 /*
5796 * Stop chip and reset it.
5797 */
5798 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_STOP);
5799 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG, ADV_CTRL_REG_CMD_RESET);
5800 mdelay(100);
5801 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
5802 ADV_CTRL_REG_CMD_WR_IO_REG);
5803
5804 /*
5805 * Reset Adv Library error code, if any, and try
5806 * re-initializing the chip.
5807 */
5808 asc_dvc->err_code = 0;
5809 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
5810 status = AdvInitAsc38C1600Driver(asc_dvc);
5811 } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
5812 status = AdvInitAsc38C0800Driver(asc_dvc);
5813 } else {
5814 status = AdvInitAsc3550Driver(asc_dvc);
5815 }
5816
5817 /* Translate initialization return value to status value. */
5818 if (status == 0) {
5819 status = ADV_TRUE;
5820 } else {
5821 status = ADV_FALSE;
5822 }
5823
5824 /*
5825 * Restore the BIOS signature word.
5826 */
5827 AdvWriteWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, bios_sig);
5828
5829 /*
5830 * Restore per TID negotiated values.
5831 */
5832 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5833 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5834 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
5835 AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
5836 }
5837 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
5838 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
5839 AdvWriteByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
5840 max_cmd[tid]);
5841 }
5842
5843 return status;
5844}
5845
5846/*
5847 * adv_async_callback() - Adv Library asynchronous event callback function.
5848 */
5849static void adv_async_callback(ADV_DVC_VAR *adv_dvc_varp, uchar code)
5850{
5851 switch (code) {
5852 case ADV_ASYNC_SCSI_BUS_RESET_DET:
5853 /*
5854 * The firmware detected a SCSI Bus reset.
5855 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005856 ASC_DBG(0, "ADV_ASYNC_SCSI_BUS_RESET_DET\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04005857 break;
5858
5859 case ADV_ASYNC_RDMA_FAILURE:
5860 /*
5861 * Handle RDMA failure by resetting the SCSI Bus and
5862 * possibly the chip if it is unresponsive. Log the error
5863 * with a unique code.
5864 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005865 ASC_DBG(0, "ADV_ASYNC_RDMA_FAILURE\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04005866 AdvResetChipAndSB(adv_dvc_varp);
5867 break;
5868
5869 case ADV_HOST_SCSI_BUS_RESET:
5870 /*
5871 * Host generated SCSI bus reset occurred.
5872 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005873 ASC_DBG(0, "ADV_HOST_SCSI_BUS_RESET\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04005874 break;
5875
5876 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005877 ASC_DBG(0, "unknown code 0x%x\n", code);
Matthew Wilcox51219352007-10-02 21:55:22 -04005878 break;
5879 }
5880}
5881
5882/*
5883 * adv_isr_callback() - Second Level Interrupt Handler called by AdvISR().
5884 *
5885 * Callback function for the Wide SCSI Adv Library.
5886 */
5887static void adv_isr_callback(ADV_DVC_VAR *adv_dvc_varp, ADV_SCSI_REQ_Q *scsiqp)
5888{
Hannes Reinecke9c17c622015-04-24 13:18:21 +02005889 struct asc_board *boardp = adv_dvc_varp->drv_ptr;
Matthew Wilcox51219352007-10-02 21:55:22 -04005890 adv_req_t *reqp;
5891 adv_sgblk_t *sgblkp;
5892 struct scsi_cmnd *scp;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02005893 u32 resid_cnt;
Hannes Reinecke811ddc02015-04-24 13:18:22 +02005894 dma_addr_t sense_addr;
Matthew Wilcox51219352007-10-02 21:55:22 -04005895
Hannes Reinecke9c17c622015-04-24 13:18:21 +02005896 ASC_DBG(1, "adv_dvc_varp 0x%p, scsiqp 0x%p\n",
5897 adv_dvc_varp, scsiqp);
Matthew Wilcox51219352007-10-02 21:55:22 -04005898 ASC_DBG_PRT_ADV_SCSI_REQ_Q(2, scsiqp);
5899
5900 /*
5901 * Get the adv_req_t structure for the command that has been
5902 * completed. The adv_req_t structure actually contains the
5903 * completed ADV_SCSI_REQ_Q structure.
5904 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02005905 scp = scsi_host_find_tag(boardp->shost, scsiqp->srb_tag);
Matthew Wilcox51219352007-10-02 21:55:22 -04005906
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005907 ASC_DBG(1, "scp 0x%p\n", scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04005908 if (scp == NULL) {
5909 ASC_PRINT
5910 ("adv_isr_callback: scp is NULL; adv_req_t dropped.\n");
5911 return;
5912 }
5913 ASC_DBG_PRT_CDB(2, scp->cmnd, scp->cmd_len);
5914
Hannes Reinecke9c17c622015-04-24 13:18:21 +02005915 reqp = (adv_req_t *)scp->host_scribble;
5916 ASC_DBG(1, "reqp 0x%lx\n", (ulong)reqp);
5917 if (reqp == NULL) {
5918 ASC_PRINT("adv_isr_callback: reqp is NULL\n");
5919 return;
5920 }
5921 /*
5922 * Remove backreferences to avoid duplicate
5923 * command completions.
5924 */
5925 scp->host_scribble = NULL;
5926 reqp->cmndp = NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04005927
Hannes Reinecke9c17c622015-04-24 13:18:21 +02005928 ASC_STATS(boardp->shost, callback);
5929 ASC_DBG(1, "shost 0x%p\n", boardp->shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04005930
Hannes Reinecke811ddc02015-04-24 13:18:22 +02005931 sense_addr = le32_to_cpu(scsiqp->sense_addr);
5932 dma_unmap_single(boardp->dev, sense_addr,
5933 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
5934
Matthew Wilcox51219352007-10-02 21:55:22 -04005935 /*
5936 * 'done_status' contains the command's ending status.
5937 */
Hannes Reineckeaced5502021-01-13 10:04:59 +01005938 scp->result = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04005939 switch (scsiqp->done_status) {
5940 case QD_NO_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005941 ASC_DBG(2, "QD_NO_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04005942
5943 /*
5944 * Check for an underrun condition.
5945 *
5946 * If there was no error and an underrun condition, then
5947 * then return the number of underrun bytes.
5948 */
5949 resid_cnt = le32_to_cpu(scsiqp->data_cnt);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04005950 if (scsi_bufflen(scp) != 0 && resid_cnt != 0 &&
5951 resid_cnt <= scsi_bufflen(scp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005952 ASC_DBG(1, "underrun condition %lu bytes\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04005953 (ulong)resid_cnt);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04005954 scsi_set_resid(scp, resid_cnt);
Matthew Wilcox51219352007-10-02 21:55:22 -04005955 }
5956 break;
5957
5958 case QD_WITH_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005959 ASC_DBG(2, "QD_WITH_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04005960 switch (scsiqp->host_status) {
5961 case QHSTA_NO_ERROR:
Hannes Reineckeaced5502021-01-13 10:04:59 +01005962 set_status_byte(scp, scsiqp->scsi_status);
Matthew Wilcox51219352007-10-02 21:55:22 -04005963 if (scsiqp->scsi_status == SAM_STAT_CHECK_CONDITION) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005964 ASC_DBG(2, "SAM_STAT_CHECK_CONDITION\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04005965 ASC_DBG_PRT_SENSE(2, scp->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09005966 SCSI_SENSE_BUFFERSIZE);
Matthew Wilcox51219352007-10-02 21:55:22 -04005967 }
5968 break;
5969
5970 default:
5971 /* Some other QHSTA error occurred. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005972 ASC_DBG(1, "host_status 0x%x\n", scsiqp->host_status);
Hannes Reineckeaced5502021-01-13 10:04:59 +01005973 set_host_byte(scp, DID_BAD_TARGET);
Matthew Wilcox51219352007-10-02 21:55:22 -04005974 break;
5975 }
5976 break;
5977
5978 case QD_ABORTED_BY_HOST:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005979 ASC_DBG(1, "QD_ABORTED_BY_HOST\n");
Hannes Reineckeaced5502021-01-13 10:04:59 +01005980 set_status_byte(scp, scsiqp->scsi_status);
5981 set_host_byte(scp, DID_ABORT);
Matthew Wilcox51219352007-10-02 21:55:22 -04005982 break;
5983
5984 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04005985 ASC_DBG(1, "done_status 0x%x\n", scsiqp->done_status);
Hannes Reineckeaced5502021-01-13 10:04:59 +01005986 set_status_byte(scp, scsiqp->scsi_status);
5987 set_host_byte(scp, DID_ERROR);
Matthew Wilcox51219352007-10-02 21:55:22 -04005988 break;
5989 }
5990
5991 /*
5992 * If the 'init_tidmask' bit isn't already set for the target and the
5993 * current request finished normally, then set the bit for the target
5994 * to indicate that a device is present.
5995 */
5996 if ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(scp->device->id)) == 0 &&
5997 scsiqp->done_status == QD_NO_ERROR &&
5998 scsiqp->host_status == QHSTA_NO_ERROR) {
5999 boardp->init_tidmask |= ADV_TID_TO_TIDMASK(scp->device->id);
6000 }
6001
6002 asc_scsi_done(scp);
6003
6004 /*
6005 * Free all 'adv_sgblk_t' structures allocated for the request.
6006 */
6007 while ((sgblkp = reqp->sgblkp) != NULL) {
6008 /* Remove 'sgblkp' from the request list. */
6009 reqp->sgblkp = sgblkp->next_sgblkp;
6010
Hannes Reinecke0ce53822015-04-24 13:18:25 +02006011 dma_pool_free(boardp->adv_sgblk_pool, sgblkp,
6012 sgblkp->sg_addr);
Matthew Wilcox51219352007-10-02 21:55:22 -04006013 }
6014
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006015 ASC_DBG(1, "done\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006016}
6017
6018/*
6019 * Adv Library Interrupt Service Routine
6020 *
6021 * This function is called by a driver's interrupt service routine.
6022 * The function disables and re-enables interrupts.
6023 *
6024 * When a microcode idle command is completed, the ADV_DVC_VAR
6025 * 'idle_cmd_done' field is set to ADV_TRUE.
6026 *
6027 * Note: AdvISR() can be called when interrupts are disabled or even
6028 * when there is no hardware interrupt condition present. It will
6029 * always check for completed idle commands and microcode requests.
6030 * This is an important feature that shouldn't be changed because it
6031 * allows commands to be completed from polling mode loops.
6032 *
6033 * Return:
6034 * ADV_TRUE(1) - interrupt was pending
6035 * ADV_FALSE(0) - no interrupt was pending
6036 */
6037static int AdvISR(ADV_DVC_VAR *asc_dvc)
6038{
6039 AdvPortAddr iop_base;
6040 uchar int_stat;
Matthew Wilcox51219352007-10-02 21:55:22 -04006041 ADV_CARR_T *free_carrp;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02006042 __le32 irq_next_vpa;
Matthew Wilcox51219352007-10-02 21:55:22 -04006043 ADV_SCSI_REQ_Q *scsiq;
Hannes Reinecke4b47e462015-04-24 13:18:24 +02006044 adv_req_t *reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04006045
6046 iop_base = asc_dvc->iop_base;
6047
6048 /* Reading the register clears the interrupt. */
6049 int_stat = AdvReadByteRegister(iop_base, IOPB_INTR_STATUS_REG);
6050
6051 if ((int_stat & (ADV_INTR_STATUS_INTRA | ADV_INTR_STATUS_INTRB |
6052 ADV_INTR_STATUS_INTRC)) == 0) {
6053 return ADV_FALSE;
6054 }
6055
6056 /*
6057 * Notify the driver of an asynchronous microcode condition by
6058 * calling the adv_async_callback function. The function
6059 * is passed the microcode ASC_MC_INTRB_CODE byte value.
6060 */
6061 if (int_stat & ADV_INTR_STATUS_INTRB) {
6062 uchar intrb_code;
6063
6064 AdvReadByteLram(iop_base, ASC_MC_INTRB_CODE, intrb_code);
6065
6066 if (asc_dvc->chip_type == ADV_CHIP_ASC3550 ||
6067 asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
6068 if (intrb_code == ADV_ASYNC_CARRIER_READY_FAILURE &&
6069 asc_dvc->carr_pending_cnt != 0) {
6070 AdvWriteByteRegister(iop_base, IOPB_TICKLE,
6071 ADV_TICKLE_A);
6072 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
6073 AdvWriteByteRegister(iop_base,
6074 IOPB_TICKLE,
6075 ADV_TICKLE_NOP);
6076 }
6077 }
6078 }
6079
6080 adv_async_callback(asc_dvc, intrb_code);
6081 }
6082
6083 /*
6084 * Check if the IRQ stopper carrier contains a completed request.
6085 */
6086 while (((irq_next_vpa =
Hannes Reinecke084e6c32015-04-24 13:18:35 +02006087 le32_to_cpu(asc_dvc->irq_sp->next_vpa)) & ADV_RQ_DONE) != 0) {
Matthew Wilcox51219352007-10-02 21:55:22 -04006088 /*
6089 * Get a pointer to the newly completed ADV_SCSI_REQ_Q structure.
6090 * The RISC will have set 'areq_vpa' to a virtual address.
6091 *
Hannes Reinecke9fef6ba2015-04-24 13:18:33 +02006092 * The firmware will have copied the ADV_SCSI_REQ_Q.scsiq_ptr
Matthew Wilcox51219352007-10-02 21:55:22 -04006093 * field to the carrier ADV_CARR_T.areq_vpa field. The conversion
Hannes Reinecke9fef6ba2015-04-24 13:18:33 +02006094 * below complements the conversion of ADV_SCSI_REQ_Q.scsiq_ptr'
Matthew Wilcox51219352007-10-02 21:55:22 -04006095 * in AdvExeScsiQueue().
6096 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02006097 u32 pa_offset = le32_to_cpu(asc_dvc->irq_sp->areq_vpa);
6098 ASC_DBG(1, "irq_sp %p areq_vpa %u\n",
6099 asc_dvc->irq_sp, pa_offset);
6100 reqp = adv_get_reqp(asc_dvc, pa_offset);
6101 scsiq = &reqp->scsi_req_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04006102
6103 /*
6104 * Request finished with good status and the queue was not
6105 * DMAed to host memory by the firmware. Set all status fields
6106 * to indicate good status.
6107 */
Hannes Reinecke084e6c32015-04-24 13:18:35 +02006108 if ((irq_next_vpa & ADV_RQ_GOOD) != 0) {
Matthew Wilcox51219352007-10-02 21:55:22 -04006109 scsiq->done_status = QD_NO_ERROR;
6110 scsiq->host_status = scsiq->scsi_status = 0;
6111 scsiq->data_cnt = 0L;
6112 }
6113
6114 /*
6115 * Advance the stopper pointer to the next carrier
6116 * ignoring the lower four bits. Free the previous
6117 * stopper carrier.
6118 */
6119 free_carrp = asc_dvc->irq_sp;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02006120 asc_dvc->irq_sp = adv_get_carrier(asc_dvc,
Hannes Reinecke084e6c32015-04-24 13:18:35 +02006121 ADV_GET_CARRP(irq_next_vpa));
Matthew Wilcox51219352007-10-02 21:55:22 -04006122
Hannes Reinecke98b96a72015-04-24 13:18:23 +02006123 free_carrp->next_vpa = asc_dvc->carr_freelist->carr_va;
Matthew Wilcox51219352007-10-02 21:55:22 -04006124 asc_dvc->carr_freelist = free_carrp;
6125 asc_dvc->carr_pending_cnt--;
6126
Matthew Wilcox51219352007-10-02 21:55:22 -04006127 /*
6128 * Clear request microcode control flag.
6129 */
6130 scsiq->cntl = 0;
6131
6132 /*
6133 * Notify the driver of the completed request by passing
6134 * the ADV_SCSI_REQ_Q pointer to its callback function.
6135 */
Matthew Wilcox51219352007-10-02 21:55:22 -04006136 adv_isr_callback(asc_dvc, scsiq);
6137 /*
6138 * Note: After the driver callback function is called, 'scsiq'
6139 * can no longer be referenced.
6140 *
6141 * Fall through and continue processing other completed
6142 * requests...
6143 */
6144 }
6145 return ADV_TRUE;
6146}
6147
6148static int AscSetLibErrorCode(ASC_DVC_VAR *asc_dvc, ushort err_code)
6149{
6150 if (asc_dvc->err_code == 0) {
6151 asc_dvc->err_code = err_code;
6152 AscWriteLramWord(asc_dvc->iop_base, ASCV_ASCDVC_ERR_CODE_W,
6153 err_code);
6154 }
6155 return err_code;
6156}
6157
6158static void AscAckInterrupt(PortAddr iop_base)
6159{
6160 uchar host_flag;
6161 uchar risc_flag;
6162 ushort loop;
6163
6164 loop = 0;
6165 do {
6166 risc_flag = AscReadLramByte(iop_base, ASCV_RISC_FLAG_B);
6167 if (loop++ > 0x7FFF) {
6168 break;
6169 }
6170 } while ((risc_flag & ASC_RISC_FLAG_GEN_INT) != 0);
6171 host_flag =
6172 AscReadLramByte(iop_base,
6173 ASCV_HOST_FLAG_B) & (~ASC_HOST_FLAG_ACK_INT);
6174 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
6175 (uchar)(host_flag | ASC_HOST_FLAG_ACK_INT));
6176 AscSetChipStatus(iop_base, CIW_INT_ACK);
6177 loop = 0;
6178 while (AscGetChipStatus(iop_base) & CSW_INT_PENDING) {
6179 AscSetChipStatus(iop_base, CIW_INT_ACK);
6180 if (loop++ > 3) {
6181 break;
6182 }
6183 }
6184 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
Matthew Wilcox51219352007-10-02 21:55:22 -04006185}
6186
6187static uchar AscGetSynPeriodIndex(ASC_DVC_VAR *asc_dvc, uchar syn_time)
6188{
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006189 const uchar *period_table;
Matthew Wilcox51219352007-10-02 21:55:22 -04006190 int max_index;
6191 int min_index;
6192 int i;
6193
6194 period_table = asc_dvc->sdtr_period_tbl;
6195 max_index = (int)asc_dvc->max_sdtr_index;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006196 min_index = (int)asc_dvc->min_sdtr_index;
Matthew Wilcox51219352007-10-02 21:55:22 -04006197 if ((syn_time <= period_table[max_index])) {
6198 for (i = min_index; i < (max_index - 1); i++) {
6199 if (syn_time <= period_table[i]) {
6200 return (uchar)i;
6201 }
6202 }
6203 return (uchar)max_index;
6204 } else {
6205 return (uchar)(max_index + 1);
6206 }
6207}
6208
6209static uchar
6210AscMsgOutSDTR(ASC_DVC_VAR *asc_dvc, uchar sdtr_period, uchar sdtr_offset)
6211{
Arnd Bergmann44a5b972017-03-23 16:02:18 +01006212 PortAddr iop_base = asc_dvc->iop_base;
6213 uchar sdtr_period_index = AscGetSynPeriodIndex(asc_dvc, sdtr_period);
6214 EXT_MSG sdtr_buf = {
6215 .msg_type = EXTENDED_MESSAGE,
6216 .msg_len = MS_SDTR_LEN,
6217 .msg_req = EXTENDED_SDTR,
6218 .xfer_period = sdtr_period,
6219 .req_ack_offset = sdtr_offset,
6220 };
Matthew Wilcox51219352007-10-02 21:55:22 -04006221 sdtr_offset &= ASC_SYN_MAX_OFFSET;
Arnd Bergmann44a5b972017-03-23 16:02:18 +01006222
Matthew Wilcox51219352007-10-02 21:55:22 -04006223 if (sdtr_period_index <= asc_dvc->max_sdtr_index) {
6224 AscMemWordCopyPtrToLram(iop_base, ASCV_MSGOUT_BEG,
6225 (uchar *)&sdtr_buf,
6226 sizeof(EXT_MSG) >> 1);
6227 return ((sdtr_period_index << 4) | sdtr_offset);
6228 } else {
6229 sdtr_buf.req_ack_offset = 0;
6230 AscMemWordCopyPtrToLram(iop_base, ASCV_MSGOUT_BEG,
6231 (uchar *)&sdtr_buf,
6232 sizeof(EXT_MSG) >> 1);
6233 return 0;
6234 }
6235}
6236
6237static uchar
6238AscCalSDTRData(ASC_DVC_VAR *asc_dvc, uchar sdtr_period, uchar syn_offset)
6239{
6240 uchar byte;
6241 uchar sdtr_period_ix;
6242
6243 sdtr_period_ix = AscGetSynPeriodIndex(asc_dvc, sdtr_period);
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006244 if (sdtr_period_ix > asc_dvc->max_sdtr_index)
Matthew Wilcox51219352007-10-02 21:55:22 -04006245 return 0xFF;
Matthew Wilcox51219352007-10-02 21:55:22 -04006246 byte = (sdtr_period_ix << 4) | (syn_offset & ASC_SYN_MAX_OFFSET);
6247 return byte;
6248}
6249
Hannes Reinecked647c782015-04-24 13:18:26 +02006250static bool AscSetChipSynRegAtID(PortAddr iop_base, uchar id, uchar sdtr_data)
Matthew Wilcox51219352007-10-02 21:55:22 -04006251{
6252 ASC_SCSI_BIT_ID_TYPE org_id;
6253 int i;
Hannes Reinecked647c782015-04-24 13:18:26 +02006254 bool sta = true;
Matthew Wilcox51219352007-10-02 21:55:22 -04006255
6256 AscSetBank(iop_base, 1);
6257 org_id = AscReadChipDvcID(iop_base);
6258 for (i = 0; i <= ASC_MAX_TID; i++) {
6259 if (org_id == (0x01 << i))
6260 break;
6261 }
6262 org_id = (ASC_SCSI_BIT_ID_TYPE) i;
6263 AscWriteChipDvcID(iop_base, id);
6264 if (AscReadChipDvcID(iop_base) == (0x01 << id)) {
6265 AscSetBank(iop_base, 0);
6266 AscSetChipSyn(iop_base, sdtr_data);
6267 if (AscGetChipSyn(iop_base) != sdtr_data) {
Hannes Reinecked647c782015-04-24 13:18:26 +02006268 sta = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04006269 }
6270 } else {
Hannes Reinecked647c782015-04-24 13:18:26 +02006271 sta = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04006272 }
6273 AscSetBank(iop_base, 1);
6274 AscWriteChipDvcID(iop_base, org_id);
6275 AscSetBank(iop_base, 0);
6276 return (sta);
6277}
6278
6279static void AscSetChipSDTR(PortAddr iop_base, uchar sdtr_data, uchar tid_no)
6280{
6281 AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
6282 AscPutMCodeSDTRDoneAtID(iop_base, tid_no, sdtr_data);
6283}
6284
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006285static void AscIsrChipHalted(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04006286{
6287 EXT_MSG ext_msg;
6288 EXT_MSG out_msg;
6289 ushort halt_q_addr;
Hannes Reineckeae267592015-04-24 13:18:28 +02006290 bool sdtr_accept;
Matthew Wilcox51219352007-10-02 21:55:22 -04006291 ushort int_halt_code;
6292 ASC_SCSI_BIT_ID_TYPE scsi_busy;
6293 ASC_SCSI_BIT_ID_TYPE target_id;
6294 PortAddr iop_base;
6295 uchar tag_code;
6296 uchar q_status;
6297 uchar halt_qp;
6298 uchar sdtr_data;
6299 uchar target_ix;
6300 uchar q_cntl, tid_no;
6301 uchar cur_dvc_qng;
6302 uchar asyn_sdtr;
6303 uchar scsi_status;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04006304 struct asc_board *boardp;
Matthew Wilcox51219352007-10-02 21:55:22 -04006305
6306 BUG_ON(!asc_dvc->drv_ptr);
6307 boardp = asc_dvc->drv_ptr;
6308
6309 iop_base = asc_dvc->iop_base;
6310 int_halt_code = AscReadLramWord(iop_base, ASCV_HALTCODE_W);
6311
6312 halt_qp = AscReadLramByte(iop_base, ASCV_CURCDB_B);
6313 halt_q_addr = ASC_QNO_TO_QADDR(halt_qp);
6314 target_ix = AscReadLramByte(iop_base,
6315 (ushort)(halt_q_addr +
6316 (ushort)ASC_SCSIQ_B_TARGET_IX));
6317 q_cntl = AscReadLramByte(iop_base,
6318 (ushort)(halt_q_addr + (ushort)ASC_SCSIQ_B_CNTL));
6319 tid_no = ASC_TIX_TO_TID(target_ix);
6320 target_id = (uchar)ASC_TID_TO_TARGET_ID(tid_no);
6321 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
6322 asyn_sdtr = ASYN_SDTR_DATA_FIX_PCI_REV_AB;
6323 } else {
6324 asyn_sdtr = 0;
6325 }
6326 if (int_halt_code == ASC_HALT_DISABLE_ASYN_USE_SYN_FIX) {
6327 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
6328 AscSetChipSDTR(iop_base, 0, tid_no);
6329 boardp->sdtr_data[tid_no] = 0;
6330 }
6331 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006332 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006333 } else if (int_halt_code == ASC_HALT_ENABLE_ASYN_USE_SYN_FIX) {
6334 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
6335 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
6336 boardp->sdtr_data[tid_no] = asyn_sdtr;
6337 }
6338 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006339 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006340 } else if (int_halt_code == ASC_HALT_EXTMSG_IN) {
6341 AscMemWordCopyPtrFromLram(iop_base,
6342 ASCV_MSGIN_BEG,
6343 (uchar *)&ext_msg,
6344 sizeof(EXT_MSG) >> 1);
6345
6346 if (ext_msg.msg_type == EXTENDED_MESSAGE &&
6347 ext_msg.msg_req == EXTENDED_SDTR &&
6348 ext_msg.msg_len == MS_SDTR_LEN) {
Hannes Reineckeae267592015-04-24 13:18:28 +02006349 sdtr_accept = true;
Matthew Wilcox51219352007-10-02 21:55:22 -04006350 if ((ext_msg.req_ack_offset > ASC_SYN_MAX_OFFSET)) {
6351
Hannes Reineckeae267592015-04-24 13:18:28 +02006352 sdtr_accept = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04006353 ext_msg.req_ack_offset = ASC_SYN_MAX_OFFSET;
6354 }
6355 if ((ext_msg.xfer_period <
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006356 asc_dvc->sdtr_period_tbl[asc_dvc->min_sdtr_index])
Matthew Wilcox51219352007-10-02 21:55:22 -04006357 || (ext_msg.xfer_period >
6358 asc_dvc->sdtr_period_tbl[asc_dvc->
6359 max_sdtr_index])) {
Hannes Reineckeae267592015-04-24 13:18:28 +02006360 sdtr_accept = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04006361 ext_msg.xfer_period =
6362 asc_dvc->sdtr_period_tbl[asc_dvc->
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006363 min_sdtr_index];
Matthew Wilcox51219352007-10-02 21:55:22 -04006364 }
6365 if (sdtr_accept) {
6366 sdtr_data =
6367 AscCalSDTRData(asc_dvc, ext_msg.xfer_period,
6368 ext_msg.req_ack_offset);
Nathan Chancellor874deb12018-09-20 13:58:58 -07006369 if (sdtr_data == 0xFF) {
Matthew Wilcox51219352007-10-02 21:55:22 -04006370
6371 q_cntl |= QC_MSG_OUT;
6372 asc_dvc->init_sdtr &= ~target_id;
6373 asc_dvc->sdtr_done &= ~target_id;
6374 AscSetChipSDTR(iop_base, asyn_sdtr,
6375 tid_no);
6376 boardp->sdtr_data[tid_no] = asyn_sdtr;
6377 }
6378 }
6379 if (ext_msg.req_ack_offset == 0) {
6380
6381 q_cntl &= ~QC_MSG_OUT;
6382 asc_dvc->init_sdtr &= ~target_id;
6383 asc_dvc->sdtr_done &= ~target_id;
6384 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
6385 } else {
6386 if (sdtr_accept && (q_cntl & QC_MSG_OUT)) {
Matthew Wilcox51219352007-10-02 21:55:22 -04006387 q_cntl &= ~QC_MSG_OUT;
6388 asc_dvc->sdtr_done |= target_id;
6389 asc_dvc->init_sdtr |= target_id;
6390 asc_dvc->pci_fix_asyn_xfer &=
6391 ~target_id;
6392 sdtr_data =
6393 AscCalSDTRData(asc_dvc,
6394 ext_msg.xfer_period,
6395 ext_msg.
6396 req_ack_offset);
6397 AscSetChipSDTR(iop_base, sdtr_data,
6398 tid_no);
6399 boardp->sdtr_data[tid_no] = sdtr_data;
6400 } else {
Matthew Wilcox51219352007-10-02 21:55:22 -04006401 q_cntl |= QC_MSG_OUT;
6402 AscMsgOutSDTR(asc_dvc,
6403 ext_msg.xfer_period,
6404 ext_msg.req_ack_offset);
6405 asc_dvc->pci_fix_asyn_xfer &=
6406 ~target_id;
6407 sdtr_data =
6408 AscCalSDTRData(asc_dvc,
6409 ext_msg.xfer_period,
6410 ext_msg.
6411 req_ack_offset);
6412 AscSetChipSDTR(iop_base, sdtr_data,
6413 tid_no);
6414 boardp->sdtr_data[tid_no] = sdtr_data;
6415 asc_dvc->sdtr_done |= target_id;
6416 asc_dvc->init_sdtr |= target_id;
6417 }
6418 }
6419
6420 AscWriteLramByte(iop_base,
6421 (ushort)(halt_q_addr +
6422 (ushort)ASC_SCSIQ_B_CNTL),
6423 q_cntl);
6424 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006425 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006426 } else if (ext_msg.msg_type == EXTENDED_MESSAGE &&
6427 ext_msg.msg_req == EXTENDED_WDTR &&
6428 ext_msg.msg_len == MS_WDTR_LEN) {
6429
6430 ext_msg.wdtr_width = 0;
6431 AscMemWordCopyPtrToLram(iop_base,
6432 ASCV_MSGOUT_BEG,
6433 (uchar *)&ext_msg,
6434 sizeof(EXT_MSG) >> 1);
6435 q_cntl |= QC_MSG_OUT;
6436 AscWriteLramByte(iop_base,
6437 (ushort)(halt_q_addr +
6438 (ushort)ASC_SCSIQ_B_CNTL),
6439 q_cntl);
6440 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006441 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006442 } else {
6443
6444 ext_msg.msg_type = MESSAGE_REJECT;
6445 AscMemWordCopyPtrToLram(iop_base,
6446 ASCV_MSGOUT_BEG,
6447 (uchar *)&ext_msg,
6448 sizeof(EXT_MSG) >> 1);
6449 q_cntl |= QC_MSG_OUT;
6450 AscWriteLramByte(iop_base,
6451 (ushort)(halt_q_addr +
6452 (ushort)ASC_SCSIQ_B_CNTL),
6453 q_cntl);
6454 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006455 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006456 }
6457 } else if (int_halt_code == ASC_HALT_CHK_CONDITION) {
6458
6459 q_cntl |= QC_REQ_SENSE;
6460
6461 if ((asc_dvc->init_sdtr & target_id) != 0) {
6462
6463 asc_dvc->sdtr_done &= ~target_id;
6464
6465 sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
6466 q_cntl |= QC_MSG_OUT;
6467 AscMsgOutSDTR(asc_dvc,
6468 asc_dvc->
6469 sdtr_period_tbl[(sdtr_data >> 4) &
6470 (uchar)(asc_dvc->
6471 max_sdtr_index -
6472 1)],
6473 (uchar)(sdtr_data & (uchar)
6474 ASC_SYN_MAX_OFFSET));
6475 }
6476
6477 AscWriteLramByte(iop_base,
6478 (ushort)(halt_q_addr +
6479 (ushort)ASC_SCSIQ_B_CNTL), q_cntl);
6480
6481 tag_code = AscReadLramByte(iop_base,
6482 (ushort)(halt_q_addr + (ushort)
6483 ASC_SCSIQ_B_TAG_CODE));
6484 tag_code &= 0xDC;
6485 if ((asc_dvc->pci_fix_asyn_xfer & target_id)
6486 && !(asc_dvc->pci_fix_asyn_xfer_always & target_id)
6487 ) {
6488
6489 tag_code |= (ASC_TAG_FLAG_DISABLE_DISCONNECT
6490 | ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX);
6491
6492 }
6493 AscWriteLramByte(iop_base,
6494 (ushort)(halt_q_addr +
6495 (ushort)ASC_SCSIQ_B_TAG_CODE),
6496 tag_code);
6497
6498 q_status = AscReadLramByte(iop_base,
6499 (ushort)(halt_q_addr + (ushort)
6500 ASC_SCSIQ_B_STATUS));
6501 q_status |= (QS_READY | QS_BUSY);
6502 AscWriteLramByte(iop_base,
6503 (ushort)(halt_q_addr +
6504 (ushort)ASC_SCSIQ_B_STATUS),
6505 q_status);
6506
6507 scsi_busy = AscReadLramByte(iop_base, (ushort)ASCV_SCSIBUSY_B);
6508 scsi_busy &= ~target_id;
6509 AscWriteLramByte(iop_base, (ushort)ASCV_SCSIBUSY_B, scsi_busy);
6510
6511 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006512 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006513 } else if (int_halt_code == ASC_HALT_SDTR_REJECTED) {
6514
6515 AscMemWordCopyPtrFromLram(iop_base,
6516 ASCV_MSGOUT_BEG,
6517 (uchar *)&out_msg,
6518 sizeof(EXT_MSG) >> 1);
6519
6520 if ((out_msg.msg_type == EXTENDED_MESSAGE) &&
6521 (out_msg.msg_len == MS_SDTR_LEN) &&
6522 (out_msg.msg_req == EXTENDED_SDTR)) {
6523
6524 asc_dvc->init_sdtr &= ~target_id;
6525 asc_dvc->sdtr_done &= ~target_id;
6526 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
6527 boardp->sdtr_data[tid_no] = asyn_sdtr;
6528 }
6529 q_cntl &= ~QC_MSG_OUT;
6530 AscWriteLramByte(iop_base,
6531 (ushort)(halt_q_addr +
6532 (ushort)ASC_SCSIQ_B_CNTL), q_cntl);
6533 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006534 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006535 } else if (int_halt_code == ASC_HALT_SS_QUEUE_FULL) {
6536
6537 scsi_status = AscReadLramByte(iop_base,
6538 (ushort)((ushort)halt_q_addr +
6539 (ushort)
6540 ASC_SCSIQ_SCSI_STATUS));
6541 cur_dvc_qng =
6542 AscReadLramByte(iop_base,
6543 (ushort)((ushort)ASC_QADR_BEG +
6544 (ushort)target_ix));
6545 if ((cur_dvc_qng > 0) && (asc_dvc->cur_dvc_qng[tid_no] > 0)) {
6546
6547 scsi_busy = AscReadLramByte(iop_base,
6548 (ushort)ASCV_SCSIBUSY_B);
6549 scsi_busy |= target_id;
6550 AscWriteLramByte(iop_base,
6551 (ushort)ASCV_SCSIBUSY_B, scsi_busy);
6552 asc_dvc->queue_full_or_busy |= target_id;
6553
6554 if (scsi_status == SAM_STAT_TASK_SET_FULL) {
6555 if (cur_dvc_qng > ASC_MIN_TAGGED_CMD) {
6556 cur_dvc_qng -= 1;
6557 asc_dvc->max_dvc_qng[tid_no] =
6558 cur_dvc_qng;
6559
6560 AscWriteLramByte(iop_base,
6561 (ushort)((ushort)
6562 ASCV_MAX_DVC_QNG_BEG
6563 + (ushort)
6564 tid_no),
6565 cur_dvc_qng);
6566
6567 /*
6568 * Set the device queue depth to the
6569 * number of active requests when the
6570 * QUEUE FULL condition was encountered.
6571 */
6572 boardp->queue_full |= target_id;
6573 boardp->queue_full_cnt[tid_no] =
6574 cur_dvc_qng;
6575 }
6576 }
6577 }
6578 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006579 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006580 }
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006581 return;
Matthew Wilcox51219352007-10-02 21:55:22 -04006582}
6583
6584/*
6585 * void
6586 * DvcGetQinfo(PortAddr iop_base, ushort s_addr, uchar *inbuf, int words)
6587 *
6588 * Calling/Exit State:
6589 * none
6590 *
6591 * Description:
6592 * Input an ASC_QDONE_INFO structure from the chip
6593 */
6594static void
6595DvcGetQinfo(PortAddr iop_base, ushort s_addr, uchar *inbuf, int words)
6596{
6597 int i;
6598 ushort word;
6599
6600 AscSetChipLramAddr(iop_base, s_addr);
6601 for (i = 0; i < 2 * words; i += 2) {
6602 if (i == 10) {
6603 continue;
6604 }
6605 word = inpw(iop_base + IOP_RAM_DATA);
6606 inbuf[i] = word & 0xff;
6607 inbuf[i + 1] = (word >> 8) & 0xff;
6608 }
6609 ASC_DBG_PRT_HEX(2, "DvcGetQinfo", inbuf, 2 * words);
6610}
6611
6612static uchar
6613_AscCopyLramScsiDoneQ(PortAddr iop_base,
6614 ushort q_addr,
Hannes Reinecke95cfab62015-04-24 13:18:27 +02006615 ASC_QDONE_INFO *scsiq, unsigned int max_dma_count)
Matthew Wilcox51219352007-10-02 21:55:22 -04006616{
6617 ushort _val;
6618 uchar sg_queue_cnt;
6619
6620 DvcGetQinfo(iop_base,
6621 q_addr + ASC_SCSIQ_DONE_INFO_BEG,
6622 (uchar *)scsiq,
6623 (sizeof(ASC_SCSIQ_2) + sizeof(ASC_SCSIQ_3)) / 2);
6624
6625 _val = AscReadLramWord(iop_base,
6626 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_STATUS));
6627 scsiq->q_status = (uchar)_val;
6628 scsiq->q_no = (uchar)(_val >> 8);
6629 _val = AscReadLramWord(iop_base,
6630 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_CNTL));
6631 scsiq->cntl = (uchar)_val;
6632 sg_queue_cnt = (uchar)(_val >> 8);
6633 _val = AscReadLramWord(iop_base,
6634 (ushort)(q_addr +
6635 (ushort)ASC_SCSIQ_B_SENSE_LEN));
6636 scsiq->sense_len = (uchar)_val;
6637 scsiq->extra_bytes = (uchar)(_val >> 8);
6638
6639 /*
6640 * Read high word of remain bytes from alternate location.
6641 */
Hannes Reinecke95cfab62015-04-24 13:18:27 +02006642 scsiq->remain_bytes = (((u32)AscReadLramWord(iop_base,
6643 (ushort)(q_addr +
6644 (ushort)
6645 ASC_SCSIQ_W_ALT_DC1)))
Matthew Wilcox51219352007-10-02 21:55:22 -04006646 << 16);
6647 /*
6648 * Read low word of remain bytes from original location.
6649 */
6650 scsiq->remain_bytes += AscReadLramWord(iop_base,
6651 (ushort)(q_addr + (ushort)
6652 ASC_SCSIQ_DW_REMAIN_XFER_CNT));
6653
6654 scsiq->remain_bytes &= max_dma_count;
6655 return sg_queue_cnt;
6656}
6657
6658/*
6659 * asc_isr_callback() - Second Level Interrupt Handler called by AscISR().
6660 *
6661 * Interrupt callback function for the Narrow SCSI Asc Library.
6662 */
6663static void asc_isr_callback(ASC_DVC_VAR *asc_dvc_varp, ASC_QDONE_INFO *qdonep)
6664{
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006665 struct asc_board *boardp = asc_dvc_varp->drv_ptr;
6666 u32 srb_tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04006667 struct scsi_cmnd *scp;
Matthew Wilcox51219352007-10-02 21:55:22 -04006668
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006669 ASC_DBG(1, "asc_dvc_varp 0x%p, qdonep 0x%p\n", asc_dvc_varp, qdonep);
Matthew Wilcox51219352007-10-02 21:55:22 -04006670 ASC_DBG_PRT_ASC_QDONE_INFO(2, qdonep);
6671
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006672 /*
6673 * Decrease the srb_tag by 1 to find the SCSI command
6674 */
6675 srb_tag = qdonep->d2.srb_tag - 1;
6676 scp = scsi_host_find_tag(boardp->shost, srb_tag);
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04006677 if (!scp)
Matthew Wilcox51219352007-10-02 21:55:22 -04006678 return;
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04006679
Matthew Wilcox51219352007-10-02 21:55:22 -04006680 ASC_DBG_PRT_CDB(2, scp->cmnd, scp->cmd_len);
6681
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006682 ASC_STATS(boardp->shost, callback);
Matthew Wilcox51219352007-10-02 21:55:22 -04006683
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04006684 dma_unmap_single(boardp->dev, scp->SCp.dma_handle,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09006685 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
Matthew Wilcox51219352007-10-02 21:55:22 -04006686 /*
6687 * 'qdonep' contains the command's ending status.
6688 */
Hannes Reineckeaced5502021-01-13 10:04:59 +01006689 scp->result = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04006690 switch (qdonep->d3.done_stat) {
6691 case QD_NO_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006692 ASC_DBG(2, "QD_NO_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006693
6694 /*
6695 * Check for an underrun condition.
6696 *
6697 * If there was no error and an underrun condition, then
6698 * return the number of underrun bytes.
6699 */
Matthew Wilcox52c334e2007-10-02 21:55:39 -04006700 if (scsi_bufflen(scp) != 0 && qdonep->remain_bytes != 0 &&
6701 qdonep->remain_bytes <= scsi_bufflen(scp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006702 ASC_DBG(1, "underrun condition %u bytes\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04006703 (unsigned)qdonep->remain_bytes);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04006704 scsi_set_resid(scp, qdonep->remain_bytes);
Matthew Wilcox51219352007-10-02 21:55:22 -04006705 }
6706 break;
6707
6708 case QD_WITH_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006709 ASC_DBG(2, "QD_WITH_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006710 switch (qdonep->d3.host_stat) {
6711 case QHSTA_NO_ERROR:
Hannes Reineckeaced5502021-01-13 10:04:59 +01006712 set_status_byte(scp, qdonep->d3.scsi_stat);
Matthew Wilcox51219352007-10-02 21:55:22 -04006713 if (qdonep->d3.scsi_stat == SAM_STAT_CHECK_CONDITION) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006714 ASC_DBG(2, "SAM_STAT_CHECK_CONDITION\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006715 ASC_DBG_PRT_SENSE(2, scp->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09006716 SCSI_SENSE_BUFFERSIZE);
Matthew Wilcox51219352007-10-02 21:55:22 -04006717 }
6718 break;
6719
6720 default:
6721 /* QHSTA error occurred */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006722 ASC_DBG(1, "host_stat 0x%x\n", qdonep->d3.host_stat);
Hannes Reineckeaced5502021-01-13 10:04:59 +01006723 set_host_byte(scp, DID_BAD_TARGET);
Matthew Wilcox51219352007-10-02 21:55:22 -04006724 break;
6725 }
6726 break;
6727
6728 case QD_ABORTED_BY_HOST:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006729 ASC_DBG(1, "QD_ABORTED_BY_HOST\n");
Hannes Reineckeaced5502021-01-13 10:04:59 +01006730 set_status_byte(scp, qdonep->d3.scsi_stat);
Hannes Reineckeaced5502021-01-13 10:04:59 +01006731 set_host_byte(scp, DID_ABORT);
Matthew Wilcox51219352007-10-02 21:55:22 -04006732 break;
6733
6734 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006735 ASC_DBG(1, "done_stat 0x%x\n", qdonep->d3.done_stat);
Hannes Reineckeaced5502021-01-13 10:04:59 +01006736 set_status_byte(scp, qdonep->d3.scsi_stat);
Hannes Reineckeaced5502021-01-13 10:04:59 +01006737 set_host_byte(scp, DID_ERROR);
Matthew Wilcox51219352007-10-02 21:55:22 -04006738 break;
6739 }
6740
6741 /*
6742 * If the 'init_tidmask' bit isn't already set for the target and the
6743 * current request finished normally, then set the bit for the target
6744 * to indicate that a device is present.
6745 */
6746 if ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(scp->device->id)) == 0 &&
6747 qdonep->d3.done_stat == QD_NO_ERROR &&
6748 qdonep->d3.host_stat == QHSTA_NO_ERROR) {
6749 boardp->init_tidmask |= ADV_TID_TO_TIDMASK(scp->device->id);
6750 }
6751
6752 asc_scsi_done(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04006753}
6754
6755static int AscIsrQDone(ASC_DVC_VAR *asc_dvc)
6756{
6757 uchar next_qp;
6758 uchar n_q_used;
6759 uchar sg_list_qp;
6760 uchar sg_queue_cnt;
6761 uchar q_cnt;
6762 uchar done_q_tail;
6763 uchar tid_no;
6764 ASC_SCSI_BIT_ID_TYPE scsi_busy;
6765 ASC_SCSI_BIT_ID_TYPE target_id;
6766 PortAddr iop_base;
6767 ushort q_addr;
6768 ushort sg_q_addr;
6769 uchar cur_target_qng;
6770 ASC_QDONE_INFO scsiq_buf;
6771 ASC_QDONE_INFO *scsiq;
Hannes Reineckeae267592015-04-24 13:18:28 +02006772 bool false_overrun;
Matthew Wilcox51219352007-10-02 21:55:22 -04006773
6774 iop_base = asc_dvc->iop_base;
6775 n_q_used = 1;
6776 scsiq = (ASC_QDONE_INFO *)&scsiq_buf;
6777 done_q_tail = (uchar)AscGetVarDoneQTail(iop_base);
6778 q_addr = ASC_QNO_TO_QADDR(done_q_tail);
6779 next_qp = AscReadLramByte(iop_base,
6780 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_FWD));
6781 if (next_qp != ASC_QLINK_END) {
6782 AscPutVarDoneQTail(iop_base, next_qp);
6783 q_addr = ASC_QNO_TO_QADDR(next_qp);
6784 sg_queue_cnt = _AscCopyLramScsiDoneQ(iop_base, q_addr, scsiq,
6785 asc_dvc->max_dma_count);
6786 AscWriteLramByte(iop_base,
6787 (ushort)(q_addr +
6788 (ushort)ASC_SCSIQ_B_STATUS),
6789 (uchar)(scsiq->
6790 q_status & (uchar)~(QS_READY |
6791 QS_ABORTED)));
6792 tid_no = ASC_TIX_TO_TID(scsiq->d2.target_ix);
6793 target_id = ASC_TIX_TO_TARGET_ID(scsiq->d2.target_ix);
6794 if ((scsiq->cntl & QC_SG_HEAD) != 0) {
6795 sg_q_addr = q_addr;
6796 sg_list_qp = next_qp;
6797 for (q_cnt = 0; q_cnt < sg_queue_cnt; q_cnt++) {
6798 sg_list_qp = AscReadLramByte(iop_base,
6799 (ushort)(sg_q_addr
6800 + (ushort)
6801 ASC_SCSIQ_B_FWD));
6802 sg_q_addr = ASC_QNO_TO_QADDR(sg_list_qp);
6803 if (sg_list_qp == ASC_QLINK_END) {
6804 AscSetLibErrorCode(asc_dvc,
6805 ASCQ_ERR_SG_Q_LINKS);
6806 scsiq->d3.done_stat = QD_WITH_ERROR;
6807 scsiq->d3.host_stat =
6808 QHSTA_D_QDONE_SG_LIST_CORRUPTED;
6809 goto FATAL_ERR_QDONE;
6810 }
6811 AscWriteLramByte(iop_base,
6812 (ushort)(sg_q_addr + (ushort)
6813 ASC_SCSIQ_B_STATUS),
6814 QS_FREE);
6815 }
6816 n_q_used = sg_queue_cnt + 1;
6817 AscPutVarDoneQTail(iop_base, sg_list_qp);
6818 }
6819 if (asc_dvc->queue_full_or_busy & target_id) {
6820 cur_target_qng = AscReadLramByte(iop_base,
6821 (ushort)((ushort)
6822 ASC_QADR_BEG
6823 + (ushort)
6824 scsiq->d2.
6825 target_ix));
6826 if (cur_target_qng < asc_dvc->max_dvc_qng[tid_no]) {
6827 scsi_busy = AscReadLramByte(iop_base, (ushort)
6828 ASCV_SCSIBUSY_B);
6829 scsi_busy &= ~target_id;
6830 AscWriteLramByte(iop_base,
6831 (ushort)ASCV_SCSIBUSY_B,
6832 scsi_busy);
6833 asc_dvc->queue_full_or_busy &= ~target_id;
6834 }
6835 }
6836 if (asc_dvc->cur_total_qng >= n_q_used) {
6837 asc_dvc->cur_total_qng -= n_q_used;
6838 if (asc_dvc->cur_dvc_qng[tid_no] != 0) {
6839 asc_dvc->cur_dvc_qng[tid_no]--;
6840 }
6841 } else {
6842 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CUR_QNG);
6843 scsiq->d3.done_stat = QD_WITH_ERROR;
6844 goto FATAL_ERR_QDONE;
6845 }
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006846 if ((scsiq->d2.srb_tag == 0UL) ||
Matthew Wilcox51219352007-10-02 21:55:22 -04006847 ((scsiq->q_status & QS_ABORTED) != 0)) {
6848 return (0x11);
6849 } else if (scsiq->q_status == QS_DONE) {
Hannes Reineckeae267592015-04-24 13:18:28 +02006850 /*
6851 * This is also curious.
6852 * false_overrun will _always_ be set to 'false'
6853 */
6854 false_overrun = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04006855 if (scsiq->extra_bytes != 0) {
Hannes Reinecke95cfab62015-04-24 13:18:27 +02006856 scsiq->remain_bytes += scsiq->extra_bytes;
Matthew Wilcox51219352007-10-02 21:55:22 -04006857 }
6858 if (scsiq->d3.done_stat == QD_WITH_ERROR) {
6859 if (scsiq->d3.host_stat ==
6860 QHSTA_M_DATA_OVER_RUN) {
6861 if ((scsiq->
6862 cntl & (QC_DATA_IN | QC_DATA_OUT))
6863 == 0) {
6864 scsiq->d3.done_stat =
6865 QD_NO_ERROR;
6866 scsiq->d3.host_stat =
6867 QHSTA_NO_ERROR;
6868 } else if (false_overrun) {
6869 scsiq->d3.done_stat =
6870 QD_NO_ERROR;
6871 scsiq->d3.host_stat =
6872 QHSTA_NO_ERROR;
6873 }
6874 } else if (scsiq->d3.host_stat ==
6875 QHSTA_M_HUNG_REQ_SCSI_BUS_RESET) {
6876 AscStopChip(iop_base);
6877 AscSetChipControl(iop_base,
6878 (uchar)(CC_SCSI_RESET
6879 | CC_HALT));
6880 udelay(60);
6881 AscSetChipControl(iop_base, CC_HALT);
6882 AscSetChipStatus(iop_base,
6883 CIW_CLR_SCSI_RESET_INT);
6884 AscSetChipStatus(iop_base, 0);
6885 AscSetChipControl(iop_base, 0);
6886 }
6887 }
6888 if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
6889 asc_isr_callback(asc_dvc, scsiq);
6890 } else {
6891 if ((AscReadLramByte(iop_base,
6892 (ushort)(q_addr + (ushort)
6893 ASC_SCSIQ_CDB_BEG))
6894 == START_STOP)) {
6895 asc_dvc->unit_not_ready &= ~target_id;
6896 if (scsiq->d3.done_stat != QD_NO_ERROR) {
6897 asc_dvc->start_motor &=
6898 ~target_id;
6899 }
6900 }
6901 }
6902 return (1);
6903 } else {
6904 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_Q_STATUS);
6905 FATAL_ERR_QDONE:
6906 if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
6907 asc_isr_callback(asc_dvc, scsiq);
6908 }
6909 return (0x80);
6910 }
6911 }
6912 return (0);
6913}
6914
6915static int AscISR(ASC_DVC_VAR *asc_dvc)
6916{
6917 ASC_CS_TYPE chipstat;
6918 PortAddr iop_base;
6919 ushort saved_ram_addr;
6920 uchar ctrl_reg;
6921 uchar saved_ctrl_reg;
6922 int int_pending;
6923 int status;
6924 uchar host_flag;
6925
6926 iop_base = asc_dvc->iop_base;
Hannes Reineckeae267592015-04-24 13:18:28 +02006927 int_pending = ASC_FALSE;
Matthew Wilcox51219352007-10-02 21:55:22 -04006928
6929 if (AscIsIntPending(iop_base) == 0)
6930 return int_pending;
6931
6932 if ((asc_dvc->init_state & ASC_INIT_STATE_END_LOAD_MC) == 0) {
Hannes Reineckeae267592015-04-24 13:18:28 +02006933 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04006934 }
6935 if (asc_dvc->in_critical_cnt != 0) {
6936 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_ON_CRITICAL);
Hannes Reineckeae267592015-04-24 13:18:28 +02006937 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04006938 }
6939 if (asc_dvc->is_in_int) {
6940 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_RE_ENTRY);
Hannes Reineckeae267592015-04-24 13:18:28 +02006941 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04006942 }
Hannes Reineckeae267592015-04-24 13:18:28 +02006943 asc_dvc->is_in_int = true;
Matthew Wilcox51219352007-10-02 21:55:22 -04006944 ctrl_reg = AscGetChipControl(iop_base);
6945 saved_ctrl_reg = ctrl_reg & (~(CC_SCSI_RESET | CC_CHIP_RESET |
6946 CC_SINGLE_STEP | CC_DIAG | CC_TEST));
6947 chipstat = AscGetChipStatus(iop_base);
6948 if (chipstat & CSW_SCSI_RESET_LATCH) {
6949 if (!(asc_dvc->bus_type & (ASC_IS_VL | ASC_IS_EISA))) {
6950 int i = 10;
Hannes Reineckeae267592015-04-24 13:18:28 +02006951 int_pending = ASC_TRUE;
Matthew Wilcox51219352007-10-02 21:55:22 -04006952 asc_dvc->sdtr_done = 0;
6953 saved_ctrl_reg &= (uchar)(~CC_HALT);
6954 while ((AscGetChipStatus(iop_base) &
6955 CSW_SCSI_RESET_ACTIVE) && (i-- > 0)) {
6956 mdelay(100);
6957 }
6958 AscSetChipControl(iop_base, (CC_CHIP_RESET | CC_HALT));
6959 AscSetChipControl(iop_base, CC_HALT);
6960 AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
6961 AscSetChipStatus(iop_base, 0);
6962 chipstat = AscGetChipStatus(iop_base);
6963 }
6964 }
6965 saved_ram_addr = AscGetChipLramAddr(iop_base);
6966 host_flag = AscReadLramByte(iop_base,
6967 ASCV_HOST_FLAG_B) &
6968 (uchar)(~ASC_HOST_FLAG_IN_ISR);
6969 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
6970 (uchar)(host_flag | (uchar)ASC_HOST_FLAG_IN_ISR));
6971 if ((chipstat & CSW_INT_PENDING) || (int_pending)) {
6972 AscAckInterrupt(iop_base);
Hannes Reineckeae267592015-04-24 13:18:28 +02006973 int_pending = ASC_TRUE;
Matthew Wilcox51219352007-10-02 21:55:22 -04006974 if ((chipstat & CSW_HALTED) && (ctrl_reg & CC_SINGLE_STEP)) {
Hannes Reinecke6f0d2e12015-04-24 13:18:30 +02006975 AscIsrChipHalted(asc_dvc);
6976 saved_ctrl_reg &= (uchar)(~CC_HALT);
Matthew Wilcox51219352007-10-02 21:55:22 -04006977 } else {
Matthew Wilcox51219352007-10-02 21:55:22 -04006978 if ((asc_dvc->dvc_cntl & ASC_CNTL_INT_MULTI_Q) != 0) {
6979 while (((status =
6980 AscIsrQDone(asc_dvc)) & 0x01) != 0) {
6981 }
6982 } else {
6983 do {
6984 if ((status =
6985 AscIsrQDone(asc_dvc)) == 1) {
6986 break;
6987 }
6988 } while (status == 0x11);
6989 }
6990 if ((status & 0x80) != 0)
Hannes Reineckeae267592015-04-24 13:18:28 +02006991 int_pending = ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04006992 }
6993 }
6994 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
6995 AscSetChipLramAddr(iop_base, saved_ram_addr);
6996 AscSetChipControl(iop_base, saved_ctrl_reg);
Hannes Reineckeae267592015-04-24 13:18:28 +02006997 asc_dvc->is_in_int = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04006998 return int_pending;
6999}
7000
7001/*
7002 * advansys_reset()
7003 *
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007004 * Reset the host associated with the command 'scp'.
Matthew Wilcox51219352007-10-02 21:55:22 -04007005 *
7006 * This function runs its own thread. Interrupts must be blocked but
7007 * sleeping is allowed and no locking other than for host structures is
7008 * required. Returns SUCCESS or FAILED.
7009 */
7010static int advansys_reset(struct scsi_cmnd *scp)
7011{
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007012 struct Scsi_Host *shost = scp->device->host;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007013 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007014 unsigned long flags;
Matthew Wilcox51219352007-10-02 21:55:22 -04007015 int status;
7016 int ret = SUCCESS;
7017
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007018 ASC_DBG(1, "0x%p\n", scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04007019
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007020 ASC_STATS(shost, reset);
Matthew Wilcox51219352007-10-02 21:55:22 -04007021
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007022 scmd_printk(KERN_INFO, scp, "SCSI host reset started...\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007023
7024 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007025 ASC_DVC_VAR *asc_dvc = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04007026
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007027 /* Reset the chip and SCSI bus. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007028 ASC_DBG(1, "before AscInitAsc1000Driver()\n");
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007029 status = AscInitAsc1000Driver(asc_dvc);
Matthew Wilcox51219352007-10-02 21:55:22 -04007030
Adam Buchbinder6070d812009-12-04 15:47:01 -05007031 /* Refer to ASC_IERR_* definitions for meaning of 'err_code'. */
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03007032 if (asc_dvc->err_code || !asc_dvc->overrun_dma) {
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007033 scmd_printk(KERN_INFO, scp, "SCSI host reset error: "
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03007034 "0x%x, status: 0x%x\n", asc_dvc->err_code,
7035 status);
Matthew Wilcox51219352007-10-02 21:55:22 -04007036 ret = FAILED;
7037 } else if (status) {
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007038 scmd_printk(KERN_INFO, scp, "SCSI host reset warning: "
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007039 "0x%x\n", status);
Matthew Wilcox51219352007-10-02 21:55:22 -04007040 } else {
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007041 scmd_printk(KERN_INFO, scp, "SCSI host reset "
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007042 "successful\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007043 }
7044
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007045 ASC_DBG(1, "after AscInitAsc1000Driver()\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007046 } else {
7047 /*
Matthew Wilcox51219352007-10-02 21:55:22 -04007048 * If the suggest reset bus flags are set, then reset the bus.
7049 * Otherwise only reset the device.
7050 */
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007051 ADV_DVC_VAR *adv_dvc = &boardp->dvc_var.adv_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04007052
7053 /*
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007054 * Reset the chip and SCSI bus.
Matthew Wilcox51219352007-10-02 21:55:22 -04007055 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007056 ASC_DBG(1, "before AdvResetChipAndSB()\n");
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007057 switch (AdvResetChipAndSB(adv_dvc)) {
Matthew Wilcox51219352007-10-02 21:55:22 -04007058 case ASC_TRUE:
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007059 scmd_printk(KERN_INFO, scp, "SCSI host reset "
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007060 "successful\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007061 break;
7062 case ASC_FALSE:
7063 default:
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007064 scmd_printk(KERN_INFO, scp, "SCSI host reset error\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007065 ret = FAILED;
7066 break;
7067 }
Matthew Wilcoxf092d222007-10-02 21:55:34 -04007068 spin_lock_irqsave(shost->host_lock, flags);
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007069 AdvISR(adv_dvc);
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007070 spin_unlock_irqrestore(shost->host_lock, flags);
Matthew Wilcox51219352007-10-02 21:55:22 -04007071 }
Matthew Wilcox51219352007-10-02 21:55:22 -04007072
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007073 ASC_DBG(1, "ret %d\n", ret);
Matthew Wilcox51219352007-10-02 21:55:22 -04007074
7075 return ret;
7076}
7077
7078/*
7079 * advansys_biosparam()
7080 *
7081 * Translate disk drive geometry if the "BIOS greater than 1 GB"
7082 * support is enabled for a drive.
7083 *
7084 * ip (information pointer) is an int array with the following definition:
7085 * ip[0]: heads
7086 * ip[1]: sectors
7087 * ip[2]: cylinders
7088 */
7089static int
7090advansys_biosparam(struct scsi_device *sdev, struct block_device *bdev,
7091 sector_t capacity, int ip[])
7092{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007093 struct asc_board *boardp = shost_priv(sdev->host);
Matthew Wilcox51219352007-10-02 21:55:22 -04007094
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007095 ASC_DBG(1, "begin\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007096 ASC_STATS(sdev->host, biosparam);
Matthew Wilcox51219352007-10-02 21:55:22 -04007097 if (ASC_NARROW_BOARD(boardp)) {
7098 if ((boardp->dvc_var.asc_dvc_var.dvc_cntl &
7099 ASC_CNTL_BIOS_GT_1GB) && capacity > 0x200000) {
7100 ip[0] = 255;
7101 ip[1] = 63;
7102 } else {
7103 ip[0] = 64;
7104 ip[1] = 32;
7105 }
7106 } else {
7107 if ((boardp->dvc_var.adv_dvc_var.bios_ctrl &
7108 BIOS_CTRL_EXTENDED_XLAT) && capacity > 0x200000) {
7109 ip[0] = 255;
7110 ip[1] = 63;
7111 } else {
7112 ip[0] = 64;
7113 ip[1] = 32;
7114 }
7115 }
7116 ip[2] = (unsigned long)capacity / (ip[0] * ip[1]);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007117 ASC_DBG(1, "end\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007118 return 0;
7119}
7120
7121/*
7122 * First-level interrupt handler.
7123 *
7124 * 'dev_id' is a pointer to the interrupting adapter's Scsi_Host.
7125 */
7126static irqreturn_t advansys_interrupt(int irq, void *dev_id)
7127{
Matthew Wilcox51219352007-10-02 21:55:22 -04007128 struct Scsi_Host *shost = dev_id;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007129 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04007130 irqreturn_t result = IRQ_NONE;
Hannes Reinecke00742c92015-04-24 13:18:40 +02007131 unsigned long flags;
Matthew Wilcox51219352007-10-02 21:55:22 -04007132
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007133 ASC_DBG(2, "boardp 0x%p\n", boardp);
Hannes Reinecke00742c92015-04-24 13:18:40 +02007134 spin_lock_irqsave(shost->host_lock, flags);
Matthew Wilcox51219352007-10-02 21:55:22 -04007135 if (ASC_NARROW_BOARD(boardp)) {
7136 if (AscIsIntPending(shost->io_port)) {
7137 result = IRQ_HANDLED;
7138 ASC_STATS(shost, interrupt);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007139 ASC_DBG(1, "before AscISR()\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007140 AscISR(&boardp->dvc_var.asc_dvc_var);
7141 }
7142 } else {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007143 ASC_DBG(1, "before AdvISR()\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007144 if (AdvISR(&boardp->dvc_var.adv_dvc_var)) {
7145 result = IRQ_HANDLED;
7146 ASC_STATS(shost, interrupt);
7147 }
7148 }
Hannes Reinecke00742c92015-04-24 13:18:40 +02007149 spin_unlock_irqrestore(shost->host_lock, flags);
Matthew Wilcox51219352007-10-02 21:55:22 -04007150
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007151 ASC_DBG(1, "end\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007152 return result;
7153}
7154
Hannes Reinecked647c782015-04-24 13:18:26 +02007155static bool AscHostReqRiscHalt(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04007156{
7157 int count = 0;
Hannes Reinecked647c782015-04-24 13:18:26 +02007158 bool sta = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04007159 uchar saved_stop_code;
7160
7161 if (AscIsChipHalted(iop_base))
Hannes Reinecked647c782015-04-24 13:18:26 +02007162 return true;
Matthew Wilcox51219352007-10-02 21:55:22 -04007163 saved_stop_code = AscReadLramByte(iop_base, ASCV_STOP_CODE_B);
7164 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
7165 ASC_STOP_HOST_REQ_RISC_HALT | ASC_STOP_REQ_RISC_STOP);
7166 do {
7167 if (AscIsChipHalted(iop_base)) {
Hannes Reinecked647c782015-04-24 13:18:26 +02007168 sta = true;
Matthew Wilcox51219352007-10-02 21:55:22 -04007169 break;
7170 }
7171 mdelay(100);
7172 } while (count++ < 20);
7173 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, saved_stop_code);
Hannes Reinecked647c782015-04-24 13:18:26 +02007174 return sta;
Matthew Wilcox51219352007-10-02 21:55:22 -04007175}
7176
Hannes Reinecked647c782015-04-24 13:18:26 +02007177static bool
Matthew Wilcox51219352007-10-02 21:55:22 -04007178AscSetRunChipSynRegAtID(PortAddr iop_base, uchar tid_no, uchar sdtr_data)
7179{
Hannes Reinecked647c782015-04-24 13:18:26 +02007180 bool sta = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04007181
7182 if (AscHostReqRiscHalt(iop_base)) {
7183 sta = AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
7184 AscStartChip(iop_base);
7185 }
7186 return sta;
7187}
7188
7189static void AscAsyncFix(ASC_DVC_VAR *asc_dvc, struct scsi_device *sdev)
7190{
7191 char type = sdev->type;
7192 ASC_SCSI_BIT_ID_TYPE tid_bits = 1 << sdev->id;
7193
7194 if (!(asc_dvc->bug_fix_cntl & ASC_BUG_FIX_ASYN_USE_SYN))
7195 return;
7196 if (asc_dvc->init_sdtr & tid_bits)
7197 return;
7198
7199 if ((type == TYPE_ROM) && (strncmp(sdev->vendor, "HP ", 3) == 0))
7200 asc_dvc->pci_fix_asyn_xfer_always |= tid_bits;
7201
7202 asc_dvc->pci_fix_asyn_xfer |= tid_bits;
7203 if ((type == TYPE_PROCESSOR) || (type == TYPE_SCANNER) ||
7204 (type == TYPE_ROM) || (type == TYPE_TAPE))
7205 asc_dvc->pci_fix_asyn_xfer &= ~tid_bits;
7206
7207 if (asc_dvc->pci_fix_asyn_xfer & tid_bits)
7208 AscSetRunChipSynRegAtID(asc_dvc->iop_base, sdev->id,
7209 ASYN_SDTR_DATA_FIX_PCI_REV_AB);
7210}
7211
7212static void
7213advansys_narrow_slave_configure(struct scsi_device *sdev, ASC_DVC_VAR *asc_dvc)
7214{
7215 ASC_SCSI_BIT_ID_TYPE tid_bit = 1 << sdev->id;
7216 ASC_SCSI_BIT_ID_TYPE orig_use_tagged_qng = asc_dvc->use_tagged_qng;
7217
7218 if (sdev->lun == 0) {
7219 ASC_SCSI_BIT_ID_TYPE orig_init_sdtr = asc_dvc->init_sdtr;
7220 if ((asc_dvc->cfg->sdtr_enable & tid_bit) && sdev->sdtr) {
7221 asc_dvc->init_sdtr |= tid_bit;
7222 } else {
7223 asc_dvc->init_sdtr &= ~tid_bit;
7224 }
7225
7226 if (orig_init_sdtr != asc_dvc->init_sdtr)
7227 AscAsyncFix(asc_dvc, sdev);
7228 }
7229
7230 if (sdev->tagged_supported) {
7231 if (asc_dvc->cfg->cmd_qng_enabled & tid_bit) {
7232 if (sdev->lun == 0) {
7233 asc_dvc->cfg->can_tagged_qng |= tid_bit;
7234 asc_dvc->use_tagged_qng |= tid_bit;
7235 }
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01007236 scsi_change_queue_depth(sdev,
Matthew Wilcox51219352007-10-02 21:55:22 -04007237 asc_dvc->max_dvc_qng[sdev->id]);
7238 }
7239 } else {
7240 if (sdev->lun == 0) {
7241 asc_dvc->cfg->can_tagged_qng &= ~tid_bit;
7242 asc_dvc->use_tagged_qng &= ~tid_bit;
7243 }
Matthew Wilcox51219352007-10-02 21:55:22 -04007244 }
7245
7246 if ((sdev->lun == 0) &&
7247 (orig_use_tagged_qng != asc_dvc->use_tagged_qng)) {
7248 AscWriteLramByte(asc_dvc->iop_base, ASCV_DISC_ENABLE_B,
7249 asc_dvc->cfg->disc_enable);
7250 AscWriteLramByte(asc_dvc->iop_base, ASCV_USE_TAGGED_QNG_B,
7251 asc_dvc->use_tagged_qng);
7252 AscWriteLramByte(asc_dvc->iop_base, ASCV_CAN_TAGGED_QNG_B,
7253 asc_dvc->cfg->can_tagged_qng);
7254
7255 asc_dvc->max_dvc_qng[sdev->id] =
7256 asc_dvc->cfg->max_tag_qng[sdev->id];
7257 AscWriteLramByte(asc_dvc->iop_base,
7258 (ushort)(ASCV_MAX_DVC_QNG_BEG + sdev->id),
7259 asc_dvc->max_dvc_qng[sdev->id]);
7260 }
7261}
7262
7263/*
7264 * Wide Transfers
7265 *
7266 * If the EEPROM enabled WDTR for the device and the device supports wide
7267 * bus (16 bit) transfers, then turn on the device's 'wdtr_able' bit and
7268 * write the new value to the microcode.
7269 */
7270static void
7271advansys_wide_enable_wdtr(AdvPortAddr iop_base, unsigned short tidmask)
7272{
7273 unsigned short cfg_word;
7274 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, cfg_word);
7275 if ((cfg_word & tidmask) != 0)
7276 return;
7277
7278 cfg_word |= tidmask;
7279 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, cfg_word);
7280
7281 /*
7282 * Clear the microcode SDTR and WDTR negotiation done indicators for
7283 * the target to cause it to negotiate with the new setting set above.
7284 * WDTR when accepted causes the target to enter asynchronous mode, so
7285 * SDTR must be negotiated.
7286 */
7287 AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7288 cfg_word &= ~tidmask;
7289 AdvWriteWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7290 AdvReadWordLram(iop_base, ASC_MC_WDTR_DONE, cfg_word);
7291 cfg_word &= ~tidmask;
7292 AdvWriteWordLram(iop_base, ASC_MC_WDTR_DONE, cfg_word);
7293}
7294
7295/*
7296 * Synchronous Transfers
7297 *
7298 * If the EEPROM enabled SDTR for the device and the device
7299 * supports synchronous transfers, then turn on the device's
7300 * 'sdtr_able' bit. Write the new value to the microcode.
7301 */
7302static void
7303advansys_wide_enable_sdtr(AdvPortAddr iop_base, unsigned short tidmask)
7304{
7305 unsigned short cfg_word;
7306 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, cfg_word);
7307 if ((cfg_word & tidmask) != 0)
7308 return;
7309
7310 cfg_word |= tidmask;
7311 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, cfg_word);
7312
7313 /*
7314 * Clear the microcode "SDTR negotiation" done indicator for the
7315 * target to cause it to negotiate with the new setting set above.
7316 */
7317 AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7318 cfg_word &= ~tidmask;
7319 AdvWriteWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7320}
7321
7322/*
7323 * PPR (Parallel Protocol Request) Capable
7324 *
7325 * If the device supports DT mode, then it must be PPR capable.
7326 * The PPR message will be used in place of the SDTR and WDTR
7327 * messages to negotiate synchronous speed and offset, transfer
7328 * width, and protocol options.
7329 */
7330static void advansys_wide_enable_ppr(ADV_DVC_VAR *adv_dvc,
7331 AdvPortAddr iop_base, unsigned short tidmask)
7332{
7333 AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, adv_dvc->ppr_able);
7334 adv_dvc->ppr_able |= tidmask;
7335 AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, adv_dvc->ppr_able);
7336}
7337
7338static void
7339advansys_wide_slave_configure(struct scsi_device *sdev, ADV_DVC_VAR *adv_dvc)
7340{
7341 AdvPortAddr iop_base = adv_dvc->iop_base;
7342 unsigned short tidmask = 1 << sdev->id;
7343
7344 if (sdev->lun == 0) {
7345 /*
7346 * Handle WDTR, SDTR, and Tag Queuing. If the feature
7347 * is enabled in the EEPROM and the device supports the
7348 * feature, then enable it in the microcode.
7349 */
7350
7351 if ((adv_dvc->wdtr_able & tidmask) && sdev->wdtr)
7352 advansys_wide_enable_wdtr(iop_base, tidmask);
7353 if ((adv_dvc->sdtr_able & tidmask) && sdev->sdtr)
7354 advansys_wide_enable_sdtr(iop_base, tidmask);
7355 if (adv_dvc->chip_type == ADV_CHIP_ASC38C1600 && sdev->ppr)
7356 advansys_wide_enable_ppr(adv_dvc, iop_base, tidmask);
7357
7358 /*
7359 * Tag Queuing is disabled for the BIOS which runs in polled
7360 * mode and would see no benefit from Tag Queuing. Also by
7361 * disabling Tag Queuing in the BIOS devices with Tag Queuing
7362 * bugs will at least work with the BIOS.
7363 */
7364 if ((adv_dvc->tagqng_able & tidmask) &&
7365 sdev->tagged_supported) {
7366 unsigned short cfg_word;
7367 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, cfg_word);
7368 cfg_word |= tidmask;
7369 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
7370 cfg_word);
7371 AdvWriteByteLram(iop_base,
7372 ASC_MC_NUMBER_OF_MAX_CMD + sdev->id,
7373 adv_dvc->max_dvc_qng);
7374 }
7375 }
7376
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01007377 if ((adv_dvc->tagqng_able & tidmask) && sdev->tagged_supported)
7378 scsi_change_queue_depth(sdev, adv_dvc->max_dvc_qng);
Matthew Wilcox51219352007-10-02 21:55:22 -04007379}
7380
7381/*
7382 * Set the number of commands to queue per device for the
7383 * specified host adapter.
7384 */
7385static int advansys_slave_configure(struct scsi_device *sdev)
7386{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007387 struct asc_board *boardp = shost_priv(sdev->host);
Matthew Wilcox51219352007-10-02 21:55:22 -04007388
Matthew Wilcox51219352007-10-02 21:55:22 -04007389 if (ASC_NARROW_BOARD(boardp))
7390 advansys_narrow_slave_configure(sdev,
7391 &boardp->dvc_var.asc_dvc_var);
7392 else
7393 advansys_wide_slave_configure(sdev,
7394 &boardp->dvc_var.adv_dvc_var);
7395
7396 return 0;
7397}
7398
Hannes Reineckebc31ec42015-04-24 13:18:41 +02007399static __le32 asc_get_sense_buffer_dma(struct scsi_cmnd *scp)
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007400{
7401 struct asc_board *board = shost_priv(scp->device->host);
Hannes Reineckebc31ec42015-04-24 13:18:41 +02007402
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007403 scp->SCp.dma_handle = dma_map_single(board->dev, scp->sense_buffer,
Hannes Reineckebc31ec42015-04-24 13:18:41 +02007404 SCSI_SENSE_BUFFERSIZE,
7405 DMA_FROM_DEVICE);
Hannes Reinecke22070632015-04-24 13:18:39 +02007406 if (dma_mapping_error(board->dev, scp->SCp.dma_handle)) {
7407 ASC_DBG(1, "failed to map sense buffer\n");
7408 return 0;
7409 }
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007410 return cpu_to_le32(scp->SCp.dma_handle);
7411}
7412
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007413static int asc_build_req(struct asc_board *boardp, struct scsi_cmnd *scp,
Matthew Wilcox05848b62007-10-02 21:55:25 -04007414 struct asc_scsi_q *asc_scsi_q)
Matthew Wilcox51219352007-10-02 21:55:22 -04007415{
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007416 struct asc_dvc_var *asc_dvc = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007417 int use_sg;
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007418 u32 srb_tag;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007419
Matthew Wilcox05848b62007-10-02 21:55:25 -04007420 memset(asc_scsi_q, 0, sizeof(*asc_scsi_q));
Matthew Wilcox51219352007-10-02 21:55:22 -04007421
7422 /*
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007423 * Set the srb_tag to the command tag + 1, as
7424 * srb_tag '0' is used internally by the chip.
Matthew Wilcox51219352007-10-02 21:55:22 -04007425 */
Bart Van Assche40e16ce2021-08-09 16:03:17 -07007426 srb_tag = scsi_cmd_to_rq(scp)->tag + 1;
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007427 asc_scsi_q->q2.srb_tag = srb_tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04007428
7429 /*
7430 * Build the ASC_SCSI_Q request.
7431 */
Matthew Wilcox05848b62007-10-02 21:55:25 -04007432 asc_scsi_q->cdbptr = &scp->cmnd[0];
7433 asc_scsi_q->q2.cdb_len = scp->cmd_len;
7434 asc_scsi_q->q1.target_id = ASC_TID_TO_TARGET_ID(scp->device->id);
7435 asc_scsi_q->q1.target_lun = scp->device->lun;
7436 asc_scsi_q->q2.target_ix =
Matthew Wilcox51219352007-10-02 21:55:22 -04007437 ASC_TIDLUN_TO_IX(scp->device->id, scp->device->lun);
Hannes Reineckebc31ec42015-04-24 13:18:41 +02007438 asc_scsi_q->q1.sense_addr = asc_get_sense_buffer_dma(scp);
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09007439 asc_scsi_q->q1.sense_len = SCSI_SENSE_BUFFERSIZE;
Hannes Reinecke22070632015-04-24 13:18:39 +02007440 if (!asc_scsi_q->q1.sense_addr)
7441 return ASC_BUSY;
Matthew Wilcox51219352007-10-02 21:55:22 -04007442
7443 /*
7444 * If there are any outstanding requests for the current target,
7445 * then every 255th request send an ORDERED request. This heuristic
7446 * tries to retain the benefit of request sorting while preventing
7447 * request starvation. 255 is the max number of tags or pending commands
7448 * a device may have outstanding.
7449 *
7450 * The request count is incremented below for every successfully
7451 * started request.
7452 *
7453 */
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007454 if ((asc_dvc->cur_dvc_qng[scp->device->id] > 0) &&
Matthew Wilcox51219352007-10-02 21:55:22 -04007455 (boardp->reqcnt[scp->device->id] % 255) == 0) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08007456 asc_scsi_q->q2.tag_code = ORDERED_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04007457 } else {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08007458 asc_scsi_q->q2.tag_code = SIMPLE_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04007459 }
7460
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007461 /* Build ASC_SCSI_Q */
7462 use_sg = scsi_dma_map(scp);
Hannes Reinecke22070632015-04-24 13:18:39 +02007463 if (use_sg < 0) {
7464 ASC_DBG(1, "failed to map sglist\n");
7465 return ASC_BUSY;
7466 } else if (use_sg > 0) {
Matthew Wilcox51219352007-10-02 21:55:22 -04007467 int sgcnt;
Matthew Wilcox51219352007-10-02 21:55:22 -04007468 struct scatterlist *slp;
Matthew Wilcox05848b62007-10-02 21:55:25 -04007469 struct asc_sg_head *asc_sg_head;
Matthew Wilcox51219352007-10-02 21:55:22 -04007470
Matthew Wilcox51219352007-10-02 21:55:22 -04007471 if (use_sg > scp->device->host->sg_tablesize) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04007472 scmd_printk(KERN_ERR, scp, "use_sg %d > "
7473 "sg_tablesize %d\n", use_sg,
7474 scp->device->host->sg_tablesize);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007475 scsi_dma_unmap(scp);
Hannes Reineckeaced5502021-01-13 10:04:59 +01007476 set_host_byte(scp, DID_ERROR);
Matthew Wilcox51219352007-10-02 21:55:22 -04007477 return ASC_ERROR;
7478 }
7479
Len Baker568778f2021-09-25 13:42:05 +02007480 asc_sg_head = kzalloc(struct_size(asc_sg_head, sg_list, use_sg),
7481 GFP_ATOMIC);
Matthew Wilcox05848b62007-10-02 21:55:25 -04007482 if (!asc_sg_head) {
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007483 scsi_dma_unmap(scp);
Hannes Reineckeaced5502021-01-13 10:04:59 +01007484 set_host_byte(scp, DID_SOFT_ERROR);
Matthew Wilcox05848b62007-10-02 21:55:25 -04007485 return ASC_ERROR;
7486 }
Matthew Wilcox51219352007-10-02 21:55:22 -04007487
Matthew Wilcox05848b62007-10-02 21:55:25 -04007488 asc_scsi_q->q1.cntl |= QC_SG_HEAD;
7489 asc_scsi_q->sg_head = asc_sg_head;
7490 asc_scsi_q->q1.data_cnt = 0;
7491 asc_scsi_q->q1.data_addr = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04007492 /* This is a byte value, otherwise it would need to be swapped. */
Matthew Wilcox05848b62007-10-02 21:55:25 -04007493 asc_sg_head->entry_cnt = asc_scsi_q->q1.sg_queue_cnt = use_sg;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007494 ASC_STATS_ADD(scp->device->host, xfer_elem,
Matthew Wilcox05848b62007-10-02 21:55:25 -04007495 asc_sg_head->entry_cnt);
Matthew Wilcox51219352007-10-02 21:55:22 -04007496
7497 /*
7498 * Convert scatter-gather list into ASC_SG_HEAD list.
7499 */
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007500 scsi_for_each_sg(scp, slp, use_sg, sgcnt) {
Matthew Wilcox05848b62007-10-02 21:55:25 -04007501 asc_sg_head->sg_list[sgcnt].addr =
Matthew Wilcox51219352007-10-02 21:55:22 -04007502 cpu_to_le32(sg_dma_address(slp));
Matthew Wilcox05848b62007-10-02 21:55:25 -04007503 asc_sg_head->sg_list[sgcnt].bytes =
Matthew Wilcox51219352007-10-02 21:55:22 -04007504 cpu_to_le32(sg_dma_len(slp));
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007505 ASC_STATS_ADD(scp->device->host, xfer_sect,
7506 DIV_ROUND_UP(sg_dma_len(slp), 512));
Matthew Wilcox51219352007-10-02 21:55:22 -04007507 }
7508 }
7509
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007510 ASC_STATS(scp->device->host, xfer_cnt);
7511
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007512 ASC_DBG_PRT_ASC_SCSI_Q(2, asc_scsi_q);
Matthew Wilcox51219352007-10-02 21:55:22 -04007513 ASC_DBG_PRT_CDB(1, scp->cmnd, scp->cmd_len);
7514
7515 return ASC_NOERROR;
7516}
7517
7518/*
7519 * Build scatter-gather list for Adv Library (Wide Board).
7520 *
7521 * Additional ADV_SG_BLOCK structures will need to be allocated
7522 * if the total number of scatter-gather elements exceeds
7523 * NO_OF_SG_PER_BLOCK (15). The ADV_SG_BLOCK structures are
7524 * assumed to be physically contiguous.
7525 *
7526 * Return:
7527 * ADV_SUCCESS(1) - SG List successfully created
7528 * ADV_ERROR(-1) - SG List creation failed
7529 */
7530static int
Hannes Reinecke4b47e462015-04-24 13:18:24 +02007531adv_get_sglist(struct asc_board *boardp, adv_req_t *reqp,
7532 ADV_SCSI_REQ_Q *scsiqp, struct scsi_cmnd *scp, int use_sg)
Matthew Wilcox51219352007-10-02 21:55:22 -04007533{
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007534 adv_sgblk_t *sgblkp, *prev_sgblkp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007535 struct scatterlist *slp;
7536 int sg_elem_cnt;
7537 ADV_SG_BLOCK *sg_block, *prev_sg_block;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007538 dma_addr_t sgblk_paddr;
Matthew Wilcox51219352007-10-02 21:55:22 -04007539 int i;
7540
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007541 slp = scsi_sglist(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04007542 sg_elem_cnt = use_sg;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007543 prev_sgblkp = NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04007544 prev_sg_block = NULL;
7545 reqp->sgblkp = NULL;
7546
7547 for (;;) {
7548 /*
7549 * Allocate a 'adv_sgblk_t' structure from the board free
7550 * list. One 'adv_sgblk_t' structure holds NO_OF_SG_PER_BLOCK
7551 * (15) scatter-gather elements.
7552 */
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007553 sgblkp = dma_pool_alloc(boardp->adv_sgblk_pool, GFP_ATOMIC,
7554 &sgblk_paddr);
7555 if (!sgblkp) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007556 ASC_DBG(1, "no free adv_sgblk_t\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007557 ASC_STATS(scp->device->host, adv_build_nosg);
7558
7559 /*
7560 * Allocation failed. Free 'adv_sgblk_t' structures
7561 * already allocated for the request.
7562 */
7563 while ((sgblkp = reqp->sgblkp) != NULL) {
7564 /* Remove 'sgblkp' from the request list. */
7565 reqp->sgblkp = sgblkp->next_sgblkp;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007566 sgblkp->next_sgblkp = NULL;
7567 dma_pool_free(boardp->adv_sgblk_pool, sgblkp,
7568 sgblkp->sg_addr);
Matthew Wilcox51219352007-10-02 21:55:22 -04007569 }
7570 return ASC_BUSY;
7571 }
Matthew Wilcox51219352007-10-02 21:55:22 -04007572 /* Complete 'adv_sgblk_t' board allocation. */
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007573 sgblkp->sg_addr = sgblk_paddr;
Matthew Wilcox51219352007-10-02 21:55:22 -04007574 sgblkp->next_sgblkp = NULL;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007575 sg_block = &sgblkp->sg_block;
Matthew Wilcox51219352007-10-02 21:55:22 -04007576
7577 /*
7578 * Check if this is the first 'adv_sgblk_t' for the
7579 * request.
7580 */
7581 if (reqp->sgblkp == NULL) {
7582 /* Request's first scatter-gather block. */
7583 reqp->sgblkp = sgblkp;
7584
7585 /*
7586 * Set ADV_SCSI_REQ_T ADV_SG_BLOCK virtual and physical
7587 * address pointers.
7588 */
7589 scsiqp->sg_list_ptr = sg_block;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007590 scsiqp->sg_real_addr = cpu_to_le32(sgblk_paddr);
Matthew Wilcox51219352007-10-02 21:55:22 -04007591 } else {
7592 /* Request's second or later scatter-gather block. */
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007593 prev_sgblkp->next_sgblkp = sgblkp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007594
7595 /*
7596 * Point the previous ADV_SG_BLOCK structure to
7597 * the newly allocated ADV_SG_BLOCK structure.
7598 */
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007599 prev_sg_block->sg_ptr = cpu_to_le32(sgblk_paddr);
Matthew Wilcox51219352007-10-02 21:55:22 -04007600 }
7601
7602 for (i = 0; i < NO_OF_SG_PER_BLOCK; i++) {
7603 sg_block->sg_list[i].sg_addr =
7604 cpu_to_le32(sg_dma_address(slp));
7605 sg_block->sg_list[i].sg_count =
7606 cpu_to_le32(sg_dma_len(slp));
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007607 ASC_STATS_ADD(scp->device->host, xfer_sect,
7608 DIV_ROUND_UP(sg_dma_len(slp), 512));
Matthew Wilcox51219352007-10-02 21:55:22 -04007609
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007610 if (--sg_elem_cnt == 0) {
7611 /*
7612 * Last ADV_SG_BLOCK and scatter-gather entry.
7613 */
Matthew Wilcox51219352007-10-02 21:55:22 -04007614 sg_block->sg_cnt = i + 1;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007615 sg_block->sg_ptr = 0L; /* Last ADV_SG_BLOCK in list. */
Matthew Wilcox51219352007-10-02 21:55:22 -04007616 return ADV_SUCCESS;
7617 }
Ming Leic0d0d812019-06-18 09:37:43 +08007618 slp = sg_next(slp);
Matthew Wilcox51219352007-10-02 21:55:22 -04007619 }
7620 sg_block->sg_cnt = NO_OF_SG_PER_BLOCK;
7621 prev_sg_block = sg_block;
Hannes Reinecke0ce53822015-04-24 13:18:25 +02007622 prev_sgblkp = sgblkp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007623 }
7624}
7625
7626/*
7627 * Build a request structure for the Adv Library (Wide Board).
7628 *
7629 * If an adv_req_t can not be allocated to issue the request,
7630 * then return ASC_BUSY. If an error occurs, then return ASC_ERROR.
7631 *
Hannes Reinecke9fef6ba2015-04-24 13:18:33 +02007632 * Multi-byte fields in the ADV_SCSI_REQ_Q that are used by the
Matthew Wilcox51219352007-10-02 21:55:22 -04007633 * microcode for DMA addresses or math operations are byte swapped
7634 * to little-endian order.
7635 */
7636static int
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007637adv_build_req(struct asc_board *boardp, struct scsi_cmnd *scp,
Hannes Reinecke4b47e462015-04-24 13:18:24 +02007638 adv_req_t **adv_reqpp)
Matthew Wilcox51219352007-10-02 21:55:22 -04007639{
Bart Van Assche40e16ce2021-08-09 16:03:17 -07007640 u32 srb_tag = scsi_cmd_to_rq(scp)->tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04007641 adv_req_t *reqp;
7642 ADV_SCSI_REQ_Q *scsiqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007643 int ret;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007644 int use_sg;
Hannes Reinecke811ddc02015-04-24 13:18:22 +02007645 dma_addr_t sense_addr;
Matthew Wilcox51219352007-10-02 21:55:22 -04007646
7647 /*
7648 * Allocate an adv_req_t structure from the board to execute
7649 * the command.
7650 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007651 reqp = &boardp->adv_reqp[srb_tag];
7652 if (reqp->cmndp && reqp->cmndp != scp ) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007653 ASC_DBG(1, "no free adv_req_t\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007654 ASC_STATS(scp->device->host, adv_build_noreq);
7655 return ASC_BUSY;
Matthew Wilcox51219352007-10-02 21:55:22 -04007656 }
7657
Hannes Reinecke4b47e462015-04-24 13:18:24 +02007658 reqp->req_addr = boardp->adv_reqp_addr + (srb_tag * sizeof(adv_req_t));
7659
7660 scsiqp = &reqp->scsi_req_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04007661
7662 /*
7663 * Initialize the structure.
7664 */
7665 scsiqp->cntl = scsiqp->scsi_cntl = scsiqp->done_status = 0;
7666
7667 /*
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007668 * Set the srb_tag to the command tag.
Matthew Wilcox51219352007-10-02 21:55:22 -04007669 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007670 scsiqp->srb_tag = srb_tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04007671
7672 /*
Hannes Reinecke4b47e462015-04-24 13:18:24 +02007673 * Set 'host_scribble' to point to the adv_req_t structure.
Matthew Wilcox51219352007-10-02 21:55:22 -04007674 */
7675 reqp->cmndp = scp;
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007676 scp->host_scribble = (void *)reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007677
7678 /*
7679 * Build the ADV_SCSI_REQ_Q request.
7680 */
7681
7682 /* Set CDB length and copy it to the request structure. */
7683 scsiqp->cdb_len = scp->cmd_len;
7684 /* Copy first 12 CDB bytes to cdb[]. */
Hannes Reinecke811ddc02015-04-24 13:18:22 +02007685 memcpy(scsiqp->cdb, scp->cmnd, scp->cmd_len < 12 ? scp->cmd_len : 12);
Matthew Wilcox51219352007-10-02 21:55:22 -04007686 /* Copy last 4 CDB bytes, if present, to cdb16[]. */
Hannes Reinecke811ddc02015-04-24 13:18:22 +02007687 if (scp->cmd_len > 12) {
7688 int cdb16_len = scp->cmd_len - 12;
7689
7690 memcpy(scsiqp->cdb16, &scp->cmnd[12], cdb16_len);
Matthew Wilcox51219352007-10-02 21:55:22 -04007691 }
7692
7693 scsiqp->target_id = scp->device->id;
7694 scsiqp->target_lun = scp->device->lun;
7695
Hannes Reinecke811ddc02015-04-24 13:18:22 +02007696 sense_addr = dma_map_single(boardp->dev, scp->sense_buffer,
7697 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
Hannes Reinecke22070632015-04-24 13:18:39 +02007698 if (dma_mapping_error(boardp->dev, sense_addr)) {
7699 ASC_DBG(1, "failed to map sense buffer\n");
7700 ASC_STATS(scp->device->host, adv_build_noreq);
7701 return ASC_BUSY;
7702 }
Hannes Reinecke811ddc02015-04-24 13:18:22 +02007703 scsiqp->sense_addr = cpu_to_le32(sense_addr);
Arnd Bergmann757b22f2015-11-16 17:49:23 +01007704 scsiqp->sense_len = SCSI_SENSE_BUFFERSIZE;
Matthew Wilcox51219352007-10-02 21:55:22 -04007705
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007706 /* Build ADV_SCSI_REQ_Q */
Matthew Wilcox51219352007-10-02 21:55:22 -04007707
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007708 use_sg = scsi_dma_map(scp);
Hannes Reinecke22070632015-04-24 13:18:39 +02007709 if (use_sg < 0) {
7710 ASC_DBG(1, "failed to map SG list\n");
7711 ASC_STATS(scp->device->host, adv_build_noreq);
7712 return ASC_BUSY;
7713 } else if (use_sg == 0) {
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007714 /* Zero-length transfer */
Matthew Wilcox51219352007-10-02 21:55:22 -04007715 reqp->sgblkp = NULL;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007716 scsiqp->data_cnt = 0;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007717
7718 scsiqp->data_addr = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04007719 scsiqp->sg_list_ptr = NULL;
7720 scsiqp->sg_real_addr = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04007721 } else {
Matthew Wilcox51219352007-10-02 21:55:22 -04007722 if (use_sg > ADV_MAX_SG_LIST) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04007723 scmd_printk(KERN_ERR, scp, "use_sg %d > "
7724 "ADV_MAX_SG_LIST %d\n", use_sg,
Matthew Wilcox51219352007-10-02 21:55:22 -04007725 scp->device->host->sg_tablesize);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007726 scsi_dma_unmap(scp);
Hannes Reineckeaced5502021-01-13 10:04:59 +01007727 set_host_byte(scp, DID_ERROR);
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007728 reqp->cmndp = NULL;
7729 scp->host_scribble = NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04007730
7731 return ASC_ERROR;
7732 }
7733
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007734 scsiqp->data_cnt = cpu_to_le32(scsi_bufflen(scp));
7735
Hannes Reinecke4b47e462015-04-24 13:18:24 +02007736 ret = adv_get_sglist(boardp, reqp, scsiqp, scp, use_sg);
Matthew Wilcox51219352007-10-02 21:55:22 -04007737 if (ret != ADV_SUCCESS) {
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007738 scsi_dma_unmap(scp);
Hannes Reineckeaced5502021-01-13 10:04:59 +01007739 set_host_byte(scp, DID_ERROR);
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007740 reqp->cmndp = NULL;
7741 scp->host_scribble = NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04007742
7743 return ret;
7744 }
7745
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007746 ASC_STATS_ADD(scp->device->host, xfer_elem, use_sg);
Matthew Wilcox51219352007-10-02 21:55:22 -04007747 }
7748
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007749 ASC_STATS(scp->device->host, xfer_cnt);
7750
Matthew Wilcox51219352007-10-02 21:55:22 -04007751 ASC_DBG_PRT_ADV_SCSI_REQ_Q(2, scsiqp);
7752 ASC_DBG_PRT_CDB(1, scp->cmnd, scp->cmd_len);
7753
Hannes Reinecke4b47e462015-04-24 13:18:24 +02007754 *adv_reqpp = reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007755
7756 return ASC_NOERROR;
7757}
7758
7759static int AscSgListToQueue(int sg_list)
7760{
7761 int n_sg_list_qs;
7762
7763 n_sg_list_qs = ((sg_list - 1) / ASC_SG_LIST_PER_Q);
7764 if (((sg_list - 1) % ASC_SG_LIST_PER_Q) != 0)
7765 n_sg_list_qs++;
7766 return n_sg_list_qs + 1;
7767}
7768
7769static uint
7770AscGetNumOfFreeQueue(ASC_DVC_VAR *asc_dvc, uchar target_ix, uchar n_qs)
7771{
7772 uint cur_used_qs;
7773 uint cur_free_qs;
7774 ASC_SCSI_BIT_ID_TYPE target_id;
7775 uchar tid_no;
7776
7777 target_id = ASC_TIX_TO_TARGET_ID(target_ix);
7778 tid_no = ASC_TIX_TO_TID(target_ix);
7779 if ((asc_dvc->unit_not_ready & target_id) ||
7780 (asc_dvc->queue_full_or_busy & target_id)) {
7781 return 0;
7782 }
7783 if (n_qs == 1) {
7784 cur_used_qs = (uint) asc_dvc->cur_total_qng +
7785 (uint) asc_dvc->last_q_shortage + (uint) ASC_MIN_FREE_Q;
7786 } else {
7787 cur_used_qs = (uint) asc_dvc->cur_total_qng +
7788 (uint) ASC_MIN_FREE_Q;
7789 }
7790 if ((uint) (cur_used_qs + n_qs) <= (uint) asc_dvc->max_total_qng) {
7791 cur_free_qs = (uint) asc_dvc->max_total_qng - cur_used_qs;
7792 if (asc_dvc->cur_dvc_qng[tid_no] >=
7793 asc_dvc->max_dvc_qng[tid_no]) {
7794 return 0;
7795 }
7796 return cur_free_qs;
7797 }
7798 if (n_qs > 1) {
7799 if ((n_qs > asc_dvc->last_q_shortage)
7800 && (n_qs <= (asc_dvc->max_total_qng - ASC_MIN_FREE_Q))) {
7801 asc_dvc->last_q_shortage = n_qs;
7802 }
7803 }
7804 return 0;
7805}
7806
7807static uchar AscAllocFreeQueue(PortAddr iop_base, uchar free_q_head)
7808{
7809 ushort q_addr;
7810 uchar next_qp;
7811 uchar q_status;
7812
7813 q_addr = ASC_QNO_TO_QADDR(free_q_head);
7814 q_status = (uchar)AscReadLramByte(iop_base,
7815 (ushort)(q_addr +
7816 ASC_SCSIQ_B_STATUS));
7817 next_qp = AscReadLramByte(iop_base, (ushort)(q_addr + ASC_SCSIQ_B_FWD));
7818 if (((q_status & QS_READY) == 0) && (next_qp != ASC_QLINK_END))
7819 return next_qp;
7820 return ASC_QLINK_END;
7821}
7822
7823static uchar
7824AscAllocMultipleFreeQueue(PortAddr iop_base, uchar free_q_head, uchar n_free_q)
7825{
7826 uchar i;
7827
7828 for (i = 0; i < n_free_q; i++) {
7829 free_q_head = AscAllocFreeQueue(iop_base, free_q_head);
7830 if (free_q_head == ASC_QLINK_END)
7831 break;
7832 }
7833 return free_q_head;
7834}
7835
7836/*
7837 * void
7838 * DvcPutScsiQ(PortAddr iop_base, ushort s_addr, uchar *outbuf, int words)
7839 *
7840 * Calling/Exit State:
7841 * none
7842 *
7843 * Description:
7844 * Output an ASC_SCSI_Q structure to the chip
7845 */
7846static void
7847DvcPutScsiQ(PortAddr iop_base, ushort s_addr, uchar *outbuf, int words)
7848{
7849 int i;
7850
7851 ASC_DBG_PRT_HEX(2, "DvcPutScsiQ", outbuf, 2 * words);
7852 AscSetChipLramAddr(iop_base, s_addr);
7853 for (i = 0; i < 2 * words; i += 2) {
7854 if (i == 4 || i == 20) {
7855 continue;
7856 }
7857 outpw(iop_base + IOP_RAM_DATA,
7858 ((ushort)outbuf[i + 1] << 8) | outbuf[i]);
7859 }
7860}
7861
7862static int AscPutReadyQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar q_no)
7863{
7864 ushort q_addr;
7865 uchar tid_no;
7866 uchar sdtr_data;
7867 uchar syn_period_ix;
7868 uchar syn_offset;
7869 PortAddr iop_base;
7870
7871 iop_base = asc_dvc->iop_base;
7872 if (((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) &&
7873 ((asc_dvc->sdtr_done & scsiq->q1.target_id) == 0)) {
7874 tid_no = ASC_TIX_TO_TID(scsiq->q2.target_ix);
7875 sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
7876 syn_period_ix =
7877 (sdtr_data >> 4) & (asc_dvc->max_sdtr_index - 1);
7878 syn_offset = sdtr_data & ASC_SYN_MAX_OFFSET;
7879 AscMsgOutSDTR(asc_dvc,
7880 asc_dvc->sdtr_period_tbl[syn_period_ix],
7881 syn_offset);
7882 scsiq->q1.cntl |= QC_MSG_OUT;
7883 }
7884 q_addr = ASC_QNO_TO_QADDR(q_no);
7885 if ((scsiq->q1.target_id & asc_dvc->use_tagged_qng) == 0) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08007886 scsiq->q2.tag_code &= ~SIMPLE_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04007887 }
7888 scsiq->q1.status = QS_FREE;
7889 AscMemWordCopyPtrToLram(iop_base,
7890 q_addr + ASC_SCSIQ_CDB_BEG,
7891 (uchar *)scsiq->cdbptr, scsiq->q2.cdb_len >> 1);
7892
7893 DvcPutScsiQ(iop_base,
7894 q_addr + ASC_SCSIQ_CPY_BEG,
7895 (uchar *)&scsiq->q1.cntl,
7896 ((sizeof(ASC_SCSIQ_1) + sizeof(ASC_SCSIQ_2)) / 2) - 1);
7897 AscWriteLramWord(iop_base,
7898 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_STATUS),
7899 (ushort)(((ushort)scsiq->q1.
7900 q_no << 8) | (ushort)QS_READY));
7901 return 1;
7902}
7903
7904static int
7905AscPutReadySgListQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar q_no)
7906{
7907 int sta;
7908 int i;
7909 ASC_SG_HEAD *sg_head;
7910 ASC_SG_LIST_Q scsi_sg_q;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02007911 __le32 saved_data_addr;
7912 __le32 saved_data_cnt;
Matthew Wilcox51219352007-10-02 21:55:22 -04007913 PortAddr iop_base;
7914 ushort sg_list_dwords;
7915 ushort sg_index;
7916 ushort sg_entry_cnt;
7917 ushort q_addr;
7918 uchar next_qp;
7919
7920 iop_base = asc_dvc->iop_base;
7921 sg_head = scsiq->sg_head;
7922 saved_data_addr = scsiq->q1.data_addr;
7923 saved_data_cnt = scsiq->q1.data_cnt;
Hannes Reinecke37f64602015-04-24 13:18:32 +02007924 scsiq->q1.data_addr = cpu_to_le32(sg_head->sg_list[0].addr);
7925 scsiq->q1.data_cnt = cpu_to_le32(sg_head->sg_list[0].bytes);
Matthew Wilcox51219352007-10-02 21:55:22 -04007926 /*
Hannes Reinecke96aabb22015-04-24 13:18:34 +02007927 * Set sg_entry_cnt to be the number of SG elements that
7928 * will fit in the allocated SG queues. It is minus 1, because
7929 * the first SG element is handled above.
Matthew Wilcox51219352007-10-02 21:55:22 -04007930 */
Hannes Reinecke96aabb22015-04-24 13:18:34 +02007931 sg_entry_cnt = sg_head->entry_cnt - 1;
Matthew Wilcox51219352007-10-02 21:55:22 -04007932
Matthew Wilcox51219352007-10-02 21:55:22 -04007933 if (sg_entry_cnt != 0) {
7934 scsiq->q1.cntl |= QC_SG_HEAD;
7935 q_addr = ASC_QNO_TO_QADDR(q_no);
7936 sg_index = 1;
7937 scsiq->q1.sg_queue_cnt = sg_head->queue_cnt;
7938 scsi_sg_q.sg_head_qp = q_no;
7939 scsi_sg_q.cntl = QCSG_SG_XFER_LIST;
7940 for (i = 0; i < sg_head->queue_cnt; i++) {
7941 scsi_sg_q.seq_no = i + 1;
7942 if (sg_entry_cnt > ASC_SG_LIST_PER_Q) {
7943 sg_list_dwords = (uchar)(ASC_SG_LIST_PER_Q * 2);
7944 sg_entry_cnt -= ASC_SG_LIST_PER_Q;
7945 if (i == 0) {
7946 scsi_sg_q.sg_list_cnt =
7947 ASC_SG_LIST_PER_Q;
7948 scsi_sg_q.sg_cur_list_cnt =
7949 ASC_SG_LIST_PER_Q;
7950 } else {
7951 scsi_sg_q.sg_list_cnt =
7952 ASC_SG_LIST_PER_Q - 1;
7953 scsi_sg_q.sg_cur_list_cnt =
7954 ASC_SG_LIST_PER_Q - 1;
7955 }
7956 } else {
Hannes Reinecke96aabb22015-04-24 13:18:34 +02007957 scsi_sg_q.cntl |= QCSG_SG_XFER_END;
Matthew Wilcox51219352007-10-02 21:55:22 -04007958 sg_list_dwords = sg_entry_cnt << 1;
7959 if (i == 0) {
7960 scsi_sg_q.sg_list_cnt = sg_entry_cnt;
7961 scsi_sg_q.sg_cur_list_cnt =
7962 sg_entry_cnt;
7963 } else {
7964 scsi_sg_q.sg_list_cnt =
7965 sg_entry_cnt - 1;
7966 scsi_sg_q.sg_cur_list_cnt =
7967 sg_entry_cnt - 1;
7968 }
7969 sg_entry_cnt = 0;
7970 }
7971 next_qp = AscReadLramByte(iop_base,
7972 (ushort)(q_addr +
7973 ASC_SCSIQ_B_FWD));
7974 scsi_sg_q.q_no = next_qp;
7975 q_addr = ASC_QNO_TO_QADDR(next_qp);
7976 AscMemWordCopyPtrToLram(iop_base,
7977 q_addr + ASC_SCSIQ_SGHD_CPY_BEG,
7978 (uchar *)&scsi_sg_q,
7979 sizeof(ASC_SG_LIST_Q) >> 1);
7980 AscMemDWordCopyPtrToLram(iop_base,
7981 q_addr + ASC_SGQ_LIST_BEG,
7982 (uchar *)&sg_head->
7983 sg_list[sg_index],
7984 sg_list_dwords);
7985 sg_index += ASC_SG_LIST_PER_Q;
7986 scsiq->next_sg_index = sg_index;
7987 }
7988 } else {
7989 scsiq->q1.cntl &= ~QC_SG_HEAD;
7990 }
7991 sta = AscPutReadyQueue(asc_dvc, scsiq, q_no);
7992 scsiq->q1.data_addr = saved_data_addr;
7993 scsiq->q1.data_cnt = saved_data_cnt;
7994 return (sta);
7995}
7996
7997static int
7998AscSendScsiQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar n_q_required)
7999{
8000 PortAddr iop_base;
8001 uchar free_q_head;
8002 uchar next_qp;
8003 uchar tid_no;
8004 uchar target_ix;
8005 int sta;
8006
8007 iop_base = asc_dvc->iop_base;
8008 target_ix = scsiq->q2.target_ix;
8009 tid_no = ASC_TIX_TO_TID(target_ix);
8010 sta = 0;
8011 free_q_head = (uchar)AscGetVarFreeQHead(iop_base);
8012 if (n_q_required > 1) {
8013 next_qp = AscAllocMultipleFreeQueue(iop_base, free_q_head,
8014 (uchar)n_q_required);
8015 if (next_qp != ASC_QLINK_END) {
8016 asc_dvc->last_q_shortage = 0;
8017 scsiq->sg_head->queue_cnt = n_q_required - 1;
8018 scsiq->q1.q_no = free_q_head;
8019 sta = AscPutReadySgListQueue(asc_dvc, scsiq,
8020 free_q_head);
8021 }
8022 } else if (n_q_required == 1) {
8023 next_qp = AscAllocFreeQueue(iop_base, free_q_head);
8024 if (next_qp != ASC_QLINK_END) {
8025 scsiq->q1.q_no = free_q_head;
8026 sta = AscPutReadyQueue(asc_dvc, scsiq, free_q_head);
8027 }
8028 }
8029 if (sta == 1) {
8030 AscPutVarFreeQHead(iop_base, next_qp);
8031 asc_dvc->cur_total_qng += n_q_required;
8032 asc_dvc->cur_dvc_qng[tid_no]++;
8033 }
8034 return sta;
8035}
8036
8037#define ASC_SYN_OFFSET_ONE_DISABLE_LIST 16
8038static uchar _syn_offset_one_disable_cmd[ASC_SYN_OFFSET_ONE_DISABLE_LIST] = {
8039 INQUIRY,
8040 REQUEST_SENSE,
8041 READ_CAPACITY,
8042 READ_TOC,
8043 MODE_SELECT,
8044 MODE_SENSE,
8045 MODE_SELECT_10,
8046 MODE_SENSE_10,
8047 0xFF,
8048 0xFF,
8049 0xFF,
8050 0xFF,
8051 0xFF,
8052 0xFF,
8053 0xFF,
8054 0xFF
8055};
8056
8057static int AscExeScsiQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq)
8058{
8059 PortAddr iop_base;
8060 int sta;
8061 int n_q_required;
Hannes Reineckeae267592015-04-24 13:18:28 +02008062 bool disable_syn_offset_one_fix;
Matthew Wilcox51219352007-10-02 21:55:22 -04008063 int i;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008064 u32 addr;
Matthew Wilcox51219352007-10-02 21:55:22 -04008065 ushort sg_entry_cnt = 0;
8066 ushort sg_entry_cnt_minus_one = 0;
8067 uchar target_ix;
8068 uchar tid_no;
8069 uchar sdtr_data;
8070 uchar extra_bytes;
8071 uchar scsi_cmd;
8072 uchar disable_cmd;
8073 ASC_SG_HEAD *sg_head;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008074 unsigned long data_cnt;
Matthew Wilcox51219352007-10-02 21:55:22 -04008075
8076 iop_base = asc_dvc->iop_base;
8077 sg_head = scsiq->sg_head;
8078 if (asc_dvc->err_code != 0)
Hannes Reineckef1138a82015-04-24 13:18:29 +02008079 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04008080 scsiq->q1.q_no = 0;
8081 if ((scsiq->q2.tag_code & ASC_TAG_FLAG_EXTRA_BYTES) == 0) {
8082 scsiq->q1.extra_bytes = 0;
8083 }
8084 sta = 0;
8085 target_ix = scsiq->q2.target_ix;
8086 tid_no = ASC_TIX_TO_TID(target_ix);
8087 n_q_required = 1;
8088 if (scsiq->cdbptr[0] == REQUEST_SENSE) {
8089 if ((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) {
8090 asc_dvc->sdtr_done &= ~scsiq->q1.target_id;
8091 sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
8092 AscMsgOutSDTR(asc_dvc,
8093 asc_dvc->
8094 sdtr_period_tbl[(sdtr_data >> 4) &
8095 (uchar)(asc_dvc->
8096 max_sdtr_index -
8097 1)],
8098 (uchar)(sdtr_data & (uchar)
8099 ASC_SYN_MAX_OFFSET));
8100 scsiq->q1.cntl |= (QC_MSG_OUT | QC_URGENT);
8101 }
8102 }
8103 if (asc_dvc->in_critical_cnt != 0) {
8104 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CRITICAL_RE_ENTRY);
Hannes Reineckef1138a82015-04-24 13:18:29 +02008105 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04008106 }
8107 asc_dvc->in_critical_cnt++;
8108 if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
8109 if ((sg_entry_cnt = sg_head->entry_cnt) == 0) {
8110 asc_dvc->in_critical_cnt--;
Hannes Reineckef1138a82015-04-24 13:18:29 +02008111 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04008112 }
Matthew Wilcox51219352007-10-02 21:55:22 -04008113 if (sg_entry_cnt > ASC_MAX_SG_LIST) {
8114 asc_dvc->in_critical_cnt--;
Hannes Reineckef1138a82015-04-24 13:18:29 +02008115 return ASC_ERROR;
Matthew Wilcox51219352007-10-02 21:55:22 -04008116 }
Matthew Wilcox51219352007-10-02 21:55:22 -04008117 if (sg_entry_cnt == 1) {
Hannes Reinecke37f64602015-04-24 13:18:32 +02008118 scsiq->q1.data_addr = cpu_to_le32(sg_head->sg_list[0].addr);
8119 scsiq->q1.data_cnt = cpu_to_le32(sg_head->sg_list[0].bytes);
Matthew Wilcox51219352007-10-02 21:55:22 -04008120 scsiq->q1.cntl &= ~(QC_SG_HEAD | QC_SG_SWAP_QUEUE);
8121 }
8122 sg_entry_cnt_minus_one = sg_entry_cnt - 1;
8123 }
8124 scsi_cmd = scsiq->cdbptr[0];
Hannes Reineckeae267592015-04-24 13:18:28 +02008125 disable_syn_offset_one_fix = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04008126 if ((asc_dvc->pci_fix_asyn_xfer & scsiq->q1.target_id) &&
8127 !(asc_dvc->pci_fix_asyn_xfer_always & scsiq->q1.target_id)) {
8128 if (scsiq->q1.cntl & QC_SG_HEAD) {
8129 data_cnt = 0;
8130 for (i = 0; i < sg_entry_cnt; i++) {
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008131 data_cnt += le32_to_cpu(sg_head->sg_list[i].
8132 bytes);
Matthew Wilcox51219352007-10-02 21:55:22 -04008133 }
8134 } else {
8135 data_cnt = le32_to_cpu(scsiq->q1.data_cnt);
8136 }
8137 if (data_cnt != 0UL) {
8138 if (data_cnt < 512UL) {
Hannes Reineckeae267592015-04-24 13:18:28 +02008139 disable_syn_offset_one_fix = true;
Matthew Wilcox51219352007-10-02 21:55:22 -04008140 } else {
8141 for (i = 0; i < ASC_SYN_OFFSET_ONE_DISABLE_LIST;
8142 i++) {
8143 disable_cmd =
8144 _syn_offset_one_disable_cmd[i];
8145 if (disable_cmd == 0xFF) {
8146 break;
8147 }
8148 if (scsi_cmd == disable_cmd) {
8149 disable_syn_offset_one_fix =
Hannes Reineckeae267592015-04-24 13:18:28 +02008150 true;
Matthew Wilcox51219352007-10-02 21:55:22 -04008151 break;
8152 }
8153 }
8154 }
8155 }
8156 }
8157 if (disable_syn_offset_one_fix) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08008158 scsiq->q2.tag_code &= ~SIMPLE_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04008159 scsiq->q2.tag_code |= (ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX |
8160 ASC_TAG_FLAG_DISABLE_DISCONNECT);
8161 } else {
8162 scsiq->q2.tag_code &= 0x27;
8163 }
8164 if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
8165 if (asc_dvc->bug_fix_cntl) {
8166 if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
8167 if ((scsi_cmd == READ_6) ||
8168 (scsi_cmd == READ_10)) {
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008169 addr = le32_to_cpu(sg_head->
Matthew Wilcox51219352007-10-02 21:55:22 -04008170 sg_list
8171 [sg_entry_cnt_minus_one].
8172 addr) +
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008173 le32_to_cpu(sg_head->
Matthew Wilcox51219352007-10-02 21:55:22 -04008174 sg_list
8175 [sg_entry_cnt_minus_one].
8176 bytes);
8177 extra_bytes =
8178 (uchar)((ushort)addr & 0x0003);
8179 if ((extra_bytes != 0)
8180 &&
8181 ((scsiq->q2.
8182 tag_code &
8183 ASC_TAG_FLAG_EXTRA_BYTES)
8184 == 0)) {
8185 scsiq->q2.tag_code |=
8186 ASC_TAG_FLAG_EXTRA_BYTES;
8187 scsiq->q1.extra_bytes =
8188 extra_bytes;
8189 data_cnt =
8190 le32_to_cpu(sg_head->
8191 sg_list
8192 [sg_entry_cnt_minus_one].
8193 bytes);
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008194 data_cnt -= extra_bytes;
Matthew Wilcox51219352007-10-02 21:55:22 -04008195 sg_head->
8196 sg_list
8197 [sg_entry_cnt_minus_one].
8198 bytes =
8199 cpu_to_le32(data_cnt);
8200 }
8201 }
8202 }
8203 }
8204 sg_head->entry_to_copy = sg_head->entry_cnt;
Matthew Wilcox51219352007-10-02 21:55:22 -04008205 n_q_required = AscSgListToQueue(sg_entry_cnt);
8206 if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, n_q_required) >=
8207 (uint) n_q_required)
8208 || ((scsiq->q1.cntl & QC_URGENT) != 0)) {
8209 if ((sta =
8210 AscSendScsiQueue(asc_dvc, scsiq,
8211 n_q_required)) == 1) {
8212 asc_dvc->in_critical_cnt--;
8213 return (sta);
8214 }
8215 }
8216 } else {
8217 if (asc_dvc->bug_fix_cntl) {
8218 if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
8219 if ((scsi_cmd == READ_6) ||
8220 (scsi_cmd == READ_10)) {
8221 addr =
8222 le32_to_cpu(scsiq->q1.data_addr) +
8223 le32_to_cpu(scsiq->q1.data_cnt);
8224 extra_bytes =
8225 (uchar)((ushort)addr & 0x0003);
8226 if ((extra_bytes != 0)
8227 &&
8228 ((scsiq->q2.
8229 tag_code &
8230 ASC_TAG_FLAG_EXTRA_BYTES)
8231 == 0)) {
8232 data_cnt =
8233 le32_to_cpu(scsiq->q1.
8234 data_cnt);
8235 if (((ushort)data_cnt & 0x01FF)
8236 == 0) {
8237 scsiq->q2.tag_code |=
8238 ASC_TAG_FLAG_EXTRA_BYTES;
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008239 data_cnt -= extra_bytes;
Matthew Wilcox51219352007-10-02 21:55:22 -04008240 scsiq->q1.data_cnt =
8241 cpu_to_le32
8242 (data_cnt);
8243 scsiq->q1.extra_bytes =
8244 extra_bytes;
8245 }
8246 }
8247 }
8248 }
8249 }
8250 n_q_required = 1;
8251 if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, 1) >= 1) ||
8252 ((scsiq->q1.cntl & QC_URGENT) != 0)) {
8253 if ((sta = AscSendScsiQueue(asc_dvc, scsiq,
8254 n_q_required)) == 1) {
8255 asc_dvc->in_critical_cnt--;
8256 return (sta);
8257 }
8258 }
8259 }
8260 asc_dvc->in_critical_cnt--;
8261 return (sta);
8262}
8263
8264/*
8265 * AdvExeScsiQueue() - Send a request to the RISC microcode program.
8266 *
8267 * Allocate a carrier structure, point the carrier to the ADV_SCSI_REQ_Q,
8268 * add the carrier to the ICQ (Initiator Command Queue), and tickle the
8269 * RISC to notify it a new command is ready to be executed.
8270 *
8271 * If 'done_status' is not set to QD_DO_RETRY, then 'error_retry' will be
8272 * set to SCSI_MAX_RETRY.
8273 *
Hannes Reinecke9fef6ba2015-04-24 13:18:33 +02008274 * Multi-byte fields in the ADV_SCSI_REQ_Q that are used by the microcode
Matthew Wilcox51219352007-10-02 21:55:22 -04008275 * for DMA addresses or math operations are byte swapped to little-endian
8276 * order.
8277 *
8278 * Return:
8279 * ADV_SUCCESS(1) - The request was successfully queued.
8280 * ADV_BUSY(0) - Resource unavailable; Retry again after pending
8281 * request completes.
8282 * ADV_ERROR(-1) - Invalid ADV_SCSI_REQ_Q request structure
8283 * host IC error.
8284 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008285static int AdvExeScsiQueue(ADV_DVC_VAR *asc_dvc, adv_req_t *reqp)
Matthew Wilcox51219352007-10-02 21:55:22 -04008286{
8287 AdvPortAddr iop_base;
Matthew Wilcox51219352007-10-02 21:55:22 -04008288 ADV_CARR_T *new_carrp;
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008289 ADV_SCSI_REQ_Q *scsiq = &reqp->scsi_req_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04008290
8291 /*
8292 * The ADV_SCSI_REQ_Q 'target_id' field should never exceed ADV_MAX_TID.
8293 */
8294 if (scsiq->target_id > ADV_MAX_TID) {
8295 scsiq->host_status = QHSTA_M_INVALID_DEVICE;
8296 scsiq->done_status = QD_WITH_ERROR;
8297 return ADV_ERROR;
8298 }
8299
8300 iop_base = asc_dvc->iop_base;
8301
8302 /*
8303 * Allocate a carrier ensuring at least one carrier always
8304 * remains on the freelist and initialize fields.
8305 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02008306 new_carrp = adv_get_next_carrier(asc_dvc);
8307 if (!new_carrp) {
8308 ASC_DBG(1, "No free carriers\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008309 return ADV_BUSY;
8310 }
Matthew Wilcox51219352007-10-02 21:55:22 -04008311
Hannes Reinecke98b96a72015-04-24 13:18:23 +02008312 asc_dvc->carr_pending_cnt++;
Matthew Wilcox51219352007-10-02 21:55:22 -04008313
Matthew Wilcox51219352007-10-02 21:55:22 -04008314 /* Save virtual and physical address of ADV_SCSI_REQ_Q and carrier. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008315 scsiq->scsiq_ptr = cpu_to_le32(scsiq->srb_tag);
8316 scsiq->scsiq_rptr = cpu_to_le32(reqp->req_addr);
Matthew Wilcox51219352007-10-02 21:55:22 -04008317
Hannes Reinecke98b96a72015-04-24 13:18:23 +02008318 scsiq->carr_va = asc_dvc->icq_sp->carr_va;
Matthew Wilcox51219352007-10-02 21:55:22 -04008319 scsiq->carr_pa = asc_dvc->icq_sp->carr_pa;
8320
8321 /*
8322 * Use the current stopper to send the ADV_SCSI_REQ_Q command to
8323 * the microcode. The newly allocated stopper will become the new
8324 * stopper.
8325 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008326 asc_dvc->icq_sp->areq_vpa = scsiq->scsiq_rptr;
Matthew Wilcox51219352007-10-02 21:55:22 -04008327
8328 /*
8329 * Set the 'next_vpa' pointer for the old stopper to be the
8330 * physical address of the new stopper. The RISC can only
8331 * follow physical addresses.
8332 */
8333 asc_dvc->icq_sp->next_vpa = new_carrp->carr_pa;
8334
8335 /*
8336 * Set the host adapter stopper pointer to point to the new carrier.
8337 */
8338 asc_dvc->icq_sp = new_carrp;
8339
8340 if (asc_dvc->chip_type == ADV_CHIP_ASC3550 ||
8341 asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
8342 /*
8343 * Tickle the RISC to tell it to read its Command Queue Head pointer.
8344 */
8345 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_A);
8346 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
8347 /*
8348 * Clear the tickle value. In the ASC-3550 the RISC flag
8349 * command 'clr_tickle_a' does not work unless the host
8350 * value is cleared.
8351 */
8352 AdvWriteByteRegister(iop_base, IOPB_TICKLE,
8353 ADV_TICKLE_NOP);
8354 }
8355 } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
8356 /*
8357 * Notify the RISC a carrier is ready by writing the physical
8358 * address of the new carrier stopper to the COMMA register.
8359 */
8360 AdvWriteDWordRegister(iop_base, IOPDW_COMMA,
8361 le32_to_cpu(new_carrp->carr_pa));
8362 }
8363
8364 return ADV_SUCCESS;
8365}
8366
8367/*
Johannes Thumshirn91ebc1f2018-06-13 09:53:47 +02008368 * Execute a single 'struct scsi_cmnd'.
Matthew Wilcox51219352007-10-02 21:55:22 -04008369 */
8370static int asc_execute_scsi_cmnd(struct scsi_cmnd *scp)
8371{
Matthew Wilcox41d24932007-10-02 21:55:24 -04008372 int ret, err_code;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04008373 struct asc_board *boardp = shost_priv(scp->device->host);
Matthew Wilcox51219352007-10-02 21:55:22 -04008374
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008375 ASC_DBG(1, "scp 0x%p\n", scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04008376
8377 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcox41d24932007-10-02 21:55:24 -04008378 ASC_DVC_VAR *asc_dvc = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcox05848b62007-10-02 21:55:25 -04008379 struct asc_scsi_q asc_scsi_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04008380
Matthew Wilcox05848b62007-10-02 21:55:25 -04008381 ret = asc_build_req(boardp, scp, &asc_scsi_q);
Hannes Reinecke22070632015-04-24 13:18:39 +02008382 if (ret != ASC_NOERROR) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008383 ASC_STATS(scp->device->host, build_error);
Hannes Reinecke22070632015-04-24 13:18:39 +02008384 return ret;
Matthew Wilcox51219352007-10-02 21:55:22 -04008385 }
8386
Matthew Wilcox41d24932007-10-02 21:55:24 -04008387 ret = AscExeScsiQueue(asc_dvc, &asc_scsi_q);
Matthew Wilcox05848b62007-10-02 21:55:25 -04008388 kfree(asc_scsi_q.sg_head);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008389 err_code = asc_dvc->err_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04008390 } else {
Matthew Wilcox41d24932007-10-02 21:55:24 -04008391 ADV_DVC_VAR *adv_dvc = &boardp->dvc_var.adv_dvc_var;
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008392 adv_req_t *adv_reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04008393
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008394 switch (adv_build_req(boardp, scp, &adv_reqp)) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008395 case ASC_NOERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008396 ASC_DBG(3, "adv_build_req ASC_NOERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008397 break;
8398 case ASC_BUSY:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008399 ASC_DBG(1, "adv_build_req ASC_BUSY\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008400 /*
8401 * The asc_stats fields 'adv_build_noreq' and
8402 * 'adv_build_nosg' count wide board busy conditions.
8403 * They are updated in adv_build_req and
8404 * adv_get_sglist, respectively.
8405 */
8406 return ASC_BUSY;
8407 case ASC_ERROR:
8408 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008409 ASC_DBG(1, "adv_build_req ASC_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008410 ASC_STATS(scp->device->host, build_error);
8411 return ASC_ERROR;
8412 }
8413
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008414 ret = AdvExeScsiQueue(adv_dvc, adv_reqp);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008415 err_code = adv_dvc->err_code;
8416 }
8417
8418 switch (ret) {
8419 case ASC_NOERROR:
8420 ASC_STATS(scp->device->host, exe_noerror);
8421 /*
8422 * Increment monotonically increasing per device
8423 * successful request counter. Wrapping doesn't matter.
8424 */
8425 boardp->reqcnt[scp->device->id]++;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008426 ASC_DBG(1, "ExeScsiQueue() ASC_NOERROR\n");
Matthew Wilcox41d24932007-10-02 21:55:24 -04008427 break;
8428 case ASC_BUSY:
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008429 ASC_DBG(1, "ExeScsiQueue() ASC_BUSY\n");
Matthew Wilcox41d24932007-10-02 21:55:24 -04008430 ASC_STATS(scp->device->host, exe_busy);
8431 break;
8432 case ASC_ERROR:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04008433 scmd_printk(KERN_ERR, scp, "ExeScsiQueue() ASC_ERROR, "
8434 "err_code 0x%x\n", err_code);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008435 ASC_STATS(scp->device->host, exe_error);
Hannes Reineckeaced5502021-01-13 10:04:59 +01008436 set_host_byte(scp, DID_ERROR);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008437 break;
8438 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04008439 scmd_printk(KERN_ERR, scp, "ExeScsiQueue() unknown, "
8440 "err_code 0x%x\n", err_code);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008441 ASC_STATS(scp->device->host, exe_unknown);
Hannes Reineckeaced5502021-01-13 10:04:59 +01008442 set_host_byte(scp, DID_ERROR);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008443 break;
Matthew Wilcox51219352007-10-02 21:55:22 -04008444 }
8445
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008446 ASC_DBG(1, "end\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008447 return ret;
8448}
8449
8450/*
8451 * advansys_queuecommand() - interrupt-driven I/O entrypoint.
8452 *
8453 * This function always returns 0. Command return status is saved
8454 * in the 'scp' result field.
8455 */
Bart Van Asscheaf049df2021-10-07 13:46:14 -07008456static int advansys_queuecommand_lck(struct scsi_cmnd *scp)
Matthew Wilcox51219352007-10-02 21:55:22 -04008457{
8458 struct Scsi_Host *shost = scp->device->host;
Matthew Wilcox51219352007-10-02 21:55:22 -04008459 int asc_res, result = 0;
8460
8461 ASC_STATS(shost, queuecommand);
Matthew Wilcox51219352007-10-02 21:55:22 -04008462
Matthew Wilcox51219352007-10-02 21:55:22 -04008463 asc_res = asc_execute_scsi_cmnd(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04008464
8465 switch (asc_res) {
8466 case ASC_NOERROR:
8467 break;
8468 case ASC_BUSY:
8469 result = SCSI_MLQUEUE_HOST_BUSY;
8470 break;
8471 case ASC_ERROR:
8472 default:
8473 asc_scsi_done(scp);
8474 break;
8475 }
8476
8477 return result;
8478}
8479
Jeff Garzikf2812332010-11-16 02:10:29 -05008480static DEF_SCSI_QCMD(advansys_queuecommand)
8481
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008482static ushort AscGetEisaChipCfg(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04008483{
8484 PortAddr eisa_cfg_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
8485 (PortAddr) (ASC_EISA_CFG_IOP_MASK);
8486 return inpw(eisa_cfg_iop);
8487}
8488
8489/*
8490 * Return the BIOS address of the adapter at the specified
8491 * I/O port and with the specified bus type.
8492 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008493static unsigned short AscGetChipBiosAddress(PortAddr iop_base,
8494 unsigned short bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008495{
8496 unsigned short cfg_lsw;
8497 unsigned short bios_addr;
8498
8499 /*
8500 * The PCI BIOS is re-located by the motherboard BIOS. Because
8501 * of this the driver can not determine where a PCI BIOS is
8502 * loaded and executes.
8503 */
8504 if (bus_type & ASC_IS_PCI)
8505 return 0;
8506
8507 if ((bus_type & ASC_IS_EISA) != 0) {
8508 cfg_lsw = AscGetEisaChipCfg(iop_base);
8509 cfg_lsw &= 0x000F;
8510 bios_addr = ASC_BIOS_MIN_ADDR + cfg_lsw * ASC_BIOS_BANK_SIZE;
8511 return bios_addr;
8512 }
8513
8514 cfg_lsw = AscGetChipCfgLsw(iop_base);
Matthew Wilcox51219352007-10-02 21:55:22 -04008515 bios_addr = ASC_BIOS_MIN_ADDR + (cfg_lsw >> 12) * ASC_BIOS_BANK_SIZE;
8516 return bios_addr;
8517}
8518
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008519static uchar AscSetChipScsiID(PortAddr iop_base, uchar new_host_id)
Matthew Wilcox51219352007-10-02 21:55:22 -04008520{
8521 ushort cfg_lsw;
8522
8523 if (AscGetChipScsiID(iop_base) == new_host_id) {
8524 return (new_host_id);
8525 }
8526 cfg_lsw = AscGetChipCfgLsw(iop_base);
8527 cfg_lsw &= 0xF8FF;
8528 cfg_lsw |= (ushort)((new_host_id & ASC_MAX_TID) << 8);
8529 AscSetChipCfgLsw(iop_base, cfg_lsw);
8530 return (AscGetChipScsiID(iop_base));
8531}
8532
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008533static unsigned char AscGetChipScsiCtrl(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04008534{
8535 unsigned char sc;
8536
8537 AscSetBank(iop_base, 1);
8538 sc = inp(iop_base + IOP_REG_SC);
8539 AscSetBank(iop_base, 0);
8540 return sc;
8541}
8542
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008543static unsigned char AscGetChipVersion(PortAddr iop_base,
8544 unsigned short bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008545{
8546 if (bus_type & ASC_IS_EISA) {
8547 PortAddr eisa_iop;
8548 unsigned char revision;
8549 eisa_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
8550 (PortAddr) ASC_EISA_REV_IOP_MASK;
8551 revision = inp(eisa_iop);
8552 return ASC_CHIP_MIN_VER_EISA - 1 + revision;
8553 }
8554 return AscGetChipVerNo(iop_base);
8555}
8556
Matthew Wilcox51219352007-10-02 21:55:22 -04008557static int AscStopQueueExe(PortAddr iop_base)
8558{
8559 int count = 0;
8560
8561 if (AscReadLramByte(iop_base, ASCV_STOP_CODE_B) == 0) {
8562 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
8563 ASC_STOP_REQ_RISC_STOP);
8564 do {
8565 if (AscReadLramByte(iop_base, ASCV_STOP_CODE_B) &
8566 ASC_STOP_ACK_RISC_STOP) {
8567 return (1);
8568 }
8569 mdelay(100);
8570 } while (count++ < 20);
8571 }
8572 return (0);
8573}
8574
Hannes Reinecke95cfab62015-04-24 13:18:27 +02008575static unsigned int AscGetMaxDmaCount(ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008576{
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02008577 if (bus_type & (ASC_IS_EISA | ASC_IS_VL))
Matthew Wilcox51219352007-10-02 21:55:22 -04008578 return ASC_MAX_VL_DMA_COUNT;
8579 return ASC_MAX_PCI_DMA_COUNT;
8580}
8581
Hannes Reineckef33134e2015-04-24 13:18:31 +02008582static void AscInitAscDvcVar(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04008583{
8584 int i;
8585 PortAddr iop_base;
Matthew Wilcox51219352007-10-02 21:55:22 -04008586 uchar chip_version;
8587
8588 iop_base = asc_dvc->iop_base;
Matthew Wilcox51219352007-10-02 21:55:22 -04008589 asc_dvc->err_code = 0;
8590 if ((asc_dvc->bus_type &
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +02008591 (ASC_IS_PCI | ASC_IS_EISA | ASC_IS_VL)) == 0) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008592 asc_dvc->err_code |= ASC_IERR_NO_BUS_TYPE;
8593 }
8594 AscSetChipControl(iop_base, CC_HALT);
8595 AscSetChipStatus(iop_base, 0);
8596 asc_dvc->bug_fix_cntl = 0;
8597 asc_dvc->pci_fix_asyn_xfer = 0;
8598 asc_dvc->pci_fix_asyn_xfer_always = 0;
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02008599 /* asc_dvc->init_state initialized in AscInitGetConfig(). */
Matthew Wilcox51219352007-10-02 21:55:22 -04008600 asc_dvc->sdtr_done = 0;
8601 asc_dvc->cur_total_qng = 0;
Hannes Reineckeae267592015-04-24 13:18:28 +02008602 asc_dvc->is_in_int = false;
Matthew Wilcox51219352007-10-02 21:55:22 -04008603 asc_dvc->in_critical_cnt = 0;
8604 asc_dvc->last_q_shortage = 0;
8605 asc_dvc->use_tagged_qng = 0;
8606 asc_dvc->no_scam = 0;
8607 asc_dvc->unit_not_ready = 0;
8608 asc_dvc->queue_full_or_busy = 0;
8609 asc_dvc->redo_scam = 0;
8610 asc_dvc->res2 = 0;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04008611 asc_dvc->min_sdtr_index = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04008612 asc_dvc->cfg->can_tagged_qng = 0;
8613 asc_dvc->cfg->cmd_qng_enabled = 0;
8614 asc_dvc->dvc_cntl = ASC_DEF_DVC_CNTL;
8615 asc_dvc->init_sdtr = 0;
8616 asc_dvc->max_total_qng = ASC_DEF_MAX_TOTAL_QNG;
8617 asc_dvc->scsi_reset_wait = 3;
8618 asc_dvc->start_motor = ASC_SCSI_WIDTH_BIT_SET;
8619 asc_dvc->max_dma_count = AscGetMaxDmaCount(asc_dvc->bus_type);
8620 asc_dvc->cfg->sdtr_enable = ASC_SCSI_WIDTH_BIT_SET;
8621 asc_dvc->cfg->disc_enable = ASC_SCSI_WIDTH_BIT_SET;
8622 asc_dvc->cfg->chip_scsi_id = ASC_DEF_CHIP_SCSI_ID;
Matthew Wilcox51219352007-10-02 21:55:22 -04008623 chip_version = AscGetChipVersion(iop_base, asc_dvc->bus_type);
8624 asc_dvc->cfg->chip_version = chip_version;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04008625 asc_dvc->sdtr_period_tbl = asc_syn_xfer_period;
Matthew Wilcox51219352007-10-02 21:55:22 -04008626 asc_dvc->max_sdtr_index = 7;
8627 if ((asc_dvc->bus_type & ASC_IS_PCI) &&
8628 (chip_version >= ASC_CHIP_VER_PCI_ULTRA_3150)) {
8629 asc_dvc->bus_type = ASC_IS_PCI_ULTRA;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04008630 asc_dvc->sdtr_period_tbl = asc_syn_ultra_xfer_period;
Matthew Wilcox51219352007-10-02 21:55:22 -04008631 asc_dvc->max_sdtr_index = 15;
8632 if (chip_version == ASC_CHIP_VER_PCI_ULTRA_3150) {
8633 AscSetExtraControl(iop_base,
8634 (SEC_ACTIVE_NEGATE | SEC_SLEW_RATE));
8635 } else if (chip_version >= ASC_CHIP_VER_PCI_ULTRA_3050) {
8636 AscSetExtraControl(iop_base,
8637 (SEC_ACTIVE_NEGATE |
8638 SEC_ENABLE_FILTER));
8639 }
8640 }
8641 if (asc_dvc->bus_type == ASC_IS_PCI) {
8642 AscSetExtraControl(iop_base,
8643 (SEC_ACTIVE_NEGATE | SEC_SLEW_RATE));
8644 }
8645
Matthew Wilcox51219352007-10-02 21:55:22 -04008646 for (i = 0; i <= ASC_MAX_TID; i++) {
8647 asc_dvc->cur_dvc_qng[i] = 0;
8648 asc_dvc->max_dvc_qng[i] = ASC_MAX_SCSI1_QNG;
8649 asc_dvc->scsiq_busy_head[i] = (ASC_SCSI_Q *)0L;
8650 asc_dvc->scsiq_busy_tail[i] = (ASC_SCSI_Q *)0L;
8651 asc_dvc->cfg->max_tag_qng[i] = ASC_MAX_INRAM_TAG_QNG;
8652 }
Matthew Wilcox51219352007-10-02 21:55:22 -04008653}
8654
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008655static int AscWriteEEPCmdReg(PortAddr iop_base, uchar cmd_reg)
Matthew Wilcox51219352007-10-02 21:55:22 -04008656{
8657 int retry;
8658
8659 for (retry = 0; retry < ASC_EEP_MAX_RETRY; retry++) {
8660 unsigned char read_back;
8661 AscSetChipEEPCmd(iop_base, cmd_reg);
8662 mdelay(1);
8663 read_back = AscGetChipEEPCmd(iop_base);
8664 if (read_back == cmd_reg)
8665 return 1;
8666 }
8667 return 0;
8668}
8669
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008670static void AscWaitEEPRead(void)
Matthew Wilcox51219352007-10-02 21:55:22 -04008671{
8672 mdelay(1);
8673}
8674
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008675static ushort AscReadEEPWord(PortAddr iop_base, uchar addr)
Matthew Wilcox51219352007-10-02 21:55:22 -04008676{
8677 ushort read_wval;
8678 uchar cmd_reg;
8679
8680 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_DISABLE);
8681 AscWaitEEPRead();
8682 cmd_reg = addr | ASC_EEP_CMD_READ;
8683 AscWriteEEPCmdReg(iop_base, cmd_reg);
8684 AscWaitEEPRead();
8685 read_wval = AscGetChipEEPData(iop_base);
8686 AscWaitEEPRead();
8687 return read_wval;
8688}
8689
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008690static ushort AscGetEEPConfig(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf,
8691 ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008692{
8693 ushort wval;
8694 ushort sum;
8695 ushort *wbuf;
8696 int cfg_beg;
8697 int cfg_end;
8698 int uchar_end_in_config = ASC_EEP_MAX_DVC_ADDR - 2;
8699 int s_addr;
8700
8701 wbuf = (ushort *)cfg_buf;
8702 sum = 0;
8703 /* Read two config words; Byte-swapping done by AscReadEEPWord(). */
8704 for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
8705 *wbuf = AscReadEEPWord(iop_base, (uchar)s_addr);
8706 sum += *wbuf;
8707 }
8708 if (bus_type & ASC_IS_VL) {
8709 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
8710 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
8711 } else {
8712 cfg_beg = ASC_EEP_DVC_CFG_BEG;
8713 cfg_end = ASC_EEP_MAX_DVC_ADDR;
8714 }
8715 for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
8716 wval = AscReadEEPWord(iop_base, (uchar)s_addr);
8717 if (s_addr <= uchar_end_in_config) {
8718 /*
8719 * Swap all char fields - must unswap bytes already swapped
8720 * by AscReadEEPWord().
8721 */
8722 *wbuf = le16_to_cpu(wval);
8723 } else {
8724 /* Don't swap word field at the end - cntl field. */
8725 *wbuf = wval;
8726 }
8727 sum += wval; /* Checksum treats all EEPROM data as words. */
8728 }
8729 /*
8730 * Read the checksum word which will be compared against 'sum'
8731 * by the caller. Word field already swapped.
8732 */
8733 *wbuf = AscReadEEPWord(iop_base, (uchar)s_addr);
8734 return sum;
8735}
8736
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008737static int AscTestExternalLram(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04008738{
8739 PortAddr iop_base;
8740 ushort q_addr;
8741 ushort saved_word;
8742 int sta;
8743
8744 iop_base = asc_dvc->iop_base;
8745 sta = 0;
8746 q_addr = ASC_QNO_TO_QADDR(241);
8747 saved_word = AscReadLramWord(iop_base, q_addr);
8748 AscSetChipLramAddr(iop_base, q_addr);
8749 AscSetChipLramData(iop_base, 0x55AA);
8750 mdelay(10);
8751 AscSetChipLramAddr(iop_base, q_addr);
8752 if (AscGetChipLramData(iop_base) == 0x55AA) {
8753 sta = 1;
8754 AscWriteLramWord(iop_base, q_addr, saved_word);
8755 }
8756 return (sta);
8757}
8758
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008759static void AscWaitEEPWrite(void)
Matthew Wilcox51219352007-10-02 21:55:22 -04008760{
8761 mdelay(20);
Matthew Wilcox51219352007-10-02 21:55:22 -04008762}
8763
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008764static int AscWriteEEPDataReg(PortAddr iop_base, ushort data_reg)
Matthew Wilcox51219352007-10-02 21:55:22 -04008765{
8766 ushort read_back;
8767 int retry;
8768
8769 retry = 0;
Hannes Reineckeae267592015-04-24 13:18:28 +02008770 while (true) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008771 AscSetChipEEPData(iop_base, data_reg);
8772 mdelay(1);
8773 read_back = AscGetChipEEPData(iop_base);
8774 if (read_back == data_reg) {
8775 return (1);
8776 }
8777 if (retry++ > ASC_EEP_MAX_RETRY) {
8778 return (0);
8779 }
8780 }
8781}
8782
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008783static ushort AscWriteEEPWord(PortAddr iop_base, uchar addr, ushort word_val)
Matthew Wilcox51219352007-10-02 21:55:22 -04008784{
8785 ushort read_wval;
8786
8787 read_wval = AscReadEEPWord(iop_base, addr);
8788 if (read_wval != word_val) {
8789 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_ABLE);
8790 AscWaitEEPRead();
8791 AscWriteEEPDataReg(iop_base, word_val);
8792 AscWaitEEPRead();
8793 AscWriteEEPCmdReg(iop_base,
8794 (uchar)((uchar)ASC_EEP_CMD_WRITE | addr));
8795 AscWaitEEPWrite();
8796 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_DISABLE);
8797 AscWaitEEPRead();
8798 return (AscReadEEPWord(iop_base, addr));
8799 }
8800 return (read_wval);
8801}
8802
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008803static int AscSetEEPConfigOnce(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf,
8804 ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008805{
8806 int n_error;
8807 ushort *wbuf;
8808 ushort word;
8809 ushort sum;
8810 int s_addr;
8811 int cfg_beg;
8812 int cfg_end;
8813 int uchar_end_in_config = ASC_EEP_MAX_DVC_ADDR - 2;
8814
8815 wbuf = (ushort *)cfg_buf;
8816 n_error = 0;
8817 sum = 0;
8818 /* Write two config words; AscWriteEEPWord() will swap bytes. */
8819 for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
8820 sum += *wbuf;
8821 if (*wbuf != AscWriteEEPWord(iop_base, (uchar)s_addr, *wbuf)) {
8822 n_error++;
8823 }
8824 }
8825 if (bus_type & ASC_IS_VL) {
8826 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
8827 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
8828 } else {
8829 cfg_beg = ASC_EEP_DVC_CFG_BEG;
8830 cfg_end = ASC_EEP_MAX_DVC_ADDR;
8831 }
8832 for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
8833 if (s_addr <= uchar_end_in_config) {
8834 /*
8835 * This is a char field. Swap char fields before they are
8836 * swapped again by AscWriteEEPWord().
8837 */
8838 word = cpu_to_le16(*wbuf);
8839 if (word !=
8840 AscWriteEEPWord(iop_base, (uchar)s_addr, word)) {
8841 n_error++;
8842 }
8843 } else {
8844 /* Don't swap word field at the end - cntl field. */
8845 if (*wbuf !=
8846 AscWriteEEPWord(iop_base, (uchar)s_addr, *wbuf)) {
8847 n_error++;
8848 }
8849 }
8850 sum += *wbuf; /* Checksum calculated from word values. */
8851 }
8852 /* Write checksum word. It will be swapped by AscWriteEEPWord(). */
8853 *wbuf = sum;
8854 if (sum != AscWriteEEPWord(iop_base, (uchar)s_addr, sum)) {
8855 n_error++;
8856 }
8857
8858 /* Read EEPROM back again. */
8859 wbuf = (ushort *)cfg_buf;
8860 /*
8861 * Read two config words; Byte-swapping done by AscReadEEPWord().
8862 */
8863 for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
8864 if (*wbuf != AscReadEEPWord(iop_base, (uchar)s_addr)) {
8865 n_error++;
8866 }
8867 }
8868 if (bus_type & ASC_IS_VL) {
8869 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
8870 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
8871 } else {
8872 cfg_beg = ASC_EEP_DVC_CFG_BEG;
8873 cfg_end = ASC_EEP_MAX_DVC_ADDR;
8874 }
8875 for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
8876 if (s_addr <= uchar_end_in_config) {
8877 /*
8878 * Swap all char fields. Must unswap bytes already swapped
8879 * by AscReadEEPWord().
8880 */
8881 word =
8882 le16_to_cpu(AscReadEEPWord
8883 (iop_base, (uchar)s_addr));
8884 } else {
8885 /* Don't swap word field at the end - cntl field. */
8886 word = AscReadEEPWord(iop_base, (uchar)s_addr);
8887 }
8888 if (*wbuf != word) {
8889 n_error++;
8890 }
8891 }
8892 /* Read checksum; Byte swapping not needed. */
8893 if (AscReadEEPWord(iop_base, (uchar)s_addr) != sum) {
8894 n_error++;
8895 }
8896 return n_error;
8897}
8898
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008899static int AscSetEEPConfig(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf,
8900 ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008901{
8902 int retry;
8903 int n_error;
8904
8905 retry = 0;
Hannes Reineckeae267592015-04-24 13:18:28 +02008906 while (true) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008907 if ((n_error = AscSetEEPConfigOnce(iop_base, cfg_buf,
8908 bus_type)) == 0) {
8909 break;
8910 }
8911 if (++retry > ASC_EEP_MAX_RETRY) {
8912 break;
8913 }
8914 }
8915 return n_error;
8916}
8917
Hannes Reineckef33134e2015-04-24 13:18:31 +02008918static int AscInitFromEEP(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04008919{
8920 ASCEEP_CONFIG eep_config_buf;
8921 ASCEEP_CONFIG *eep_config;
8922 PortAddr iop_base;
8923 ushort chksum;
8924 ushort warn_code;
8925 ushort cfg_msw, cfg_lsw;
8926 int i;
8927 int write_eep = 0;
8928
8929 iop_base = asc_dvc->iop_base;
8930 warn_code = 0;
8931 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0x00FE);
8932 AscStopQueueExe(iop_base);
Hannes Reineckeae267592015-04-24 13:18:28 +02008933 if ((AscStopChip(iop_base)) ||
Matthew Wilcox51219352007-10-02 21:55:22 -04008934 (AscGetChipScsiCtrl(iop_base) != 0)) {
8935 asc_dvc->init_state |= ASC_INIT_RESET_SCSI_DONE;
8936 AscResetChipAndScsiBus(asc_dvc);
8937 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
8938 }
Hannes Reinecked647c782015-04-24 13:18:26 +02008939 if (!AscIsChipHalted(iop_base)) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008940 asc_dvc->err_code |= ASC_IERR_START_STOP_CHIP;
8941 return (warn_code);
8942 }
8943 AscSetPCAddr(iop_base, ASC_MCODE_START_ADDR);
8944 if (AscGetPCAddr(iop_base) != ASC_MCODE_START_ADDR) {
8945 asc_dvc->err_code |= ASC_IERR_SET_PC_ADDR;
8946 return (warn_code);
8947 }
8948 eep_config = (ASCEEP_CONFIG *)&eep_config_buf;
8949 cfg_msw = AscGetChipCfgMsw(iop_base);
8950 cfg_lsw = AscGetChipCfgLsw(iop_base);
8951 if ((cfg_msw & ASC_CFG_MSW_CLR_MASK) != 0) {
8952 cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
8953 warn_code |= ASC_WARN_CFG_MSW_RECOVER;
8954 AscSetChipCfgMsw(iop_base, cfg_msw);
8955 }
8956 chksum = AscGetEEPConfig(iop_base, eep_config, asc_dvc->bus_type);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008957 ASC_DBG(1, "chksum 0x%x\n", chksum);
Matthew Wilcox51219352007-10-02 21:55:22 -04008958 if (chksum == 0) {
8959 chksum = 0xaa55;
8960 }
8961 if (AscGetChipStatus(iop_base) & CSW_AUTO_CONFIG) {
8962 warn_code |= ASC_WARN_AUTO_CONFIG;
8963 if (asc_dvc->cfg->chip_version == 3) {
8964 if (eep_config->cfg_lsw != cfg_lsw) {
8965 warn_code |= ASC_WARN_EEPROM_RECOVER;
8966 eep_config->cfg_lsw =
8967 AscGetChipCfgLsw(iop_base);
8968 }
8969 if (eep_config->cfg_msw != cfg_msw) {
8970 warn_code |= ASC_WARN_EEPROM_RECOVER;
8971 eep_config->cfg_msw =
8972 AscGetChipCfgMsw(iop_base);
8973 }
8974 }
8975 }
8976 eep_config->cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
8977 eep_config->cfg_lsw |= ASC_CFG0_HOST_INT_ON;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008978 ASC_DBG(1, "eep_config->chksum 0x%x\n", eep_config->chksum);
Matthew Wilcox51219352007-10-02 21:55:22 -04008979 if (chksum != eep_config->chksum) {
8980 if (AscGetChipVersion(iop_base, asc_dvc->bus_type) ==
8981 ASC_CHIP_VER_PCI_ULTRA_3050) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008982 ASC_DBG(1, "chksum error ignored; EEPROM-less board\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008983 eep_config->init_sdtr = 0xFF;
8984 eep_config->disc_enable = 0xFF;
8985 eep_config->start_motor = 0xFF;
8986 eep_config->use_cmd_qng = 0;
8987 eep_config->max_total_qng = 0xF0;
8988 eep_config->max_tag_qng = 0x20;
8989 eep_config->cntl = 0xBFFF;
8990 ASC_EEP_SET_CHIP_ID(eep_config, 7);
8991 eep_config->no_scam = 0;
8992 eep_config->adapter_info[0] = 0;
8993 eep_config->adapter_info[1] = 0;
8994 eep_config->adapter_info[2] = 0;
8995 eep_config->adapter_info[3] = 0;
8996 eep_config->adapter_info[4] = 0;
8997 /* Indicate EEPROM-less board. */
8998 eep_config->adapter_info[5] = 0xBB;
8999 } else {
9000 ASC_PRINT
9001 ("AscInitFromEEP: EEPROM checksum error; Will try to re-write EEPROM.\n");
9002 write_eep = 1;
9003 warn_code |= ASC_WARN_EEPROM_CHKSUM;
9004 }
9005 }
9006 asc_dvc->cfg->sdtr_enable = eep_config->init_sdtr;
9007 asc_dvc->cfg->disc_enable = eep_config->disc_enable;
9008 asc_dvc->cfg->cmd_qng_enabled = eep_config->use_cmd_qng;
Matthew Wilcox51219352007-10-02 21:55:22 -04009009 asc_dvc->start_motor = eep_config->start_motor;
9010 asc_dvc->dvc_cntl = eep_config->cntl;
9011 asc_dvc->no_scam = eep_config->no_scam;
9012 asc_dvc->cfg->adapter_info[0] = eep_config->adapter_info[0];
9013 asc_dvc->cfg->adapter_info[1] = eep_config->adapter_info[1];
9014 asc_dvc->cfg->adapter_info[2] = eep_config->adapter_info[2];
9015 asc_dvc->cfg->adapter_info[3] = eep_config->adapter_info[3];
9016 asc_dvc->cfg->adapter_info[4] = eep_config->adapter_info[4];
9017 asc_dvc->cfg->adapter_info[5] = eep_config->adapter_info[5];
9018 if (!AscTestExternalLram(asc_dvc)) {
9019 if (((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) ==
9020 ASC_IS_PCI_ULTRA)) {
9021 eep_config->max_total_qng =
9022 ASC_MAX_PCI_ULTRA_INRAM_TOTAL_QNG;
9023 eep_config->max_tag_qng =
9024 ASC_MAX_PCI_ULTRA_INRAM_TAG_QNG;
9025 } else {
9026 eep_config->cfg_msw |= 0x0800;
9027 cfg_msw |= 0x0800;
9028 AscSetChipCfgMsw(iop_base, cfg_msw);
9029 eep_config->max_total_qng = ASC_MAX_PCI_INRAM_TOTAL_QNG;
9030 eep_config->max_tag_qng = ASC_MAX_INRAM_TAG_QNG;
9031 }
9032 } else {
9033 }
9034 if (eep_config->max_total_qng < ASC_MIN_TOTAL_QNG) {
9035 eep_config->max_total_qng = ASC_MIN_TOTAL_QNG;
9036 }
9037 if (eep_config->max_total_qng > ASC_MAX_TOTAL_QNG) {
9038 eep_config->max_total_qng = ASC_MAX_TOTAL_QNG;
9039 }
9040 if (eep_config->max_tag_qng > eep_config->max_total_qng) {
9041 eep_config->max_tag_qng = eep_config->max_total_qng;
9042 }
9043 if (eep_config->max_tag_qng < ASC_MIN_TAG_Q_PER_DVC) {
9044 eep_config->max_tag_qng = ASC_MIN_TAG_Q_PER_DVC;
9045 }
9046 asc_dvc->max_total_qng = eep_config->max_total_qng;
9047 if ((eep_config->use_cmd_qng & eep_config->disc_enable) !=
9048 eep_config->use_cmd_qng) {
9049 eep_config->disc_enable = eep_config->use_cmd_qng;
9050 warn_code |= ASC_WARN_CMD_QNG_CONFLICT;
9051 }
Matthew Wilcox51219352007-10-02 21:55:22 -04009052 ASC_EEP_SET_CHIP_ID(eep_config,
9053 ASC_EEP_GET_CHIP_ID(eep_config) & ASC_MAX_TID);
9054 asc_dvc->cfg->chip_scsi_id = ASC_EEP_GET_CHIP_ID(eep_config);
9055 if (((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) == ASC_IS_PCI_ULTRA) &&
9056 !(asc_dvc->dvc_cntl & ASC_CNTL_SDTR_ENABLE_ULTRA)) {
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04009057 asc_dvc->min_sdtr_index = ASC_SDTR_ULTRA_PCI_10MB_INDEX;
Matthew Wilcox51219352007-10-02 21:55:22 -04009058 }
9059
9060 for (i = 0; i <= ASC_MAX_TID; i++) {
9061 asc_dvc->dos_int13_table[i] = eep_config->dos_int13_table[i];
9062 asc_dvc->cfg->max_tag_qng[i] = eep_config->max_tag_qng;
9063 asc_dvc->cfg->sdtr_period_offset[i] =
9064 (uchar)(ASC_DEF_SDTR_OFFSET |
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04009065 (asc_dvc->min_sdtr_index << 4));
Matthew Wilcox51219352007-10-02 21:55:22 -04009066 }
9067 eep_config->cfg_msw = AscGetChipCfgMsw(iop_base);
9068 if (write_eep) {
9069 if ((i = AscSetEEPConfig(iop_base, eep_config,
9070 asc_dvc->bus_type)) != 0) {
9071 ASC_PRINT1
9072 ("AscInitFromEEP: Failed to re-write EEPROM with %d errors.\n",
9073 i);
9074 } else {
9075 ASC_PRINT
9076 ("AscInitFromEEP: Successfully re-wrote EEPROM.\n");
9077 }
9078 }
9079 return (warn_code);
9080}
9081
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009082static int AscInitGetConfig(struct Scsi_Host *shost)
Matthew Wilcox51219352007-10-02 21:55:22 -04009083{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009084 struct asc_board *board = shost_priv(shost);
9085 ASC_DVC_VAR *asc_dvc = &board->dvc_var.asc_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04009086 unsigned short warn_code = 0;
9087
9088 asc_dvc->init_state = ASC_INIT_STATE_BEG_GET_CFG;
9089 if (asc_dvc->err_code != 0)
9090 return asc_dvc->err_code;
9091
9092 if (AscFindSignature(asc_dvc->iop_base)) {
Hannes Reineckef33134e2015-04-24 13:18:31 +02009093 AscInitAscDvcVar(asc_dvc);
9094 warn_code = AscInitFromEEP(asc_dvc);
Matthew Wilcox51219352007-10-02 21:55:22 -04009095 asc_dvc->init_state |= ASC_INIT_STATE_END_GET_CFG;
9096 if (asc_dvc->scsi_reset_wait > ASC_MAX_SCSI_RESET_WAIT)
9097 asc_dvc->scsi_reset_wait = ASC_MAX_SCSI_RESET_WAIT;
9098 } else {
9099 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
9100 }
9101
9102 switch (warn_code) {
9103 case 0: /* No error */
9104 break;
9105 case ASC_WARN_IO_PORT_ROTATE:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009106 shost_printk(KERN_WARNING, shost, "I/O port address "
9107 "modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009108 break;
9109 case ASC_WARN_AUTO_CONFIG:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009110 shost_printk(KERN_WARNING, shost, "I/O port increment switch "
9111 "enabled\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009112 break;
9113 case ASC_WARN_EEPROM_CHKSUM:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009114 shost_printk(KERN_WARNING, shost, "EEPROM checksum error\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009115 break;
9116 case ASC_WARN_IRQ_MODIFIED:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009117 shost_printk(KERN_WARNING, shost, "IRQ modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009118 break;
9119 case ASC_WARN_CMD_QNG_CONFLICT:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009120 shost_printk(KERN_WARNING, shost, "tag queuing enabled w/o "
9121 "disconnects\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009122 break;
9123 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009124 shost_printk(KERN_WARNING, shost, "unknown warning: 0x%x\n",
9125 warn_code);
Matthew Wilcox51219352007-10-02 21:55:22 -04009126 break;
9127 }
9128
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009129 if (asc_dvc->err_code != 0)
9130 shost_printk(KERN_ERR, shost, "error 0x%x at init_state "
9131 "0x%x\n", asc_dvc->err_code, asc_dvc->init_state);
Matthew Wilcox51219352007-10-02 21:55:22 -04009132
9133 return asc_dvc->err_code;
9134}
9135
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009136static int AscInitSetConfig(struct pci_dev *pdev, struct Scsi_Host *shost)
Matthew Wilcox51219352007-10-02 21:55:22 -04009137{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009138 struct asc_board *board = shost_priv(shost);
9139 ASC_DVC_VAR *asc_dvc = &board->dvc_var.asc_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04009140 PortAddr iop_base = asc_dvc->iop_base;
9141 unsigned short cfg_msw;
9142 unsigned short warn_code = 0;
9143
9144 asc_dvc->init_state |= ASC_INIT_STATE_BEG_SET_CFG;
9145 if (asc_dvc->err_code != 0)
9146 return asc_dvc->err_code;
9147 if (!AscFindSignature(asc_dvc->iop_base)) {
9148 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
9149 return asc_dvc->err_code;
9150 }
9151
9152 cfg_msw = AscGetChipCfgMsw(iop_base);
9153 if ((cfg_msw & ASC_CFG_MSW_CLR_MASK) != 0) {
9154 cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
9155 warn_code |= ASC_WARN_CFG_MSW_RECOVER;
9156 AscSetChipCfgMsw(iop_base, cfg_msw);
9157 }
9158 if ((asc_dvc->cfg->cmd_qng_enabled & asc_dvc->cfg->disc_enable) !=
9159 asc_dvc->cfg->cmd_qng_enabled) {
9160 asc_dvc->cfg->disc_enable = asc_dvc->cfg->cmd_qng_enabled;
9161 warn_code |= ASC_WARN_CMD_QNG_CONFLICT;
9162 }
9163 if (AscGetChipStatus(iop_base) & CSW_AUTO_CONFIG) {
9164 warn_code |= ASC_WARN_AUTO_CONFIG;
9165 }
Matthew Wilcox51219352007-10-02 21:55:22 -04009166#ifdef CONFIG_PCI
9167 if (asc_dvc->bus_type & ASC_IS_PCI) {
9168 cfg_msw &= 0xFFC0;
9169 AscSetChipCfgMsw(iop_base, cfg_msw);
9170 if ((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) == ASC_IS_PCI_ULTRA) {
9171 } else {
9172 if ((pdev->device == PCI_DEVICE_ID_ASP_1200A) ||
9173 (pdev->device == PCI_DEVICE_ID_ASP_ABP940)) {
9174 asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_IF_NOT_DWB;
9175 asc_dvc->bug_fix_cntl |=
9176 ASC_BUG_FIX_ASYN_USE_SYN;
9177 }
9178 }
9179 } else
9180#endif /* CONFIG_PCI */
Matthew Wilcox51219352007-10-02 21:55:22 -04009181 if (AscSetChipScsiID(iop_base, asc_dvc->cfg->chip_scsi_id) !=
9182 asc_dvc->cfg->chip_scsi_id) {
9183 asc_dvc->err_code |= ASC_IERR_SET_SCSI_ID;
9184 }
Matthew Wilcox51219352007-10-02 21:55:22 -04009185
9186 asc_dvc->init_state |= ASC_INIT_STATE_END_SET_CFG;
9187
9188 switch (warn_code) {
9189 case 0: /* No error. */
9190 break;
9191 case ASC_WARN_IO_PORT_ROTATE:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009192 shost_printk(KERN_WARNING, shost, "I/O port address "
9193 "modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009194 break;
9195 case ASC_WARN_AUTO_CONFIG:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009196 shost_printk(KERN_WARNING, shost, "I/O port increment switch "
9197 "enabled\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009198 break;
9199 case ASC_WARN_EEPROM_CHKSUM:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009200 shost_printk(KERN_WARNING, shost, "EEPROM checksum error\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009201 break;
9202 case ASC_WARN_IRQ_MODIFIED:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009203 shost_printk(KERN_WARNING, shost, "IRQ modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009204 break;
9205 case ASC_WARN_CMD_QNG_CONFLICT:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009206 shost_printk(KERN_WARNING, shost, "tag queuing w/o "
9207 "disconnects\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009208 break;
9209 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009210 shost_printk(KERN_WARNING, shost, "unknown warning: 0x%x\n",
9211 warn_code);
Matthew Wilcox51219352007-10-02 21:55:22 -04009212 break;
9213 }
9214
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009215 if (asc_dvc->err_code != 0)
9216 shost_printk(KERN_ERR, shost, "error 0x%x at init_state "
9217 "0x%x\n", asc_dvc->err_code, asc_dvc->init_state);
Matthew Wilcox51219352007-10-02 21:55:22 -04009218
9219 return asc_dvc->err_code;
9220}
9221
9222/*
9223 * EEPROM Configuration.
9224 *
9225 * All drivers should use this structure to set the default EEPROM
9226 * configuration. The BIOS now uses this structure when it is built.
9227 * Additional structure information can be found in a_condor.h where
9228 * the structure is defined.
9229 *
9230 * The *_Field_IsChar structs are needed to correct for endianness.
9231 * These values are read from the board 16 bits at a time directly
9232 * into the structs. Because some fields are char, the values will be
9233 * in the wrong order. The *_Field_IsChar tells when to flip the
9234 * bytes. Data read and written to PCI memory is automatically swapped
9235 * on big-endian platforms so char fields read as words are actually being
9236 * unswapped on big-endian platforms.
9237 */
Johannes Thumshirn8810eac2015-06-03 09:56:42 +02009238#ifdef CONFIG_PCI
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009239static ADVEEP_3550_CONFIG Default_3550_EEPROM_Config = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009240 ADV_EEPROM_BIOS_ENABLE, /* cfg_lsw */
9241 0x0000, /* cfg_msw */
9242 0xFFFF, /* disc_enable */
9243 0xFFFF, /* wdtr_able */
9244 0xFFFF, /* sdtr_able */
9245 0xFFFF, /* start_motor */
9246 0xFFFF, /* tagqng_able */
9247 0xFFFF, /* bios_scan */
9248 0, /* scam_tolerant */
9249 7, /* adapter_scsi_id */
9250 0, /* bios_boot_delay */
9251 3, /* scsi_reset_delay */
9252 0, /* bios_id_lun */
9253 0, /* termination */
9254 0, /* reserved1 */
9255 0xFFE7, /* bios_ctrl */
9256 0xFFFF, /* ultra_able */
9257 0, /* reserved2 */
9258 ASC_DEF_MAX_HOST_QNG, /* max_host_qng */
9259 ASC_DEF_MAX_DVC_QNG, /* max_dvc_qng */
9260 0, /* dvc_cntl */
9261 0, /* bug_fix */
9262 0, /* serial_number_word1 */
9263 0, /* serial_number_word2 */
9264 0, /* serial_number_word3 */
9265 0, /* check_sum */
9266 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
9267 , /* oem_name[16] */
9268 0, /* dvc_err_code */
9269 0, /* adv_err_code */
9270 0, /* adv_err_addr */
9271 0, /* saved_dvc_err_code */
9272 0, /* saved_adv_err_code */
9273 0, /* saved_adv_err_addr */
9274 0 /* num_of_err */
9275};
9276
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009277static ADVEEP_3550_CONFIG ADVEEP_3550_Config_Field_IsChar = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009278 0, /* cfg_lsw */
9279 0, /* cfg_msw */
9280 0, /* -disc_enable */
9281 0, /* wdtr_able */
9282 0, /* sdtr_able */
9283 0, /* start_motor */
9284 0, /* tagqng_able */
9285 0, /* bios_scan */
9286 0, /* scam_tolerant */
9287 1, /* adapter_scsi_id */
9288 1, /* bios_boot_delay */
9289 1, /* scsi_reset_delay */
9290 1, /* bios_id_lun */
9291 1, /* termination */
9292 1, /* reserved1 */
9293 0, /* bios_ctrl */
9294 0, /* ultra_able */
9295 0, /* reserved2 */
9296 1, /* max_host_qng */
9297 1, /* max_dvc_qng */
9298 0, /* dvc_cntl */
9299 0, /* bug_fix */
9300 0, /* serial_number_word1 */
9301 0, /* serial_number_word2 */
9302 0, /* serial_number_word3 */
9303 0, /* check_sum */
9304 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
9305 , /* oem_name[16] */
9306 0, /* dvc_err_code */
9307 0, /* adv_err_code */
9308 0, /* adv_err_addr */
9309 0, /* saved_dvc_err_code */
9310 0, /* saved_adv_err_code */
9311 0, /* saved_adv_err_addr */
9312 0 /* num_of_err */
9313};
9314
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009315static ADVEEP_38C0800_CONFIG Default_38C0800_EEPROM_Config = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009316 ADV_EEPROM_BIOS_ENABLE, /* 00 cfg_lsw */
9317 0x0000, /* 01 cfg_msw */
9318 0xFFFF, /* 02 disc_enable */
9319 0xFFFF, /* 03 wdtr_able */
9320 0x4444, /* 04 sdtr_speed1 */
9321 0xFFFF, /* 05 start_motor */
9322 0xFFFF, /* 06 tagqng_able */
9323 0xFFFF, /* 07 bios_scan */
9324 0, /* 08 scam_tolerant */
9325 7, /* 09 adapter_scsi_id */
9326 0, /* bios_boot_delay */
9327 3, /* 10 scsi_reset_delay */
9328 0, /* bios_id_lun */
9329 0, /* 11 termination_se */
9330 0, /* termination_lvd */
9331 0xFFE7, /* 12 bios_ctrl */
9332 0x4444, /* 13 sdtr_speed2 */
9333 0x4444, /* 14 sdtr_speed3 */
9334 ASC_DEF_MAX_HOST_QNG, /* 15 max_host_qng */
9335 ASC_DEF_MAX_DVC_QNG, /* max_dvc_qng */
9336 0, /* 16 dvc_cntl */
9337 0x4444, /* 17 sdtr_speed4 */
9338 0, /* 18 serial_number_word1 */
9339 0, /* 19 serial_number_word2 */
9340 0, /* 20 serial_number_word3 */
9341 0, /* 21 check_sum */
9342 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
9343 , /* 22-29 oem_name[16] */
9344 0, /* 30 dvc_err_code */
9345 0, /* 31 adv_err_code */
9346 0, /* 32 adv_err_addr */
9347 0, /* 33 saved_dvc_err_code */
9348 0, /* 34 saved_adv_err_code */
9349 0, /* 35 saved_adv_err_addr */
9350 0, /* 36 reserved */
9351 0, /* 37 reserved */
9352 0, /* 38 reserved */
9353 0, /* 39 reserved */
9354 0, /* 40 reserved */
9355 0, /* 41 reserved */
9356 0, /* 42 reserved */
9357 0, /* 43 reserved */
9358 0, /* 44 reserved */
9359 0, /* 45 reserved */
9360 0, /* 46 reserved */
9361 0, /* 47 reserved */
9362 0, /* 48 reserved */
9363 0, /* 49 reserved */
9364 0, /* 50 reserved */
9365 0, /* 51 reserved */
9366 0, /* 52 reserved */
9367 0, /* 53 reserved */
9368 0, /* 54 reserved */
9369 0, /* 55 reserved */
9370 0, /* 56 cisptr_lsw */
9371 0, /* 57 cisprt_msw */
9372 PCI_VENDOR_ID_ASP, /* 58 subsysvid */
9373 PCI_DEVICE_ID_38C0800_REV1, /* 59 subsysid */
9374 0, /* 60 reserved */
9375 0, /* 61 reserved */
9376 0, /* 62 reserved */
9377 0 /* 63 reserved */
9378};
9379
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009380static ADVEEP_38C0800_CONFIG ADVEEP_38C0800_Config_Field_IsChar = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009381 0, /* 00 cfg_lsw */
9382 0, /* 01 cfg_msw */
9383 0, /* 02 disc_enable */
9384 0, /* 03 wdtr_able */
9385 0, /* 04 sdtr_speed1 */
9386 0, /* 05 start_motor */
9387 0, /* 06 tagqng_able */
9388 0, /* 07 bios_scan */
9389 0, /* 08 scam_tolerant */
9390 1, /* 09 adapter_scsi_id */
9391 1, /* bios_boot_delay */
9392 1, /* 10 scsi_reset_delay */
9393 1, /* bios_id_lun */
9394 1, /* 11 termination_se */
9395 1, /* termination_lvd */
9396 0, /* 12 bios_ctrl */
9397 0, /* 13 sdtr_speed2 */
9398 0, /* 14 sdtr_speed3 */
9399 1, /* 15 max_host_qng */
9400 1, /* max_dvc_qng */
9401 0, /* 16 dvc_cntl */
9402 0, /* 17 sdtr_speed4 */
9403 0, /* 18 serial_number_word1 */
9404 0, /* 19 serial_number_word2 */
9405 0, /* 20 serial_number_word3 */
9406 0, /* 21 check_sum */
9407 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
9408 , /* 22-29 oem_name[16] */
9409 0, /* 30 dvc_err_code */
9410 0, /* 31 adv_err_code */
9411 0, /* 32 adv_err_addr */
9412 0, /* 33 saved_dvc_err_code */
9413 0, /* 34 saved_adv_err_code */
9414 0, /* 35 saved_adv_err_addr */
9415 0, /* 36 reserved */
9416 0, /* 37 reserved */
9417 0, /* 38 reserved */
9418 0, /* 39 reserved */
9419 0, /* 40 reserved */
9420 0, /* 41 reserved */
9421 0, /* 42 reserved */
9422 0, /* 43 reserved */
9423 0, /* 44 reserved */
9424 0, /* 45 reserved */
9425 0, /* 46 reserved */
9426 0, /* 47 reserved */
9427 0, /* 48 reserved */
9428 0, /* 49 reserved */
9429 0, /* 50 reserved */
9430 0, /* 51 reserved */
9431 0, /* 52 reserved */
9432 0, /* 53 reserved */
9433 0, /* 54 reserved */
9434 0, /* 55 reserved */
9435 0, /* 56 cisptr_lsw */
9436 0, /* 57 cisprt_msw */
9437 0, /* 58 subsysvid */
9438 0, /* 59 subsysid */
9439 0, /* 60 reserved */
9440 0, /* 61 reserved */
9441 0, /* 62 reserved */
9442 0 /* 63 reserved */
9443};
9444
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009445static ADVEEP_38C1600_CONFIG Default_38C1600_EEPROM_Config = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009446 ADV_EEPROM_BIOS_ENABLE, /* 00 cfg_lsw */
9447 0x0000, /* 01 cfg_msw */
9448 0xFFFF, /* 02 disc_enable */
9449 0xFFFF, /* 03 wdtr_able */
9450 0x5555, /* 04 sdtr_speed1 */
9451 0xFFFF, /* 05 start_motor */
9452 0xFFFF, /* 06 tagqng_able */
9453 0xFFFF, /* 07 bios_scan */
9454 0, /* 08 scam_tolerant */
9455 7, /* 09 adapter_scsi_id */
9456 0, /* bios_boot_delay */
9457 3, /* 10 scsi_reset_delay */
9458 0, /* bios_id_lun */
9459 0, /* 11 termination_se */
9460 0, /* termination_lvd */
9461 0xFFE7, /* 12 bios_ctrl */
9462 0x5555, /* 13 sdtr_speed2 */
9463 0x5555, /* 14 sdtr_speed3 */
9464 ASC_DEF_MAX_HOST_QNG, /* 15 max_host_qng */
9465 ASC_DEF_MAX_DVC_QNG, /* max_dvc_qng */
9466 0, /* 16 dvc_cntl */
9467 0x5555, /* 17 sdtr_speed4 */
9468 0, /* 18 serial_number_word1 */
9469 0, /* 19 serial_number_word2 */
9470 0, /* 20 serial_number_word3 */
9471 0, /* 21 check_sum */
9472 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
9473 , /* 22-29 oem_name[16] */
9474 0, /* 30 dvc_err_code */
9475 0, /* 31 adv_err_code */
9476 0, /* 32 adv_err_addr */
9477 0, /* 33 saved_dvc_err_code */
9478 0, /* 34 saved_adv_err_code */
9479 0, /* 35 saved_adv_err_addr */
9480 0, /* 36 reserved */
9481 0, /* 37 reserved */
9482 0, /* 38 reserved */
9483 0, /* 39 reserved */
9484 0, /* 40 reserved */
9485 0, /* 41 reserved */
9486 0, /* 42 reserved */
9487 0, /* 43 reserved */
9488 0, /* 44 reserved */
9489 0, /* 45 reserved */
9490 0, /* 46 reserved */
9491 0, /* 47 reserved */
9492 0, /* 48 reserved */
9493 0, /* 49 reserved */
9494 0, /* 50 reserved */
9495 0, /* 51 reserved */
9496 0, /* 52 reserved */
9497 0, /* 53 reserved */
9498 0, /* 54 reserved */
9499 0, /* 55 reserved */
9500 0, /* 56 cisptr_lsw */
9501 0, /* 57 cisprt_msw */
9502 PCI_VENDOR_ID_ASP, /* 58 subsysvid */
9503 PCI_DEVICE_ID_38C1600_REV1, /* 59 subsysid */
9504 0, /* 60 reserved */
9505 0, /* 61 reserved */
9506 0, /* 62 reserved */
9507 0 /* 63 reserved */
9508};
9509
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009510static ADVEEP_38C1600_CONFIG ADVEEP_38C1600_Config_Field_IsChar = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009511 0, /* 00 cfg_lsw */
9512 0, /* 01 cfg_msw */
9513 0, /* 02 disc_enable */
9514 0, /* 03 wdtr_able */
9515 0, /* 04 sdtr_speed1 */
9516 0, /* 05 start_motor */
9517 0, /* 06 tagqng_able */
9518 0, /* 07 bios_scan */
9519 0, /* 08 scam_tolerant */
9520 1, /* 09 adapter_scsi_id */
9521 1, /* bios_boot_delay */
9522 1, /* 10 scsi_reset_delay */
9523 1, /* bios_id_lun */
9524 1, /* 11 termination_se */
9525 1, /* termination_lvd */
9526 0, /* 12 bios_ctrl */
9527 0, /* 13 sdtr_speed2 */
9528 0, /* 14 sdtr_speed3 */
9529 1, /* 15 max_host_qng */
9530 1, /* max_dvc_qng */
9531 0, /* 16 dvc_cntl */
9532 0, /* 17 sdtr_speed4 */
9533 0, /* 18 serial_number_word1 */
9534 0, /* 19 serial_number_word2 */
9535 0, /* 20 serial_number_word3 */
9536 0, /* 21 check_sum */
9537 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
9538 , /* 22-29 oem_name[16] */
9539 0, /* 30 dvc_err_code */
9540 0, /* 31 adv_err_code */
9541 0, /* 32 adv_err_addr */
9542 0, /* 33 saved_dvc_err_code */
9543 0, /* 34 saved_adv_err_code */
9544 0, /* 35 saved_adv_err_addr */
9545 0, /* 36 reserved */
9546 0, /* 37 reserved */
9547 0, /* 38 reserved */
9548 0, /* 39 reserved */
9549 0, /* 40 reserved */
9550 0, /* 41 reserved */
9551 0, /* 42 reserved */
9552 0, /* 43 reserved */
9553 0, /* 44 reserved */
9554 0, /* 45 reserved */
9555 0, /* 46 reserved */
9556 0, /* 47 reserved */
9557 0, /* 48 reserved */
9558 0, /* 49 reserved */
9559 0, /* 50 reserved */
9560 0, /* 51 reserved */
9561 0, /* 52 reserved */
9562 0, /* 53 reserved */
9563 0, /* 54 reserved */
9564 0, /* 55 reserved */
9565 0, /* 56 cisptr_lsw */
9566 0, /* 57 cisprt_msw */
9567 0, /* 58 subsysvid */
9568 0, /* 59 subsysid */
9569 0, /* 60 reserved */
9570 0, /* 61 reserved */
9571 0, /* 62 reserved */
9572 0 /* 63 reserved */
9573};
9574
Matthew Wilcox51219352007-10-02 21:55:22 -04009575/*
9576 * Wait for EEPROM command to complete
9577 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009578static void AdvWaitEEPCmd(AdvPortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04009579{
9580 int eep_delay_ms;
9581
9582 for (eep_delay_ms = 0; eep_delay_ms < ADV_EEP_DELAY_MS; eep_delay_ms++) {
9583 if (AdvReadWordRegister(iop_base, IOPW_EE_CMD) &
9584 ASC_EEP_CMD_DONE) {
9585 break;
9586 }
9587 mdelay(1);
9588 }
9589 if ((AdvReadWordRegister(iop_base, IOPW_EE_CMD) & ASC_EEP_CMD_DONE) ==
9590 0)
9591 BUG();
9592}
9593
9594/*
9595 * Read the EEPROM from specified location
9596 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009597static ushort AdvReadEEPWord(AdvPortAddr iop_base, int eep_word_addr)
Matthew Wilcox51219352007-10-02 21:55:22 -04009598{
9599 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
9600 ASC_EEP_CMD_READ | eep_word_addr);
9601 AdvWaitEEPCmd(iop_base);
9602 return AdvReadWordRegister(iop_base, IOPW_EE_DATA);
9603}
9604
9605/*
9606 * Write the EEPROM from 'cfg_buf'.
9607 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009608static void AdvSet3550EEPConfig(AdvPortAddr iop_base,
9609 ADVEEP_3550_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -04009610{
9611 ushort *wbuf;
9612 ushort addr, chksum;
9613 ushort *charfields;
9614
9615 wbuf = (ushort *)cfg_buf;
9616 charfields = (ushort *)&ADVEEP_3550_Config_Field_IsChar;
9617 chksum = 0;
9618
9619 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
9620 AdvWaitEEPCmd(iop_base);
9621
9622 /*
9623 * Write EEPROM from word 0 to word 20.
9624 */
9625 for (addr = ADV_EEP_DVC_CFG_BEGIN;
9626 addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
9627 ushort word;
9628
9629 if (*charfields++) {
9630 word = cpu_to_le16(*wbuf);
9631 } else {
9632 word = *wbuf;
9633 }
9634 chksum += *wbuf; /* Checksum is calculated from word values. */
9635 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
9636 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
9637 ASC_EEP_CMD_WRITE | addr);
9638 AdvWaitEEPCmd(iop_base);
9639 mdelay(ADV_EEP_DELAY_MS);
9640 }
9641
9642 /*
9643 * Write EEPROM checksum at word 21.
9644 */
9645 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
9646 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
9647 AdvWaitEEPCmd(iop_base);
9648 wbuf++;
9649 charfields++;
9650
9651 /*
9652 * Write EEPROM OEM name at words 22 to 29.
9653 */
9654 for (addr = ADV_EEP_DVC_CTL_BEGIN;
9655 addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
9656 ushort word;
9657
9658 if (*charfields++) {
9659 word = cpu_to_le16(*wbuf);
9660 } else {
9661 word = *wbuf;
9662 }
9663 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
9664 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
9665 ASC_EEP_CMD_WRITE | addr);
9666 AdvWaitEEPCmd(iop_base);
9667 }
9668 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
9669 AdvWaitEEPCmd(iop_base);
9670}
9671
9672/*
9673 * Write the EEPROM from 'cfg_buf'.
9674 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009675static void AdvSet38C0800EEPConfig(AdvPortAddr iop_base,
9676 ADVEEP_38C0800_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -04009677{
9678 ushort *wbuf;
9679 ushort *charfields;
9680 ushort addr, chksum;
9681
9682 wbuf = (ushort *)cfg_buf;
9683 charfields = (ushort *)&ADVEEP_38C0800_Config_Field_IsChar;
9684 chksum = 0;
9685
9686 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
9687 AdvWaitEEPCmd(iop_base);
9688
9689 /*
9690 * Write EEPROM from word 0 to word 20.
9691 */
9692 for (addr = ADV_EEP_DVC_CFG_BEGIN;
9693 addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
9694 ushort word;
9695
9696 if (*charfields++) {
9697 word = cpu_to_le16(*wbuf);
9698 } else {
9699 word = *wbuf;
9700 }
9701 chksum += *wbuf; /* Checksum is calculated from word values. */
9702 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
9703 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
9704 ASC_EEP_CMD_WRITE | addr);
9705 AdvWaitEEPCmd(iop_base);
9706 mdelay(ADV_EEP_DELAY_MS);
9707 }
9708
9709 /*
9710 * Write EEPROM checksum at word 21.
9711 */
9712 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
9713 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
9714 AdvWaitEEPCmd(iop_base);
9715 wbuf++;
9716 charfields++;
9717
9718 /*
9719 * Write EEPROM OEM name at words 22 to 29.
9720 */
9721 for (addr = ADV_EEP_DVC_CTL_BEGIN;
9722 addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
9723 ushort word;
9724
9725 if (*charfields++) {
9726 word = cpu_to_le16(*wbuf);
9727 } else {
9728 word = *wbuf;
9729 }
9730 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
9731 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
9732 ASC_EEP_CMD_WRITE | addr);
9733 AdvWaitEEPCmd(iop_base);
9734 }
9735 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
9736 AdvWaitEEPCmd(iop_base);
9737}
9738
9739/*
9740 * Write the EEPROM from 'cfg_buf'.
9741 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009742static void AdvSet38C1600EEPConfig(AdvPortAddr iop_base,
9743 ADVEEP_38C1600_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -04009744{
9745 ushort *wbuf;
9746 ushort *charfields;
9747 ushort addr, chksum;
9748
9749 wbuf = (ushort *)cfg_buf;
9750 charfields = (ushort *)&ADVEEP_38C1600_Config_Field_IsChar;
9751 chksum = 0;
9752
9753 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
9754 AdvWaitEEPCmd(iop_base);
9755
9756 /*
9757 * Write EEPROM from word 0 to word 20.
9758 */
9759 for (addr = ADV_EEP_DVC_CFG_BEGIN;
9760 addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
9761 ushort word;
9762
9763 if (*charfields++) {
9764 word = cpu_to_le16(*wbuf);
9765 } else {
9766 word = *wbuf;
9767 }
9768 chksum += *wbuf; /* Checksum is calculated from word values. */
9769 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
9770 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
9771 ASC_EEP_CMD_WRITE | addr);
9772 AdvWaitEEPCmd(iop_base);
9773 mdelay(ADV_EEP_DELAY_MS);
9774 }
9775
9776 /*
9777 * Write EEPROM checksum at word 21.
9778 */
9779 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
9780 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
9781 AdvWaitEEPCmd(iop_base);
9782 wbuf++;
9783 charfields++;
9784
9785 /*
9786 * Write EEPROM OEM name at words 22 to 29.
9787 */
9788 for (addr = ADV_EEP_DVC_CTL_BEGIN;
9789 addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
9790 ushort word;
9791
9792 if (*charfields++) {
9793 word = cpu_to_le16(*wbuf);
9794 } else {
9795 word = *wbuf;
9796 }
9797 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
9798 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
9799 ASC_EEP_CMD_WRITE | addr);
9800 AdvWaitEEPCmd(iop_base);
9801 }
9802 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
9803 AdvWaitEEPCmd(iop_base);
9804}
9805
9806/*
9807 * Read EEPROM configuration into the specified buffer.
9808 *
9809 * Return a checksum based on the EEPROM configuration read.
9810 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009811static ushort AdvGet3550EEPConfig(AdvPortAddr iop_base,
9812 ADVEEP_3550_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -04009813{
9814 ushort wval, chksum;
9815 ushort *wbuf;
9816 int eep_addr;
9817 ushort *charfields;
9818
9819 charfields = (ushort *)&ADVEEP_3550_Config_Field_IsChar;
9820 wbuf = (ushort *)cfg_buf;
9821 chksum = 0;
9822
9823 for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
9824 eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
9825 wval = AdvReadEEPWord(iop_base, eep_addr);
9826 chksum += wval; /* Checksum is calculated from word values. */
9827 if (*charfields++) {
9828 *wbuf = le16_to_cpu(wval);
9829 } else {
9830 *wbuf = wval;
9831 }
9832 }
9833 /* Read checksum word. */
9834 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
9835 wbuf++;
9836 charfields++;
9837
9838 /* Read rest of EEPROM not covered by the checksum. */
9839 for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
9840 eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
9841 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
9842 if (*charfields++) {
9843 *wbuf = le16_to_cpu(*wbuf);
9844 }
9845 }
9846 return chksum;
9847}
9848
9849/*
9850 * Read EEPROM configuration into the specified buffer.
9851 *
9852 * Return a checksum based on the EEPROM configuration read.
9853 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009854static ushort AdvGet38C0800EEPConfig(AdvPortAddr iop_base,
9855 ADVEEP_38C0800_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -04009856{
9857 ushort wval, chksum;
9858 ushort *wbuf;
9859 int eep_addr;
9860 ushort *charfields;
9861
9862 charfields = (ushort *)&ADVEEP_38C0800_Config_Field_IsChar;
9863 wbuf = (ushort *)cfg_buf;
9864 chksum = 0;
9865
9866 for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
9867 eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
9868 wval = AdvReadEEPWord(iop_base, eep_addr);
9869 chksum += wval; /* Checksum is calculated from word values. */
9870 if (*charfields++) {
9871 *wbuf = le16_to_cpu(wval);
9872 } else {
9873 *wbuf = wval;
9874 }
9875 }
9876 /* Read checksum word. */
9877 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
9878 wbuf++;
9879 charfields++;
9880
9881 /* Read rest of EEPROM not covered by the checksum. */
9882 for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
9883 eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
9884 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
9885 if (*charfields++) {
9886 *wbuf = le16_to_cpu(*wbuf);
9887 }
9888 }
9889 return chksum;
9890}
9891
9892/*
9893 * Read EEPROM configuration into the specified buffer.
9894 *
9895 * Return a checksum based on the EEPROM configuration read.
9896 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009897static ushort AdvGet38C1600EEPConfig(AdvPortAddr iop_base,
9898 ADVEEP_38C1600_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -04009899{
9900 ushort wval, chksum;
9901 ushort *wbuf;
9902 int eep_addr;
9903 ushort *charfields;
9904
9905 charfields = (ushort *)&ADVEEP_38C1600_Config_Field_IsChar;
9906 wbuf = (ushort *)cfg_buf;
9907 chksum = 0;
9908
9909 for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
9910 eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
9911 wval = AdvReadEEPWord(iop_base, eep_addr);
9912 chksum += wval; /* Checksum is calculated from word values. */
9913 if (*charfields++) {
9914 *wbuf = le16_to_cpu(wval);
9915 } else {
9916 *wbuf = wval;
9917 }
9918 }
9919 /* Read checksum word. */
9920 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
9921 wbuf++;
9922 charfields++;
9923
9924 /* Read rest of EEPROM not covered by the checksum. */
9925 for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
9926 eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
9927 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
9928 if (*charfields++) {
9929 *wbuf = le16_to_cpu(*wbuf);
9930 }
9931 }
9932 return chksum;
9933}
9934
9935/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07009936 * Read the board's EEPROM configuration. Set fields in ADV_DVC_VAR and
9937 * ADV_DVC_CFG based on the EEPROM settings. The chip is stopped while
9938 * all of this is done.
9939 *
9940 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
9941 *
9942 * For a non-fatal error return a warning code. If there are no warnings
9943 * then 0 is returned.
9944 *
9945 * Note: Chip is stopped on entry.
9946 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009947static int AdvInitFrom3550EEP(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009948{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009949 AdvPortAddr iop_base;
9950 ushort warn_code;
9951 ADVEEP_3550_CONFIG eep_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009952
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009953 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009954
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009955 warn_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009956
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009957 /*
9958 * Read the board's EEPROM configuration.
9959 *
9960 * Set default values if a bad checksum is found.
9961 */
9962 if (AdvGet3550EEPConfig(iop_base, &eep_config) != eep_config.check_sum) {
9963 warn_code |= ASC_WARN_EEPROM_CHKSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009964
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009965 /*
9966 * Set EEPROM default values.
9967 */
Matthew Wilcoxd68f4322007-07-26 11:58:12 -04009968 memcpy(&eep_config, &Default_3550_EEPROM_Config,
9969 sizeof(ADVEEP_3550_CONFIG));
Linus Torvalds1da177e2005-04-16 15:20:36 -07009970
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009971 /*
Matthew Wilcoxd68f4322007-07-26 11:58:12 -04009972 * Assume the 6 byte board serial number that was read from
9973 * EEPROM is correct even if the EEPROM checksum failed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009974 */
9975 eep_config.serial_number_word3 =
9976 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009977
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009978 eep_config.serial_number_word2 =
9979 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009980
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009981 eep_config.serial_number_word1 =
9982 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009983
Matthew Wilcox27c868c2007-07-26 10:56:23 -04009984 AdvSet3550EEPConfig(iop_base, &eep_config);
9985 }
9986 /*
9987 * Set ASC_DVC_VAR and ASC_DVC_CFG variables from the
9988 * EEPROM configuration that was read.
9989 *
9990 * This is the mapping of EEPROM fields to Adv Library fields.
9991 */
9992 asc_dvc->wdtr_able = eep_config.wdtr_able;
9993 asc_dvc->sdtr_able = eep_config.sdtr_able;
9994 asc_dvc->ultra_able = eep_config.ultra_able;
9995 asc_dvc->tagqng_able = eep_config.tagqng_able;
9996 asc_dvc->cfg->disc_enable = eep_config.disc_enable;
9997 asc_dvc->max_host_qng = eep_config.max_host_qng;
9998 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
9999 asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ADV_MAX_TID);
10000 asc_dvc->start_motor = eep_config.start_motor;
10001 asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
10002 asc_dvc->bios_ctrl = eep_config.bios_ctrl;
10003 asc_dvc->no_scam = eep_config.scam_tolerant;
10004 asc_dvc->cfg->serial1 = eep_config.serial_number_word1;
10005 asc_dvc->cfg->serial2 = eep_config.serial_number_word2;
10006 asc_dvc->cfg->serial3 = eep_config.serial_number_word3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010007
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010008 /*
10009 * Set the host maximum queuing (max. 253, min. 16) and the per device
10010 * maximum queuing (max. 63, min. 4).
10011 */
10012 if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
10013 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10014 } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
10015 /* If the value is zero, assume it is uninitialized. */
10016 if (eep_config.max_host_qng == 0) {
10017 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10018 } else {
10019 eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
10020 }
10021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010022
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010023 if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
10024 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10025 } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
10026 /* If the value is zero, assume it is uninitialized. */
10027 if (eep_config.max_dvc_qng == 0) {
10028 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10029 } else {
10030 eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
10031 }
10032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010033
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010034 /*
10035 * If 'max_dvc_qng' is greater than 'max_host_qng', then
10036 * set 'max_dvc_qng' to 'max_host_qng'.
10037 */
10038 if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
10039 eep_config.max_dvc_qng = eep_config.max_host_qng;
10040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010041
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010042 /*
10043 * Set ADV_DVC_VAR 'max_host_qng' and ADV_DVC_VAR 'max_dvc_qng'
10044 * values based on possibly adjusted EEPROM values.
10045 */
10046 asc_dvc->max_host_qng = eep_config.max_host_qng;
10047 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010048
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010049 /*
10050 * If the EEPROM 'termination' field is set to automatic (0), then set
10051 * the ADV_DVC_CFG 'termination' field to automatic also.
10052 *
10053 * If the termination is specified with a non-zero 'termination'
10054 * value check that a legal value is set and set the ADV_DVC_CFG
10055 * 'termination' field appropriately.
10056 */
10057 if (eep_config.termination == 0) {
10058 asc_dvc->cfg->termination = 0; /* auto termination */
10059 } else {
10060 /* Enable manual control with low off / high off. */
10061 if (eep_config.termination == 1) {
10062 asc_dvc->cfg->termination = TERM_CTL_SEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010063
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010064 /* Enable manual control with low off / high on. */
10065 } else if (eep_config.termination == 2) {
10066 asc_dvc->cfg->termination = TERM_CTL_SEL | TERM_CTL_H;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010067
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010068 /* Enable manual control with low on / high on. */
10069 } else if (eep_config.termination == 3) {
10070 asc_dvc->cfg->termination =
10071 TERM_CTL_SEL | TERM_CTL_H | TERM_CTL_L;
10072 } else {
10073 /*
10074 * The EEPROM 'termination' field contains a bad value. Use
10075 * automatic termination instead.
10076 */
10077 asc_dvc->cfg->termination = 0;
10078 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10079 }
10080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010081
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010082 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010083}
10084
10085/*
10086 * Read the board's EEPROM configuration. Set fields in ADV_DVC_VAR and
10087 * ADV_DVC_CFG based on the EEPROM settings. The chip is stopped while
10088 * all of this is done.
10089 *
10090 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
10091 *
10092 * For a non-fatal error return a warning code. If there are no warnings
10093 * then 0 is returned.
10094 *
10095 * Note: Chip is stopped on entry.
10096 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010097static int AdvInitFrom38C0800EEP(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010098{
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010099 AdvPortAddr iop_base;
10100 ushort warn_code;
10101 ADVEEP_38C0800_CONFIG eep_config;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010102 uchar tid, termination;
10103 ushort sdtr_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010104
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010105 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010106
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010107 warn_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010108
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010109 /*
10110 * Read the board's EEPROM configuration.
10111 *
10112 * Set default values if a bad checksum is found.
10113 */
10114 if (AdvGet38C0800EEPConfig(iop_base, &eep_config) !=
10115 eep_config.check_sum) {
10116 warn_code |= ASC_WARN_EEPROM_CHKSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010117
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010118 /*
10119 * Set EEPROM default values.
10120 */
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010121 memcpy(&eep_config, &Default_38C0800_EEPROM_Config,
10122 sizeof(ADVEEP_38C0800_CONFIG));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010123
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010124 /*
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010125 * Assume the 6 byte board serial number that was read from
10126 * EEPROM is correct even if the EEPROM checksum failed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010127 */
10128 eep_config.serial_number_word3 =
10129 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010130
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010131 eep_config.serial_number_word2 =
10132 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010133
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010134 eep_config.serial_number_word1 =
10135 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010137 AdvSet38C0800EEPConfig(iop_base, &eep_config);
10138 }
10139 /*
10140 * Set ADV_DVC_VAR and ADV_DVC_CFG variables from the
10141 * EEPROM configuration that was read.
10142 *
10143 * This is the mapping of EEPROM fields to Adv Library fields.
10144 */
10145 asc_dvc->wdtr_able = eep_config.wdtr_able;
10146 asc_dvc->sdtr_speed1 = eep_config.sdtr_speed1;
10147 asc_dvc->sdtr_speed2 = eep_config.sdtr_speed2;
10148 asc_dvc->sdtr_speed3 = eep_config.sdtr_speed3;
10149 asc_dvc->sdtr_speed4 = eep_config.sdtr_speed4;
10150 asc_dvc->tagqng_able = eep_config.tagqng_able;
10151 asc_dvc->cfg->disc_enable = eep_config.disc_enable;
10152 asc_dvc->max_host_qng = eep_config.max_host_qng;
10153 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
10154 asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ADV_MAX_TID);
10155 asc_dvc->start_motor = eep_config.start_motor;
10156 asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
10157 asc_dvc->bios_ctrl = eep_config.bios_ctrl;
10158 asc_dvc->no_scam = eep_config.scam_tolerant;
10159 asc_dvc->cfg->serial1 = eep_config.serial_number_word1;
10160 asc_dvc->cfg->serial2 = eep_config.serial_number_word2;
10161 asc_dvc->cfg->serial3 = eep_config.serial_number_word3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010162
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010163 /*
10164 * For every Target ID if any of its 'sdtr_speed[1234]' bits
10165 * are set, then set an 'sdtr_able' bit for it.
10166 */
10167 asc_dvc->sdtr_able = 0;
10168 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
10169 if (tid == 0) {
10170 sdtr_speed = asc_dvc->sdtr_speed1;
10171 } else if (tid == 4) {
10172 sdtr_speed = asc_dvc->sdtr_speed2;
10173 } else if (tid == 8) {
10174 sdtr_speed = asc_dvc->sdtr_speed3;
10175 } else if (tid == 12) {
10176 sdtr_speed = asc_dvc->sdtr_speed4;
10177 }
10178 if (sdtr_speed & ADV_MAX_TID) {
10179 asc_dvc->sdtr_able |= (1 << tid);
10180 }
10181 sdtr_speed >>= 4;
10182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010183
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010184 /*
10185 * Set the host maximum queuing (max. 253, min. 16) and the per device
10186 * maximum queuing (max. 63, min. 4).
10187 */
10188 if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
10189 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10190 } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
10191 /* If the value is zero, assume it is uninitialized. */
10192 if (eep_config.max_host_qng == 0) {
10193 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10194 } else {
10195 eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
10196 }
10197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010198
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010199 if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
10200 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10201 } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
10202 /* If the value is zero, assume it is uninitialized. */
10203 if (eep_config.max_dvc_qng == 0) {
10204 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10205 } else {
10206 eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
10207 }
10208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010209
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010210 /*
10211 * If 'max_dvc_qng' is greater than 'max_host_qng', then
10212 * set 'max_dvc_qng' to 'max_host_qng'.
10213 */
10214 if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
10215 eep_config.max_dvc_qng = eep_config.max_host_qng;
10216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010217
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010218 /*
10219 * Set ADV_DVC_VAR 'max_host_qng' and ADV_DVC_VAR 'max_dvc_qng'
10220 * values based on possibly adjusted EEPROM values.
10221 */
10222 asc_dvc->max_host_qng = eep_config.max_host_qng;
10223 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010224
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010225 /*
10226 * If the EEPROM 'termination' field is set to automatic (0), then set
10227 * the ADV_DVC_CFG 'termination' field to automatic also.
10228 *
10229 * If the termination is specified with a non-zero 'termination'
10230 * value check that a legal value is set and set the ADV_DVC_CFG
10231 * 'termination' field appropriately.
10232 */
10233 if (eep_config.termination_se == 0) {
10234 termination = 0; /* auto termination for SE */
10235 } else {
10236 /* Enable manual control with low off / high off. */
10237 if (eep_config.termination_se == 1) {
10238 termination = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010239
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010240 /* Enable manual control with low off / high on. */
10241 } else if (eep_config.termination_se == 2) {
10242 termination = TERM_SE_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010243
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010244 /* Enable manual control with low on / high on. */
10245 } else if (eep_config.termination_se == 3) {
10246 termination = TERM_SE;
10247 } else {
10248 /*
10249 * The EEPROM 'termination_se' field contains a bad value.
10250 * Use automatic termination instead.
10251 */
10252 termination = 0;
10253 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10254 }
10255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010256
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010257 if (eep_config.termination_lvd == 0) {
10258 asc_dvc->cfg->termination = termination; /* auto termination for LVD */
10259 } else {
10260 /* Enable manual control with low off / high off. */
10261 if (eep_config.termination_lvd == 1) {
10262 asc_dvc->cfg->termination = termination;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010263
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010264 /* Enable manual control with low off / high on. */
10265 } else if (eep_config.termination_lvd == 2) {
10266 asc_dvc->cfg->termination = termination | TERM_LVD_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010267
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010268 /* Enable manual control with low on / high on. */
10269 } else if (eep_config.termination_lvd == 3) {
10270 asc_dvc->cfg->termination = termination | TERM_LVD;
10271 } else {
10272 /*
10273 * The EEPROM 'termination_lvd' field contains a bad value.
10274 * Use automatic termination instead.
10275 */
10276 asc_dvc->cfg->termination = termination;
10277 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10278 }
10279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010280
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010281 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010282}
10283
10284/*
10285 * Read the board's EEPROM configuration. Set fields in ASC_DVC_VAR and
10286 * ASC_DVC_CFG based on the EEPROM settings. The chip is stopped while
10287 * all of this is done.
10288 *
10289 * On failure set the ASC_DVC_VAR field 'err_code' and return ADV_ERROR.
10290 *
10291 * For a non-fatal error return a warning code. If there are no warnings
10292 * then 0 is returned.
10293 *
10294 * Note: Chip is stopped on entry.
10295 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010296static int AdvInitFrom38C1600EEP(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010297{
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010298 AdvPortAddr iop_base;
10299 ushort warn_code;
10300 ADVEEP_38C1600_CONFIG eep_config;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010301 uchar tid, termination;
10302 ushort sdtr_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010303
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010304 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010305
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010306 warn_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010307
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010308 /*
10309 * Read the board's EEPROM configuration.
10310 *
10311 * Set default values if a bad checksum is found.
10312 */
10313 if (AdvGet38C1600EEPConfig(iop_base, &eep_config) !=
10314 eep_config.check_sum) {
Matthew Wilcox13ac2d92007-07-30 08:10:23 -060010315 struct pci_dev *pdev = adv_dvc_to_pdev(asc_dvc);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010316 warn_code |= ASC_WARN_EEPROM_CHKSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010317
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010318 /*
10319 * Set EEPROM default values.
10320 */
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010321 memcpy(&eep_config, &Default_38C1600_EEPROM_Config,
10322 sizeof(ADVEEP_38C1600_CONFIG));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010323
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010324 if (PCI_FUNC(pdev->devfn) != 0) {
10325 u8 ints;
10326 /*
10327 * Disable Bit 14 (BIOS_ENABLE) to fix SPARC Ultra 60
10328 * and old Mac system booting problem. The Expansion
10329 * ROM must be disabled in Function 1 for these systems
10330 */
10331 eep_config.cfg_lsw &= ~ADV_EEPROM_BIOS_ENABLE;
10332 /*
10333 * Clear the INTAB (bit 11) if the GPIO 0 input
10334 * indicates the Function 1 interrupt line is wired
10335 * to INTB.
10336 *
10337 * Set/Clear Bit 11 (INTAB) from the GPIO bit 0 input:
10338 * 1 - Function 1 interrupt line wired to INT A.
10339 * 0 - Function 1 interrupt line wired to INT B.
10340 *
10341 * Note: Function 0 is always wired to INTA.
10342 * Put all 5 GPIO bits in input mode and then read
10343 * their input values.
10344 */
10345 AdvWriteByteRegister(iop_base, IOPB_GPIO_CNTL, 0);
10346 ints = AdvReadByteRegister(iop_base, IOPB_GPIO_DATA);
10347 if ((ints & 0x01) == 0)
10348 eep_config.cfg_lsw &= ~ADV_EEPROM_INTAB;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010350
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010351 /*
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010352 * Assume the 6 byte board serial number that was read from
10353 * EEPROM is correct even if the EEPROM checksum failed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010354 */
10355 eep_config.serial_number_word3 =
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010356 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010357 eep_config.serial_number_word2 =
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010358 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010359 eep_config.serial_number_word1 =
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010360 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010361
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010362 AdvSet38C1600EEPConfig(iop_base, &eep_config);
10363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010364
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010365 /*
10366 * Set ASC_DVC_VAR and ASC_DVC_CFG variables from the
10367 * EEPROM configuration that was read.
10368 *
10369 * This is the mapping of EEPROM fields to Adv Library fields.
10370 */
10371 asc_dvc->wdtr_able = eep_config.wdtr_able;
10372 asc_dvc->sdtr_speed1 = eep_config.sdtr_speed1;
10373 asc_dvc->sdtr_speed2 = eep_config.sdtr_speed2;
10374 asc_dvc->sdtr_speed3 = eep_config.sdtr_speed3;
10375 asc_dvc->sdtr_speed4 = eep_config.sdtr_speed4;
10376 asc_dvc->ppr_able = 0;
10377 asc_dvc->tagqng_able = eep_config.tagqng_able;
10378 asc_dvc->cfg->disc_enable = eep_config.disc_enable;
10379 asc_dvc->max_host_qng = eep_config.max_host_qng;
10380 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
10381 asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ASC_MAX_TID);
10382 asc_dvc->start_motor = eep_config.start_motor;
10383 asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
10384 asc_dvc->bios_ctrl = eep_config.bios_ctrl;
10385 asc_dvc->no_scam = eep_config.scam_tolerant;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010386
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010387 /*
10388 * For every Target ID if any of its 'sdtr_speed[1234]' bits
10389 * are set, then set an 'sdtr_able' bit for it.
10390 */
10391 asc_dvc->sdtr_able = 0;
10392 for (tid = 0; tid <= ASC_MAX_TID; tid++) {
10393 if (tid == 0) {
10394 sdtr_speed = asc_dvc->sdtr_speed1;
10395 } else if (tid == 4) {
10396 sdtr_speed = asc_dvc->sdtr_speed2;
10397 } else if (tid == 8) {
10398 sdtr_speed = asc_dvc->sdtr_speed3;
10399 } else if (tid == 12) {
10400 sdtr_speed = asc_dvc->sdtr_speed4;
10401 }
10402 if (sdtr_speed & ASC_MAX_TID) {
10403 asc_dvc->sdtr_able |= (1 << tid);
10404 }
10405 sdtr_speed >>= 4;
10406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010407
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010408 /*
10409 * Set the host maximum queuing (max. 253, min. 16) and the per device
10410 * maximum queuing (max. 63, min. 4).
10411 */
10412 if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
10413 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10414 } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
10415 /* If the value is zero, assume it is uninitialized. */
10416 if (eep_config.max_host_qng == 0) {
10417 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10418 } else {
10419 eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
10420 }
10421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010422
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010423 if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
10424 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10425 } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
10426 /* If the value is zero, assume it is uninitialized. */
10427 if (eep_config.max_dvc_qng == 0) {
10428 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10429 } else {
10430 eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
10431 }
10432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010433
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010434 /*
10435 * If 'max_dvc_qng' is greater than 'max_host_qng', then
10436 * set 'max_dvc_qng' to 'max_host_qng'.
10437 */
10438 if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
10439 eep_config.max_dvc_qng = eep_config.max_host_qng;
10440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010441
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010442 /*
10443 * Set ASC_DVC_VAR 'max_host_qng' and ASC_DVC_VAR 'max_dvc_qng'
10444 * values based on possibly adjusted EEPROM values.
10445 */
10446 asc_dvc->max_host_qng = eep_config.max_host_qng;
10447 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010448
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010449 /*
10450 * If the EEPROM 'termination' field is set to automatic (0), then set
10451 * the ASC_DVC_CFG 'termination' field to automatic also.
10452 *
10453 * If the termination is specified with a non-zero 'termination'
10454 * value check that a legal value is set and set the ASC_DVC_CFG
10455 * 'termination' field appropriately.
10456 */
10457 if (eep_config.termination_se == 0) {
10458 termination = 0; /* auto termination for SE */
10459 } else {
10460 /* Enable manual control with low off / high off. */
10461 if (eep_config.termination_se == 1) {
10462 termination = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010463
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010464 /* Enable manual control with low off / high on. */
10465 } else if (eep_config.termination_se == 2) {
10466 termination = TERM_SE_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010467
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010468 /* Enable manual control with low on / high on. */
10469 } else if (eep_config.termination_se == 3) {
10470 termination = TERM_SE;
10471 } else {
10472 /*
10473 * The EEPROM 'termination_se' field contains a bad value.
10474 * Use automatic termination instead.
10475 */
10476 termination = 0;
10477 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10478 }
10479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010480
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010481 if (eep_config.termination_lvd == 0) {
10482 asc_dvc->cfg->termination = termination; /* auto termination for LVD */
10483 } else {
10484 /* Enable manual control with low off / high off. */
10485 if (eep_config.termination_lvd == 1) {
10486 asc_dvc->cfg->termination = termination;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010487
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010488 /* Enable manual control with low off / high on. */
10489 } else if (eep_config.termination_lvd == 2) {
10490 asc_dvc->cfg->termination = termination | TERM_LVD_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010491
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010492 /* Enable manual control with low on / high on. */
10493 } else if (eep_config.termination_lvd == 3) {
10494 asc_dvc->cfg->termination = termination | TERM_LVD;
10495 } else {
10496 /*
10497 * The EEPROM 'termination_lvd' field contains a bad value.
10498 * Use automatic termination instead.
10499 */
10500 asc_dvc->cfg->termination = termination;
10501 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10502 }
10503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010504
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010505 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010506}
10507
10508/*
Matthew Wilcox51219352007-10-02 21:55:22 -040010509 * Initialize the ADV_DVC_VAR structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010510 *
Matthew Wilcox51219352007-10-02 21:55:22 -040010511 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010512 *
Matthew Wilcox51219352007-10-02 21:55:22 -040010513 * For a non-fatal error return a warning code. If there are no warnings
10514 * then 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010515 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010516static int AdvInitGetConfig(struct pci_dev *pdev, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010517{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010518 struct asc_board *board = shost_priv(shost);
10519 ADV_DVC_VAR *asc_dvc = &board->dvc_var.adv_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -040010520 unsigned short warn_code = 0;
10521 AdvPortAddr iop_base = asc_dvc->iop_base;
10522 u16 cmd;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010523 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010524
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010525 asc_dvc->err_code = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -040010526
10527 /*
10528 * Save the state of the PCI Configuration Command Register
10529 * "Parity Error Response Control" Bit. If the bit is clear (0),
10530 * in AdvInitAsc3550/38C0800Driver() tell the microcode to ignore
10531 * DMA parity errors.
10532 */
10533 asc_dvc->cfg->control_flag = 0;
10534 pci_read_config_word(pdev, PCI_COMMAND, &cmd);
10535 if ((cmd & PCI_COMMAND_PARITY) == 0)
10536 asc_dvc->cfg->control_flag |= CONTROL_FLAG_IGNORE_PERR;
10537
Matthew Wilcox51219352007-10-02 21:55:22 -040010538 asc_dvc->cfg->chip_version =
10539 AdvGetChipVersion(iop_base, asc_dvc->bus_type);
10540
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010541 ASC_DBG(1, "iopb_chip_id_1: 0x%x 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -040010542 (ushort)AdvReadByteRegister(iop_base, IOPB_CHIP_ID_1),
10543 (ushort)ADV_CHIP_ID_BYTE);
10544
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010545 ASC_DBG(1, "iopw_chip_id_0: 0x%x 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -040010546 (ushort)AdvReadWordRegister(iop_base, IOPW_CHIP_ID_0),
10547 (ushort)ADV_CHIP_ID_WORD);
10548
10549 /*
10550 * Reset the chip to start and allow register writes.
10551 */
10552 if (AdvFindSignature(iop_base) == 0) {
10553 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
10554 return ADV_ERROR;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010555 } else {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010556 /*
Matthew Wilcox51219352007-10-02 21:55:22 -040010557 * The caller must set 'chip_type' to a valid setting.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010558 */
Matthew Wilcox51219352007-10-02 21:55:22 -040010559 if (asc_dvc->chip_type != ADV_CHIP_ASC3550 &&
10560 asc_dvc->chip_type != ADV_CHIP_ASC38C0800 &&
10561 asc_dvc->chip_type != ADV_CHIP_ASC38C1600) {
10562 asc_dvc->err_code |= ASC_IERR_BAD_CHIPTYPE;
10563 return ADV_ERROR;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010565
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010566 /*
Matthew Wilcox51219352007-10-02 21:55:22 -040010567 * Reset Chip.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010568 */
Matthew Wilcox51219352007-10-02 21:55:22 -040010569 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
10570 ADV_CTRL_REG_CMD_RESET);
10571 mdelay(100);
10572 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
10573 ADV_CTRL_REG_CMD_WR_IO_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574
Matthew Wilcox51219352007-10-02 21:55:22 -040010575 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
10576 status = AdvInitFrom38C1600EEP(asc_dvc);
10577 } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
10578 status = AdvInitFrom38C0800EEP(asc_dvc);
10579 } else {
10580 status = AdvInitFrom3550EEP(asc_dvc);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010581 }
Matthew Wilcox51219352007-10-02 21:55:22 -040010582 warn_code |= status;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010584
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010585 if (warn_code != 0)
10586 shost_printk(KERN_WARNING, shost, "warning: 0x%x\n", warn_code);
Matthew Wilcox51219352007-10-02 21:55:22 -040010587
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010588 if (asc_dvc->err_code)
10589 shost_printk(KERN_ERR, shost, "error code 0x%x\n",
10590 asc_dvc->err_code);
Matthew Wilcox51219352007-10-02 21:55:22 -040010591
10592 return asc_dvc->err_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010593}
Matthew Wilcox51219352007-10-02 21:55:22 -040010594#endif
10595
10596static struct scsi_host_template advansys_template = {
10597 .proc_name = DRV_NAME,
10598#ifdef CONFIG_PROC_FS
Al Virob59fb6f2013-03-31 02:59:55 -040010599 .show_info = advansys_show_info,
Matthew Wilcox51219352007-10-02 21:55:22 -040010600#endif
10601 .name = DRV_NAME,
10602 .info = advansys_info,
10603 .queuecommand = advansys_queuecommand,
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +020010604 .eh_host_reset_handler = advansys_reset,
Matthew Wilcox51219352007-10-02 21:55:22 -040010605 .bios_param = advansys_biosparam,
10606 .slave_configure = advansys_slave_configure,
Matthew Wilcox51219352007-10-02 21:55:22 -040010607};
Linus Torvalds1da177e2005-04-16 15:20:36 -070010608
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010609static int advansys_wide_init_chip(struct Scsi_Host *shost)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010610{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010611 struct asc_board *board = shost_priv(shost);
10612 struct adv_dvc_var *adv_dvc = &board->dvc_var.adv_dvc_var;
Hannes Reinecke0ce53822015-04-24 13:18:25 +020010613 size_t sgblk_pool_size;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010614 int warn_code, err_code;
10615
10616 /*
10617 * Allocate buffer carrier structures. The total size
Hannes Reinecke98b96a72015-04-24 13:18:23 +020010618 * is about 8 KB, so allocate all at once.
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010619 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +020010620 adv_dvc->carrier = dma_alloc_coherent(board->dev,
10621 ADV_CARRIER_BUFSIZE, &adv_dvc->carrier_addr, GFP_KERNEL);
10622 ASC_DBG(1, "carrier 0x%p\n", adv_dvc->carrier);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010623
Hannes Reinecke98b96a72015-04-24 13:18:23 +020010624 if (!adv_dvc->carrier)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010625 goto kmalloc_failed;
10626
10627 /*
10628 * Allocate up to 'max_host_qng' request structures for the Wide
10629 * board. The total size is about 16 KB, so allocate all at once.
10630 * If the allocation fails decrement and try again.
10631 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +020010632 board->adv_reqp_size = adv_dvc->max_host_qng * sizeof(adv_req_t);
10633 if (board->adv_reqp_size & 0x1f) {
10634 ASC_DBG(1, "unaligned reqp %lu bytes\n", sizeof(adv_req_t));
10635 board->adv_reqp_size = ADV_32BALIGN(board->adv_reqp_size);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010636 }
Hannes Reinecke4b47e462015-04-24 13:18:24 +020010637 board->adv_reqp = dma_alloc_coherent(board->dev, board->adv_reqp_size,
10638 &board->adv_reqp_addr, GFP_KERNEL);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010639
Hannes Reinecke4b47e462015-04-24 13:18:24 +020010640 if (!board->adv_reqp)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010641 goto kmalloc_failed;
10642
Hannes Reinecke4b47e462015-04-24 13:18:24 +020010643 ASC_DBG(1, "reqp 0x%p, req_cnt %d, bytes %lu\n", board->adv_reqp,
10644 adv_dvc->max_host_qng, board->adv_reqp_size);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010645
10646 /*
10647 * Allocate up to ADV_TOT_SG_BLOCK request structures for
10648 * the Wide board. Each structure is about 136 bytes.
10649 */
Hannes Reinecke0ce53822015-04-24 13:18:25 +020010650 sgblk_pool_size = sizeof(adv_sgblk_t) * ADV_TOT_SG_BLOCK;
10651 board->adv_sgblk_pool = dma_pool_create("adv_sgblk", board->dev,
10652 sgblk_pool_size, 32, 0);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010653
Hannes Reinecke0ce53822015-04-24 13:18:25 +020010654 ASC_DBG(1, "sg_cnt %d * %lu = %lu bytes\n", ADV_TOT_SG_BLOCK,
10655 sizeof(adv_sgblk_t), sgblk_pool_size);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010656
Hannes Reinecke0ce53822015-04-24 13:18:25 +020010657 if (!board->adv_sgblk_pool)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010658 goto kmalloc_failed;
10659
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010660 if (adv_dvc->chip_type == ADV_CHIP_ASC3550) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010661 ASC_DBG(2, "AdvInitAsc3550Driver()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010662 warn_code = AdvInitAsc3550Driver(adv_dvc);
10663 } else if (adv_dvc->chip_type == ADV_CHIP_ASC38C0800) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010664 ASC_DBG(2, "AdvInitAsc38C0800Driver()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010665 warn_code = AdvInitAsc38C0800Driver(adv_dvc);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010666 } else {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010667 ASC_DBG(2, "AdvInitAsc38C1600Driver()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010668 warn_code = AdvInitAsc38C1600Driver(adv_dvc);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010669 }
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010670 err_code = adv_dvc->err_code;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010671
10672 if (warn_code || err_code) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010673 shost_printk(KERN_WARNING, shost, "error: warn 0x%x, error "
10674 "0x%x\n", warn_code, err_code);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010675 }
10676
10677 goto exit;
10678
10679 kmalloc_failed:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010680 shost_printk(KERN_ERR, shost, "error: kmalloc() failed\n");
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010681 err_code = ADV_ERROR;
10682 exit:
10683 return err_code;
10684}
10685
Matthew Wilcox98d41c22007-10-02 21:55:37 -040010686static void advansys_wide_free_mem(struct asc_board *board)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010687{
Matthew Wilcox98d41c22007-10-02 21:55:37 -040010688 struct adv_dvc_var *adv_dvc = &board->dvc_var.adv_dvc_var;
Hannes Reinecke98b96a72015-04-24 13:18:23 +020010689
10690 if (adv_dvc->carrier) {
10691 dma_free_coherent(board->dev, ADV_CARRIER_BUFSIZE,
10692 adv_dvc->carrier, adv_dvc->carrier_addr);
10693 adv_dvc->carrier = NULL;
10694 }
Hannes Reinecke4b47e462015-04-24 13:18:24 +020010695 if (board->adv_reqp) {
10696 dma_free_coherent(board->dev, board->adv_reqp_size,
10697 board->adv_reqp, board->adv_reqp_addr);
10698 board->adv_reqp = NULL;
10699 }
Hannes Reinecke0ce53822015-04-24 13:18:25 +020010700 if (board->adv_sgblk_pool) {
10701 dma_pool_destroy(board->adv_sgblk_pool);
10702 board->adv_sgblk_pool = NULL;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010703 }
10704}
10705
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010706static int advansys_board_found(struct Scsi_Host *shost, unsigned int iop,
10707 int bus_type)
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010708{
Matthew Wilcoxd361db42007-10-02 21:55:29 -040010709 struct pci_dev *pdev;
Matthew Wilcoxd2411492007-10-02 21:55:31 -040010710 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010711 ASC_DVC_VAR *asc_dvc_varp = NULL;
10712 ADV_DVC_VAR *adv_dvc_varp = NULL;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040010713 int share_irq, warn_code, ret;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010714
Matthew Wilcoxd361db42007-10-02 21:55:29 -040010715 pdev = (bus_type == ASC_IS_PCI) ? to_pci_dev(boardp->dev) : NULL;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010716
10717 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010718 ASC_DBG(1, "narrow board\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010719 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
10720 asc_dvc_varp->bus_type = bus_type;
10721 asc_dvc_varp->drv_ptr = boardp;
10722 asc_dvc_varp->cfg = &boardp->dvc_cfg.asc_dvc_cfg;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010723 asc_dvc_varp->iop_base = iop;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010724 } else {
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040010725#ifdef CONFIG_PCI
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010726 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
10727 adv_dvc_varp->drv_ptr = boardp;
10728 adv_dvc_varp->cfg = &boardp->dvc_cfg.adv_dvc_cfg;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010729 if (pdev->device == PCI_DEVICE_ID_ASP_ABP940UW) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010730 ASC_DBG(1, "wide board ASC-3550\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010731 adv_dvc_varp->chip_type = ADV_CHIP_ASC3550;
10732 } else if (pdev->device == PCI_DEVICE_ID_38C0800_REV1) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010733 ASC_DBG(1, "wide board ASC-38C0800\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010734 adv_dvc_varp->chip_type = ADV_CHIP_ASC38C0800;
10735 } else {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010736 ASC_DBG(1, "wide board ASC-38C1600\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010737 adv_dvc_varp->chip_type = ADV_CHIP_ASC38C1600;
10738 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010739
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040010740 boardp->asc_n_io_port = pci_resource_len(pdev, 1);
Arjan van de Ven25729a72008-09-28 16:18:02 -070010741 boardp->ioremap_addr = pci_ioremap_bar(pdev, 1);
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040010742 if (!boardp->ioremap_addr) {
Matthew Wilcox9d511a42007-10-02 21:55:42 -040010743 shost_printk(KERN_ERR, shost, "ioremap(%lx, %d) "
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010744 "returned NULL\n",
Matthew Wilcox9d511a42007-10-02 21:55:42 -040010745 (long)pci_resource_start(pdev, 1),
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010746 boardp->asc_n_io_port);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040010747 ret = -ENODEV;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060010748 goto err_shost;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010749 }
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010750 adv_dvc_varp->iop_base = (AdvPortAddr)boardp->ioremap_addr;
10751 ASC_DBG(1, "iop_base: 0x%p\n", adv_dvc_varp->iop_base);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010752
10753 /*
10754 * Even though it isn't used to access wide boards, other
10755 * than for the debug line below, save I/O Port address so
10756 * that it can be reported.
10757 */
10758 boardp->ioport = iop;
10759
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010760 ASC_DBG(1, "iopb_chip_id_1 0x%x, iopw_chip_id_0 0x%x\n",
10761 (ushort)inp(iop + 1), (ushort)inpw(iop));
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040010762#endif /* CONFIG_PCI */
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010763 }
10764
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010765 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010766 /*
10767 * Set the board bus type and PCI IRQ before
10768 * calling AscInitGetConfig().
10769 */
10770 switch (asc_dvc_varp->bus_type) {
10771#ifdef CONFIG_ISA
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010772 case ASC_IS_VL:
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060010773 share_irq = 0;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010774 break;
10775 case ASC_IS_EISA:
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060010776 share_irq = IRQF_SHARED;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010777 break;
10778#endif /* CONFIG_ISA */
10779#ifdef CONFIG_PCI
10780 case ASC_IS_PCI:
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060010781 share_irq = IRQF_SHARED;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010782 break;
10783#endif /* CONFIG_PCI */
10784 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010785 shost_printk(KERN_ERR, shost, "unknown adapter type: "
10786 "%d\n", asc_dvc_varp->bus_type);
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060010787 share_irq = 0;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010788 break;
10789 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010790
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010791 /*
10792 * NOTE: AscInitGetConfig() may change the board's
10793 * bus_type value. The bus_type value should no
10794 * longer be used. If the bus_type field must be
10795 * referenced only use the bit-wise AND operator "&".
10796 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010797 ASC_DBG(2, "AscInitGetConfig()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010798 ret = AscInitGetConfig(shost) ? -ENODEV : 0;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010799 } else {
Matthew Wilcoxc2dce2f2007-09-09 08:56:30 -060010800#ifdef CONFIG_PCI
10801 /*
10802 * For Wide boards set PCI information before calling
10803 * AdvInitGetConfig().
10804 */
Matthew Wilcoxc2dce2f2007-09-09 08:56:30 -060010805 share_irq = IRQF_SHARED;
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010806 ASC_DBG(2, "AdvInitGetConfig()\n");
Matthew Wilcox394dbf32007-07-26 11:56:40 -040010807
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010808 ret = AdvInitGetConfig(pdev, shost) ? -ENODEV : 0;
Arnd Bergmannf46e7cd2016-10-24 17:51:55 +020010809#else
10810 share_irq = 0;
10811 ret = -ENODEV;
Matthew Wilcoxc2dce2f2007-09-09 08:56:30 -060010812#endif /* CONFIG_PCI */
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010813 }
10814
Matthew Wilcoxd361db42007-10-02 21:55:29 -040010815 if (ret)
Al Virob59fb6f2013-03-31 02:59:55 -040010816 goto err_unmap;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010817
10818 /*
10819 * Save the EEPROM configuration so that it can be displayed
10820 * from /proc/scsi/advansys/[0...].
10821 */
10822 if (ASC_NARROW_BOARD(boardp)) {
10823
10824 ASCEEP_CONFIG *ep;
10825
10826 /*
10827 * Set the adapter's target id bit in the 'init_tidmask' field.
10828 */
10829 boardp->init_tidmask |=
10830 ADV_TID_TO_TIDMASK(asc_dvc_varp->cfg->chip_scsi_id);
10831
10832 /*
10833 * Save EEPROM settings for the board.
10834 */
10835 ep = &boardp->eep_config.asc_eep;
10836
10837 ep->init_sdtr = asc_dvc_varp->cfg->sdtr_enable;
10838 ep->disc_enable = asc_dvc_varp->cfg->disc_enable;
10839 ep->use_cmd_qng = asc_dvc_varp->cfg->cmd_qng_enabled;
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +020010840 ASC_EEP_SET_DMA_SPD(ep, ASC_DEF_ISA_DMA_SPEED);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010841 ep->start_motor = asc_dvc_varp->start_motor;
10842 ep->cntl = asc_dvc_varp->dvc_cntl;
10843 ep->no_scam = asc_dvc_varp->no_scam;
10844 ep->max_total_qng = asc_dvc_varp->max_total_qng;
10845 ASC_EEP_SET_CHIP_ID(ep, asc_dvc_varp->cfg->chip_scsi_id);
10846 /* 'max_tag_qng' is set to the same value for every device. */
10847 ep->max_tag_qng = asc_dvc_varp->cfg->max_tag_qng[0];
10848 ep->adapter_info[0] = asc_dvc_varp->cfg->adapter_info[0];
10849 ep->adapter_info[1] = asc_dvc_varp->cfg->adapter_info[1];
10850 ep->adapter_info[2] = asc_dvc_varp->cfg->adapter_info[2];
10851 ep->adapter_info[3] = asc_dvc_varp->cfg->adapter_info[3];
10852 ep->adapter_info[4] = asc_dvc_varp->cfg->adapter_info[4];
10853 ep->adapter_info[5] = asc_dvc_varp->cfg->adapter_info[5];
10854
10855 /*
10856 * Modify board configuration.
10857 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040010858 ASC_DBG(2, "AscInitSetConfig()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040010859 ret = AscInitSetConfig(pdev, shost) ? -ENODEV : 0;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040010860 if (ret)
Al Virob59fb6f2013-03-31 02:59:55 -040010861 goto err_unmap;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010862 } else {
10863 ADVEEP_3550_CONFIG *ep_3550;
10864 ADVEEP_38C0800_CONFIG *ep_38C0800;
10865 ADVEEP_38C1600_CONFIG *ep_38C1600;
10866
10867 /*
10868 * Save Wide EEP Configuration Information.
10869 */
10870 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
10871 ep_3550 = &boardp->eep_config.adv_3550_eep;
10872
10873 ep_3550->adapter_scsi_id = adv_dvc_varp->chip_scsi_id;
10874 ep_3550->max_host_qng = adv_dvc_varp->max_host_qng;
10875 ep_3550->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
10876 ep_3550->termination = adv_dvc_varp->cfg->termination;
10877 ep_3550->disc_enable = adv_dvc_varp->cfg->disc_enable;
10878 ep_3550->bios_ctrl = adv_dvc_varp->bios_ctrl;
10879 ep_3550->wdtr_able = adv_dvc_varp->wdtr_able;
10880 ep_3550->sdtr_able = adv_dvc_varp->sdtr_able;
10881 ep_3550->ultra_able = adv_dvc_varp->ultra_able;
10882 ep_3550->tagqng_able = adv_dvc_varp->tagqng_able;
10883 ep_3550->start_motor = adv_dvc_varp->start_motor;
10884 ep_3550->scsi_reset_delay =
10885 adv_dvc_varp->scsi_reset_wait;
10886 ep_3550->serial_number_word1 =
10887 adv_dvc_varp->cfg->serial1;
10888 ep_3550->serial_number_word2 =
10889 adv_dvc_varp->cfg->serial2;
10890 ep_3550->serial_number_word3 =
10891 adv_dvc_varp->cfg->serial3;
10892 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
10893 ep_38C0800 = &boardp->eep_config.adv_38C0800_eep;
10894
10895 ep_38C0800->adapter_scsi_id =
10896 adv_dvc_varp->chip_scsi_id;
10897 ep_38C0800->max_host_qng = adv_dvc_varp->max_host_qng;
10898 ep_38C0800->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
10899 ep_38C0800->termination_lvd =
10900 adv_dvc_varp->cfg->termination;
10901 ep_38C0800->disc_enable =
10902 adv_dvc_varp->cfg->disc_enable;
10903 ep_38C0800->bios_ctrl = adv_dvc_varp->bios_ctrl;
10904 ep_38C0800->wdtr_able = adv_dvc_varp->wdtr_able;
10905 ep_38C0800->tagqng_able = adv_dvc_varp->tagqng_able;
10906 ep_38C0800->sdtr_speed1 = adv_dvc_varp->sdtr_speed1;
10907 ep_38C0800->sdtr_speed2 = adv_dvc_varp->sdtr_speed2;
10908 ep_38C0800->sdtr_speed3 = adv_dvc_varp->sdtr_speed3;
10909 ep_38C0800->sdtr_speed4 = adv_dvc_varp->sdtr_speed4;
10910 ep_38C0800->tagqng_able = adv_dvc_varp->tagqng_able;
10911 ep_38C0800->start_motor = adv_dvc_varp->start_motor;
10912 ep_38C0800->scsi_reset_delay =
10913 adv_dvc_varp->scsi_reset_wait;
10914 ep_38C0800->serial_number_word1 =
10915 adv_dvc_varp->cfg->serial1;
10916 ep_38C0800->serial_number_word2 =
10917 adv_dvc_varp->cfg->serial2;
10918 ep_38C0800->serial_number_word3 =
10919 adv_dvc_varp->cfg->serial3;
10920 } else {
10921 ep_38C1600 = &boardp->eep_config.adv_38C1600_eep;
10922
10923 ep_38C1600->adapter_scsi_id =
10924 adv_dvc_varp->chip_scsi_id;
10925 ep_38C1600->max_host_qng = adv_dvc_varp->max_host_qng;
10926 ep_38C1600->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
10927 ep_38C1600->termination_lvd =
10928 adv_dvc_varp->cfg->termination;
10929 ep_38C1600->disc_enable =
10930 adv_dvc_varp->cfg->disc_enable;
10931 ep_38C1600->bios_ctrl = adv_dvc_varp->bios_ctrl;
10932 ep_38C1600->wdtr_able = adv_dvc_varp->wdtr_able;
10933 ep_38C1600->tagqng_able = adv_dvc_varp->tagqng_able;
10934 ep_38C1600->sdtr_speed1 = adv_dvc_varp->sdtr_speed1;
10935 ep_38C1600->sdtr_speed2 = adv_dvc_varp->sdtr_speed2;
10936 ep_38C1600->sdtr_speed3 = adv_dvc_varp->sdtr_speed3;
10937 ep_38C1600->sdtr_speed4 = adv_dvc_varp->sdtr_speed4;
10938 ep_38C1600->tagqng_able = adv_dvc_varp->tagqng_able;
10939 ep_38C1600->start_motor = adv_dvc_varp->start_motor;
10940 ep_38C1600->scsi_reset_delay =
10941 adv_dvc_varp->scsi_reset_wait;
10942 ep_38C1600->serial_number_word1 =
10943 adv_dvc_varp->cfg->serial1;
10944 ep_38C1600->serial_number_word2 =
10945 adv_dvc_varp->cfg->serial2;
10946 ep_38C1600->serial_number_word3 =
10947 adv_dvc_varp->cfg->serial3;
10948 }
10949
10950 /*
10951 * Set the adapter's target id bit in the 'init_tidmask' field.
10952 */
10953 boardp->init_tidmask |=
10954 ADV_TID_TO_TIDMASK(adv_dvc_varp->chip_scsi_id);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010955 }
10956
10957 /*
10958 * Channels are numbered beginning with 0. For AdvanSys one host
10959 * structure supports one channel. Multi-channel boards have a
10960 * separate host structure for each channel.
10961 */
10962 shost->max_channel = 0;
10963 if (ASC_NARROW_BOARD(boardp)) {
10964 shost->max_id = ASC_MAX_TID + 1;
10965 shost->max_lun = ASC_MAX_LUN + 1;
Matthew Wilcoxf05ec592007-09-09 08:56:36 -060010966 shost->max_cmd_len = ASC_MAX_CDB_LEN;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010967
10968 shost->io_port = asc_dvc_varp->iop_base;
10969 boardp->asc_n_io_port = ASC_IOADR_GAP;
10970 shost->this_id = asc_dvc_varp->cfg->chip_scsi_id;
10971
10972 /* Set maximum number of queues the adapter can handle. */
10973 shost->can_queue = asc_dvc_varp->max_total_qng;
10974 } else {
10975 shost->max_id = ADV_MAX_TID + 1;
10976 shost->max_lun = ADV_MAX_LUN + 1;
Matthew Wilcoxf05ec592007-09-09 08:56:36 -060010977 shost->max_cmd_len = ADV_MAX_CDB_LEN;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010978
10979 /*
10980 * Save the I/O Port address and length even though
10981 * I/O ports are not used to access Wide boards.
10982 * Instead the Wide boards are accessed with
10983 * PCI Memory Mapped I/O.
10984 */
10985 shost->io_port = iop;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010986
10987 shost->this_id = adv_dvc_varp->chip_scsi_id;
10988
10989 /* Set maximum number of queues the adapter can handle. */
10990 shost->can_queue = adv_dvc_varp->max_host_qng;
10991 }
10992
10993 /*
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010994 * Set the maximum number of scatter-gather elements the
10995 * adapter can handle.
10996 */
10997 if (ASC_NARROW_BOARD(boardp)) {
10998 /*
10999 * Allow two commands with 'sg_tablesize' scatter-gather
11000 * elements to be executed simultaneously. This value is
11001 * the theoretical hardware limit. It may be decreased
11002 * below.
11003 */
11004 shost->sg_tablesize =
11005 (((asc_dvc_varp->max_total_qng - 2) / 2) *
11006 ASC_SG_LIST_PER_Q) + 1;
11007 } else {
11008 shost->sg_tablesize = ADV_MAX_SG_LIST;
11009 }
11010
11011 /*
11012 * The value of 'sg_tablesize' can not exceed the SCSI
11013 * mid-level driver definition of SG_ALL. SG_ALL also
11014 * must not be exceeded, because it is used to define the
11015 * size of the scatter-gather table in 'struct asc_sg_head'.
11016 */
11017 if (shost->sg_tablesize > SG_ALL) {
11018 shost->sg_tablesize = SG_ALL;
11019 }
11020
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011021 ASC_DBG(1, "sg_tablesize: %d\n", shost->sg_tablesize);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011022
11023 /* BIOS start address. */
11024 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011025 shost->base = AscGetChipBiosAddress(asc_dvc_varp->iop_base,
11026 asc_dvc_varp->bus_type);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011027 } else {
11028 /*
11029 * Fill-in BIOS board variables. The Wide BIOS saves
11030 * information in LRAM that is used by the driver.
11031 */
11032 AdvReadWordLram(adv_dvc_varp->iop_base,
11033 BIOS_SIGNATURE, boardp->bios_signature);
11034 AdvReadWordLram(adv_dvc_varp->iop_base,
11035 BIOS_VERSION, boardp->bios_version);
11036 AdvReadWordLram(adv_dvc_varp->iop_base,
11037 BIOS_CODESEG, boardp->bios_codeseg);
11038 AdvReadWordLram(adv_dvc_varp->iop_base,
11039 BIOS_CODELEN, boardp->bios_codelen);
11040
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011041 ASC_DBG(1, "bios_signature 0x%x, bios_version 0x%x\n",
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011042 boardp->bios_signature, boardp->bios_version);
11043
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011044 ASC_DBG(1, "bios_codeseg 0x%x, bios_codelen 0x%x\n",
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011045 boardp->bios_codeseg, boardp->bios_codelen);
11046
11047 /*
11048 * If the BIOS saved a valid signature, then fill in
11049 * the BIOS code segment base address.
11050 */
11051 if (boardp->bios_signature == 0x55AA) {
11052 /*
11053 * Convert x86 realmode code segment to a linear
11054 * address by shifting left 4.
11055 */
11056 shost->base = ((ulong)boardp->bios_codeseg << 4);
11057 } else {
11058 shost->base = 0;
11059 }
11060 }
11061
11062 /*
11063 * Register Board Resources - I/O Port, DMA, IRQ
11064 */
11065
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011066 /* Register DMA Channel for Narrow boards. */
11067 shost->dma_channel = NO_ISA_DMA; /* Default to no ISA DMA. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011068
11069 /* Register IRQ Number. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011070 ASC_DBG(2, "request_irq(%d, %p)\n", boardp->irq, shost);
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011071
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011072 ret = request_irq(boardp->irq, advansys_interrupt, share_irq,
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011073 DRV_NAME, shost);
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011074
11075 if (ret) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011076 if (ret == -EBUSY) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011077 shost_printk(KERN_ERR, shost, "request_irq(): IRQ 0x%x "
11078 "already in use\n", boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011079 } else if (ret == -EINVAL) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011080 shost_printk(KERN_ERR, shost, "request_irq(): IRQ 0x%x "
11081 "not valid\n", boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011082 } else {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011083 shost_printk(KERN_ERR, shost, "request_irq(): IRQ 0x%x "
11084 "failed with %d\n", boardp->irq, ret);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011085 }
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +020011086 goto err_unmap;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011087 }
11088
11089 /*
11090 * Initialize board RISC chip and enable interrupts.
11091 */
11092 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011093 ASC_DBG(2, "AscInitAsc1000Driver()\n");
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011094
11095 asc_dvc_varp->overrun_buf = kzalloc(ASC_OVERRUN_BSIZE, GFP_KERNEL);
11096 if (!asc_dvc_varp->overrun_buf) {
11097 ret = -ENOMEM;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011098 goto err_free_irq;
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011099 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011100 warn_code = AscInitAsc1000Driver(asc_dvc_varp);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011101
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011102 if (warn_code || asc_dvc_varp->err_code) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011103 shost_printk(KERN_ERR, shost, "error: init_state 0x%x, "
11104 "warn 0x%x, error 0x%x\n",
11105 asc_dvc_varp->init_state, warn_code,
11106 asc_dvc_varp->err_code);
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011107 if (!asc_dvc_varp->overrun_dma) {
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011108 ret = -ENODEV;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011109 goto err_free_mem;
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011110 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011111 }
11112 } else {
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011113 if (advansys_wide_init_chip(shost)) {
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011114 ret = -ENODEV;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011115 goto err_free_mem;
11116 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011117 }
11118
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011119 ASC_DBG_PRT_SCSI_HOST(2, shost);
11120
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011121 ret = scsi_add_host(shost, boardp->dev);
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011122 if (ret)
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011123 goto err_free_mem;
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011124
11125 scsi_scan_host(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011126 return 0;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011127
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011128 err_free_mem:
11129 if (ASC_NARROW_BOARD(boardp)) {
11130 if (asc_dvc_varp->overrun_dma)
11131 dma_unmap_single(boardp->dev, asc_dvc_varp->overrun_dma,
11132 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
11133 kfree(asc_dvc_varp->overrun_buf);
11134 } else
11135 advansys_wide_free_mem(boardp);
11136 err_free_irq:
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011137 free_irq(boardp->irq, shost);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011138 err_unmap:
11139 if (boardp->ioremap_addr)
11140 iounmap(boardp->ioremap_addr);
Johannes Thumshirn8810eac2015-06-03 09:56:42 +020011141#ifdef CONFIG_PCI
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011142 err_shost:
Johannes Thumshirn8810eac2015-06-03 09:56:42 +020011143#endif
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011144 return ret;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011145}
11146
11147/*
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011148 * advansys_release()
11149 *
11150 * Release resources allocated for a single AdvanSys adapter.
11151 */
11152static int advansys_release(struct Scsi_Host *shost)
11153{
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011154 struct asc_board *board = shost_priv(shost);
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011155 ASC_DBG(1, "begin\n");
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011156 scsi_remove_host(shost);
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011157 free_irq(board->irq, shost);
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +020011158
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011159 if (ASC_NARROW_BOARD(board)) {
11160 dma_unmap_single(board->dev,
11161 board->dvc_var.asc_dvc_var.overrun_dma,
11162 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011163 kfree(board->dvc_var.asc_dvc_var.overrun_buf);
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011164 } else {
11165 iounmap(board->ioremap_addr);
11166 advansys_wide_free_mem(board);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011167 }
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011168 scsi_host_put(shost);
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011169 ASC_DBG(1, "end\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011170 return 0;
11171}
11172
Matthew Wilcox95c9f162007-09-09 08:56:39 -060011173#define ASC_IOADR_TABLE_MAX_IX 11
11174
Randy Dunlap747d0162008-01-14 00:55:18 -080011175static PortAddr _asc_def_iop_base[ASC_IOADR_TABLE_MAX_IX] = {
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011176 0x100, 0x0110, 0x120, 0x0130, 0x140, 0x0150, 0x0190,
11177 0x0210, 0x0230, 0x0250, 0x0330
11178};
11179
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +020011180static void advansys_vlb_remove(struct device *dev, unsigned int id)
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011181{
Matthew Wilcox71f361152007-07-30 08:04:53 -060011182 int ioport = _asc_def_iop_base[id];
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011183 advansys_release(dev_get_drvdata(dev));
Matthew Wilcox71f361152007-07-30 08:04:53 -060011184 release_region(ioport, ASC_IOADR_GAP);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011185}
11186
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011187/*
11188 * The VLB IRQ number is found in bits 2 to 4 of the CfgLsw. It decodes as:
11189 * 000: invalid
11190 * 001: 10
11191 * 010: 11
11192 * 011: 12
11193 * 100: invalid
11194 * 101: 14
11195 * 110: 15
11196 * 111: invalid
11197 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011198static unsigned int advansys_vlb_irq_no(PortAddr iop_base)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011199{
11200 unsigned short cfg_lsw = AscGetChipCfgLsw(iop_base);
11201 unsigned int chip_irq = ((cfg_lsw >> 2) & 0x07) + 9;
11202 if ((chip_irq < 10) || (chip_irq == 13) || (chip_irq > 15))
11203 return 0;
11204 return chip_irq;
11205}
11206
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011207static int advansys_vlb_probe(struct device *dev, unsigned int id)
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011208{
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011209 int err = -ENODEV;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011210 PortAddr iop_base = _asc_def_iop_base[id];
11211 struct Scsi_Host *shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011212 struct asc_board *board;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011213
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011214 if (!request_region(iop_base, ASC_IOADR_GAP, DRV_NAME)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011215 ASC_DBG(1, "I/O port 0x%x busy\n", iop_base);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011216 return -ENODEV;
11217 }
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011218 ASC_DBG(1, "probing I/O port 0x%x\n", iop_base);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011219 if (!AscFindSignature(iop_base))
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011220 goto release_region;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011221 /*
11222 * I don't think this condition can actually happen, but the old
11223 * driver did it, and the chances of finding a VLB setup in 2007
11224 * to do testing with is slight to none.
11225 */
11226 if (AscGetChipVersion(iop_base, ASC_IS_VL) > ASC_CHIP_MAX_VER_VL)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011227 goto release_region;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011228
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011229 err = -ENOMEM;
11230 shost = scsi_host_alloc(&advansys_template, sizeof(*board));
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011231 if (!shost)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011232 goto release_region;
11233
Matthew Wilcoxd2411492007-10-02 21:55:31 -040011234 board = shost_priv(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011235 board->irq = advansys_vlb_irq_no(iop_base);
11236 board->dev = dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +020011237 board->shost = shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011238
11239 err = advansys_board_found(shost, iop_base, ASC_IS_VL);
11240 if (err)
11241 goto free_host;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011242
11243 dev_set_drvdata(dev, shost);
11244 return 0;
11245
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011246 free_host:
11247 scsi_host_put(shost);
11248 release_region:
Matthew Wilcox71f361152007-07-30 08:04:53 -060011249 release_region(iop_base, ASC_IOADR_GAP);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011250 return -ENODEV;
11251}
11252
11253static struct isa_driver advansys_vlb_driver = {
11254 .probe = advansys_vlb_probe,
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +020011255 .remove = advansys_vlb_remove,
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011256 .driver = {
11257 .owner = THIS_MODULE,
Matthew Wilcoxb8e5152b2007-09-09 08:56:26 -060011258 .name = "advansys_vlb",
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011259 },
11260};
11261
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011262static struct eisa_device_id advansys_eisa_table[] = {
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011263 { "ABP7401" },
11264 { "ABP7501" },
11265 { "" }
11266};
11267
11268MODULE_DEVICE_TABLE(eisa, advansys_eisa_table);
11269
11270/*
11271 * EISA is a little more tricky than PCI; each EISA device may have two
11272 * channels, and this driver is written to make each channel its own Scsi_Host
11273 */
11274struct eisa_scsi_data {
11275 struct Scsi_Host *host[2];
11276};
11277
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011278/*
11279 * The EISA IRQ number is found in bits 8 to 10 of the CfgLsw. It decodes as:
11280 * 000: 10
11281 * 001: 11
11282 * 010: 12
11283 * 011: invalid
11284 * 100: 14
11285 * 101: 15
11286 * 110: invalid
11287 * 111: invalid
11288 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011289static unsigned int advansys_eisa_irq_no(struct eisa_device *edev)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011290{
11291 unsigned short cfg_lsw = inw(edev->base_addr + 0xc86);
11292 unsigned int chip_irq = ((cfg_lsw >> 8) & 0x07) + 10;
11293 if ((chip_irq == 13) || (chip_irq > 15))
11294 return 0;
11295 return chip_irq;
11296}
11297
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011298static int advansys_eisa_probe(struct device *dev)
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011299{
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011300 int i, ioport, irq = 0;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011301 int err;
11302 struct eisa_device *edev = to_eisa_device(dev);
11303 struct eisa_scsi_data *data;
11304
11305 err = -ENOMEM;
11306 data = kzalloc(sizeof(*data), GFP_KERNEL);
11307 if (!data)
11308 goto fail;
11309 ioport = edev->base_addr + 0xc30;
11310
11311 err = -ENODEV;
11312 for (i = 0; i < 2; i++, ioport += 0x20) {
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011313 struct asc_board *board;
11314 struct Scsi_Host *shost;
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011315 if (!request_region(ioport, ASC_IOADR_GAP, DRV_NAME)) {
Matthew Wilcox71f361152007-07-30 08:04:53 -060011316 printk(KERN_WARNING "Region %x-%x busy\n", ioport,
11317 ioport + ASC_IOADR_GAP - 1);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011318 continue;
Matthew Wilcox71f361152007-07-30 08:04:53 -060011319 }
11320 if (!AscFindSignature(ioport)) {
11321 release_region(ioport, ASC_IOADR_GAP);
11322 continue;
11323 }
11324
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011325 /*
11326 * I don't know why we need to do this for EISA chips, but
11327 * not for any others. It looks to be equivalent to
11328 * AscGetChipCfgMsw, but I may have overlooked something,
11329 * so I'm not converting it until I get an EISA board to
11330 * test with.
11331 */
11332 inw(ioport + 4);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011333
11334 if (!irq)
11335 irq = advansys_eisa_irq_no(edev);
11336
11337 err = -ENOMEM;
11338 shost = scsi_host_alloc(&advansys_template, sizeof(*board));
11339 if (!shost)
11340 goto release_region;
11341
Matthew Wilcoxd2411492007-10-02 21:55:31 -040011342 board = shost_priv(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011343 board->irq = irq;
11344 board->dev = dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +020011345 board->shost = shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011346
11347 err = advansys_board_found(shost, ioport, ASC_IS_EISA);
11348 if (!err) {
11349 data->host[i] = shost;
11350 continue;
Matthew Wilcox71f361152007-07-30 08:04:53 -060011351 }
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011352
11353 scsi_host_put(shost);
11354 release_region:
11355 release_region(ioport, ASC_IOADR_GAP);
11356 break;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011357 }
11358
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011359 if (err)
11360 goto free_data;
11361 dev_set_drvdata(dev, data);
11362 return 0;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011363
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011364 free_data:
11365 kfree(data->host[0]);
11366 kfree(data->host[1]);
11367 kfree(data);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011368 fail:
11369 return err;
11370}
11371
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011372static int advansys_eisa_remove(struct device *dev)
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011373{
11374 int i;
11375 struct eisa_scsi_data *data = dev_get_drvdata(dev);
11376
11377 for (i = 0; i < 2; i++) {
Matthew Wilcox71f361152007-07-30 08:04:53 -060011378 int ioport;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011379 struct Scsi_Host *shost = data->host[i];
11380 if (!shost)
11381 continue;
Matthew Wilcox71f361152007-07-30 08:04:53 -060011382 ioport = shost->io_port;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011383 advansys_release(shost);
Matthew Wilcox71f361152007-07-30 08:04:53 -060011384 release_region(ioport, ASC_IOADR_GAP);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011385 }
11386
11387 kfree(data);
11388 return 0;
11389}
11390
11391static struct eisa_driver advansys_eisa_driver = {
11392 .id_table = advansys_eisa_table,
11393 .driver = {
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011394 .name = DRV_NAME,
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011395 .probe = advansys_eisa_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011396 .remove = advansys_eisa_remove,
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011397 }
11398};
11399
Dave Jones2672ea82006-08-02 17:11:49 -040011400/* PCI Devices supported by this driver */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011401static struct pci_device_id advansys_pci_tbl[] = {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011402 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_1200A,
11403 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
11404 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940,
11405 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
11406 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940U,
11407 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
11408 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940UW,
11409 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
11410 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_38C0800_REV1,
11411 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
11412 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_38C1600_REV1,
11413 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
11414 {}
Dave Jones2672ea82006-08-02 17:11:49 -040011415};
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011416
Dave Jones2672ea82006-08-02 17:11:49 -040011417MODULE_DEVICE_TABLE(pci, advansys_pci_tbl);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011418
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011419static void advansys_set_latency(struct pci_dev *pdev)
Matthew Wilcox9649af32007-07-26 21:51:47 -060011420{
11421 if ((pdev->device == PCI_DEVICE_ID_ASP_1200A) ||
11422 (pdev->device == PCI_DEVICE_ID_ASP_ABP940)) {
11423 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0);
11424 } else {
11425 u8 latency;
11426 pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency);
11427 if (latency < 0x20)
11428 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x20);
11429 }
11430}
11431
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011432static int advansys_pci_probe(struct pci_dev *pdev,
11433 const struct pci_device_id *ent)
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011434{
11435 int err, ioport;
11436 struct Scsi_Host *shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011437 struct asc_board *board;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011438
11439 err = pci_enable_device(pdev);
11440 if (err)
11441 goto fail;
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011442 err = pci_request_regions(pdev, DRV_NAME);
Matthew Wilcox71f361152007-07-30 08:04:53 -060011443 if (err)
11444 goto disable_device;
Matthew Wilcox9649af32007-07-26 21:51:47 -060011445 pci_set_master(pdev);
11446 advansys_set_latency(pdev);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011447
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011448 err = -ENODEV;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011449 if (pci_resource_len(pdev, 0) == 0)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011450 goto release_region;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011451
11452 ioport = pci_resource_start(pdev, 0);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011453
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011454 err = -ENOMEM;
11455 shost = scsi_host_alloc(&advansys_template, sizeof(*board));
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011456 if (!shost)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011457 goto release_region;
11458
Matthew Wilcoxd2411492007-10-02 21:55:31 -040011459 board = shost_priv(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011460 board->irq = pdev->irq;
11461 board->dev = &pdev->dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +020011462 board->shost = shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011463
11464 if (pdev->device == PCI_DEVICE_ID_ASP_ABP940UW ||
11465 pdev->device == PCI_DEVICE_ID_38C0800_REV1 ||
11466 pdev->device == PCI_DEVICE_ID_38C1600_REV1) {
11467 board->flags |= ASC_IS_WIDE_BOARD;
11468 }
11469
11470 err = advansys_board_found(shost, ioport, ASC_IS_PCI);
11471 if (err)
11472 goto free_host;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011473
11474 pci_set_drvdata(pdev, shost);
11475 return 0;
11476
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011477 free_host:
11478 scsi_host_put(shost);
11479 release_region:
Matthew Wilcox71f361152007-07-30 08:04:53 -060011480 pci_release_regions(pdev);
11481 disable_device:
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011482 pci_disable_device(pdev);
11483 fail:
11484 return err;
11485}
11486
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011487static void advansys_pci_remove(struct pci_dev *pdev)
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011488{
11489 advansys_release(pci_get_drvdata(pdev));
Matthew Wilcox71f361152007-07-30 08:04:53 -060011490 pci_release_regions(pdev);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011491 pci_disable_device(pdev);
11492}
11493
11494static struct pci_driver advansys_pci_driver = {
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011495 .name = DRV_NAME,
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011496 .id_table = advansys_pci_tbl,
11497 .probe = advansys_pci_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011498 .remove = advansys_pci_remove,
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011499};
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040011500
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011501static int __init advansys_init(void)
11502{
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011503 int error;
11504
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011505 error = isa_register_driver(&advansys_vlb_driver,
11506 ASC_IOADR_TABLE_MAX_IX);
11507 if (error)
Christoph Hellwig9b4c8ea2021-03-31 09:29:57 +020011508 goto fail;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011509
11510 error = eisa_driver_register(&advansys_eisa_driver);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011511 if (error)
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011512 goto unregister_vlb;
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011513
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011514 error = pci_register_driver(&advansys_pci_driver);
11515 if (error)
11516 goto unregister_eisa;
11517
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011518 return 0;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011519
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011520 unregister_eisa:
11521 eisa_driver_unregister(&advansys_eisa_driver);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011522 unregister_vlb:
11523 isa_unregister_driver(&advansys_vlb_driver);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011524 fail:
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011525 return error;
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011526}
11527
11528static void __exit advansys_exit(void)
11529{
Matthew Wilcox78e77d82007-07-29 21:46:15 -060011530 pci_unregister_driver(&advansys_pci_driver);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011531 eisa_driver_unregister(&advansys_eisa_driver);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011532 isa_unregister_driver(&advansys_vlb_driver);
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011533}
11534
11535module_init(advansys_init);
11536module_exit(advansys_exit);
11537
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040011538MODULE_LICENSE("GPL");
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +053011539MODULE_FIRMWARE("advansys/mcode.bin");
11540MODULE_FIRMWARE("advansys/3550.bin");
11541MODULE_FIRMWARE("advansys/38C0800.bin");
11542MODULE_FIRMWARE("advansys/38C1600.bin");