blob: e73f7847905c71f2efeff8028dcee594688ed9b6 [file] [log] [blame]
Matthew Wilcox01fbfe02007-09-09 08:56:40 -06001#define DRV_NAME "advansys"
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -04002#define ASC_VERSION "3.4" /* AdvanSys Driver Version */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4/*
5 * advansys.c - Linux Host Driver for AdvanSys SCSI Adapters
6 *
7 * Copyright (c) 1995-2000 Advanced System Products, Inc.
8 * Copyright (c) 2000-2001 ConnectCom Solutions, Inc.
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -04009 * Copyright (c) 2007 Matthew Wilcox <matthew@wil.cx>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * All Rights Reserved.
11 *
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040012 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 */
17
18/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * As of March 8, 2000 Advanced System Products, Inc. (AdvanSys)
20 * changed its name to ConnectCom Solutions, Inc.
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040021 * On June 18, 2001 Initio Corp. acquired ConnectCom's SCSI assets
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/string.h>
26#include <linux/kernel.h>
27#include <linux/types.h>
28#include <linux/ioport.h>
29#include <linux/interrupt.h>
30#include <linux/delay.h>
31#include <linux/slab.h>
32#include <linux/mm.h>
33#include <linux/proc_fs.h>
34#include <linux/init.h>
35#include <linux/blkdev.h>
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060036#include <linux/isa.h>
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060037#include <linux/eisa.h>
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040038#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/spinlock.h>
40#include <linux/dma-mapping.h>
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +053041#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/dma.h>
45
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040046#include <scsi/scsi_cmnd.h>
47#include <scsi/scsi_device.h>
48#include <scsi/scsi_tcq.h>
49#include <scsi/scsi.h>
50#include <scsi/scsi_host.h>
51
Matthew Wilcox4bd6d7f2007-07-30 08:41:03 -060052/* FIXME:
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 *
Matthew Wilcox4bd6d7f2007-07-30 08:41:03 -060054 * 1. Although all of the necessary command mapping places have the
55 * appropriate dma_map.. APIs, the driver still processes its internal
56 * queue using bus_to_virt() and virt_to_bus() which are illegal under
57 * the API. The entire queue processing structure will need to be
58 * altered to fix this.
59 * 2. Need to add memory mapping workaround. Test the memory mapping.
60 * If it doesn't work revert to I/O port access. Can a test be done
61 * safely?
62 * 3. Handle an interrupt not working. Keep an interrupt counter in
63 * the interrupt handler. In the timeout function if the interrupt
64 * has not occurred then print a message and run in polled mode.
65 * 4. Need to add support for target mode commands, cf. CAM XPT.
66 * 5. check DMA mapping functions for failure
Matthew Wilcox349d2c42007-09-09 08:56:34 -060067 * 6. Use scsi_transport_spi
68 * 7. advansys_info is not safe against multiple simultaneous callers
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040069 * 8. Add module_param to override ISA/VLB ioport array
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
71#warning this driver is still not properly converted to the DMA API
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* Enable driver /proc statistics. */
74#define ADVANSYS_STATS
75
76/* Enable driver tracing. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040077#undef ADVANSYS_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * Portable Data Types
81 *
82 * Any instance where a 32-bit long or pointer type is assumed
83 * for precision or HW defined structures, the following define
84 * types must be used. In Linux the char, short, and int types
85 * are all consistent at 8, 16, and 32 bits respectively. Pointers
86 * and long types are 64 bits on Alpha and UltraSPARC.
87 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -040088#define ASC_PADDR __u32 /* Physical/Bus address data type. */
89#define ASC_VADDR __u32 /* Virtual address data type. */
90#define ASC_DCNT __u32 /* Unsigned Data count type. */
91#define ASC_SDCNT __s32 /* Signed Data count type. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093typedef unsigned char uchar;
94
95#ifndef TRUE
96#define TRUE (1)
97#endif
98#ifndef FALSE
99#define FALSE (0)
100#endif
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define ERR (-1)
103#define UW_ERR (uint)(0xFFFF)
104#define isodd_word(val) ((((uint)val) & (uint)0x0001) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Dave Jones2672ea82006-08-02 17:11:49 -0400106#define PCI_VENDOR_ID_ASP 0x10cd
107#define PCI_DEVICE_ID_ASP_1200A 0x1100
108#define PCI_DEVICE_ID_ASP_ABP940 0x1200
109#define PCI_DEVICE_ID_ASP_ABP940U 0x1300
110#define PCI_DEVICE_ID_ASP_ABP940UW 0x2300
111#define PCI_DEVICE_ID_38C0800_REV1 0x2500
112#define PCI_DEVICE_ID_38C1600_REV1 0x2700
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Enable CC_VERY_LONG_SG_LIST to support up to 64K element SG lists.
116 * The SRB structure will have to be changed and the ASC_SRB2SCSIQ()
117 * macro re-defined to be able to obtain a ASC_SCSI_Q pointer from the
118 * SRB structure.
119 */
120#define CC_VERY_LONG_SG_LIST 0
121#define ASC_SRB2SCSIQ(srb_ptr) (srb_ptr)
122
Matthew Wilcox9d511a42007-10-02 21:55:42 -0400123#define PortAddr unsigned int /* port address size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define inp(port) inb(port)
125#define outp(port, byte) outb((byte), (port))
126
127#define inpw(port) inw(port)
128#define outpw(port, word) outw((word), (port))
129
130#define ASC_MAX_SG_QUEUE 7
131#define ASC_MAX_SG_LIST 255
132
133#define ASC_CS_TYPE unsigned short
134
135#define ASC_IS_ISA (0x0001)
136#define ASC_IS_ISAPNP (0x0081)
137#define ASC_IS_EISA (0x0002)
138#define ASC_IS_PCI (0x0004)
139#define ASC_IS_PCI_ULTRA (0x0104)
140#define ASC_IS_PCMCIA (0x0008)
141#define ASC_IS_MCA (0x0020)
142#define ASC_IS_VL (0x0040)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#define ASC_IS_WIDESCSI_16 (0x0100)
144#define ASC_IS_WIDESCSI_32 (0x0200)
145#define ASC_IS_BIG_ENDIAN (0x8000)
Matthew Wilcox95c9f162007-09-09 08:56:39 -0600146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#define ASC_CHIP_MIN_VER_VL (0x01)
148#define ASC_CHIP_MAX_VER_VL (0x07)
149#define ASC_CHIP_MIN_VER_PCI (0x09)
150#define ASC_CHIP_MAX_VER_PCI (0x0F)
151#define ASC_CHIP_VER_PCI_BIT (0x08)
152#define ASC_CHIP_MIN_VER_ISA (0x11)
153#define ASC_CHIP_MIN_VER_ISA_PNP (0x21)
154#define ASC_CHIP_MAX_VER_ISA (0x27)
155#define ASC_CHIP_VER_ISA_BIT (0x30)
156#define ASC_CHIP_VER_ISAPNP_BIT (0x20)
157#define ASC_CHIP_VER_ASYN_BUG (0x21)
158#define ASC_CHIP_VER_PCI 0x08
159#define ASC_CHIP_VER_PCI_ULTRA_3150 (ASC_CHIP_VER_PCI | 0x02)
160#define ASC_CHIP_VER_PCI_ULTRA_3050 (ASC_CHIP_VER_PCI | 0x03)
161#define ASC_CHIP_MIN_VER_EISA (0x41)
162#define ASC_CHIP_MAX_VER_EISA (0x47)
163#define ASC_CHIP_VER_EISA_BIT (0x40)
164#define ASC_CHIP_LATEST_VER_EISA ((ASC_CHIP_MIN_VER_EISA - 1) + 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#define ASC_MAX_VL_DMA_COUNT (0x07FFFFFFL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define ASC_MAX_PCI_DMA_COUNT (0xFFFFFFFFL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#define ASC_MAX_ISA_DMA_COUNT (0x00FFFFFFL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169#define ASC_SCSI_ID_BITS 3
170#define ASC_SCSI_TIX_TYPE uchar
171#define ASC_ALL_DEVICE_BIT_SET 0xFF
172#define ASC_SCSI_BIT_ID_TYPE uchar
173#define ASC_MAX_TID 7
174#define ASC_MAX_LUN 7
175#define ASC_SCSI_WIDTH_BIT_SET 0xFF
176#define ASC_MAX_SENSE_LEN 32
177#define ASC_MIN_SENSE_LEN 14
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define ASC_SCSI_RESET_HOLD_TIME_US 60
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
Matthew Wilcoxf05ec592007-09-09 08:56:36 -0600181 * Narrow boards only support 12-byte commands, while wide boards
182 * extend to 16-byte commands.
183 */
184#define ASC_MAX_CDB_LEN 12
185#define ADV_MAX_CDB_LEN 16
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define MS_SDTR_LEN 0x03
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#define MS_WDTR_LEN 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190#define ASC_SG_LIST_PER_Q 7
191#define QS_FREE 0x00
192#define QS_READY 0x01
193#define QS_DISC1 0x02
194#define QS_DISC2 0x04
195#define QS_BUSY 0x08
196#define QS_ABORTED 0x40
197#define QS_DONE 0x80
198#define QC_NO_CALLBACK 0x01
199#define QC_SG_SWAP_QUEUE 0x02
200#define QC_SG_HEAD 0x04
201#define QC_DATA_IN 0x08
202#define QC_DATA_OUT 0x10
203#define QC_URGENT 0x20
204#define QC_MSG_OUT 0x40
205#define QC_REQ_SENSE 0x80
206#define QCSG_SG_XFER_LIST 0x02
207#define QCSG_SG_XFER_MORE 0x04
208#define QCSG_SG_XFER_END 0x08
209#define QD_IN_PROGRESS 0x00
210#define QD_NO_ERROR 0x01
211#define QD_ABORTED_BY_HOST 0x02
212#define QD_WITH_ERROR 0x04
213#define QD_INVALID_REQUEST 0x80
214#define QD_INVALID_HOST_NUM 0x81
215#define QD_INVALID_DEVICE 0x82
216#define QD_ERR_INTERNAL 0xFF
217#define QHSTA_NO_ERROR 0x00
218#define QHSTA_M_SEL_TIMEOUT 0x11
219#define QHSTA_M_DATA_OVER_RUN 0x12
220#define QHSTA_M_DATA_UNDER_RUN 0x12
221#define QHSTA_M_UNEXPECTED_BUS_FREE 0x13
222#define QHSTA_M_BAD_BUS_PHASE_SEQ 0x14
223#define QHSTA_D_QDONE_SG_LIST_CORRUPTED 0x21
224#define QHSTA_D_ASC_DVC_ERROR_CODE_SET 0x22
225#define QHSTA_D_HOST_ABORT_FAILED 0x23
226#define QHSTA_D_EXE_SCSI_Q_FAILED 0x24
227#define QHSTA_D_EXE_SCSI_Q_BUSY_TIMEOUT 0x25
228#define QHSTA_D_ASPI_NO_BUF_POOL 0x26
229#define QHSTA_M_WTM_TIMEOUT 0x41
230#define QHSTA_M_BAD_CMPL_STATUS_IN 0x42
231#define QHSTA_M_NO_AUTO_REQ_SENSE 0x43
232#define QHSTA_M_AUTO_REQ_SENSE_FAIL 0x44
233#define QHSTA_M_TARGET_STATUS_BUSY 0x45
234#define QHSTA_M_BAD_TAG_CODE 0x46
235#define QHSTA_M_BAD_QUEUE_FULL_OR_BUSY 0x47
236#define QHSTA_M_HUNG_REQ_SCSI_BUS_RESET 0x48
237#define QHSTA_D_LRAM_CMP_ERROR 0x81
238#define QHSTA_M_MICRO_CODE_ERROR_HALT 0xA1
239#define ASC_FLAG_SCSIQ_REQ 0x01
240#define ASC_FLAG_BIOS_SCSIQ_REQ 0x02
241#define ASC_FLAG_BIOS_ASYNC_IO 0x04
242#define ASC_FLAG_SRB_LINEAR_ADDR 0x08
243#define ASC_FLAG_WIN16 0x10
244#define ASC_FLAG_WIN32 0x20
245#define ASC_FLAG_ISA_OVER_16MB 0x40
246#define ASC_FLAG_DOS_VM_CALLBACK 0x80
247#define ASC_TAG_FLAG_EXTRA_BYTES 0x10
248#define ASC_TAG_FLAG_DISABLE_DISCONNECT 0x04
249#define ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX 0x08
250#define ASC_TAG_FLAG_DISABLE_CHK_COND_INT_HOST 0x40
251#define ASC_SCSIQ_CPY_BEG 4
252#define ASC_SCSIQ_SGHD_CPY_BEG 2
253#define ASC_SCSIQ_B_FWD 0
254#define ASC_SCSIQ_B_BWD 1
255#define ASC_SCSIQ_B_STATUS 2
256#define ASC_SCSIQ_B_QNO 3
257#define ASC_SCSIQ_B_CNTL 4
258#define ASC_SCSIQ_B_SG_QUEUE_CNT 5
259#define ASC_SCSIQ_D_DATA_ADDR 8
260#define ASC_SCSIQ_D_DATA_CNT 12
261#define ASC_SCSIQ_B_SENSE_LEN 20
262#define ASC_SCSIQ_DONE_INFO_BEG 22
263#define ASC_SCSIQ_D_SRBPTR 22
264#define ASC_SCSIQ_B_TARGET_IX 26
265#define ASC_SCSIQ_B_CDB_LEN 28
266#define ASC_SCSIQ_B_TAG_CODE 29
267#define ASC_SCSIQ_W_VM_ID 30
268#define ASC_SCSIQ_DONE_STATUS 32
269#define ASC_SCSIQ_HOST_STATUS 33
270#define ASC_SCSIQ_SCSI_STATUS 34
271#define ASC_SCSIQ_CDB_BEG 36
272#define ASC_SCSIQ_DW_REMAIN_XFER_ADDR 56
273#define ASC_SCSIQ_DW_REMAIN_XFER_CNT 60
274#define ASC_SCSIQ_B_FIRST_SG_WK_QP 48
275#define ASC_SCSIQ_B_SG_WK_QP 49
276#define ASC_SCSIQ_B_SG_WK_IX 50
277#define ASC_SCSIQ_W_ALT_DC1 52
278#define ASC_SCSIQ_B_LIST_CNT 6
279#define ASC_SCSIQ_B_CUR_LIST_CNT 7
280#define ASC_SGQ_B_SG_CNTL 4
281#define ASC_SGQ_B_SG_HEAD_QP 5
282#define ASC_SGQ_B_SG_LIST_CNT 6
283#define ASC_SGQ_B_SG_CUR_LIST_CNT 7
284#define ASC_SGQ_LIST_BEG 8
285#define ASC_DEF_SCSI1_QNG 4
286#define ASC_MAX_SCSI1_QNG 4
287#define ASC_DEF_SCSI2_QNG 16
288#define ASC_MAX_SCSI2_QNG 32
289#define ASC_TAG_CODE_MASK 0x23
290#define ASC_STOP_REQ_RISC_STOP 0x01
291#define ASC_STOP_ACK_RISC_STOP 0x03
292#define ASC_STOP_CLEAN_UP_BUSY_Q 0x10
293#define ASC_STOP_CLEAN_UP_DISC_Q 0x20
294#define ASC_STOP_HOST_REQ_RISC_HALT 0x40
295#define ASC_TIDLUN_TO_IX(tid, lun) (ASC_SCSI_TIX_TYPE)((tid) + ((lun)<<ASC_SCSI_ID_BITS))
296#define ASC_TID_TO_TARGET_ID(tid) (ASC_SCSI_BIT_ID_TYPE)(0x01 << (tid))
297#define ASC_TIX_TO_TARGET_ID(tix) (0x01 << ((tix) & ASC_MAX_TID))
298#define ASC_TIX_TO_TID(tix) ((tix) & ASC_MAX_TID)
299#define ASC_TID_TO_TIX(tid) ((tid) & ASC_MAX_TID)
300#define ASC_TIX_TO_LUN(tix) (((tix) >> ASC_SCSI_ID_BITS) & ASC_MAX_LUN)
301#define ASC_QNO_TO_QADDR(q_no) ((ASC_QADR_BEG)+((int)(q_no) << 6))
302
303typedef struct asc_scsiq_1 {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400304 uchar status;
305 uchar q_no;
306 uchar cntl;
307 uchar sg_queue_cnt;
308 uchar target_id;
309 uchar target_lun;
310 ASC_PADDR data_addr;
311 ASC_DCNT data_cnt;
312 ASC_PADDR sense_addr;
313 uchar sense_len;
314 uchar extra_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315} ASC_SCSIQ_1;
316
317typedef struct asc_scsiq_2 {
Hannes Reinecke9c17c622015-04-24 13:18:21 +0200318 u32 srb_tag;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400319 uchar target_ix;
320 uchar flag;
321 uchar cdb_len;
322 uchar tag_code;
323 ushort vm_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324} ASC_SCSIQ_2;
325
326typedef struct asc_scsiq_3 {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400327 uchar done_stat;
328 uchar host_stat;
329 uchar scsi_stat;
330 uchar scsi_msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331} ASC_SCSIQ_3;
332
333typedef struct asc_scsiq_4 {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400334 uchar cdb[ASC_MAX_CDB_LEN];
335 uchar y_first_sg_list_qp;
336 uchar y_working_sg_qp;
337 uchar y_working_sg_ix;
338 uchar y_res;
339 ushort x_req_count;
340 ushort x_reconnect_rtn;
341 ASC_PADDR x_saved_data_addr;
342 ASC_DCNT x_saved_data_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343} ASC_SCSIQ_4;
344
345typedef struct asc_q_done_info {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400346 ASC_SCSIQ_2 d2;
347 ASC_SCSIQ_3 d3;
348 uchar q_status;
349 uchar q_no;
350 uchar cntl;
351 uchar sense_len;
352 uchar extra_bytes;
353 uchar res;
354 ASC_DCNT remain_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355} ASC_QDONE_INFO;
356
357typedef struct asc_sg_list {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400358 ASC_PADDR addr;
359 ASC_DCNT bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360} ASC_SG_LIST;
361
362typedef struct asc_sg_head {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400363 ushort entry_cnt;
364 ushort queue_cnt;
365 ushort entry_to_copy;
366 ushort res;
Matthew Wilcox05848b62007-10-02 21:55:25 -0400367 ASC_SG_LIST sg_list[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368} ASC_SG_HEAD;
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370typedef struct asc_scsi_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400371 ASC_SCSIQ_1 q1;
372 ASC_SCSIQ_2 q2;
373 uchar *cdbptr;
374 ASC_SG_HEAD *sg_head;
375 ushort remain_sg_entry_cnt;
376 ushort next_sg_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377} ASC_SCSI_Q;
378
379typedef struct asc_scsi_req_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400380 ASC_SCSIQ_1 r1;
381 ASC_SCSIQ_2 r2;
382 uchar *cdbptr;
383 ASC_SG_HEAD *sg_head;
384 uchar *sense_ptr;
385 ASC_SCSIQ_3 r3;
386 uchar cdb[ASC_MAX_CDB_LEN];
387 uchar sense[ASC_MIN_SENSE_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388} ASC_SCSI_REQ_Q;
389
390typedef struct asc_scsi_bios_req_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400391 ASC_SCSIQ_1 r1;
392 ASC_SCSIQ_2 r2;
393 uchar *cdbptr;
394 ASC_SG_HEAD *sg_head;
395 uchar *sense_ptr;
396 ASC_SCSIQ_3 r3;
397 uchar cdb[ASC_MAX_CDB_LEN];
398 uchar sense[ASC_MIN_SENSE_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399} ASC_SCSI_BIOS_REQ_Q;
400
401typedef struct asc_risc_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400402 uchar fwd;
403 uchar bwd;
404 ASC_SCSIQ_1 i1;
405 ASC_SCSIQ_2 i2;
406 ASC_SCSIQ_3 i3;
407 ASC_SCSIQ_4 i4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408} ASC_RISC_Q;
409
410typedef struct asc_sg_list_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400411 uchar seq_no;
412 uchar q_no;
413 uchar cntl;
414 uchar sg_head_qp;
415 uchar sg_list_cnt;
416 uchar sg_cur_list_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417} ASC_SG_LIST_Q;
418
419typedef struct asc_risc_sg_list_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400420 uchar fwd;
421 uchar bwd;
422 ASC_SG_LIST_Q sg;
423 ASC_SG_LIST sg_list[7];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424} ASC_RISC_SG_LIST_Q;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#define ASCQ_ERR_Q_STATUS 0x0D
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#define ASCQ_ERR_CUR_QNG 0x17
428#define ASCQ_ERR_SG_Q_LINKS 0x18
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429#define ASCQ_ERR_ISR_RE_ENTRY 0x1A
430#define ASCQ_ERR_CRITICAL_RE_ENTRY 0x1B
431#define ASCQ_ERR_ISR_ON_CRITICAL 0x1C
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433/*
434 * Warning code values are set in ASC_DVC_VAR 'warn_code'.
435 */
436#define ASC_WARN_NO_ERROR 0x0000
437#define ASC_WARN_IO_PORT_ROTATE 0x0001
438#define ASC_WARN_EEPROM_CHKSUM 0x0002
439#define ASC_WARN_IRQ_MODIFIED 0x0004
440#define ASC_WARN_AUTO_CONFIG 0x0008
441#define ASC_WARN_CMD_QNG_CONFLICT 0x0010
442#define ASC_WARN_EEPROM_RECOVER 0x0020
443#define ASC_WARN_CFG_MSW_RECOVER 0x0040
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445/*
Matthew Wilcox720349a2007-10-02 21:55:30 -0400446 * Error code values are set in {ASC/ADV}_DVC_VAR 'err_code'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 */
Matthew Wilcox720349a2007-10-02 21:55:30 -0400448#define ASC_IERR_NO_CARRIER 0x0001 /* No more carrier memory */
449#define ASC_IERR_MCODE_CHKSUM 0x0002 /* micro code check sum error */
450#define ASC_IERR_SET_PC_ADDR 0x0004
451#define ASC_IERR_START_STOP_CHIP 0x0008 /* start/stop chip failed */
452#define ASC_IERR_ILLEGAL_CONNECTION 0x0010 /* Illegal cable connection */
453#define ASC_IERR_SINGLE_END_DEVICE 0x0020 /* SE device on DIFF bus */
454#define ASC_IERR_REVERSED_CABLE 0x0040 /* Narrow flat cable reversed */
455#define ASC_IERR_SET_SCSI_ID 0x0080 /* set SCSI ID failed */
456#define ASC_IERR_HVD_DEVICE 0x0100 /* HVD device on LVD port */
457#define ASC_IERR_BAD_SIGNATURE 0x0200 /* signature not found */
458#define ASC_IERR_NO_BUS_TYPE 0x0400
459#define ASC_IERR_BIST_PRE_TEST 0x0800 /* BIST pre-test error */
460#define ASC_IERR_BIST_RAM_TEST 0x1000 /* BIST RAM test error */
461#define ASC_IERR_BAD_CHIPTYPE 0x2000 /* Invalid chip_type setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#define ASC_DEF_MAX_TOTAL_QNG (0xF0)
464#define ASC_MIN_TAG_Q_PER_DVC (0x04)
Matthew Wilcox95c9f162007-09-09 08:56:39 -0600465#define ASC_MIN_FREE_Q (0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466#define ASC_MIN_TOTAL_QNG ((ASC_MAX_SG_QUEUE)+(ASC_MIN_FREE_Q))
467#define ASC_MAX_TOTAL_QNG 240
468#define ASC_MAX_PCI_ULTRA_INRAM_TOTAL_QNG 16
469#define ASC_MAX_PCI_ULTRA_INRAM_TAG_QNG 8
470#define ASC_MAX_PCI_INRAM_TOTAL_QNG 20
471#define ASC_MAX_INRAM_TAG_QNG 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#define ASC_IOADR_GAP 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#define ASC_SYN_MAX_OFFSET 0x0F
474#define ASC_DEF_SDTR_OFFSET 0x0F
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475#define ASC_SDTR_ULTRA_PCI_10MB_INDEX 0x02
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -0400476#define ASYN_SDTR_DATA_FIX_PCI_REV_AB 0x41
477
478/* The narrow chip only supports a limited selection of transfer rates.
479 * These are encoded in the range 0..7 or 0..15 depending whether the chip
480 * is Ultra-capable or not. These tables let us convert from one to the other.
481 */
482static const unsigned char asc_syn_xfer_period[8] = {
483 25, 30, 35, 40, 50, 60, 70, 85
484};
485
486static const unsigned char asc_syn_ultra_xfer_period[16] = {
487 12, 19, 25, 32, 38, 44, 50, 57, 63, 69, 75, 82, 88, 94, 100, 107
488};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490typedef struct ext_msg {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400491 uchar msg_type;
492 uchar msg_len;
493 uchar msg_req;
494 union {
495 struct {
496 uchar sdtr_xfer_period;
497 uchar sdtr_req_ack_offset;
498 } sdtr;
499 struct {
500 uchar wdtr_width;
501 } wdtr;
502 struct {
503 uchar mdp_b3;
504 uchar mdp_b2;
505 uchar mdp_b1;
506 uchar mdp_b0;
507 } mdp;
508 } u_ext_msg;
509 uchar res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510} EXT_MSG;
511
512#define xfer_period u_ext_msg.sdtr.sdtr_xfer_period
513#define req_ack_offset u_ext_msg.sdtr.sdtr_req_ack_offset
514#define wdtr_width u_ext_msg.wdtr.wdtr_width
515#define mdp_b3 u_ext_msg.mdp_b3
516#define mdp_b2 u_ext_msg.mdp_b2
517#define mdp_b1 u_ext_msg.mdp_b1
518#define mdp_b0 u_ext_msg.mdp_b0
519
520typedef struct asc_dvc_cfg {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400521 ASC_SCSI_BIT_ID_TYPE can_tagged_qng;
522 ASC_SCSI_BIT_ID_TYPE cmd_qng_enabled;
523 ASC_SCSI_BIT_ID_TYPE disc_enable;
524 ASC_SCSI_BIT_ID_TYPE sdtr_enable;
525 uchar chip_scsi_id;
526 uchar isa_dma_speed;
527 uchar isa_dma_channel;
528 uchar chip_version;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400529 ushort mcode_date;
530 ushort mcode_version;
531 uchar max_tag_qng[ASC_MAX_TID + 1];
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400532 uchar sdtr_period_offset[ASC_MAX_TID + 1];
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400533 uchar adapter_info[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534} ASC_DVC_CFG;
535
536#define ASC_DEF_DVC_CNTL 0xFFFF
537#define ASC_DEF_CHIP_SCSI_ID 7
538#define ASC_DEF_ISA_DMA_SPEED 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539#define ASC_INIT_STATE_BEG_GET_CFG 0x0001
540#define ASC_INIT_STATE_END_GET_CFG 0x0002
541#define ASC_INIT_STATE_BEG_SET_CFG 0x0004
542#define ASC_INIT_STATE_END_SET_CFG 0x0008
543#define ASC_INIT_STATE_BEG_LOAD_MC 0x0010
544#define ASC_INIT_STATE_END_LOAD_MC 0x0020
545#define ASC_INIT_STATE_BEG_INQUIRY 0x0040
546#define ASC_INIT_STATE_END_INQUIRY 0x0080
547#define ASC_INIT_RESET_SCSI_DONE 0x0100
548#define ASC_INIT_STATE_WITHOUT_EEP 0x8000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549#define ASC_BUG_FIX_IF_NOT_DWB 0x0001
550#define ASC_BUG_FIX_ASYN_USE_SYN 0x0002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551#define ASC_MIN_TAGGED_CMD 7
552#define ASC_MAX_SCSI_RESET_WAIT 30
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -0400553#define ASC_OVERRUN_BSIZE 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400555struct asc_dvc_var; /* Forward Declaration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557typedef struct asc_dvc_var {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400558 PortAddr iop_base;
559 ushort err_code;
560 ushort dvc_cntl;
561 ushort bug_fix_cntl;
562 ushort bus_type;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400563 ASC_SCSI_BIT_ID_TYPE init_sdtr;
564 ASC_SCSI_BIT_ID_TYPE sdtr_done;
565 ASC_SCSI_BIT_ID_TYPE use_tagged_qng;
566 ASC_SCSI_BIT_ID_TYPE unit_not_ready;
567 ASC_SCSI_BIT_ID_TYPE queue_full_or_busy;
568 ASC_SCSI_BIT_ID_TYPE start_motor;
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +0900569 uchar *overrun_buf;
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -0400570 dma_addr_t overrun_dma;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400571 uchar scsi_reset_wait;
572 uchar chip_no;
573 char is_in_int;
574 uchar max_total_qng;
575 uchar cur_total_qng;
576 uchar in_critical_cnt;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400577 uchar last_q_shortage;
578 ushort init_state;
579 uchar cur_dvc_qng[ASC_MAX_TID + 1];
580 uchar max_dvc_qng[ASC_MAX_TID + 1];
581 ASC_SCSI_Q *scsiq_busy_head[ASC_MAX_TID + 1];
582 ASC_SCSI_Q *scsiq_busy_tail[ASC_MAX_TID + 1];
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -0400583 const uchar *sdtr_period_tbl;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400584 ASC_DVC_CFG *cfg;
585 ASC_SCSI_BIT_ID_TYPE pci_fix_asyn_xfer_always;
586 char redo_scam;
587 ushort res2;
588 uchar dos_int13_table[ASC_MAX_TID + 1];
589 ASC_DCNT max_dma_count;
590 ASC_SCSI_BIT_ID_TYPE no_scam;
591 ASC_SCSI_BIT_ID_TYPE pci_fix_asyn_xfer;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -0400592 uchar min_sdtr_index;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400593 uchar max_sdtr_index;
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400594 struct asc_board *drv_ptr;
595 ASC_DCNT uc_break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596} ASC_DVC_VAR;
597
598typedef struct asc_dvc_inq_info {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400599 uchar type[ASC_MAX_TID + 1][ASC_MAX_LUN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600} ASC_DVC_INQ_INFO;
601
602typedef struct asc_cap_info {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400603 ASC_DCNT lba;
604 ASC_DCNT blk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605} ASC_CAP_INFO;
606
607typedef struct asc_cap_info_array {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400608 ASC_CAP_INFO cap_info[ASC_MAX_TID + 1][ASC_MAX_LUN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609} ASC_CAP_INFO_ARRAY;
610
611#define ASC_MCNTL_NO_SEL_TIMEOUT (ushort)0x0001
612#define ASC_MCNTL_NULL_TARGET (ushort)0x0002
613#define ASC_CNTL_INITIATOR (ushort)0x0001
614#define ASC_CNTL_BIOS_GT_1GB (ushort)0x0002
615#define ASC_CNTL_BIOS_GT_2_DISK (ushort)0x0004
616#define ASC_CNTL_BIOS_REMOVABLE (ushort)0x0008
617#define ASC_CNTL_NO_SCAM (ushort)0x0010
618#define ASC_CNTL_INT_MULTI_Q (ushort)0x0080
619#define ASC_CNTL_NO_LUN_SUPPORT (ushort)0x0040
620#define ASC_CNTL_NO_VERIFY_COPY (ushort)0x0100
621#define ASC_CNTL_RESET_SCSI (ushort)0x0200
622#define ASC_CNTL_INIT_INQUIRY (ushort)0x0400
623#define ASC_CNTL_INIT_VERBOSE (ushort)0x0800
624#define ASC_CNTL_SCSI_PARITY (ushort)0x1000
625#define ASC_CNTL_BURST_MODE (ushort)0x2000
626#define ASC_CNTL_SDTR_ENABLE_ULTRA (ushort)0x4000
627#define ASC_EEP_DVC_CFG_BEG_VL 2
628#define ASC_EEP_MAX_DVC_ADDR_VL 15
629#define ASC_EEP_DVC_CFG_BEG 32
630#define ASC_EEP_MAX_DVC_ADDR 45
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631#define ASC_EEP_MAX_RETRY 20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633/*
634 * These macros keep the chip SCSI id and ISA DMA speed
635 * bitfields in board order. C bitfields aren't portable
636 * between big and little-endian platforms so they are
637 * not used.
638 */
639
640#define ASC_EEP_GET_CHIP_ID(cfg) ((cfg)->id_speed & 0x0f)
641#define ASC_EEP_GET_DMA_SPD(cfg) (((cfg)->id_speed & 0xf0) >> 4)
642#define ASC_EEP_SET_CHIP_ID(cfg, sid) \
643 ((cfg)->id_speed = ((cfg)->id_speed & 0xf0) | ((sid) & ASC_MAX_TID))
644#define ASC_EEP_SET_DMA_SPD(cfg, spd) \
645 ((cfg)->id_speed = ((cfg)->id_speed & 0x0f) | ((spd) & 0x0f) << 4)
646
647typedef struct asceep_config {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400648 ushort cfg_lsw;
649 ushort cfg_msw;
650 uchar init_sdtr;
651 uchar disc_enable;
652 uchar use_cmd_qng;
653 uchar start_motor;
654 uchar max_total_qng;
655 uchar max_tag_qng;
656 uchar bios_scan;
657 uchar power_up_wait;
658 uchar no_scam;
659 uchar id_speed; /* low order 4 bits is chip scsi id */
660 /* high order 4 bits is isa dma speed */
661 uchar dos_int13_table[ASC_MAX_TID + 1];
662 uchar adapter_info[6];
663 ushort cntl;
664 ushort chksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665} ASCEEP_CONFIG;
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#define ASC_EEP_CMD_READ 0x80
668#define ASC_EEP_CMD_WRITE 0x40
669#define ASC_EEP_CMD_WRITE_ABLE 0x30
670#define ASC_EEP_CMD_WRITE_DISABLE 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671#define ASCV_MSGOUT_BEG 0x0000
672#define ASCV_MSGOUT_SDTR_PERIOD (ASCV_MSGOUT_BEG+3)
673#define ASCV_MSGOUT_SDTR_OFFSET (ASCV_MSGOUT_BEG+4)
674#define ASCV_BREAK_SAVED_CODE (ushort)0x0006
675#define ASCV_MSGIN_BEG (ASCV_MSGOUT_BEG+8)
676#define ASCV_MSGIN_SDTR_PERIOD (ASCV_MSGIN_BEG+3)
677#define ASCV_MSGIN_SDTR_OFFSET (ASCV_MSGIN_BEG+4)
678#define ASCV_SDTR_DATA_BEG (ASCV_MSGIN_BEG+8)
679#define ASCV_SDTR_DONE_BEG (ASCV_SDTR_DATA_BEG+8)
680#define ASCV_MAX_DVC_QNG_BEG (ushort)0x0020
681#define ASCV_BREAK_ADDR (ushort)0x0028
682#define ASCV_BREAK_NOTIFY_COUNT (ushort)0x002A
683#define ASCV_BREAK_CONTROL (ushort)0x002C
684#define ASCV_BREAK_HIT_COUNT (ushort)0x002E
685
686#define ASCV_ASCDVC_ERR_CODE_W (ushort)0x0030
687#define ASCV_MCODE_CHKSUM_W (ushort)0x0032
688#define ASCV_MCODE_SIZE_W (ushort)0x0034
689#define ASCV_STOP_CODE_B (ushort)0x0036
690#define ASCV_DVC_ERR_CODE_B (ushort)0x0037
691#define ASCV_OVERRUN_PADDR_D (ushort)0x0038
692#define ASCV_OVERRUN_BSIZE_D (ushort)0x003C
693#define ASCV_HALTCODE_W (ushort)0x0040
694#define ASCV_CHKSUM_W (ushort)0x0042
695#define ASCV_MC_DATE_W (ushort)0x0044
696#define ASCV_MC_VER_W (ushort)0x0046
697#define ASCV_NEXTRDY_B (ushort)0x0048
698#define ASCV_DONENEXT_B (ushort)0x0049
699#define ASCV_USE_TAGGED_QNG_B (ushort)0x004A
700#define ASCV_SCSIBUSY_B (ushort)0x004B
701#define ASCV_Q_DONE_IN_PROGRESS_B (ushort)0x004C
702#define ASCV_CURCDB_B (ushort)0x004D
703#define ASCV_RCLUN_B (ushort)0x004E
704#define ASCV_BUSY_QHEAD_B (ushort)0x004F
705#define ASCV_DISC1_QHEAD_B (ushort)0x0050
706#define ASCV_DISC_ENABLE_B (ushort)0x0052
707#define ASCV_CAN_TAGGED_QNG_B (ushort)0x0053
708#define ASCV_HOSTSCSI_ID_B (ushort)0x0055
709#define ASCV_MCODE_CNTL_B (ushort)0x0056
710#define ASCV_NULL_TARGET_B (ushort)0x0057
711#define ASCV_FREE_Q_HEAD_W (ushort)0x0058
712#define ASCV_DONE_Q_TAIL_W (ushort)0x005A
713#define ASCV_FREE_Q_HEAD_B (ushort)(ASCV_FREE_Q_HEAD_W+1)
714#define ASCV_DONE_Q_TAIL_B (ushort)(ASCV_DONE_Q_TAIL_W+1)
715#define ASCV_HOST_FLAG_B (ushort)0x005D
716#define ASCV_TOTAL_READY_Q_B (ushort)0x0064
717#define ASCV_VER_SERIAL_B (ushort)0x0065
718#define ASCV_HALTCODE_SAVED_W (ushort)0x0066
719#define ASCV_WTM_FLAG_B (ushort)0x0068
720#define ASCV_RISC_FLAG_B (ushort)0x006A
721#define ASCV_REQ_SG_LIST_QP (ushort)0x006B
722#define ASC_HOST_FLAG_IN_ISR 0x01
723#define ASC_HOST_FLAG_ACK_INT 0x02
724#define ASC_RISC_FLAG_GEN_INT 0x01
725#define ASC_RISC_FLAG_REQ_SG_LIST 0x02
726#define IOP_CTRL (0x0F)
727#define IOP_STATUS (0x0E)
728#define IOP_INT_ACK IOP_STATUS
729#define IOP_REG_IFC (0x0D)
730#define IOP_SYN_OFFSET (0x0B)
731#define IOP_EXTRA_CONTROL (0x0D)
732#define IOP_REG_PC (0x0C)
733#define IOP_RAM_ADDR (0x0A)
734#define IOP_RAM_DATA (0x08)
735#define IOP_EEP_DATA (0x06)
736#define IOP_EEP_CMD (0x07)
737#define IOP_VERSION (0x03)
738#define IOP_CONFIG_HIGH (0x04)
739#define IOP_CONFIG_LOW (0x02)
740#define IOP_SIG_BYTE (0x01)
741#define IOP_SIG_WORD (0x00)
742#define IOP_REG_DC1 (0x0E)
743#define IOP_REG_DC0 (0x0C)
744#define IOP_REG_SB (0x0B)
745#define IOP_REG_DA1 (0x0A)
746#define IOP_REG_DA0 (0x08)
747#define IOP_REG_SC (0x09)
748#define IOP_DMA_SPEED (0x07)
749#define IOP_REG_FLAG (0x07)
750#define IOP_FIFO_H (0x06)
751#define IOP_FIFO_L (0x04)
752#define IOP_REG_ID (0x05)
753#define IOP_REG_QP (0x03)
754#define IOP_REG_IH (0x02)
755#define IOP_REG_IX (0x01)
756#define IOP_REG_AX (0x00)
757#define IFC_REG_LOCK (0x00)
758#define IFC_REG_UNLOCK (0x09)
759#define IFC_WR_EN_FILTER (0x10)
760#define IFC_RD_NO_EEPROM (0x10)
761#define IFC_SLEW_RATE (0x20)
762#define IFC_ACT_NEG (0x40)
763#define IFC_INP_FILTER (0x80)
764#define IFC_INIT_DEFAULT (IFC_ACT_NEG | IFC_REG_UNLOCK)
765#define SC_SEL (uchar)(0x80)
766#define SC_BSY (uchar)(0x40)
767#define SC_ACK (uchar)(0x20)
768#define SC_REQ (uchar)(0x10)
769#define SC_ATN (uchar)(0x08)
770#define SC_IO (uchar)(0x04)
771#define SC_CD (uchar)(0x02)
772#define SC_MSG (uchar)(0x01)
773#define SEC_SCSI_CTL (uchar)(0x80)
774#define SEC_ACTIVE_NEGATE (uchar)(0x40)
775#define SEC_SLEW_RATE (uchar)(0x20)
776#define SEC_ENABLE_FILTER (uchar)(0x10)
777#define ASC_HALT_EXTMSG_IN (ushort)0x8000
778#define ASC_HALT_CHK_CONDITION (ushort)0x8100
779#define ASC_HALT_SS_QUEUE_FULL (ushort)0x8200
780#define ASC_HALT_DISABLE_ASYN_USE_SYN_FIX (ushort)0x8300
781#define ASC_HALT_ENABLE_ASYN_USE_SYN_FIX (ushort)0x8400
782#define ASC_HALT_SDTR_REJECTED (ushort)0x4000
783#define ASC_HALT_HOST_COPY_SG_LIST_TO_RISC ( ushort )0x2000
784#define ASC_MAX_QNO 0xF8
785#define ASC_DATA_SEC_BEG (ushort)0x0080
786#define ASC_DATA_SEC_END (ushort)0x0080
787#define ASC_CODE_SEC_BEG (ushort)0x0080
788#define ASC_CODE_SEC_END (ushort)0x0080
789#define ASC_QADR_BEG (0x4000)
790#define ASC_QADR_USED (ushort)(ASC_MAX_QNO * 64)
791#define ASC_QADR_END (ushort)0x7FFF
792#define ASC_QLAST_ADR (ushort)0x7FC0
793#define ASC_QBLK_SIZE 0x40
794#define ASC_BIOS_DATA_QBEG 0xF8
795#define ASC_MIN_ACTIVE_QNO 0x01
796#define ASC_QLINK_END 0xFF
797#define ASC_EEPROM_WORDS 0x10
798#define ASC_MAX_MGS_LEN 0x10
799#define ASC_BIOS_ADDR_DEF 0xDC00
800#define ASC_BIOS_SIZE 0x3800
801#define ASC_BIOS_RAM_OFF 0x3800
802#define ASC_BIOS_RAM_SIZE 0x800
803#define ASC_BIOS_MIN_ADDR 0xC000
804#define ASC_BIOS_MAX_ADDR 0xEC00
805#define ASC_BIOS_BANK_SIZE 0x0400
806#define ASC_MCODE_START_ADDR 0x0080
807#define ASC_CFG0_HOST_INT_ON 0x0020
808#define ASC_CFG0_BIOS_ON 0x0040
809#define ASC_CFG0_VERA_BURST_ON 0x0080
810#define ASC_CFG0_SCSI_PARITY_ON 0x0800
811#define ASC_CFG1_SCSI_TARGET_ON 0x0080
812#define ASC_CFG1_LRAM_8BITS_ON 0x0800
813#define ASC_CFG_MSW_CLR_MASK 0x3080
814#define CSW_TEST1 (ASC_CS_TYPE)0x8000
815#define CSW_AUTO_CONFIG (ASC_CS_TYPE)0x4000
816#define CSW_RESERVED1 (ASC_CS_TYPE)0x2000
817#define CSW_IRQ_WRITTEN (ASC_CS_TYPE)0x1000
818#define CSW_33MHZ_SELECTED (ASC_CS_TYPE)0x0800
819#define CSW_TEST2 (ASC_CS_TYPE)0x0400
820#define CSW_TEST3 (ASC_CS_TYPE)0x0200
821#define CSW_RESERVED2 (ASC_CS_TYPE)0x0100
822#define CSW_DMA_DONE (ASC_CS_TYPE)0x0080
823#define CSW_FIFO_RDY (ASC_CS_TYPE)0x0040
824#define CSW_EEP_READ_DONE (ASC_CS_TYPE)0x0020
825#define CSW_HALTED (ASC_CS_TYPE)0x0010
826#define CSW_SCSI_RESET_ACTIVE (ASC_CS_TYPE)0x0008
827#define CSW_PARITY_ERR (ASC_CS_TYPE)0x0004
828#define CSW_SCSI_RESET_LATCH (ASC_CS_TYPE)0x0002
829#define CSW_INT_PENDING (ASC_CS_TYPE)0x0001
830#define CIW_CLR_SCSI_RESET_INT (ASC_CS_TYPE)0x1000
831#define CIW_INT_ACK (ASC_CS_TYPE)0x0100
832#define CIW_TEST1 (ASC_CS_TYPE)0x0200
833#define CIW_TEST2 (ASC_CS_TYPE)0x0400
834#define CIW_SEL_33MHZ (ASC_CS_TYPE)0x0800
835#define CIW_IRQ_ACT (ASC_CS_TYPE)0x1000
836#define CC_CHIP_RESET (uchar)0x80
837#define CC_SCSI_RESET (uchar)0x40
838#define CC_HALT (uchar)0x20
839#define CC_SINGLE_STEP (uchar)0x10
840#define CC_DMA_ABLE (uchar)0x08
841#define CC_TEST (uchar)0x04
842#define CC_BANK_ONE (uchar)0x02
843#define CC_DIAG (uchar)0x01
844#define ASC_1000_ID0W 0x04C1
845#define ASC_1000_ID0W_FIX 0x00C1
846#define ASC_1000_ID1B 0x25
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847#define ASC_EISA_REV_IOP_MASK (0x0C83)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848#define ASC_EISA_CFG_IOP_MASK (0x0C86)
849#define ASC_GET_EISA_SLOT(iop) (PortAddr)((iop) & 0xF000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850#define INS_HALTINT (ushort)0x6281
851#define INS_HALT (ushort)0x6280
852#define INS_SINT (ushort)0x6200
853#define INS_RFLAG_WTM (ushort)0x7380
854#define ASC_MC_SAVE_CODE_WSIZE 0x500
855#define ASC_MC_SAVE_DATA_WSIZE 0x40
856
857typedef struct asc_mc_saved {
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400858 ushort data[ASC_MC_SAVE_DATA_WSIZE];
859 ushort code[ASC_MC_SAVE_CODE_WSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860} ASC_MC_SAVED;
861
862#define AscGetQDoneInProgress(port) AscReadLramByte((port), ASCV_Q_DONE_IN_PROGRESS_B)
863#define AscPutQDoneInProgress(port, val) AscWriteLramByte((port), ASCV_Q_DONE_IN_PROGRESS_B, val)
864#define AscGetVarFreeQHead(port) AscReadLramWord((port), ASCV_FREE_Q_HEAD_W)
865#define AscGetVarDoneQTail(port) AscReadLramWord((port), ASCV_DONE_Q_TAIL_W)
866#define AscPutVarFreeQHead(port, val) AscWriteLramWord((port), ASCV_FREE_Q_HEAD_W, val)
867#define AscPutVarDoneQTail(port, val) AscWriteLramWord((port), ASCV_DONE_Q_TAIL_W, val)
868#define AscGetRiscVarFreeQHead(port) AscReadLramByte((port), ASCV_NEXTRDY_B)
869#define AscGetRiscVarDoneQTail(port) AscReadLramByte((port), ASCV_DONENEXT_B)
870#define AscPutRiscVarFreeQHead(port, val) AscWriteLramByte((port), ASCV_NEXTRDY_B, val)
871#define AscPutRiscVarDoneQTail(port, val) AscWriteLramByte((port), ASCV_DONENEXT_B, val)
Matthew Wilcox51219352007-10-02 21:55:22 -0400872#define AscPutMCodeSDTRDoneAtID(port, id, data) AscWriteLramByte((port), (ushort)((ushort)ASCV_SDTR_DONE_BEG+(ushort)id), (data))
873#define AscGetMCodeSDTRDoneAtID(port, id) AscReadLramByte((port), (ushort)((ushort)ASCV_SDTR_DONE_BEG+(ushort)id))
874#define AscPutMCodeInitSDTRAtID(port, id, data) AscWriteLramByte((port), (ushort)((ushort)ASCV_SDTR_DATA_BEG+(ushort)id), data)
875#define AscGetMCodeInitSDTRAtID(port, id) AscReadLramByte((port), (ushort)((ushort)ASCV_SDTR_DATA_BEG+(ushort)id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876#define AscGetChipSignatureByte(port) (uchar)inp((port)+IOP_SIG_BYTE)
877#define AscGetChipSignatureWord(port) (ushort)inpw((port)+IOP_SIG_WORD)
878#define AscGetChipVerNo(port) (uchar)inp((port)+IOP_VERSION)
879#define AscGetChipCfgLsw(port) (ushort)inpw((port)+IOP_CONFIG_LOW)
880#define AscGetChipCfgMsw(port) (ushort)inpw((port)+IOP_CONFIG_HIGH)
881#define AscSetChipCfgLsw(port, data) outpw((port)+IOP_CONFIG_LOW, data)
882#define AscSetChipCfgMsw(port, data) outpw((port)+IOP_CONFIG_HIGH, data)
883#define AscGetChipEEPCmd(port) (uchar)inp((port)+IOP_EEP_CMD)
884#define AscSetChipEEPCmd(port, data) outp((port)+IOP_EEP_CMD, data)
885#define AscGetChipEEPData(port) (ushort)inpw((port)+IOP_EEP_DATA)
886#define AscSetChipEEPData(port, data) outpw((port)+IOP_EEP_DATA, data)
887#define AscGetChipLramAddr(port) (ushort)inpw((PortAddr)((port)+IOP_RAM_ADDR))
888#define AscSetChipLramAddr(port, addr) outpw((PortAddr)((port)+IOP_RAM_ADDR), addr)
889#define AscGetChipLramData(port) (ushort)inpw((port)+IOP_RAM_DATA)
890#define AscSetChipLramData(port, data) outpw((port)+IOP_RAM_DATA, data)
891#define AscGetChipIFC(port) (uchar)inp((port)+IOP_REG_IFC)
892#define AscSetChipIFC(port, data) outp((port)+IOP_REG_IFC, data)
893#define AscGetChipStatus(port) (ASC_CS_TYPE)inpw((port)+IOP_STATUS)
894#define AscSetChipStatus(port, cs_val) outpw((port)+IOP_STATUS, cs_val)
895#define AscGetChipControl(port) (uchar)inp((port)+IOP_CTRL)
896#define AscSetChipControl(port, cc_val) outp((port)+IOP_CTRL, cc_val)
897#define AscGetChipSyn(port) (uchar)inp((port)+IOP_SYN_OFFSET)
898#define AscSetChipSyn(port, data) outp((port)+IOP_SYN_OFFSET, data)
899#define AscSetPCAddr(port, data) outpw((port)+IOP_REG_PC, data)
900#define AscGetPCAddr(port) (ushort)inpw((port)+IOP_REG_PC)
901#define AscIsIntPending(port) (AscGetChipStatus(port) & (CSW_INT_PENDING | CSW_SCSI_RESET_LATCH))
902#define AscGetChipScsiID(port) ((AscGetChipCfgLsw(port) >> 8) & ASC_MAX_TID)
903#define AscGetExtraControl(port) (uchar)inp((port)+IOP_EXTRA_CONTROL)
904#define AscSetExtraControl(port, data) outp((port)+IOP_EXTRA_CONTROL, data)
905#define AscReadChipAX(port) (ushort)inpw((port)+IOP_REG_AX)
906#define AscWriteChipAX(port, data) outpw((port)+IOP_REG_AX, data)
907#define AscReadChipIX(port) (uchar)inp((port)+IOP_REG_IX)
908#define AscWriteChipIX(port, data) outp((port)+IOP_REG_IX, data)
909#define AscReadChipIH(port) (ushort)inpw((port)+IOP_REG_IH)
910#define AscWriteChipIH(port, data) outpw((port)+IOP_REG_IH, data)
911#define AscReadChipQP(port) (uchar)inp((port)+IOP_REG_QP)
912#define AscWriteChipQP(port, data) outp((port)+IOP_REG_QP, data)
913#define AscReadChipFIFO_L(port) (ushort)inpw((port)+IOP_REG_FIFO_L)
914#define AscWriteChipFIFO_L(port, data) outpw((port)+IOP_REG_FIFO_L, data)
915#define AscReadChipFIFO_H(port) (ushort)inpw((port)+IOP_REG_FIFO_H)
916#define AscWriteChipFIFO_H(port, data) outpw((port)+IOP_REG_FIFO_H, data)
917#define AscReadChipDmaSpeed(port) (uchar)inp((port)+IOP_DMA_SPEED)
918#define AscWriteChipDmaSpeed(port, data) outp((port)+IOP_DMA_SPEED, data)
919#define AscReadChipDA0(port) (ushort)inpw((port)+IOP_REG_DA0)
920#define AscWriteChipDA0(port) outpw((port)+IOP_REG_DA0, data)
921#define AscReadChipDA1(port) (ushort)inpw((port)+IOP_REG_DA1)
922#define AscWriteChipDA1(port) outpw((port)+IOP_REG_DA1, data)
923#define AscReadChipDC0(port) (ushort)inpw((port)+IOP_REG_DC0)
924#define AscWriteChipDC0(port) outpw((port)+IOP_REG_DC0, data)
925#define AscReadChipDC1(port) (ushort)inpw((port)+IOP_REG_DC1)
926#define AscWriteChipDC1(port) outpw((port)+IOP_REG_DC1, data)
927#define AscReadChipDvcID(port) (uchar)inp((port)+IOP_REG_ID)
928#define AscWriteChipDvcID(port, data) outp((port)+IOP_REG_ID, data)
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/*
931 * Portable Data Types
932 *
933 * Any instance where a 32-bit long or pointer type is assumed
934 * for precision or HW defined structures, the following define
935 * types must be used. In Linux the char, short, and int types
936 * are all consistent at 8, 16, and 32 bits respectively. Pointers
937 * and long types are 64 bits on Alpha and UltraSPARC.
938 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400939#define ADV_PADDR __u32 /* Physical address data type. */
940#define ADV_VADDR __u32 /* Virtual address data type. */
941#define ADV_DCNT __u32 /* Unsigned Data count type. */
942#define ADV_SDCNT __s32 /* Signed Data count type. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944/*
945 * These macros are used to convert a virtual address to a
946 * 32-bit value. This currently can be used on Linux Alpha
947 * which uses 64-bit virtual address but a 32-bit bus address.
948 * This is likely to break in the future, but doing this now
949 * will give us time to change the HW and FW to handle 64-bit
950 * addresses.
951 */
952#define ADV_VADDR_TO_U32 virt_to_bus
953#define ADV_U32_TO_VADDR bus_to_virt
954
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400955#define AdvPortAddr void __iomem * /* Virtual memory address size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957/*
958 * Define Adv Library required memory access macros.
959 */
960#define ADV_MEM_READB(addr) readb(addr)
961#define ADV_MEM_READW(addr) readw(addr)
962#define ADV_MEM_WRITEB(addr, byte) writeb(byte, addr)
963#define ADV_MEM_WRITEW(addr, word) writew(word, addr)
964#define ADV_MEM_WRITEDW(addr, dword) writel(dword, addr)
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 * Define total number of simultaneous maximum element scatter-gather
968 * request blocks per wide adapter. ASC_DEF_MAX_HOST_QNG (253) is the
969 * maximum number of outstanding commands per wide host adapter. Each
970 * command uses one or more ADV_SG_BLOCK each with 15 scatter-gather
971 * elements. Allow each command to have at least one ADV_SG_BLOCK structure.
972 * This allows about 15 commands to have the maximum 17 ADV_SG_BLOCK
973 * structures or 255 scatter-gather elements.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 */
975#define ADV_TOT_SG_BLOCK ASC_DEF_MAX_HOST_QNG
976
977/*
Matthew Wilcox98d41c22007-10-02 21:55:37 -0400978 * Define maximum number of scatter-gather elements per request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 */
980#define ADV_MAX_SG_LIST 255
Matthew Wilcox98d41c22007-10-02 21:55:37 -0400981#define NO_OF_SG_PER_BLOCK 15
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983#define ADV_EEP_DVC_CFG_BEGIN (0x00)
984#define ADV_EEP_DVC_CFG_END (0x15)
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400985#define ADV_EEP_DVC_CTL_BEGIN (0x16) /* location of OEM name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986#define ADV_EEP_MAX_WORD_ADDR (0x1E)
987
988#define ADV_EEP_DELAY_MS 100
989
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400990#define ADV_EEPROM_BIG_ENDIAN 0x8000 /* EEPROM Bit 15 */
991#define ADV_EEPROM_BIOS_ENABLE 0x4000 /* EEPROM Bit 14 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992/*
993 * For the ASC3550 Bit 13 is Termination Polarity control bit.
994 * For later ICs Bit 13 controls whether the CIS (Card Information
995 * Service Section) is loaded from EEPROM.
996 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -0400997#define ADV_EEPROM_TERM_POL 0x2000 /* EEPROM Bit 13 */
998#define ADV_EEPROM_CIS_LD 0x2000 /* EEPROM Bit 13 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999/*
1000 * ASC38C1600 Bit 11
1001 *
1002 * If EEPROM Bit 11 is 0 for Function 0, then Function 0 will specify
1003 * INT A in the PCI Configuration Space Int Pin field. If it is 1, then
1004 * Function 0 will specify INT B.
1005 *
1006 * If EEPROM Bit 11 is 0 for Function 1, then Function 1 will specify
1007 * INT B in the PCI Configuration Space Int Pin field. If it is 1, then
1008 * Function 1 will specify INT A.
1009 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001010#define ADV_EEPROM_INTAB 0x0800 /* EEPROM Bit 11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001012typedef struct adveep_3550_config {
1013 /* Word Offset, Description */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001015 ushort cfg_lsw; /* 00 power up initialization */
1016 /* bit 13 set - Term Polarity Control */
1017 /* bit 14 set - BIOS Enable */
1018 /* bit 15 set - Big Endian Mode */
1019 ushort cfg_msw; /* 01 unused */
1020 ushort disc_enable; /* 02 disconnect enable */
1021 ushort wdtr_able; /* 03 Wide DTR able */
1022 ushort sdtr_able; /* 04 Synchronous DTR able */
1023 ushort start_motor; /* 05 send start up motor */
1024 ushort tagqng_able; /* 06 tag queuing able */
1025 ushort bios_scan; /* 07 BIOS device control */
1026 ushort scam_tolerant; /* 08 no scam */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001028 uchar adapter_scsi_id; /* 09 Host Adapter ID */
1029 uchar bios_boot_delay; /* power up wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001031 uchar scsi_reset_delay; /* 10 reset delay */
1032 uchar bios_id_lun; /* first boot device scsi id & lun */
1033 /* high nibble is lun */
1034 /* low nibble is scsi id */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001036 uchar termination; /* 11 0 - automatic */
1037 /* 1 - low off / high off */
1038 /* 2 - low off / high on */
1039 /* 3 - low on / high on */
1040 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001042 uchar reserved1; /* reserved byte (not used) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001044 ushort bios_ctrl; /* 12 BIOS control bits */
1045 /* bit 0 BIOS don't act as initiator. */
1046 /* bit 1 BIOS > 1 GB support */
1047 /* bit 2 BIOS > 2 Disk Support */
1048 /* bit 3 BIOS don't support removables */
1049 /* bit 4 BIOS support bootable CD */
1050 /* bit 5 BIOS scan enabled */
1051 /* bit 6 BIOS support multiple LUNs */
1052 /* bit 7 BIOS display of message */
1053 /* bit 8 SCAM disabled */
1054 /* bit 9 Reset SCSI bus during init. */
1055 /* bit 10 */
1056 /* bit 11 No verbose initialization. */
1057 /* bit 12 SCSI parity enabled */
1058 /* bit 13 */
1059 /* bit 14 */
1060 /* bit 15 */
1061 ushort ultra_able; /* 13 ULTRA speed able */
1062 ushort reserved2; /* 14 reserved */
1063 uchar max_host_qng; /* 15 maximum host queuing */
1064 uchar max_dvc_qng; /* maximum per device queuing */
1065 ushort dvc_cntl; /* 16 control bit for driver */
1066 ushort bug_fix; /* 17 control bit for bug fix */
1067 ushort serial_number_word1; /* 18 Board serial number word 1 */
1068 ushort serial_number_word2; /* 19 Board serial number word 2 */
1069 ushort serial_number_word3; /* 20 Board serial number word 3 */
1070 ushort check_sum; /* 21 EEP check sum */
1071 uchar oem_name[16]; /* 22 OEM name */
1072 ushort dvc_err_code; /* 30 last device driver error code */
1073 ushort adv_err_code; /* 31 last uc and Adv Lib error code */
1074 ushort adv_err_addr; /* 32 last uc error address */
1075 ushort saved_dvc_err_code; /* 33 saved last dev. driver error code */
1076 ushort saved_adv_err_code; /* 34 saved last uc and Adv Lib error code */
1077 ushort saved_adv_err_addr; /* 35 saved last uc error address */
1078 ushort num_of_err; /* 36 number of error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079} ADVEEP_3550_CONFIG;
1080
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001081typedef struct adveep_38C0800_config {
1082 /* Word Offset, Description */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001084 ushort cfg_lsw; /* 00 power up initialization */
1085 /* bit 13 set - Load CIS */
1086 /* bit 14 set - BIOS Enable */
1087 /* bit 15 set - Big Endian Mode */
1088 ushort cfg_msw; /* 01 unused */
1089 ushort disc_enable; /* 02 disconnect enable */
1090 ushort wdtr_able; /* 03 Wide DTR able */
1091 ushort sdtr_speed1; /* 04 SDTR Speed TID 0-3 */
1092 ushort start_motor; /* 05 send start up motor */
1093 ushort tagqng_able; /* 06 tag queuing able */
1094 ushort bios_scan; /* 07 BIOS device control */
1095 ushort scam_tolerant; /* 08 no scam */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001097 uchar adapter_scsi_id; /* 09 Host Adapter ID */
1098 uchar bios_boot_delay; /* power up wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001100 uchar scsi_reset_delay; /* 10 reset delay */
1101 uchar bios_id_lun; /* first boot device scsi id & lun */
1102 /* high nibble is lun */
1103 /* low nibble is scsi id */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001105 uchar termination_se; /* 11 0 - automatic */
1106 /* 1 - low off / high off */
1107 /* 2 - low off / high on */
1108 /* 3 - low on / high on */
1109 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001111 uchar termination_lvd; /* 11 0 - automatic */
1112 /* 1 - low off / high off */
1113 /* 2 - low off / high on */
1114 /* 3 - low on / high on */
1115 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001117 ushort bios_ctrl; /* 12 BIOS control bits */
1118 /* bit 0 BIOS don't act as initiator. */
1119 /* bit 1 BIOS > 1 GB support */
1120 /* bit 2 BIOS > 2 Disk Support */
1121 /* bit 3 BIOS don't support removables */
1122 /* bit 4 BIOS support bootable CD */
1123 /* bit 5 BIOS scan enabled */
1124 /* bit 6 BIOS support multiple LUNs */
1125 /* bit 7 BIOS display of message */
1126 /* bit 8 SCAM disabled */
1127 /* bit 9 Reset SCSI bus during init. */
1128 /* bit 10 */
1129 /* bit 11 No verbose initialization. */
1130 /* bit 12 SCSI parity enabled */
1131 /* bit 13 */
1132 /* bit 14 */
1133 /* bit 15 */
1134 ushort sdtr_speed2; /* 13 SDTR speed TID 4-7 */
1135 ushort sdtr_speed3; /* 14 SDTR speed TID 8-11 */
1136 uchar max_host_qng; /* 15 maximum host queueing */
1137 uchar max_dvc_qng; /* maximum per device queuing */
1138 ushort dvc_cntl; /* 16 control bit for driver */
1139 ushort sdtr_speed4; /* 17 SDTR speed 4 TID 12-15 */
1140 ushort serial_number_word1; /* 18 Board serial number word 1 */
1141 ushort serial_number_word2; /* 19 Board serial number word 2 */
1142 ushort serial_number_word3; /* 20 Board serial number word 3 */
1143 ushort check_sum; /* 21 EEP check sum */
1144 uchar oem_name[16]; /* 22 OEM name */
1145 ushort dvc_err_code; /* 30 last device driver error code */
1146 ushort adv_err_code; /* 31 last uc and Adv Lib error code */
1147 ushort adv_err_addr; /* 32 last uc error address */
1148 ushort saved_dvc_err_code; /* 33 saved last dev. driver error code */
1149 ushort saved_adv_err_code; /* 34 saved last uc and Adv Lib error code */
1150 ushort saved_adv_err_addr; /* 35 saved last uc error address */
1151 ushort reserved36; /* 36 reserved */
1152 ushort reserved37; /* 37 reserved */
1153 ushort reserved38; /* 38 reserved */
1154 ushort reserved39; /* 39 reserved */
1155 ushort reserved40; /* 40 reserved */
1156 ushort reserved41; /* 41 reserved */
1157 ushort reserved42; /* 42 reserved */
1158 ushort reserved43; /* 43 reserved */
1159 ushort reserved44; /* 44 reserved */
1160 ushort reserved45; /* 45 reserved */
1161 ushort reserved46; /* 46 reserved */
1162 ushort reserved47; /* 47 reserved */
1163 ushort reserved48; /* 48 reserved */
1164 ushort reserved49; /* 49 reserved */
1165 ushort reserved50; /* 50 reserved */
1166 ushort reserved51; /* 51 reserved */
1167 ushort reserved52; /* 52 reserved */
1168 ushort reserved53; /* 53 reserved */
1169 ushort reserved54; /* 54 reserved */
1170 ushort reserved55; /* 55 reserved */
1171 ushort cisptr_lsw; /* 56 CIS PTR LSW */
1172 ushort cisprt_msw; /* 57 CIS PTR MSW */
1173 ushort subsysvid; /* 58 SubSystem Vendor ID */
1174 ushort subsysid; /* 59 SubSystem ID */
1175 ushort reserved60; /* 60 reserved */
1176 ushort reserved61; /* 61 reserved */
1177 ushort reserved62; /* 62 reserved */
1178 ushort reserved63; /* 63 reserved */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179} ADVEEP_38C0800_CONFIG;
1180
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001181typedef struct adveep_38C1600_config {
1182 /* Word Offset, Description */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001184 ushort cfg_lsw; /* 00 power up initialization */
1185 /* bit 11 set - Func. 0 INTB, Func. 1 INTA */
1186 /* clear - Func. 0 INTA, Func. 1 INTB */
1187 /* bit 13 set - Load CIS */
1188 /* bit 14 set - BIOS Enable */
1189 /* bit 15 set - Big Endian Mode */
1190 ushort cfg_msw; /* 01 unused */
1191 ushort disc_enable; /* 02 disconnect enable */
1192 ushort wdtr_able; /* 03 Wide DTR able */
1193 ushort sdtr_speed1; /* 04 SDTR Speed TID 0-3 */
1194 ushort start_motor; /* 05 send start up motor */
1195 ushort tagqng_able; /* 06 tag queuing able */
1196 ushort bios_scan; /* 07 BIOS device control */
1197 ushort scam_tolerant; /* 08 no scam */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001199 uchar adapter_scsi_id; /* 09 Host Adapter ID */
1200 uchar bios_boot_delay; /* power up wait */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001202 uchar scsi_reset_delay; /* 10 reset delay */
1203 uchar bios_id_lun; /* first boot device scsi id & lun */
1204 /* high nibble is lun */
1205 /* low nibble is scsi id */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001207 uchar termination_se; /* 11 0 - automatic */
1208 /* 1 - low off / high off */
1209 /* 2 - low off / high on */
1210 /* 3 - low on / high on */
1211 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001213 uchar termination_lvd; /* 11 0 - automatic */
1214 /* 1 - low off / high off */
1215 /* 2 - low off / high on */
1216 /* 3 - low on / high on */
1217 /* There is no low on / high off */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001219 ushort bios_ctrl; /* 12 BIOS control bits */
1220 /* bit 0 BIOS don't act as initiator. */
1221 /* bit 1 BIOS > 1 GB support */
1222 /* bit 2 BIOS > 2 Disk Support */
1223 /* bit 3 BIOS don't support removables */
1224 /* bit 4 BIOS support bootable CD */
1225 /* bit 5 BIOS scan enabled */
1226 /* bit 6 BIOS support multiple LUNs */
1227 /* bit 7 BIOS display of message */
1228 /* bit 8 SCAM disabled */
1229 /* bit 9 Reset SCSI bus during init. */
1230 /* bit 10 Basic Integrity Checking disabled */
1231 /* bit 11 No verbose initialization. */
1232 /* bit 12 SCSI parity enabled */
1233 /* bit 13 AIPP (Asyn. Info. Ph. Prot.) dis. */
1234 /* bit 14 */
1235 /* bit 15 */
1236 ushort sdtr_speed2; /* 13 SDTR speed TID 4-7 */
1237 ushort sdtr_speed3; /* 14 SDTR speed TID 8-11 */
1238 uchar max_host_qng; /* 15 maximum host queueing */
1239 uchar max_dvc_qng; /* maximum per device queuing */
1240 ushort dvc_cntl; /* 16 control bit for driver */
1241 ushort sdtr_speed4; /* 17 SDTR speed 4 TID 12-15 */
1242 ushort serial_number_word1; /* 18 Board serial number word 1 */
1243 ushort serial_number_word2; /* 19 Board serial number word 2 */
1244 ushort serial_number_word3; /* 20 Board serial number word 3 */
1245 ushort check_sum; /* 21 EEP check sum */
1246 uchar oem_name[16]; /* 22 OEM name */
1247 ushort dvc_err_code; /* 30 last device driver error code */
1248 ushort adv_err_code; /* 31 last uc and Adv Lib error code */
1249 ushort adv_err_addr; /* 32 last uc error address */
1250 ushort saved_dvc_err_code; /* 33 saved last dev. driver error code */
1251 ushort saved_adv_err_code; /* 34 saved last uc and Adv Lib error code */
1252 ushort saved_adv_err_addr; /* 35 saved last uc error address */
1253 ushort reserved36; /* 36 reserved */
1254 ushort reserved37; /* 37 reserved */
1255 ushort reserved38; /* 38 reserved */
1256 ushort reserved39; /* 39 reserved */
1257 ushort reserved40; /* 40 reserved */
1258 ushort reserved41; /* 41 reserved */
1259 ushort reserved42; /* 42 reserved */
1260 ushort reserved43; /* 43 reserved */
1261 ushort reserved44; /* 44 reserved */
1262 ushort reserved45; /* 45 reserved */
1263 ushort reserved46; /* 46 reserved */
1264 ushort reserved47; /* 47 reserved */
1265 ushort reserved48; /* 48 reserved */
1266 ushort reserved49; /* 49 reserved */
1267 ushort reserved50; /* 50 reserved */
1268 ushort reserved51; /* 51 reserved */
1269 ushort reserved52; /* 52 reserved */
1270 ushort reserved53; /* 53 reserved */
1271 ushort reserved54; /* 54 reserved */
1272 ushort reserved55; /* 55 reserved */
1273 ushort cisptr_lsw; /* 56 CIS PTR LSW */
1274 ushort cisprt_msw; /* 57 CIS PTR MSW */
1275 ushort subsysvid; /* 58 SubSystem Vendor ID */
1276 ushort subsysid; /* 59 SubSystem ID */
1277 ushort reserved60; /* 60 reserved */
1278 ushort reserved61; /* 61 reserved */
1279 ushort reserved62; /* 62 reserved */
1280 ushort reserved63; /* 63 reserved */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281} ADVEEP_38C1600_CONFIG;
1282
1283/*
1284 * EEPROM Commands
1285 */
1286#define ASC_EEP_CMD_DONE 0x0200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288/* bios_ctrl */
1289#define BIOS_CTRL_BIOS 0x0001
1290#define BIOS_CTRL_EXTENDED_XLAT 0x0002
1291#define BIOS_CTRL_GT_2_DISK 0x0004
1292#define BIOS_CTRL_BIOS_REMOVABLE 0x0008
1293#define BIOS_CTRL_BOOTABLE_CD 0x0010
1294#define BIOS_CTRL_MULTIPLE_LUN 0x0040
1295#define BIOS_CTRL_DISPLAY_MSG 0x0080
1296#define BIOS_CTRL_NO_SCAM 0x0100
1297#define BIOS_CTRL_RESET_SCSI_BUS 0x0200
1298#define BIOS_CTRL_INIT_VERBOSE 0x0800
1299#define BIOS_CTRL_SCSI_PARITY 0x1000
1300#define BIOS_CTRL_AIPP_DIS 0x2000
1301
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001302#define ADV_3550_MEMSIZE 0x2000 /* 8 KB Internal Memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001304#define ADV_38C0800_MEMSIZE 0x4000 /* 16 KB Internal Memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306/*
1307 * XXX - Since ASC38C1600 Rev.3 has a local RAM failure issue, there is
1308 * a special 16K Adv Library and Microcode version. After the issue is
1309 * resolved, should restore 32K support.
1310 *
1311 * #define ADV_38C1600_MEMSIZE 0x8000L * 32 KB Internal Memory *
1312 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001313#define ADV_38C1600_MEMSIZE 0x4000 /* 16 KB Internal Memory */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315/*
1316 * Byte I/O register address from base of 'iop_base'.
1317 */
1318#define IOPB_INTR_STATUS_REG 0x00
1319#define IOPB_CHIP_ID_1 0x01
1320#define IOPB_INTR_ENABLES 0x02
1321#define IOPB_CHIP_TYPE_REV 0x03
1322#define IOPB_RES_ADDR_4 0x04
1323#define IOPB_RES_ADDR_5 0x05
1324#define IOPB_RAM_DATA 0x06
1325#define IOPB_RES_ADDR_7 0x07
1326#define IOPB_FLAG_REG 0x08
1327#define IOPB_RES_ADDR_9 0x09
1328#define IOPB_RISC_CSR 0x0A
1329#define IOPB_RES_ADDR_B 0x0B
1330#define IOPB_RES_ADDR_C 0x0C
1331#define IOPB_RES_ADDR_D 0x0D
1332#define IOPB_SOFT_OVER_WR 0x0E
1333#define IOPB_RES_ADDR_F 0x0F
1334#define IOPB_MEM_CFG 0x10
1335#define IOPB_RES_ADDR_11 0x11
1336#define IOPB_GPIO_DATA 0x12
1337#define IOPB_RES_ADDR_13 0x13
1338#define IOPB_FLASH_PAGE 0x14
1339#define IOPB_RES_ADDR_15 0x15
1340#define IOPB_GPIO_CNTL 0x16
1341#define IOPB_RES_ADDR_17 0x17
1342#define IOPB_FLASH_DATA 0x18
1343#define IOPB_RES_ADDR_19 0x19
1344#define IOPB_RES_ADDR_1A 0x1A
1345#define IOPB_RES_ADDR_1B 0x1B
1346#define IOPB_RES_ADDR_1C 0x1C
1347#define IOPB_RES_ADDR_1D 0x1D
1348#define IOPB_RES_ADDR_1E 0x1E
1349#define IOPB_RES_ADDR_1F 0x1F
1350#define IOPB_DMA_CFG0 0x20
1351#define IOPB_DMA_CFG1 0x21
1352#define IOPB_TICKLE 0x22
1353#define IOPB_DMA_REG_WR 0x23
1354#define IOPB_SDMA_STATUS 0x24
1355#define IOPB_SCSI_BYTE_CNT 0x25
1356#define IOPB_HOST_BYTE_CNT 0x26
1357#define IOPB_BYTE_LEFT_TO_XFER 0x27
1358#define IOPB_BYTE_TO_XFER_0 0x28
1359#define IOPB_BYTE_TO_XFER_1 0x29
1360#define IOPB_BYTE_TO_XFER_2 0x2A
1361#define IOPB_BYTE_TO_XFER_3 0x2B
1362#define IOPB_ACC_GRP 0x2C
1363#define IOPB_RES_ADDR_2D 0x2D
1364#define IOPB_DEV_ID 0x2E
1365#define IOPB_RES_ADDR_2F 0x2F
1366#define IOPB_SCSI_DATA 0x30
1367#define IOPB_RES_ADDR_31 0x31
1368#define IOPB_RES_ADDR_32 0x32
1369#define IOPB_SCSI_DATA_HSHK 0x33
1370#define IOPB_SCSI_CTRL 0x34
1371#define IOPB_RES_ADDR_35 0x35
1372#define IOPB_RES_ADDR_36 0x36
1373#define IOPB_RES_ADDR_37 0x37
1374#define IOPB_RAM_BIST 0x38
1375#define IOPB_PLL_TEST 0x39
1376#define IOPB_PCI_INT_CFG 0x3A
1377#define IOPB_RES_ADDR_3B 0x3B
1378#define IOPB_RFIFO_CNT 0x3C
1379#define IOPB_RES_ADDR_3D 0x3D
1380#define IOPB_RES_ADDR_3E 0x3E
1381#define IOPB_RES_ADDR_3F 0x3F
1382
1383/*
1384 * Word I/O register address from base of 'iop_base'.
1385 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001386#define IOPW_CHIP_ID_0 0x00 /* CID0 */
1387#define IOPW_CTRL_REG 0x02 /* CC */
1388#define IOPW_RAM_ADDR 0x04 /* LA */
1389#define IOPW_RAM_DATA 0x06 /* LD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390#define IOPW_RES_ADDR_08 0x08
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001391#define IOPW_RISC_CSR 0x0A /* CSR */
1392#define IOPW_SCSI_CFG0 0x0C /* CFG0 */
1393#define IOPW_SCSI_CFG1 0x0E /* CFG1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394#define IOPW_RES_ADDR_10 0x10
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001395#define IOPW_SEL_MASK 0x12 /* SM */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396#define IOPW_RES_ADDR_14 0x14
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001397#define IOPW_FLASH_ADDR 0x16 /* FA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398#define IOPW_RES_ADDR_18 0x18
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001399#define IOPW_EE_CMD 0x1A /* EC */
1400#define IOPW_EE_DATA 0x1C /* ED */
1401#define IOPW_SFIFO_CNT 0x1E /* SFC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402#define IOPW_RES_ADDR_20 0x20
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001403#define IOPW_Q_BASE 0x22 /* QB */
1404#define IOPW_QP 0x24 /* QP */
1405#define IOPW_IX 0x26 /* IX */
1406#define IOPW_SP 0x28 /* SP */
1407#define IOPW_PC 0x2A /* PC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408#define IOPW_RES_ADDR_2C 0x2C
1409#define IOPW_RES_ADDR_2E 0x2E
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001410#define IOPW_SCSI_DATA 0x30 /* SD */
1411#define IOPW_SCSI_DATA_HSHK 0x32 /* SDH */
1412#define IOPW_SCSI_CTRL 0x34 /* SC */
1413#define IOPW_HSHK_CFG 0x36 /* HCFG */
1414#define IOPW_SXFR_STATUS 0x36 /* SXS */
1415#define IOPW_SXFR_CNTL 0x38 /* SXL */
1416#define IOPW_SXFR_CNTH 0x3A /* SXH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417#define IOPW_RES_ADDR_3C 0x3C
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001418#define IOPW_RFIFO_DATA 0x3E /* RFD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420/*
1421 * Doubleword I/O register address from base of 'iop_base'.
1422 */
1423#define IOPDW_RES_ADDR_0 0x00
1424#define IOPDW_RAM_DATA 0x04
1425#define IOPDW_RES_ADDR_8 0x08
1426#define IOPDW_RES_ADDR_C 0x0C
1427#define IOPDW_RES_ADDR_10 0x10
1428#define IOPDW_COMMA 0x14
1429#define IOPDW_COMMB 0x18
1430#define IOPDW_RES_ADDR_1C 0x1C
1431#define IOPDW_SDMA_ADDR0 0x20
1432#define IOPDW_SDMA_ADDR1 0x24
1433#define IOPDW_SDMA_COUNT 0x28
1434#define IOPDW_SDMA_ERROR 0x2C
1435#define IOPDW_RDMA_ADDR0 0x30
1436#define IOPDW_RDMA_ADDR1 0x34
1437#define IOPDW_RDMA_COUNT 0x38
1438#define IOPDW_RDMA_ERROR 0x3C
1439
1440#define ADV_CHIP_ID_BYTE 0x25
1441#define ADV_CHIP_ID_WORD 0x04C1
1442
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443#define ADV_INTR_ENABLE_HOST_INTR 0x01
1444#define ADV_INTR_ENABLE_SEL_INTR 0x02
1445#define ADV_INTR_ENABLE_DPR_INTR 0x04
1446#define ADV_INTR_ENABLE_RTA_INTR 0x08
1447#define ADV_INTR_ENABLE_RMA_INTR 0x10
1448#define ADV_INTR_ENABLE_RST_INTR 0x20
1449#define ADV_INTR_ENABLE_DPE_INTR 0x40
1450#define ADV_INTR_ENABLE_GLOBAL_INTR 0x80
1451
1452#define ADV_INTR_STATUS_INTRA 0x01
1453#define ADV_INTR_STATUS_INTRB 0x02
1454#define ADV_INTR_STATUS_INTRC 0x04
1455
1456#define ADV_RISC_CSR_STOP (0x0000)
1457#define ADV_RISC_TEST_COND (0x2000)
1458#define ADV_RISC_CSR_RUN (0x4000)
1459#define ADV_RISC_CSR_SINGLE_STEP (0x8000)
1460
1461#define ADV_CTRL_REG_HOST_INTR 0x0100
1462#define ADV_CTRL_REG_SEL_INTR 0x0200
1463#define ADV_CTRL_REG_DPR_INTR 0x0400
1464#define ADV_CTRL_REG_RTA_INTR 0x0800
1465#define ADV_CTRL_REG_RMA_INTR 0x1000
1466#define ADV_CTRL_REG_RES_BIT14 0x2000
1467#define ADV_CTRL_REG_DPE_INTR 0x4000
1468#define ADV_CTRL_REG_POWER_DONE 0x8000
1469#define ADV_CTRL_REG_ANY_INTR 0xFF00
1470
1471#define ADV_CTRL_REG_CMD_RESET 0x00C6
1472#define ADV_CTRL_REG_CMD_WR_IO_REG 0x00C5
1473#define ADV_CTRL_REG_CMD_RD_IO_REG 0x00C4
1474#define ADV_CTRL_REG_CMD_WR_PCI_CFG_SPACE 0x00C3
1475#define ADV_CTRL_REG_CMD_RD_PCI_CFG_SPACE 0x00C2
1476
1477#define ADV_TICKLE_NOP 0x00
1478#define ADV_TICKLE_A 0x01
1479#define ADV_TICKLE_B 0x02
1480#define ADV_TICKLE_C 0x03
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482#define AdvIsIntPending(port) \
1483 (AdvReadWordRegister(port, IOPW_CTRL_REG) & ADV_CTRL_REG_HOST_INTR)
1484
1485/*
1486 * SCSI_CFG0 Register bit definitions
1487 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001488#define TIMER_MODEAB 0xC000 /* Watchdog, Second, and Select. Timer Ctrl. */
1489#define PARITY_EN 0x2000 /* Enable SCSI Parity Error detection */
1490#define EVEN_PARITY 0x1000 /* Select Even Parity */
1491#define WD_LONG 0x0800 /* Watchdog Interval, 1: 57 min, 0: 13 sec */
1492#define QUEUE_128 0x0400 /* Queue Size, 1: 128 byte, 0: 64 byte */
1493#define PRIM_MODE 0x0100 /* Primitive SCSI mode */
1494#define SCAM_EN 0x0080 /* Enable SCAM selection */
1495#define SEL_TMO_LONG 0x0040 /* Sel/Resel Timeout, 1: 400 ms, 0: 1.6 ms */
1496#define CFRM_ID 0x0020 /* SCAM id sel. confirm., 1: fast, 0: 6.4 ms */
1497#define OUR_ID_EN 0x0010 /* Enable OUR_ID bits */
1498#define OUR_ID 0x000F /* SCSI ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500/*
1501 * SCSI_CFG1 Register bit definitions
1502 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001503#define BIG_ENDIAN 0x8000 /* Enable Big Endian Mode MIO:15, EEP:15 */
1504#define TERM_POL 0x2000 /* Terminator Polarity Ctrl. MIO:13, EEP:13 */
1505#define SLEW_RATE 0x1000 /* SCSI output buffer slew rate */
1506#define FILTER_SEL 0x0C00 /* Filter Period Selection */
1507#define FLTR_DISABLE 0x0000 /* Input Filtering Disabled */
1508#define FLTR_11_TO_20NS 0x0800 /* Input Filtering 11ns to 20ns */
1509#define FLTR_21_TO_39NS 0x0C00 /* Input Filtering 21ns to 39ns */
1510#define ACTIVE_DBL 0x0200 /* Disable Active Negation */
1511#define DIFF_MODE 0x0100 /* SCSI differential Mode (Read-Only) */
1512#define DIFF_SENSE 0x0080 /* 1: No SE cables, 0: SE cable (Read-Only) */
1513#define TERM_CTL_SEL 0x0040 /* Enable TERM_CTL_H and TERM_CTL_L */
1514#define TERM_CTL 0x0030 /* External SCSI Termination Bits */
1515#define TERM_CTL_H 0x0020 /* Enable External SCSI Upper Termination */
1516#define TERM_CTL_L 0x0010 /* Enable External SCSI Lower Termination */
1517#define CABLE_DETECT 0x000F /* External SCSI Cable Connection Status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519/*
1520 * Addendum for ASC-38C0800 Chip
1521 *
1522 * The ASC-38C1600 Chip uses the same definitions except that the
1523 * bus mode override bits [12:10] have been moved to byte register
1524 * offset 0xE (IOPB_SOFT_OVER_WR) bits [12:10]. The [12:10] bits in
1525 * SCSI_CFG1 are read-only and always available. Bit 14 (DIS_TERM_DRV)
1526 * is not needed. The [12:10] bits in IOPB_SOFT_OVER_WR are write-only.
1527 * Also each ASC-38C1600 function or channel uses only cable bits [5:4]
1528 * and [1:0]. Bits [14], [7:6], [3:2] are unused.
1529 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001530#define DIS_TERM_DRV 0x4000 /* 1: Read c_det[3:0], 0: cannot read */
1531#define HVD_LVD_SE 0x1C00 /* Device Detect Bits */
1532#define HVD 0x1000 /* HVD Device Detect */
1533#define LVD 0x0800 /* LVD Device Detect */
1534#define SE 0x0400 /* SE Device Detect */
1535#define TERM_LVD 0x00C0 /* LVD Termination Bits */
1536#define TERM_LVD_HI 0x0080 /* Enable LVD Upper Termination */
1537#define TERM_LVD_LO 0x0040 /* Enable LVD Lower Termination */
1538#define TERM_SE 0x0030 /* SE Termination Bits */
1539#define TERM_SE_HI 0x0020 /* Enable SE Upper Termination */
1540#define TERM_SE_LO 0x0010 /* Enable SE Lower Termination */
1541#define C_DET_LVD 0x000C /* LVD Cable Detect Bits */
1542#define C_DET3 0x0008 /* Cable Detect for LVD External Wide */
1543#define C_DET2 0x0004 /* Cable Detect for LVD Internal Wide */
1544#define C_DET_SE 0x0003 /* SE Cable Detect Bits */
1545#define C_DET1 0x0002 /* Cable Detect for SE Internal Wide */
1546#define C_DET0 0x0001 /* Cable Detect for SE Internal Narrow */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548#define CABLE_ILLEGAL_A 0x7
1549 /* x 0 0 0 | on on | Illegal (all 3 connectors are used) */
1550
1551#define CABLE_ILLEGAL_B 0xB
1552 /* 0 x 0 0 | on on | Illegal (all 3 connectors are used) */
1553
1554/*
1555 * MEM_CFG Register bit definitions
1556 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001557#define BIOS_EN 0x40 /* BIOS Enable MIO:14,EEP:14 */
1558#define FAST_EE_CLK 0x20 /* Diagnostic Bit */
1559#define RAM_SZ 0x1C /* Specify size of RAM to RISC */
1560#define RAM_SZ_2KB 0x00 /* 2 KB */
1561#define RAM_SZ_4KB 0x04 /* 4 KB */
1562#define RAM_SZ_8KB 0x08 /* 8 KB */
1563#define RAM_SZ_16KB 0x0C /* 16 KB */
1564#define RAM_SZ_32KB 0x10 /* 32 KB */
1565#define RAM_SZ_64KB 0x14 /* 64 KB */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567/*
1568 * DMA_CFG0 Register bit definitions
1569 *
1570 * This register is only accessible to the host.
1571 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001572#define BC_THRESH_ENB 0x80 /* PCI DMA Start Conditions */
1573#define FIFO_THRESH 0x70 /* PCI DMA FIFO Threshold */
1574#define FIFO_THRESH_16B 0x00 /* 16 bytes */
1575#define FIFO_THRESH_32B 0x20 /* 32 bytes */
1576#define FIFO_THRESH_48B 0x30 /* 48 bytes */
1577#define FIFO_THRESH_64B 0x40 /* 64 bytes */
1578#define FIFO_THRESH_80B 0x50 /* 80 bytes (default) */
1579#define FIFO_THRESH_96B 0x60 /* 96 bytes */
1580#define FIFO_THRESH_112B 0x70 /* 112 bytes */
1581#define START_CTL 0x0C /* DMA start conditions */
1582#define START_CTL_TH 0x00 /* Wait threshold level (default) */
1583#define START_CTL_ID 0x04 /* Wait SDMA/SBUS idle */
1584#define START_CTL_THID 0x08 /* Wait threshold and SDMA/SBUS idle */
1585#define START_CTL_EMFU 0x0C /* Wait SDMA FIFO empty/full */
1586#define READ_CMD 0x03 /* Memory Read Method */
1587#define READ_CMD_MR 0x00 /* Memory Read */
1588#define READ_CMD_MRL 0x02 /* Memory Read Long */
1589#define READ_CMD_MRM 0x03 /* Memory Read Multiple (default) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591/*
1592 * ASC-38C0800 RAM BIST Register bit definitions
1593 */
1594#define RAM_TEST_MODE 0x80
1595#define PRE_TEST_MODE 0x40
1596#define NORMAL_MODE 0x00
1597#define RAM_TEST_DONE 0x10
1598#define RAM_TEST_STATUS 0x0F
1599#define RAM_TEST_HOST_ERROR 0x08
1600#define RAM_TEST_INTRAM_ERROR 0x04
1601#define RAM_TEST_RISC_ERROR 0x02
1602#define RAM_TEST_SCSI_ERROR 0x01
1603#define RAM_TEST_SUCCESS 0x00
1604#define PRE_TEST_VALUE 0x05
1605#define NORMAL_VALUE 0x00
1606
1607/*
1608 * ASC38C1600 Definitions
1609 *
1610 * IOPB_PCI_INT_CFG Bit Field Definitions
1611 */
1612
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001613#define INTAB_LD 0x80 /* Value loaded from EEPROM Bit 11. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615/*
1616 * Bit 1 can be set to change the interrupt for the Function to operate in
1617 * Totem Pole mode. By default Bit 1 is 0 and the interrupt operates in
1618 * Open Drain mode. Both functions of the ASC38C1600 must be set to the same
1619 * mode, otherwise the operating mode is undefined.
1620 */
1621#define TOTEMPOLE 0x02
1622
1623/*
1624 * Bit 0 can be used to change the Int Pin for the Function. The value is
1625 * 0 by default for both Functions with Function 0 using INT A and Function
1626 * B using INT B. For Function 0 if set, INT B is used. For Function 1 if set,
1627 * INT A is used.
1628 *
1629 * EEPROM Word 0 Bit 11 for each Function may change the initial Int Pin
1630 * value specified in the PCI Configuration Space.
1631 */
1632#define INTAB 0x01
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634/*
1635 * Adv Library Status Definitions
1636 */
1637#define ADV_TRUE 1
1638#define ADV_FALSE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639#define ADV_SUCCESS 1
1640#define ADV_BUSY 0
1641#define ADV_ERROR (-1)
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643/*
1644 * ADV_DVC_VAR 'warn_code' values
1645 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001646#define ASC_WARN_BUSRESET_ERROR 0x0001 /* SCSI Bus Reset error */
1647#define ASC_WARN_EEPROM_CHKSUM 0x0002 /* EEP check sum error */
1648#define ASC_WARN_EEPROM_TERMINATION 0x0004 /* EEP termination bad field */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001649#define ASC_WARN_ERROR 0xFFFF /* ADV_ERROR return */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001651#define ADV_MAX_TID 15 /* max. target identifier */
1652#define ADV_MAX_LUN 7 /* max. logical unit number */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 * Fixed locations of microcode operating variables.
1656 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001657#define ASC_MC_CODE_BEGIN_ADDR 0x0028 /* microcode start address */
1658#define ASC_MC_CODE_END_ADDR 0x002A /* microcode end address */
1659#define ASC_MC_CODE_CHK_SUM 0x002C /* microcode code checksum */
1660#define ASC_MC_VERSION_DATE 0x0038 /* microcode version */
1661#define ASC_MC_VERSION_NUM 0x003A /* microcode number */
1662#define ASC_MC_BIOSMEM 0x0040 /* BIOS RISC Memory Start */
1663#define ASC_MC_BIOSLEN 0x0050 /* BIOS RISC Memory Length */
1664#define ASC_MC_BIOS_SIGNATURE 0x0058 /* BIOS Signature 0x55AA */
1665#define ASC_MC_BIOS_VERSION 0x005A /* BIOS Version (2 bytes) */
1666#define ASC_MC_SDTR_SPEED1 0x0090 /* SDTR Speed for TID 0-3 */
1667#define ASC_MC_SDTR_SPEED2 0x0092 /* SDTR Speed for TID 4-7 */
1668#define ASC_MC_SDTR_SPEED3 0x0094 /* SDTR Speed for TID 8-11 */
1669#define ASC_MC_SDTR_SPEED4 0x0096 /* SDTR Speed for TID 12-15 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670#define ASC_MC_CHIP_TYPE 0x009A
1671#define ASC_MC_INTRB_CODE 0x009B
1672#define ASC_MC_WDTR_ABLE 0x009C
1673#define ASC_MC_SDTR_ABLE 0x009E
1674#define ASC_MC_TAGQNG_ABLE 0x00A0
1675#define ASC_MC_DISC_ENABLE 0x00A2
1676#define ASC_MC_IDLE_CMD_STATUS 0x00A4
1677#define ASC_MC_IDLE_CMD 0x00A6
1678#define ASC_MC_IDLE_CMD_PARAMETER 0x00A8
1679#define ASC_MC_DEFAULT_SCSI_CFG0 0x00AC
1680#define ASC_MC_DEFAULT_SCSI_CFG1 0x00AE
1681#define ASC_MC_DEFAULT_MEM_CFG 0x00B0
1682#define ASC_MC_DEFAULT_SEL_MASK 0x00B2
1683#define ASC_MC_SDTR_DONE 0x00B6
1684#define ASC_MC_NUMBER_OF_QUEUED_CMD 0x00C0
1685#define ASC_MC_NUMBER_OF_MAX_CMD 0x00D0
1686#define ASC_MC_DEVICE_HSHK_CFG_TABLE 0x0100
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001687#define ASC_MC_CONTROL_FLAG 0x0122 /* Microcode control flag. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688#define ASC_MC_WDTR_DONE 0x0124
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001689#define ASC_MC_CAM_MODE_MASK 0x015E /* CAM mode TID bitmask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690#define ASC_MC_ICQ 0x0160
1691#define ASC_MC_IRQ 0x0164
1692#define ASC_MC_PPR_ABLE 0x017A
1693
1694/*
1695 * BIOS LRAM variable absolute offsets.
1696 */
1697#define BIOS_CODESEG 0x54
1698#define BIOS_CODELEN 0x56
1699#define BIOS_SIGNATURE 0x58
1700#define BIOS_VERSION 0x5A
1701
1702/*
1703 * Microcode Control Flags
1704 *
1705 * Flags set by the Adv Library in RISC variable 'control_flag' (0x122)
1706 * and handled by the microcode.
1707 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001708#define CONTROL_FLAG_IGNORE_PERR 0x0001 /* Ignore DMA Parity Errors */
1709#define CONTROL_FLAG_ENABLE_AIPP 0x0002 /* Enabled AIPP checking. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711/*
1712 * ASC_MC_DEVICE_HSHK_CFG_TABLE microcode table or HSHK_CFG register format
1713 */
1714#define HSHK_CFG_WIDE_XFR 0x8000
1715#define HSHK_CFG_RATE 0x0F00
1716#define HSHK_CFG_OFFSET 0x001F
1717
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001718#define ASC_DEF_MAX_HOST_QNG 0xFD /* Max. number of host commands (253) */
1719#define ASC_DEF_MIN_HOST_QNG 0x10 /* Min. number of host commands (16) */
1720#define ASC_DEF_MAX_DVC_QNG 0x3F /* Max. number commands per device (63) */
1721#define ASC_DEF_MIN_DVC_QNG 0x04 /* Min. number commands per device (4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001723#define ASC_QC_DATA_CHECK 0x01 /* Require ASC_QC_DATA_OUT set or clear. */
1724#define ASC_QC_DATA_OUT 0x02 /* Data out DMA transfer. */
1725#define ASC_QC_START_MOTOR 0x04 /* Send auto-start motor before request. */
1726#define ASC_QC_NO_OVERRUN 0x08 /* Don't report overrun. */
1727#define ASC_QC_FREEZE_TIDQ 0x10 /* Freeze TID queue after request. XXX TBD */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001729#define ASC_QSC_NO_DISC 0x01 /* Don't allow disconnect for request. */
1730#define ASC_QSC_NO_TAGMSG 0x02 /* Don't allow tag queuing for request. */
1731#define ASC_QSC_NO_SYNC 0x04 /* Don't use Synch. transfer on request. */
1732#define ASC_QSC_NO_WIDE 0x08 /* Don't use Wide transfer on request. */
1733#define ASC_QSC_REDO_DTR 0x10 /* Renegotiate WDTR/SDTR before request. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734/*
1735 * Note: If a Tag Message is to be sent and neither ASC_QSC_HEAD_TAG or
1736 * ASC_QSC_ORDERED_TAG is set, then a Simple Tag Message (0x20) is used.
1737 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001738#define ASC_QSC_HEAD_TAG 0x40 /* Use Head Tag Message (0x21). */
1739#define ASC_QSC_ORDERED_TAG 0x80 /* Use Ordered Tag Message (0x22). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741/*
1742 * All fields here are accessed by the board microcode and need to be
1743 * little-endian.
1744 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001745typedef struct adv_carr_t {
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001746 __le32 carr_va; /* Carrier Virtual Address */
1747 __le32 carr_pa; /* Carrier Physical Address */
1748 __le32 areq_vpa; /* ASC_SCSI_REQ_Q Virtual or Physical Address */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001749 /*
1750 * next_vpa [31:4] Carrier Virtual or Physical Next Pointer
1751 *
1752 * next_vpa [3:1] Reserved Bits
1753 * next_vpa [0] Done Flag set in Response Queue.
1754 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001755 __le32 next_vpa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756} ADV_CARR_T;
1757
1758/*
1759 * Mask used to eliminate low 4 bits of carrier 'next_vpa' field.
1760 */
1761#define ASC_NEXT_VPA_MASK 0xFFFFFFF0
1762
1763#define ASC_RQ_DONE 0x00000001
1764#define ASC_RQ_GOOD 0x00000002
1765#define ASC_CQ_STOPPER 0x00000000
1766
1767#define ASC_GET_CARRP(carrp) ((carrp) & ASC_NEXT_VPA_MASK)
1768
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001769/*
1770 * Each carrier is 64 bytes, and we need three additional
1771 * carrier for icq, irq, and the termination carrier.
1772 */
1773#define ADV_CARRIER_COUNT (ASC_DEF_MAX_HOST_QNG + 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775#define ADV_CARRIER_BUFSIZE \
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001776 (ADV_CARRIER_COUNT * sizeof(ADV_CARR_T))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778/*
1779 * ASC_SCSI_REQ_Q 'a_flag' definitions
1780 *
1781 * The Adv Library should limit use to the lower nibble (4 bits) of
1782 * a_flag. Drivers are free to use the upper nibble (4 bits) of a_flag.
1783 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001784#define ADV_POLL_REQUEST 0x01 /* poll for request completion */
1785#define ADV_SCSIQ_DONE 0x02 /* request done */
1786#define ADV_DONT_RETRY 0x08 /* don't do retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001788#define ADV_CHIP_ASC3550 0x01 /* Ultra-Wide IC */
1789#define ADV_CHIP_ASC38C0800 0x02 /* Ultra2-Wide/LVD IC */
1790#define ADV_CHIP_ASC38C1600 0x03 /* Ultra3-Wide/LVD2 IC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792/*
1793 * Adapter temporary configuration structure
1794 *
1795 * This structure can be discarded after initialization. Don't add
1796 * fields here needed after initialization.
1797 *
1798 * Field naming convention:
1799 *
1800 * *_enable indicates the field enables or disables a feature. The
1801 * value of the field is never reset.
1802 */
1803typedef struct adv_dvc_cfg {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001804 ushort disc_enable; /* enable disconnection */
1805 uchar chip_version; /* chip version */
1806 uchar termination; /* Term. Ctrl. bits 6-5 of SCSI_CFG1 register */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001807 ushort control_flag; /* Microcode Control Flag */
1808 ushort mcode_date; /* Microcode date */
1809 ushort mcode_version; /* Microcode version */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001810 ushort serial1; /* EEPROM serial number word 1 */
1811 ushort serial2; /* EEPROM serial number word 2 */
1812 ushort serial3; /* EEPROM serial number word 3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813} ADV_DVC_CFG;
1814
1815struct adv_dvc_var;
1816struct adv_scsi_req_q;
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818typedef struct asc_sg_block {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001819 uchar reserved1;
1820 uchar reserved2;
1821 uchar reserved3;
1822 uchar sg_cnt; /* Valid entries in block. */
1823 ADV_PADDR sg_ptr; /* Pointer to next sg block. */
1824 struct {
1825 ADV_PADDR sg_addr; /* SG element address. */
1826 ADV_DCNT sg_count; /* SG element count. */
1827 } sg_list[NO_OF_SG_PER_BLOCK];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828} ADV_SG_BLOCK;
1829
1830/*
1831 * ADV_SCSI_REQ_Q - microcode request structure
1832 *
1833 * All fields in this structure up to byte 60 are used by the microcode.
1834 * The microcode makes assumptions about the size and ordering of fields
1835 * in this structure. Do not change the structure definition here without
1836 * coordinating the change with the microcode.
1837 *
1838 * All fields accessed by microcode must be maintained in little_endian
1839 * order.
1840 */
1841typedef struct adv_scsi_req_q {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001842 uchar cntl; /* Ucode flags and state (ASC_MC_QC_*). */
1843 uchar target_cmd;
1844 uchar target_id; /* Device target identifier. */
1845 uchar target_lun; /* Device target logical unit number. */
1846 ADV_PADDR data_addr; /* Data buffer physical address. */
1847 ADV_DCNT data_cnt; /* Data count. Ucode sets to residual. */
Hannes Reinecke811ddc02015-04-24 13:18:22 +02001848 __le32 sense_addr;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001849 __le32 carr_pa;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001850 uchar mflag;
1851 uchar sense_len;
1852 uchar cdb_len; /* SCSI CDB length. Must <= 16 bytes. */
1853 uchar scsi_cntl;
1854 uchar done_status; /* Completion status. */
1855 uchar scsi_status; /* SCSI status byte. */
1856 uchar host_status; /* Ucode host status. */
1857 uchar sg_working_ix;
1858 uchar cdb[12]; /* SCSI CDB bytes 0-11. */
1859 ADV_PADDR sg_real_addr; /* SG list physical address. */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001860 __le32 scsiq_rptr;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001861 uchar cdb16[4]; /* SCSI CDB bytes 12-15. */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001862 __le32 scsiq_ptr;
1863 __le32 carr_va;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001864 /*
1865 * End of microcode structure - 60 bytes. The rest of the structure
1866 * is used by the Adv Library and ignored by the microcode.
1867 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02001868 u32 srb_tag;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001869 uchar a_flag;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001870 uchar pad[3]; /* Pad out to a word boundary. */
1871 ADV_SG_BLOCK *sg_list_ptr; /* SG list virtual address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872} ADV_SCSI_REQ_Q;
1873
1874/*
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001875 * The following two structures are used to process Wide Board requests.
1876 *
1877 * The ADV_SCSI_REQ_Q structure in adv_req_t is passed to the Adv Library
Hannes Reinecke9c17c622015-04-24 13:18:21 +02001878 * and microcode with the ADV_SCSI_REQ_Q field 'srb_tag' set to the
1879 * SCSI request tag. The adv_req_t structure 'cmndp' field in turn points
1880 * to the Mid-Level SCSI request structure.
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001881 *
1882 * Zero or more ADV_SG_BLOCK are used with each ADV_SCSI_REQ_Q. Each
1883 * ADV_SG_BLOCK structure holds 15 scatter-gather elements. Under Linux
1884 * up to 255 scatter-gather elements may be used per request or
1885 * ADV_SCSI_REQ_Q.
1886 *
1887 * Both structures must be 32 byte aligned.
1888 */
1889typedef struct adv_sgblk {
1890 ADV_SG_BLOCK sg_block; /* Sgblock structure. */
1891 uchar align[32]; /* Sgblock structure padding. */
1892 struct adv_sgblk *next_sgblkp; /* Next scatter-gather structure. */
1893} adv_sgblk_t;
1894
1895typedef struct adv_req {
1896 ADV_SCSI_REQ_Q scsi_req_q; /* Adv Library request structure. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02001897 uchar align[24]; /* Request structure padding. */
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001898 struct scsi_cmnd *cmndp; /* Mid-Level SCSI command pointer. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02001899 dma_addr_t req_addr;
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001900 adv_sgblk_t *sgblkp; /* Adv Library scatter-gather pointer. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02001901} adv_req_t __aligned(32);
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001902
1903/*
1904 * Adapter operation variable structure.
1905 *
1906 * One structure is required per host adapter.
1907 *
1908 * Field naming convention:
1909 *
1910 * *_able indicates both whether a feature should be enabled or disabled
1911 * and whether a device isi capable of the feature. At initialization
1912 * this field may be set, but later if a device is found to be incapable
1913 * of the feature, the field is cleared.
1914 */
1915typedef struct adv_dvc_var {
1916 AdvPortAddr iop_base; /* I/O port address */
1917 ushort err_code; /* fatal error code */
1918 ushort bios_ctrl; /* BIOS control word, EEPROM word 12 */
1919 ushort wdtr_able; /* try WDTR for a device */
1920 ushort sdtr_able; /* try SDTR for a device */
1921 ushort ultra_able; /* try SDTR Ultra speed for a device */
1922 ushort sdtr_speed1; /* EEPROM SDTR Speed for TID 0-3 */
1923 ushort sdtr_speed2; /* EEPROM SDTR Speed for TID 4-7 */
1924 ushort sdtr_speed3; /* EEPROM SDTR Speed for TID 8-11 */
1925 ushort sdtr_speed4; /* EEPROM SDTR Speed for TID 12-15 */
1926 ushort tagqng_able; /* try tagged queuing with a device */
1927 ushort ppr_able; /* PPR message capable per TID bitmask. */
1928 uchar max_dvc_qng; /* maximum number of tagged commands per device */
1929 ushort start_motor; /* start motor command allowed */
1930 uchar scsi_reset_wait; /* delay in seconds after scsi bus reset */
1931 uchar chip_no; /* should be assigned by caller */
1932 uchar max_host_qng; /* maximum number of Q'ed command allowed */
1933 ushort no_scam; /* scam_tolerant of EEPROM */
1934 struct asc_board *drv_ptr; /* driver pointer to private structure */
1935 uchar chip_scsi_id; /* chip SCSI target ID */
1936 uchar chip_type;
1937 uchar bist_err_code;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001938 ADV_CARR_T *carrier;
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001939 ADV_CARR_T *carr_freelist; /* Carrier free list. */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02001940 dma_addr_t carrier_addr;
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001941 ADV_CARR_T *icq_sp; /* Initiator command queue stopper pointer. */
1942 ADV_CARR_T *irq_sp; /* Initiator response queue stopper pointer. */
1943 ushort carr_pending_cnt; /* Count of pending carriers. */
Matthew Wilcox98d41c22007-10-02 21:55:37 -04001944 /*
1945 * Note: The following fields will not be used after initialization. The
1946 * driver may discard the buffer after initialization is done.
1947 */
1948 ADV_DVC_CFG *cfg; /* temporary configuration structure */
1949} ADV_DVC_VAR;
1950
1951/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 * Microcode idle loop commands
1953 */
1954#define IDLE_CMD_COMPLETED 0
1955#define IDLE_CMD_STOP_CHIP 0x0001
1956#define IDLE_CMD_STOP_CHIP_SEND_INT 0x0002
1957#define IDLE_CMD_SEND_INT 0x0004
1958#define IDLE_CMD_ABORT 0x0008
1959#define IDLE_CMD_DEVICE_RESET 0x0010
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001960#define IDLE_CMD_SCSI_RESET_START 0x0020 /* Assert SCSI Bus Reset */
1961#define IDLE_CMD_SCSI_RESET_END 0x0040 /* Deassert SCSI Bus Reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962#define IDLE_CMD_SCSIREQ 0x0080
1963
1964#define IDLE_CMD_STATUS_SUCCESS 0x0001
1965#define IDLE_CMD_STATUS_FAILURE 0x0002
1966
1967/*
1968 * AdvSendIdleCmd() flag definitions.
1969 */
1970#define ADV_NOWAIT 0x01
1971
1972/*
1973 * Wait loop time out values.
1974 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001975#define SCSI_WAIT_100_MSEC 100UL /* 100 milliseconds */
1976#define SCSI_US_PER_MSEC 1000 /* microseconds per millisecond */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001977#define SCSI_MAX_RETRY 10 /* retry count */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001979#define ADV_ASYNC_RDMA_FAILURE 0x01 /* Fatal RDMA failure. */
1980#define ADV_ASYNC_SCSI_BUS_RESET_DET 0x02 /* Detected SCSI Bus Reset. */
1981#define ADV_ASYNC_CARRIER_READY_FAILURE 0x03 /* Carrier Ready failure. */
1982#define ADV_RDMA_IN_CARR_AND_Q_INVALID 0x04 /* RDMAed-in data invalid. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Matthew Wilcox27c868c2007-07-26 10:56:23 -04001984#define ADV_HOST_SCSI_BUS_RESET 0x80 /* Host Initiated SCSI Bus Reset. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986/* Read byte from a register. */
1987#define AdvReadByteRegister(iop_base, reg_off) \
1988 (ADV_MEM_READB((iop_base) + (reg_off)))
1989
1990/* Write byte to a register. */
1991#define AdvWriteByteRegister(iop_base, reg_off, byte) \
1992 (ADV_MEM_WRITEB((iop_base) + (reg_off), (byte)))
1993
1994/* Read word (2 bytes) from a register. */
1995#define AdvReadWordRegister(iop_base, reg_off) \
1996 (ADV_MEM_READW((iop_base) + (reg_off)))
1997
1998/* Write word (2 bytes) to a register. */
1999#define AdvWriteWordRegister(iop_base, reg_off, word) \
2000 (ADV_MEM_WRITEW((iop_base) + (reg_off), (word)))
2001
2002/* Write dword (4 bytes) to a register. */
2003#define AdvWriteDWordRegister(iop_base, reg_off, dword) \
2004 (ADV_MEM_WRITEDW((iop_base) + (reg_off), (dword)))
2005
2006/* Read byte from LRAM. */
2007#define AdvReadByteLram(iop_base, addr, byte) \
2008do { \
2009 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)); \
2010 (byte) = ADV_MEM_READB((iop_base) + IOPB_RAM_DATA); \
2011} while (0)
2012
2013/* Write byte to LRAM. */
2014#define AdvWriteByteLram(iop_base, addr, byte) \
2015 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
2016 ADV_MEM_WRITEB((iop_base) + IOPB_RAM_DATA, (byte)))
2017
2018/* Read word (2 bytes) from LRAM. */
2019#define AdvReadWordLram(iop_base, addr, word) \
2020do { \
2021 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)); \
2022 (word) = (ADV_MEM_READW((iop_base) + IOPW_RAM_DATA)); \
2023} while (0)
2024
2025/* Write word (2 bytes) to LRAM. */
2026#define AdvWriteWordLram(iop_base, addr, word) \
2027 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
2028 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, (word)))
2029
2030/* Write little-endian double word (4 bytes) to LRAM */
2031/* Because of unspecified C language ordering don't use auto-increment. */
2032#define AdvWriteDWordLramNoSwap(iop_base, addr, dword) \
2033 ((ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
2034 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, \
2035 cpu_to_le16((ushort) ((dword) & 0xFFFF)))), \
2036 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr) + 2), \
2037 ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, \
2038 cpu_to_le16((ushort) ((dword >> 16) & 0xFFFF)))))
2039
2040/* Read word (2 bytes) from LRAM assuming that the address is already set. */
2041#define AdvReadWordAutoIncLram(iop_base) \
2042 (ADV_MEM_READW((iop_base) + IOPW_RAM_DATA))
2043
2044/* Write word (2 bytes) to LRAM assuming that the address is already set. */
2045#define AdvWriteWordAutoIncLram(iop_base, word) \
2046 (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, (word)))
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048/*
2049 * Define macro to check for Condor signature.
2050 *
2051 * Evaluate to ADV_TRUE if a Condor chip is found the specified port
2052 * address 'iop_base'. Otherwise evalue to ADV_FALSE.
2053 */
2054#define AdvFindSignature(iop_base) \
2055 (((AdvReadByteRegister((iop_base), IOPB_CHIP_ID_1) == \
2056 ADV_CHIP_ID_BYTE) && \
2057 (AdvReadWordRegister((iop_base), IOPW_CHIP_ID_0) == \
2058 ADV_CHIP_ID_WORD)) ? ADV_TRUE : ADV_FALSE)
2059
2060/*
2061 * Define macro to Return the version number of the chip at 'iop_base'.
2062 *
2063 * The second parameter 'bus_type' is currently unused.
2064 */
2065#define AdvGetChipVersion(iop_base, bus_type) \
2066 AdvReadByteRegister((iop_base), IOPB_CHIP_TYPE_REV)
2067
2068/*
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002069 * Abort an SRB in the chip's RISC Memory. The 'srb_tag' argument must
2070 * match the ASC_SCSI_REQ_Q 'srb_tag' field.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 *
2072 * If the request has not yet been sent to the device it will simply be
2073 * aborted from RISC memory. If the request is disconnected it will be
2074 * aborted on reselection by sending an Abort Message to the target ID.
2075 *
2076 * Return value:
2077 * ADV_TRUE(1) - Queue was successfully aborted.
2078 * ADV_FALSE(0) - Queue was not found on the active queue list.
2079 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002080#define AdvAbortQueue(asc_dvc, srb_tag) \
2081 AdvSendIdleCmd((asc_dvc), (ushort) IDLE_CMD_ABORT, \
2082 (ADV_DCNT) (srb_tag))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
2084/*
2085 * Send a Bus Device Reset Message to the specified target ID.
2086 *
2087 * All outstanding commands will be purged if sending the
2088 * Bus Device Reset Message is successful.
2089 *
2090 * Return Value:
2091 * ADV_TRUE(1) - All requests on the target are purged.
2092 * ADV_FALSE(0) - Couldn't issue Bus Device Reset Message; Requests
2093 * are not purged.
2094 */
2095#define AdvResetDevice(asc_dvc, target_id) \
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002096 AdvSendIdleCmd((asc_dvc), (ushort) IDLE_CMD_DEVICE_RESET, \
2097 (ADV_DCNT) (target_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099/*
2100 * SCSI Wide Type definition.
2101 */
2102#define ADV_SCSI_BIT_ID_TYPE ushort
2103
2104/*
2105 * AdvInitScsiTarget() 'cntl_flag' options.
2106 */
2107#define ADV_SCAN_LUN 0x01
2108#define ADV_CAPINFO_NOLUN 0x02
2109
2110/*
2111 * Convert target id to target id bit mask.
2112 */
2113#define ADV_TID_TO_TIDMASK(tid) (0x01 << ((tid) & ADV_MAX_TID))
2114
2115/*
2116 * ASC_SCSI_REQ_Q 'done_status' and 'host_status' return values.
2117 */
2118
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002119#define QD_NO_STATUS 0x00 /* Request not completed yet. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120#define QD_NO_ERROR 0x01
2121#define QD_ABORTED_BY_HOST 0x02
2122#define QD_WITH_ERROR 0x04
2123
2124#define QHSTA_NO_ERROR 0x00
2125#define QHSTA_M_SEL_TIMEOUT 0x11
2126#define QHSTA_M_DATA_OVER_RUN 0x12
2127#define QHSTA_M_UNEXPECTED_BUS_FREE 0x13
2128#define QHSTA_M_QUEUE_ABORTED 0x15
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002129#define QHSTA_M_SXFR_SDMA_ERR 0x16 /* SXFR_STATUS SCSI DMA Error */
2130#define QHSTA_M_SXFR_SXFR_PERR 0x17 /* SXFR_STATUS SCSI Bus Parity Error */
2131#define QHSTA_M_RDMA_PERR 0x18 /* RISC PCI DMA parity error */
2132#define QHSTA_M_SXFR_OFF_UFLW 0x19 /* SXFR_STATUS Offset Underflow */
2133#define QHSTA_M_SXFR_OFF_OFLW 0x20 /* SXFR_STATUS Offset Overflow */
2134#define QHSTA_M_SXFR_WD_TMO 0x21 /* SXFR_STATUS Watchdog Timeout */
2135#define QHSTA_M_SXFR_DESELECTED 0x22 /* SXFR_STATUS Deselected */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136/* Note: QHSTA_M_SXFR_XFR_OFLW is identical to QHSTA_M_DATA_OVER_RUN. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002137#define QHSTA_M_SXFR_XFR_OFLW 0x12 /* SXFR_STATUS Transfer Overflow */
2138#define QHSTA_M_SXFR_XFR_PH_ERR 0x24 /* SXFR_STATUS Transfer Phase Error */
2139#define QHSTA_M_SXFR_UNKNOWN_ERROR 0x25 /* SXFR_STATUS Unknown Error */
2140#define QHSTA_M_SCSI_BUS_RESET 0x30 /* Request aborted from SBR */
2141#define QHSTA_M_SCSI_BUS_RESET_UNSOL 0x31 /* Request aborted from unsol. SBR */
2142#define QHSTA_M_BUS_DEVICE_RESET 0x32 /* Request aborted from BDR */
2143#define QHSTA_M_DIRECTION_ERR 0x35 /* Data Phase mismatch */
2144#define QHSTA_M_DIRECTION_ERR_HUNG 0x36 /* Data Phase mismatch and bus hang */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145#define QHSTA_M_WTM_TIMEOUT 0x41
2146#define QHSTA_M_BAD_CMPL_STATUS_IN 0x42
2147#define QHSTA_M_NO_AUTO_REQ_SENSE 0x43
2148#define QHSTA_M_AUTO_REQ_SENSE_FAIL 0x44
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002149#define QHSTA_M_INVALID_DEVICE 0x45 /* Bad target ID */
2150#define QHSTA_M_FROZEN_TIDQ 0x46 /* TID Queue frozen. */
2151#define QHSTA_M_SGBACKUP_ERROR 0x47 /* Scatter-Gather backup error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153/* Return the address that is aligned at the next doubleword >= to 'addr'. */
2154#define ADV_8BALIGN(addr) (((ulong) (addr) + 0x7) & ~0x7)
2155#define ADV_16BALIGN(addr) (((ulong) (addr) + 0xF) & ~0xF)
2156#define ADV_32BALIGN(addr) (((ulong) (addr) + 0x1F) & ~0x1F)
2157
2158/*
2159 * Total contiguous memory needed for driver SG blocks.
2160 *
2161 * ADV_MAX_SG_LIST must be defined by a driver. It is the maximum
2162 * number of scatter-gather elements the driver supports in a
2163 * single request.
2164 */
2165
2166#define ADV_SG_LIST_MAX_BYTE_SIZE \
2167 (sizeof(ADV_SG_BLOCK) * \
2168 ((ADV_MAX_SG_LIST + (NO_OF_SG_PER_BLOCK - 1))/NO_OF_SG_PER_BLOCK))
2169
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002170/* struct asc_board flags */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002171#define ASC_IS_WIDE_BOARD 0x04 /* AdvanSys Wide Board */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173#define ASC_NARROW_BOARD(boardp) (((boardp)->flags & ASC_IS_WIDE_BOARD) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002175#define NO_ISA_DMA 0xff /* No ISA DMA Channel Used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002177#define ASC_INFO_SIZE 128 /* advansys_info() line size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179/* Asc Library return codes */
2180#define ASC_TRUE 1
2181#define ASC_FALSE 0
2182#define ASC_NOERROR 1
2183#define ASC_BUSY 0
2184#define ASC_ERROR (-1)
2185
2186/* struct scsi_cmnd function return codes */
2187#define STATUS_BYTE(byte) (byte)
2188#define MSG_BYTE(byte) ((byte) << 8)
2189#define HOST_BYTE(byte) ((byte) << 16)
2190#define DRIVER_BYTE(byte) ((byte) << 24)
2191
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002192#define ASC_STATS(shost, counter) ASC_STATS_ADD(shost, counter, 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193#ifndef ADVANSYS_STATS
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002194#define ASC_STATS_ADD(shost, counter, count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195#else /* ADVANSYS_STATS */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002196#define ASC_STATS_ADD(shost, counter, count) \
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002197 (((struct asc_board *) shost_priv(shost))->asc_stats.counter += (count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198#endif /* ADVANSYS_STATS */
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200/* If the result wraps when calculating tenths, return 0. */
2201#define ASC_TENTHS(num, den) \
2202 (((10 * ((num)/(den))) > (((num) * 10)/(den))) ? \
2203 0 : ((((num) * 10)/(den)) - (10 * ((num)/(den)))))
2204
2205/*
2206 * Display a message to the console.
2207 */
2208#define ASC_PRINT(s) \
2209 { \
2210 printk("advansys: "); \
2211 printk(s); \
2212 }
2213
2214#define ASC_PRINT1(s, a1) \
2215 { \
2216 printk("advansys: "); \
2217 printk((s), (a1)); \
2218 }
2219
2220#define ASC_PRINT2(s, a1, a2) \
2221 { \
2222 printk("advansys: "); \
2223 printk((s), (a1), (a2)); \
2224 }
2225
2226#define ASC_PRINT3(s, a1, a2, a3) \
2227 { \
2228 printk("advansys: "); \
2229 printk((s), (a1), (a2), (a3)); \
2230 }
2231
2232#define ASC_PRINT4(s, a1, a2, a3, a4) \
2233 { \
2234 printk("advansys: "); \
2235 printk((s), (a1), (a2), (a3), (a4)); \
2236 }
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238#ifndef ADVANSYS_DEBUG
2239
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002240#define ASC_DBG(lvl, s...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241#define ASC_DBG_PRT_SCSI_HOST(lvl, s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242#define ASC_DBG_PRT_ASC_SCSI_Q(lvl, scsiqp)
2243#define ASC_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp)
2244#define ASC_DBG_PRT_ASC_QDONE_INFO(lvl, qdone)
2245#define ADV_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp)
2246#define ASC_DBG_PRT_HEX(lvl, name, start, length)
2247#define ASC_DBG_PRT_CDB(lvl, cdb, len)
2248#define ASC_DBG_PRT_SENSE(lvl, sense, len)
2249#define ASC_DBG_PRT_INQUIRY(lvl, inq, len)
2250
2251#else /* ADVANSYS_DEBUG */
2252
2253/*
2254 * Debugging Message Levels:
2255 * 0: Errors Only
2256 * 1: High-Level Tracing
2257 * 2-N: Verbose Tracing
2258 */
2259
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002260#define ASC_DBG(lvl, format, arg...) { \
2261 if (asc_dbglvl >= (lvl)) \
2262 printk(KERN_DEBUG "%s: %s: " format, DRV_NAME, \
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002263 __func__ , ## arg); \
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002264}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266#define ASC_DBG_PRT_SCSI_HOST(lvl, s) \
2267 { \
2268 if (asc_dbglvl >= (lvl)) { \
2269 asc_prt_scsi_host(s); \
2270 } \
2271 }
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273#define ASC_DBG_PRT_ASC_SCSI_Q(lvl, scsiqp) \
2274 { \
2275 if (asc_dbglvl >= (lvl)) { \
2276 asc_prt_asc_scsi_q(scsiqp); \
2277 } \
2278 }
2279
2280#define ASC_DBG_PRT_ASC_QDONE_INFO(lvl, qdone) \
2281 { \
2282 if (asc_dbglvl >= (lvl)) { \
2283 asc_prt_asc_qdone_info(qdone); \
2284 } \
2285 }
2286
2287#define ASC_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp) \
2288 { \
2289 if (asc_dbglvl >= (lvl)) { \
2290 asc_prt_adv_scsi_req_q(scsiqp); \
2291 } \
2292 }
2293
2294#define ASC_DBG_PRT_HEX(lvl, name, start, length) \
2295 { \
2296 if (asc_dbglvl >= (lvl)) { \
2297 asc_prt_hex((name), (start), (length)); \
2298 } \
2299 }
2300
2301#define ASC_DBG_PRT_CDB(lvl, cdb, len) \
2302 ASC_DBG_PRT_HEX((lvl), "CDB", (uchar *) (cdb), (len));
2303
2304#define ASC_DBG_PRT_SENSE(lvl, sense, len) \
2305 ASC_DBG_PRT_HEX((lvl), "SENSE", (uchar *) (sense), (len));
2306
2307#define ASC_DBG_PRT_INQUIRY(lvl, inq, len) \
2308 ASC_DBG_PRT_HEX((lvl), "INQUIRY", (uchar *) (inq), (len));
2309#endif /* ADVANSYS_DEBUG */
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311#ifdef ADVANSYS_STATS
2312
2313/* Per board statistics structure */
2314struct asc_stats {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002315 /* Driver Entrypoint Statistics */
2316 ADV_DCNT queuecommand; /* # calls to advansys_queuecommand() */
2317 ADV_DCNT reset; /* # calls to advansys_eh_bus_reset() */
2318 ADV_DCNT biosparam; /* # calls to advansys_biosparam() */
2319 ADV_DCNT interrupt; /* # advansys_interrupt() calls */
2320 ADV_DCNT callback; /* # calls to asc/adv_isr_callback() */
2321 ADV_DCNT done; /* # calls to request's scsi_done function */
2322 ADV_DCNT build_error; /* # asc/adv_build_req() ASC_ERROR returns. */
2323 ADV_DCNT adv_build_noreq; /* # adv_build_req() adv_req_t alloc. fail. */
2324 ADV_DCNT adv_build_nosg; /* # adv_build_req() adv_sgblk_t alloc. fail. */
2325 /* AscExeScsiQueue()/AdvExeScsiQueue() Statistics */
2326 ADV_DCNT exe_noerror; /* # ASC_NOERROR returns. */
2327 ADV_DCNT exe_busy; /* # ASC_BUSY returns. */
2328 ADV_DCNT exe_error; /* # ASC_ERROR returns. */
2329 ADV_DCNT exe_unknown; /* # unknown returns. */
2330 /* Data Transfer Statistics */
Matthew Wilcox52c334e2007-10-02 21:55:39 -04002331 ADV_DCNT xfer_cnt; /* # I/O requests received */
2332 ADV_DCNT xfer_elem; /* # scatter-gather elements */
2333 ADV_DCNT xfer_sect; /* # 512-byte blocks */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334};
2335#endif /* ADVANSYS_STATS */
2336
2337/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 * Structure allocated for each board.
2339 *
Matthew Wilcox8dfb5372007-07-30 09:08:34 -06002340 * This structure is allocated by scsi_host_alloc() at the end
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 * of the 'Scsi_Host' structure starting at the 'hostdata'
2342 * field. It is guaranteed to be allocated from DMA-able memory.
2343 */
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002344struct asc_board {
Matthew Wilcox394dbf32007-07-26 11:56:40 -04002345 struct device *dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002346 struct Scsi_Host *shost;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002347 uint flags; /* Board flags */
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002348 unsigned int irq;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002349 union {
2350 ASC_DVC_VAR asc_dvc_var; /* Narrow board */
2351 ADV_DVC_VAR adv_dvc_var; /* Wide board */
2352 } dvc_var;
2353 union {
2354 ASC_DVC_CFG asc_dvc_cfg; /* Narrow board */
2355 ADV_DVC_CFG adv_dvc_cfg; /* Wide board */
2356 } dvc_cfg;
2357 ushort asc_n_io_port; /* Number I/O ports. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002358 ADV_SCSI_BIT_ID_TYPE init_tidmask; /* Target init./valid mask */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002359 ushort reqcnt[ADV_MAX_TID + 1]; /* Starvation request count */
2360 ADV_SCSI_BIT_ID_TYPE queue_full; /* Queue full mask */
2361 ushort queue_full_cnt[ADV_MAX_TID + 1]; /* Queue full count */
2362 union {
2363 ASCEEP_CONFIG asc_eep; /* Narrow EEPROM config. */
2364 ADVEEP_3550_CONFIG adv_3550_eep; /* 3550 EEPROM config. */
2365 ADVEEP_38C0800_CONFIG adv_38C0800_eep; /* 38C0800 EEPROM config. */
2366 ADVEEP_38C1600_CONFIG adv_38C1600_eep; /* 38C1600 EEPROM config. */
2367 } eep_config;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002368 /* /proc/scsi/advansys/[0...] */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369#ifdef ADVANSYS_STATS
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002370 struct asc_stats asc_stats; /* Board statistics */
2371#endif /* ADVANSYS_STATS */
2372 /*
2373 * The following fields are used only for Narrow Boards.
2374 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002375 uchar sdtr_data[ASC_MAX_TID + 1]; /* SDTR information */
2376 /*
2377 * The following fields are used only for Wide Boards.
2378 */
2379 void __iomem *ioremap_addr; /* I/O Memory remap address. */
2380 ushort ioport; /* I/O Port address. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002381 adv_req_t *adv_reqp; /* Request structures. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02002382 dma_addr_t adv_reqp_addr;
2383 size_t adv_reqp_size;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002384 adv_sgblk_t *adv_sgblkp; /* Scatter-gather structures. */
2385 ushort bios_signature; /* BIOS Signature. */
2386 ushort bios_version; /* BIOS Version. */
2387 ushort bios_codeseg; /* BIOS Code Segment. */
2388 ushort bios_codelen; /* BIOS Code Segment Length. */
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002389};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04002391#define asc_dvc_to_board(asc_dvc) container_of(asc_dvc, struct asc_board, \
2392 dvc_var.asc_dvc_var)
Matthew Wilcox13ac2d92007-07-30 08:10:23 -06002393#define adv_dvc_to_board(adv_dvc) container_of(adv_dvc, struct asc_board, \
2394 dvc_var.adv_dvc_var)
2395#define adv_dvc_to_pdev(adv_dvc) to_pci_dev(adv_dvc_to_board(adv_dvc)->dev)
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397#ifdef ADVANSYS_DEBUG
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002398static int asc_dbglvl = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400/*
Matthew Wilcox51219352007-10-02 21:55:22 -04002401 * asc_prt_asc_dvc_var()
2402 */
2403static void asc_prt_asc_dvc_var(ASC_DVC_VAR *h)
2404{
2405 printk("ASC_DVC_VAR at addr 0x%lx\n", (ulong)h);
2406
2407 printk(" iop_base 0x%x, err_code 0x%x, dvc_cntl 0x%x, bug_fix_cntl "
2408 "%d,\n", h->iop_base, h->err_code, h->dvc_cntl, h->bug_fix_cntl);
2409
2410 printk(" bus_type %d, init_sdtr 0x%x,\n", h->bus_type,
2411 (unsigned)h->init_sdtr);
2412
2413 printk(" sdtr_done 0x%x, use_tagged_qng 0x%x, unit_not_ready 0x%x, "
2414 "chip_no 0x%x,\n", (unsigned)h->sdtr_done,
2415 (unsigned)h->use_tagged_qng, (unsigned)h->unit_not_ready,
2416 (unsigned)h->chip_no);
2417
2418 printk(" queue_full_or_busy 0x%x, start_motor 0x%x, scsi_reset_wait "
2419 "%u,\n", (unsigned)h->queue_full_or_busy,
2420 (unsigned)h->start_motor, (unsigned)h->scsi_reset_wait);
2421
2422 printk(" is_in_int %u, max_total_qng %u, cur_total_qng %u, "
2423 "in_critical_cnt %u,\n", (unsigned)h->is_in_int,
2424 (unsigned)h->max_total_qng, (unsigned)h->cur_total_qng,
2425 (unsigned)h->in_critical_cnt);
2426
2427 printk(" last_q_shortage %u, init_state 0x%x, no_scam 0x%x, "
2428 "pci_fix_asyn_xfer 0x%x,\n", (unsigned)h->last_q_shortage,
2429 (unsigned)h->init_state, (unsigned)h->no_scam,
2430 (unsigned)h->pci_fix_asyn_xfer);
2431
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002432 printk(" cfg 0x%lx\n", (ulong)h->cfg);
Matthew Wilcox51219352007-10-02 21:55:22 -04002433}
2434
2435/*
2436 * asc_prt_asc_dvc_cfg()
2437 */
2438static void asc_prt_asc_dvc_cfg(ASC_DVC_CFG *h)
2439{
2440 printk("ASC_DVC_CFG at addr 0x%lx\n", (ulong)h);
2441
2442 printk(" can_tagged_qng 0x%x, cmd_qng_enabled 0x%x,\n",
2443 h->can_tagged_qng, h->cmd_qng_enabled);
2444 printk(" disc_enable 0x%x, sdtr_enable 0x%x,\n",
2445 h->disc_enable, h->sdtr_enable);
2446
Matthew Wilcoxb08fc562007-10-02 21:55:32 -04002447 printk(" chip_scsi_id %d, isa_dma_speed %d, isa_dma_channel %d, "
2448 "chip_version %d,\n", h->chip_scsi_id, h->isa_dma_speed,
2449 h->isa_dma_channel, h->chip_version);
Matthew Wilcox51219352007-10-02 21:55:22 -04002450
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04002451 printk(" mcode_date 0x%x, mcode_version %d\n",
2452 h->mcode_date, h->mcode_version);
Matthew Wilcox51219352007-10-02 21:55:22 -04002453}
2454
2455/*
Matthew Wilcox51219352007-10-02 21:55:22 -04002456 * asc_prt_adv_dvc_var()
2457 *
2458 * Display an ADV_DVC_VAR structure.
2459 */
2460static void asc_prt_adv_dvc_var(ADV_DVC_VAR *h)
2461{
2462 printk(" ADV_DVC_VAR at addr 0x%lx\n", (ulong)h);
2463
2464 printk(" iop_base 0x%lx, err_code 0x%x, ultra_able 0x%x\n",
2465 (ulong)h->iop_base, h->err_code, (unsigned)h->ultra_able);
2466
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002467 printk(" sdtr_able 0x%x, wdtr_able 0x%x\n",
2468 (unsigned)h->sdtr_able, (unsigned)h->wdtr_able);
Matthew Wilcox51219352007-10-02 21:55:22 -04002469
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002470 printk(" start_motor 0x%x, scsi_reset_wait 0x%x\n",
2471 (unsigned)h->start_motor, (unsigned)h->scsi_reset_wait);
Matthew Wilcox51219352007-10-02 21:55:22 -04002472
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002473 printk(" max_host_qng %u, max_dvc_qng %u, carr_freelist 0x%p\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04002474 (unsigned)h->max_host_qng, (unsigned)h->max_dvc_qng,
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002475 h->carr_freelist);
Matthew Wilcox51219352007-10-02 21:55:22 -04002476
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002477 printk(" icq_sp 0x%p, irq_sp 0x%p\n", h->icq_sp, h->irq_sp);
Matthew Wilcox51219352007-10-02 21:55:22 -04002478
2479 printk(" no_scam 0x%x, tagqng_able 0x%x\n",
2480 (unsigned)h->no_scam, (unsigned)h->tagqng_able);
2481
2482 printk(" chip_scsi_id 0x%x, cfg 0x%lx\n",
2483 (unsigned)h->chip_scsi_id, (ulong)h->cfg);
2484}
2485
2486/*
2487 * asc_prt_adv_dvc_cfg()
2488 *
2489 * Display an ADV_DVC_CFG structure.
2490 */
2491static void asc_prt_adv_dvc_cfg(ADV_DVC_CFG *h)
2492{
2493 printk(" ADV_DVC_CFG at addr 0x%lx\n", (ulong)h);
2494
2495 printk(" disc_enable 0x%x, termination 0x%x\n",
2496 h->disc_enable, h->termination);
2497
2498 printk(" chip_version 0x%x, mcode_date 0x%x\n",
2499 h->chip_version, h->mcode_date);
2500
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002501 printk(" mcode_version 0x%x, control_flag 0x%x\n",
2502 h->mcode_version, h->control_flag);
Matthew Wilcox51219352007-10-02 21:55:22 -04002503}
2504
2505/*
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002506 * asc_prt_scsi_host()
Matthew Wilcox51219352007-10-02 21:55:22 -04002507 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002508static void asc_prt_scsi_host(struct Scsi_Host *s)
Matthew Wilcox51219352007-10-02 21:55:22 -04002509{
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002510 struct asc_board *boardp = shost_priv(s);
Matthew Wilcox51219352007-10-02 21:55:22 -04002511
Kay Sievers71610f52008-12-03 22:41:36 +01002512 printk("Scsi_Host at addr 0x%p, device %s\n", s, dev_name(boardp->dev));
Hannes Reinecke50d14a72013-10-23 10:51:17 +02002513 printk(" host_busy %u, host_no %d,\n",
Christoph Hellwig74665012014-01-22 15:29:29 +01002514 atomic_read(&s->host_busy), s->host_no);
Matthew Wilcox51219352007-10-02 21:55:22 -04002515
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002516 printk(" base 0x%lx, io_port 0x%lx, irq %d,\n",
2517 (ulong)s->base, (ulong)s->io_port, boardp->irq);
Matthew Wilcox51219352007-10-02 21:55:22 -04002518
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002519 printk(" dma_channel %d, this_id %d, can_queue %d,\n",
2520 s->dma_channel, s->this_id, s->can_queue);
Matthew Wilcox51219352007-10-02 21:55:22 -04002521
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002522 printk(" cmd_per_lun %d, sg_tablesize %d, unchecked_isa_dma %d\n",
2523 s->cmd_per_lun, s->sg_tablesize, s->unchecked_isa_dma);
Matthew Wilcox51219352007-10-02 21:55:22 -04002524
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002525 if (ASC_NARROW_BOARD(boardp)) {
2526 asc_prt_asc_dvc_var(&boardp->dvc_var.asc_dvc_var);
2527 asc_prt_asc_dvc_cfg(&boardp->dvc_cfg.asc_dvc_cfg);
2528 } else {
2529 asc_prt_adv_dvc_var(&boardp->dvc_var.adv_dvc_var);
2530 asc_prt_adv_dvc_cfg(&boardp->dvc_cfg.adv_dvc_cfg);
Matthew Wilcox51219352007-10-02 21:55:22 -04002531 }
2532}
2533
2534/*
2535 * asc_prt_hex()
2536 *
2537 * Print hexadecimal output in 4 byte groupings 32 bytes
2538 * or 8 double-words per line.
2539 */
2540static void asc_prt_hex(char *f, uchar *s, int l)
2541{
2542 int i;
2543 int j;
2544 int k;
2545 int m;
2546
2547 printk("%s: (%d bytes)\n", f, l);
2548
2549 for (i = 0; i < l; i += 32) {
2550
2551 /* Display a maximum of 8 double-words per line. */
2552 if ((k = (l - i) / 4) >= 8) {
2553 k = 8;
2554 m = 0;
2555 } else {
2556 m = (l - i) % 4;
2557 }
2558
2559 for (j = 0; j < k; j++) {
2560 printk(" %2.2X%2.2X%2.2X%2.2X",
2561 (unsigned)s[i + (j * 4)],
2562 (unsigned)s[i + (j * 4) + 1],
2563 (unsigned)s[i + (j * 4) + 2],
2564 (unsigned)s[i + (j * 4) + 3]);
2565 }
2566
2567 switch (m) {
2568 case 0:
2569 default:
2570 break;
2571 case 1:
2572 printk(" %2.2X", (unsigned)s[i + (j * 4)]);
2573 break;
2574 case 2:
2575 printk(" %2.2X%2.2X",
2576 (unsigned)s[i + (j * 4)],
2577 (unsigned)s[i + (j * 4) + 1]);
2578 break;
2579 case 3:
2580 printk(" %2.2X%2.2X%2.2X",
2581 (unsigned)s[i + (j * 4) + 1],
2582 (unsigned)s[i + (j * 4) + 2],
2583 (unsigned)s[i + (j * 4) + 3]);
2584 break;
2585 }
2586
2587 printk("\n");
2588 }
2589}
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002590
2591/*
2592 * asc_prt_asc_scsi_q()
2593 */
2594static void asc_prt_asc_scsi_q(ASC_SCSI_Q *q)
2595{
2596 ASC_SG_HEAD *sgp;
2597 int i;
2598
2599 printk("ASC_SCSI_Q at addr 0x%lx\n", (ulong)q);
2600
2601 printk
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002602 (" target_ix 0x%x, target_lun %u, srb_tag 0x%x, tag_code 0x%x,\n",
2603 q->q2.target_ix, q->q1.target_lun, q->q2.srb_tag,
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002604 q->q2.tag_code);
2605
2606 printk
2607 (" data_addr 0x%lx, data_cnt %lu, sense_addr 0x%lx, sense_len %u,\n",
2608 (ulong)le32_to_cpu(q->q1.data_addr),
2609 (ulong)le32_to_cpu(q->q1.data_cnt),
2610 (ulong)le32_to_cpu(q->q1.sense_addr), q->q1.sense_len);
2611
2612 printk(" cdbptr 0x%lx, cdb_len %u, sg_head 0x%lx, sg_queue_cnt %u\n",
2613 (ulong)q->cdbptr, q->q2.cdb_len,
2614 (ulong)q->sg_head, q->q1.sg_queue_cnt);
2615
2616 if (q->sg_head) {
2617 sgp = q->sg_head;
2618 printk("ASC_SG_HEAD at addr 0x%lx\n", (ulong)sgp);
2619 printk(" entry_cnt %u, queue_cnt %u\n", sgp->entry_cnt,
2620 sgp->queue_cnt);
2621 for (i = 0; i < sgp->entry_cnt; i++) {
2622 printk(" [%u]: addr 0x%lx, bytes %lu\n",
2623 i, (ulong)le32_to_cpu(sgp->sg_list[i].addr),
2624 (ulong)le32_to_cpu(sgp->sg_list[i].bytes));
2625 }
2626
2627 }
2628}
2629
2630/*
2631 * asc_prt_asc_qdone_info()
2632 */
2633static void asc_prt_asc_qdone_info(ASC_QDONE_INFO *q)
2634{
2635 printk("ASC_QDONE_INFO at addr 0x%lx\n", (ulong)q);
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002636 printk(" srb_tag 0x%x, target_ix %u, cdb_len %u, tag_code %u,\n",
2637 q->d2.srb_tag, q->d2.target_ix, q->d2.cdb_len,
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002638 q->d2.tag_code);
2639 printk
2640 (" done_stat 0x%x, host_stat 0x%x, scsi_stat 0x%x, scsi_msg 0x%x\n",
2641 q->d3.done_stat, q->d3.host_stat, q->d3.scsi_stat, q->d3.scsi_msg);
2642}
2643
2644/*
2645 * asc_prt_adv_sgblock()
2646 *
2647 * Display an ADV_SG_BLOCK structure.
2648 */
2649static void asc_prt_adv_sgblock(int sgblockno, ADV_SG_BLOCK *b)
2650{
2651 int i;
2652
2653 printk(" ASC_SG_BLOCK at addr 0x%lx (sgblockno %d)\n",
2654 (ulong)b, sgblockno);
2655 printk(" sg_cnt %u, sg_ptr 0x%lx\n",
2656 b->sg_cnt, (ulong)le32_to_cpu(b->sg_ptr));
2657 BUG_ON(b->sg_cnt > NO_OF_SG_PER_BLOCK);
2658 if (b->sg_ptr != 0)
2659 BUG_ON(b->sg_cnt != NO_OF_SG_PER_BLOCK);
2660 for (i = 0; i < b->sg_cnt; i++) {
2661 printk(" [%u]: sg_addr 0x%lx, sg_count 0x%lx\n",
2662 i, (ulong)b->sg_list[i].sg_addr,
2663 (ulong)b->sg_list[i].sg_count);
2664 }
2665}
2666
2667/*
2668 * asc_prt_adv_scsi_req_q()
2669 *
2670 * Display an ADV_SCSI_REQ_Q structure.
2671 */
2672static void asc_prt_adv_scsi_req_q(ADV_SCSI_REQ_Q *q)
2673{
2674 int sg_blk_cnt;
2675 struct asc_sg_block *sg_ptr;
2676
2677 printk("ADV_SCSI_REQ_Q at addr 0x%lx\n", (ulong)q);
2678
Hannes Reinecke9c17c622015-04-24 13:18:21 +02002679 printk(" target_id %u, target_lun %u, srb_tag 0x%x, a_flag 0x%x\n",
2680 q->target_id, q->target_lun, q->srb_tag, q->a_flag);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002681
Hannes Reinecke98b96a72015-04-24 13:18:23 +02002682 printk(" cntl 0x%x, data_addr 0x%lx\n",
2683 q->cntl, (ulong)le32_to_cpu(q->data_addr));
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002684
2685 printk(" data_cnt %lu, sense_addr 0x%lx, sense_len %u,\n",
2686 (ulong)le32_to_cpu(q->data_cnt),
2687 (ulong)le32_to_cpu(q->sense_addr), q->sense_len);
2688
2689 printk
2690 (" cdb_len %u, done_status 0x%x, host_status 0x%x, scsi_status 0x%x\n",
2691 q->cdb_len, q->done_status, q->host_status, q->scsi_status);
2692
2693 printk(" sg_working_ix 0x%x, target_cmd %u\n",
2694 q->sg_working_ix, q->target_cmd);
2695
2696 printk(" scsiq_rptr 0x%lx, sg_real_addr 0x%lx, sg_list_ptr 0x%lx\n",
2697 (ulong)le32_to_cpu(q->scsiq_rptr),
2698 (ulong)le32_to_cpu(q->sg_real_addr), (ulong)q->sg_list_ptr);
2699
2700 /* Display the request's ADV_SG_BLOCK structures. */
2701 if (q->sg_list_ptr != NULL) {
2702 sg_blk_cnt = 0;
2703 while (1) {
2704 /*
2705 * 'sg_ptr' is a physical address. Convert it to a virtual
2706 * address by indexing 'sg_blk_cnt' into the virtual address
2707 * array 'sg_list_ptr'.
2708 *
2709 * XXX - Assumes all SG physical blocks are virtually contiguous.
2710 */
2711 sg_ptr =
2712 &(((ADV_SG_BLOCK *)(q->sg_list_ptr))[sg_blk_cnt]);
2713 asc_prt_adv_sgblock(sg_blk_cnt, sg_ptr);
2714 if (sg_ptr->sg_ptr == 0) {
2715 break;
2716 }
2717 sg_blk_cnt++;
2718 }
2719 }
2720}
Matthew Wilcox51219352007-10-02 21:55:22 -04002721#endif /* ADVANSYS_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
2723/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 * advansys_info()
2725 *
2726 * Return suitable for printing on the console with the argument
2727 * adapter's configuration information.
2728 *
2729 * Note: The information line should not exceed ASC_INFO_SIZE bytes,
2730 * otherwise the static 'info' array will be overrun.
2731 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002732static const char *advansys_info(struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002734 static char info[ASC_INFO_SIZE];
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002735 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002736 ASC_DVC_VAR *asc_dvc_varp;
2737 ADV_DVC_VAR *adv_dvc_varp;
2738 char *busname;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002739 char *widename = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002741 if (ASC_NARROW_BOARD(boardp)) {
2742 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002743 ASC_DBG(1, "begin\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002744 if (asc_dvc_varp->bus_type & ASC_IS_ISA) {
2745 if ((asc_dvc_varp->bus_type & ASC_IS_ISAPNP) ==
2746 ASC_IS_ISAPNP) {
2747 busname = "ISA PnP";
2748 } else {
2749 busname = "ISA";
2750 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002751 sprintf(info,
2752 "AdvanSys SCSI %s: %s: IO 0x%lX-0x%lX, IRQ 0x%X, DMA 0x%X",
2753 ASC_VERSION, busname,
2754 (ulong)shost->io_port,
Matthew Wilcox4a2d31c2007-07-26 11:55:34 -04002755 (ulong)shost->io_port + ASC_IOADR_GAP - 1,
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002756 boardp->irq, shost->dma_channel);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002757 } else {
2758 if (asc_dvc_varp->bus_type & ASC_IS_VL) {
2759 busname = "VL";
2760 } else if (asc_dvc_varp->bus_type & ASC_IS_EISA) {
2761 busname = "EISA";
2762 } else if (asc_dvc_varp->bus_type & ASC_IS_PCI) {
2763 if ((asc_dvc_varp->bus_type & ASC_IS_PCI_ULTRA)
2764 == ASC_IS_PCI_ULTRA) {
2765 busname = "PCI Ultra";
2766 } else {
2767 busname = "PCI";
2768 }
2769 } else {
2770 busname = "?";
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04002771 shost_printk(KERN_ERR, shost, "unknown bus "
2772 "type %d\n", asc_dvc_varp->bus_type);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002773 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002774 sprintf(info,
2775 "AdvanSys SCSI %s: %s: IO 0x%lX-0x%lX, IRQ 0x%X",
Matthew Wilcoxecec1942007-07-30 08:08:22 -06002776 ASC_VERSION, busname, (ulong)shost->io_port,
Matthew Wilcox4a2d31c2007-07-26 11:55:34 -04002777 (ulong)shost->io_port + ASC_IOADR_GAP - 1,
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002778 boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002779 }
2780 } else {
2781 /*
2782 * Wide Adapter Information
2783 *
2784 * Memory-mapped I/O is used instead of I/O space to access
2785 * the adapter, but display the I/O Port range. The Memory
2786 * I/O address is displayed through the driver /proc file.
2787 */
2788 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
2789 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002790 widename = "Ultra-Wide";
2791 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002792 widename = "Ultra2-Wide";
2793 } else {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002794 widename = "Ultra3-Wide";
2795 }
2796 sprintf(info,
2797 "AdvanSys SCSI %s: PCI %s: PCIMEM 0x%lX-0x%lX, IRQ 0x%X",
2798 ASC_VERSION, widename, (ulong)adv_dvc_varp->iop_base,
Matthew Wilcoxd361db42007-10-02 21:55:29 -04002799 (ulong)adv_dvc_varp->iop_base + boardp->asc_n_io_port - 1, boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002800 }
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06002801 BUG_ON(strlen(info) >= ASC_INFO_SIZE);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04002802 ASC_DBG(1, "end\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002803 return info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804}
2805
Matthew Wilcox51219352007-10-02 21:55:22 -04002806#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 * asc_prt_board_devices()
2810 *
2811 * Print driver information for devices attached to the board.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 */
Al Virob59fb6f2013-03-31 02:59:55 -04002813static void asc_prt_board_devices(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002815 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002816 int chip_scsi_id;
2817 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Al Virob59fb6f2013-03-31 02:59:55 -04002819 seq_printf(m,
2820 "\nDevice Information for AdvanSys SCSI Host %d:\n",
2821 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002823 if (ASC_NARROW_BOARD(boardp)) {
2824 chip_scsi_id = boardp->dvc_cfg.asc_dvc_cfg.chip_scsi_id;
2825 } else {
2826 chip_scsi_id = boardp->dvc_var.adv_dvc_var.chip_scsi_id;
2827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002829 seq_puts(m, "Target IDs Detected:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002830 for (i = 0; i <= ADV_MAX_TID; i++) {
Al Virob59fb6f2013-03-31 02:59:55 -04002831 if (boardp->init_tidmask & ADV_TID_TO_TIDMASK(i))
2832 seq_printf(m, " %X,", i);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002833 }
Al Virob59fb6f2013-03-31 02:59:55 -04002834 seq_printf(m, " (%X=Host Adapter)\n", chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
2837/*
2838 * Display Wide Board BIOS Information.
2839 */
Al Virob59fb6f2013-03-31 02:59:55 -04002840static void asc_prt_adv_bios(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002842 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002843 ushort major, minor, letter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Rasmus Villemoes2f979422014-12-03 00:10:50 +01002845 seq_puts(m, "\nROM BIOS Version: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002847 /*
2848 * If the BIOS saved a valid signature, then fill in
2849 * the BIOS code segment base address.
2850 */
2851 if (boardp->bios_signature != 0x55AA) {
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002852 seq_puts(m, "Disabled or Pre-3.1\n"
2853 "BIOS either disabled or Pre-3.1. If it is pre-3.1, then a newer version\n"
2854 "can be found at the ConnectCom FTP site: ftp://ftp.connectcom.net/pub\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002855 } else {
2856 major = (boardp->bios_version >> 12) & 0xF;
2857 minor = (boardp->bios_version >> 8) & 0xF;
2858 letter = (boardp->bios_version & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
Al Virob59fb6f2013-03-31 02:59:55 -04002860 seq_printf(m, "%d.%d%c\n",
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002861 major, minor,
2862 letter >= 26 ? '?' : letter + 'A');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002863 /*
2864 * Current available ROM BIOS release is 3.1I for UW
2865 * and 3.2I for U2W. This code doesn't differentiate
2866 * UW and U2W boards.
2867 */
2868 if (major < 3 || (major <= 3 && minor < 1) ||
2869 (major <= 3 && minor <= 1 && letter < ('I' - 'A'))) {
Rasmus Villemoes3d300792014-12-03 00:10:53 +01002870 seq_puts(m, "Newer version of ROM BIOS is available at the ConnectCom FTP site:\n"
2871 "ftp://ftp.connectcom.net/pub\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002872 }
2873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874}
2875
2876/*
2877 * Add serial number to information bar if signature AAh
2878 * is found in at bit 15-9 (7 bits) of word 1.
2879 *
2880 * Serial Number consists fo 12 alpha-numeric digits.
2881 *
2882 * 1 - Product type (A,B,C,D..) Word0: 15-13 (3 bits)
2883 * 2 - MFG Location (A,B,C,D..) Word0: 12-10 (3 bits)
2884 * 3-4 - Product ID (0-99) Word0: 9-0 (10 bits)
2885 * 5 - Product revision (A-J) Word0: " "
2886 *
2887 * Signature Word1: 15-9 (7 bits)
2888 * 6 - Year (0-9) Word1: 8-6 (3 bits) & Word2: 15 (1 bit)
2889 * 7-8 - Week of the year (1-52) Word1: 5-0 (6 bits)
2890 *
2891 * 9-12 - Serial Number (A001-Z999) Word2: 14-0 (15 bits)
2892 *
2893 * Note 1: Only production cards will have a serial number.
2894 *
2895 * Note 2: Signature is most significant 7 bits (0xFE).
2896 *
2897 * Returns ASC_TRUE if serial number found, otherwise returns ASC_FALSE.
2898 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002899static int asc_get_eeprom_string(ushort *serialnum, uchar *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002901 ushort w, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002903 if ((serialnum[1] & 0xFE00) != ((ushort)0xAA << 8)) {
2904 return ASC_FALSE;
2905 } else {
2906 /*
2907 * First word - 6 digits.
2908 */
2909 w = serialnum[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002911 /* Product type - 1st digit. */
2912 if ((*cp = 'A' + ((w & 0xE000) >> 13)) == 'H') {
2913 /* Product type is P=Prototype */
2914 *cp += 0x8;
2915 }
2916 cp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002918 /* Manufacturing location - 2nd digit. */
2919 *cp++ = 'A' + ((w & 0x1C00) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002921 /* Product ID - 3rd, 4th digits. */
2922 num = w & 0x3FF;
2923 *cp++ = '0' + (num / 100);
2924 num %= 100;
2925 *cp++ = '0' + (num / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002927 /* Product revision - 5th digit. */
2928 *cp++ = 'A' + (num % 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002930 /*
2931 * Second word
2932 */
2933 w = serialnum[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002935 /*
2936 * Year - 6th digit.
2937 *
2938 * If bit 15 of third word is set, then the
2939 * last digit of the year is greater than 7.
2940 */
2941 if (serialnum[2] & 0x8000) {
2942 *cp++ = '8' + ((w & 0x1C0) >> 6);
2943 } else {
2944 *cp++ = '0' + ((w & 0x1C0) >> 6);
2945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002947 /* Week of year - 7th, 8th digits. */
2948 num = w & 0x003F;
2949 *cp++ = '0' + num / 10;
2950 num %= 10;
2951 *cp++ = '0' + num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002953 /*
2954 * Third word
2955 */
2956 w = serialnum[2] & 0x7FFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002958 /* Serial number - 9th digit. */
2959 *cp++ = 'A' + (w / 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002961 /* 10th, 11th, 12th digits. */
2962 num = w % 1000;
2963 *cp++ = '0' + num / 100;
2964 num %= 100;
2965 *cp++ = '0' + num / 10;
2966 num %= 10;
2967 *cp++ = '0' + num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002969 *cp = '\0'; /* Null Terminate the string. */
2970 return ASC_TRUE;
2971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972}
2973
2974/*
2975 * asc_prt_asc_board_eeprom()
2976 *
2977 * Print board EEPROM configuration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 */
Al Virob59fb6f2013-03-31 02:59:55 -04002979static void asc_prt_asc_board_eeprom(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04002981 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002982 ASC_DVC_VAR *asc_dvc_varp;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002983 ASCEEP_CONFIG *ep;
2984 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985#ifdef CONFIG_ISA
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002986 int isa_dma_speed[] = { 10, 8, 7, 6, 5, 4, 3, 2 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987#endif /* CONFIG_ISA */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002988 uchar serialstr[13];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002990 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
2991 ep = &boardp->eep_config.asc_eep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Al Virob59fb6f2013-03-31 02:59:55 -04002993 seq_printf(m,
2994 "\nEEPROM Settings for AdvanSys SCSI Host %d:\n",
2995 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Matthew Wilcox27c868c2007-07-26 10:56:23 -04002997 if (asc_get_eeprom_string((ushort *)&ep->adapter_info[0], serialstr)
Al Virob59fb6f2013-03-31 02:59:55 -04002998 == ASC_TRUE)
2999 seq_printf(m, " Serial Number: %s\n", serialstr);
3000 else if (ep->adapter_info[5] == 0xBB)
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003001 seq_puts(m,
3002 " Default Settings Used for EEPROM-less Adapter.\n");
Al Virob59fb6f2013-03-31 02:59:55 -04003003 else
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003004 seq_puts(m, " Serial Number Signature Not Present.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Al Virob59fb6f2013-03-31 02:59:55 -04003006 seq_printf(m,
3007 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3008 ASC_EEP_GET_CHIP_ID(ep), ep->max_total_qng,
3009 ep->max_tag_qng);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
Al Virob59fb6f2013-03-31 02:59:55 -04003011 seq_printf(m,
3012 " cntl 0x%x, no_scam 0x%x\n", ep->cntl, ep->no_scam);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003014 seq_puts(m, " Target ID: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003015 for (i = 0; i <= ASC_MAX_TID; i++)
3016 seq_printf(m, " %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003018 seq_puts(m, "\n Disconnects: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003019 for (i = 0; i <= ASC_MAX_TID; i++)
3020 seq_printf(m, " %c",
3021 (ep->disc_enable & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003023 seq_puts(m, "\n Command Queuing: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003024 for (i = 0; i <= ASC_MAX_TID; i++)
3025 seq_printf(m, " %c",
3026 (ep->use_cmd_qng & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003028 seq_puts(m, "\n Start Motor: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003029 for (i = 0; i <= ASC_MAX_TID; i++)
3030 seq_printf(m, " %c",
3031 (ep->start_motor & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003033 seq_puts(m, "\n Synchronous Transfer:");
Al Virob59fb6f2013-03-31 02:59:55 -04003034 for (i = 0; i <= ASC_MAX_TID; i++)
3035 seq_printf(m, " %c",
3036 (ep->init_sdtr & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003037 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
3039#ifdef CONFIG_ISA
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003040 if (asc_dvc_varp->bus_type & ASC_IS_ISA) {
Al Virob59fb6f2013-03-31 02:59:55 -04003041 seq_printf(m,
3042 " Host ISA DMA speed: %d MB/S\n",
3043 isa_dma_speed[ASC_EEP_GET_DMA_SPD(ep)]);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045#endif /* CONFIG_ISA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046}
3047
3048/*
3049 * asc_prt_adv_board_eeprom()
3050 *
3051 * Print board EEPROM configuration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 */
Al Virob59fb6f2013-03-31 02:59:55 -04003053static void asc_prt_adv_board_eeprom(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003055 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003056 ADV_DVC_VAR *adv_dvc_varp;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003057 int i;
3058 char *termstr;
3059 uchar serialstr[13];
3060 ADVEEP_3550_CONFIG *ep_3550 = NULL;
3061 ADVEEP_38C0800_CONFIG *ep_38C0800 = NULL;
3062 ADVEEP_38C1600_CONFIG *ep_38C1600 = NULL;
3063 ushort word;
3064 ushort *wordp;
3065 ushort sdtr_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003067 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
3068 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3069 ep_3550 = &boardp->eep_config.adv_3550_eep;
3070 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3071 ep_38C0800 = &boardp->eep_config.adv_38C0800_eep;
3072 } else {
3073 ep_38C1600 = &boardp->eep_config.adv_38C1600_eep;
3074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Al Virob59fb6f2013-03-31 02:59:55 -04003076 seq_printf(m,
3077 "\nEEPROM Settings for AdvanSys SCSI Host %d:\n",
3078 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003080 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3081 wordp = &ep_3550->serial_number_word1;
3082 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3083 wordp = &ep_38C0800->serial_number_word1;
3084 } else {
3085 wordp = &ep_38C1600->serial_number_word1;
3086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Al Virob59fb6f2013-03-31 02:59:55 -04003088 if (asc_get_eeprom_string(wordp, serialstr) == ASC_TRUE)
3089 seq_printf(m, " Serial Number: %s\n", serialstr);
3090 else
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003091 seq_puts(m, " Serial Number Signature Not Present.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Al Virob59fb6f2013-03-31 02:59:55 -04003093 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550)
3094 seq_printf(m,
3095 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3096 ep_3550->adapter_scsi_id,
3097 ep_3550->max_host_qng, ep_3550->max_dvc_qng);
3098 else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800)
3099 seq_printf(m,
3100 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3101 ep_38C0800->adapter_scsi_id,
3102 ep_38C0800->max_host_qng,
3103 ep_38C0800->max_dvc_qng);
3104 else
3105 seq_printf(m,
3106 " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3107 ep_38C1600->adapter_scsi_id,
3108 ep_38C1600->max_host_qng,
3109 ep_38C1600->max_dvc_qng);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003110 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3111 word = ep_3550->termination;
3112 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3113 word = ep_38C0800->termination_lvd;
3114 } else {
3115 word = ep_38C1600->termination_lvd;
3116 }
3117 switch (word) {
3118 case 1:
3119 termstr = "Low Off/High Off";
3120 break;
3121 case 2:
3122 termstr = "Low Off/High On";
3123 break;
3124 case 3:
3125 termstr = "Low On/High On";
3126 break;
3127 default:
3128 case 0:
3129 termstr = "Automatic";
3130 break;
3131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
Al Virob59fb6f2013-03-31 02:59:55 -04003133 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550)
3134 seq_printf(m,
3135 " termination: %u (%s), bios_ctrl: 0x%x\n",
3136 ep_3550->termination, termstr,
3137 ep_3550->bios_ctrl);
3138 else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800)
3139 seq_printf(m,
3140 " termination: %u (%s), bios_ctrl: 0x%x\n",
3141 ep_38C0800->termination_lvd, termstr,
3142 ep_38C0800->bios_ctrl);
3143 else
3144 seq_printf(m,
3145 " termination: %u (%s), bios_ctrl: 0x%x\n",
3146 ep_38C1600->termination_lvd, termstr,
3147 ep_38C1600->bios_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003149 seq_puts(m, " Target ID: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003150 for (i = 0; i <= ADV_MAX_TID; i++)
3151 seq_printf(m, " %X", i);
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003152 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003154 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3155 word = ep_3550->disc_enable;
3156 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3157 word = ep_38C0800->disc_enable;
3158 } else {
3159 word = ep_38C1600->disc_enable;
3160 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003161 seq_puts(m, " Disconnects: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003162 for (i = 0; i <= ADV_MAX_TID; i++)
3163 seq_printf(m, " %c",
3164 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003165 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003167 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3168 word = ep_3550->tagqng_able;
3169 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3170 word = ep_38C0800->tagqng_able;
3171 } else {
3172 word = ep_38C1600->tagqng_able;
3173 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003174 seq_puts(m, " Command Queuing: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003175 for (i = 0; i <= ADV_MAX_TID; i++)
3176 seq_printf(m, " %c",
3177 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003178 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003180 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3181 word = ep_3550->start_motor;
3182 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3183 word = ep_38C0800->start_motor;
3184 } else {
3185 word = ep_38C1600->start_motor;
3186 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003187 seq_puts(m, " Start Motor: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003188 for (i = 0; i <= ADV_MAX_TID; i++)
3189 seq_printf(m, " %c",
3190 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003191 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003193 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003194 seq_puts(m, " Synchronous Transfer:");
Al Virob59fb6f2013-03-31 02:59:55 -04003195 for (i = 0; i <= ADV_MAX_TID; i++)
3196 seq_printf(m, " %c",
3197 (ep_3550->sdtr_able & ADV_TID_TO_TIDMASK(i)) ?
3198 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003199 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003202 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003203 seq_puts(m, " Ultra Transfer: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003204 for (i = 0; i <= ADV_MAX_TID; i++)
3205 seq_printf(m, " %c",
3206 (ep_3550->ultra_able & ADV_TID_TO_TIDMASK(i))
3207 ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003208 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003211 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3212 word = ep_3550->wdtr_able;
3213 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3214 word = ep_38C0800->wdtr_able;
3215 } else {
3216 word = ep_38C1600->wdtr_able;
3217 }
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003218 seq_puts(m, " Wide Transfer: ");
Al Virob59fb6f2013-03-31 02:59:55 -04003219 for (i = 0; i <= ADV_MAX_TID; i++)
3220 seq_printf(m, " %c",
3221 (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003222 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003224 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800 ||
3225 adv_dvc_varp->chip_type == ADV_CHIP_ASC38C1600) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003226 seq_puts(m, " Synchronous Transfer Speed (Mhz):\n ");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003227 for (i = 0; i <= ADV_MAX_TID; i++) {
3228 char *speed_str;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003230 if (i == 0) {
3231 sdtr_speed = adv_dvc_varp->sdtr_speed1;
3232 } else if (i == 4) {
3233 sdtr_speed = adv_dvc_varp->sdtr_speed2;
3234 } else if (i == 8) {
3235 sdtr_speed = adv_dvc_varp->sdtr_speed3;
3236 } else if (i == 12) {
3237 sdtr_speed = adv_dvc_varp->sdtr_speed4;
3238 }
3239 switch (sdtr_speed & ADV_MAX_TID) {
3240 case 0:
3241 speed_str = "Off";
3242 break;
3243 case 1:
3244 speed_str = " 5";
3245 break;
3246 case 2:
3247 speed_str = " 10";
3248 break;
3249 case 3:
3250 speed_str = " 20";
3251 break;
3252 case 4:
3253 speed_str = " 40";
3254 break;
3255 case 5:
3256 speed_str = " 80";
3257 break;
3258 default:
3259 speed_str = "Unk";
3260 break;
3261 }
Al Virob59fb6f2013-03-31 02:59:55 -04003262 seq_printf(m, "%X:%s ", i, speed_str);
3263 if (i == 7)
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003264 seq_puts(m, "\n ");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003265 sdtr_speed >>= 4;
3266 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003267 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269}
3270
3271/*
3272 * asc_prt_driver_conf()
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 */
Al Virob59fb6f2013-03-31 02:59:55 -04003274static void asc_prt_driver_conf(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003276 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003277 int chip_scsi_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Al Virob59fb6f2013-03-31 02:59:55 -04003279 seq_printf(m,
3280 "\nLinux Driver Configuration and Information for AdvanSys SCSI Host %d:\n",
3281 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Al Virob59fb6f2013-03-31 02:59:55 -04003283 seq_printf(m,
Hannes Reinecke1abf6352014-06-25 15:27:38 +02003284 " host_busy %u, max_id %u, max_lun %llu, max_channel %u\n",
Christoph Hellwig74665012014-01-22 15:29:29 +01003285 atomic_read(&shost->host_busy), shost->max_id,
Al Virob59fb6f2013-03-31 02:59:55 -04003286 shost->max_lun, shost->max_channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
Al Virob59fb6f2013-03-31 02:59:55 -04003288 seq_printf(m,
3289 " unique_id %d, can_queue %d, this_id %d, sg_tablesize %u, cmd_per_lun %u\n",
3290 shost->unique_id, shost->can_queue, shost->this_id,
3291 shost->sg_tablesize, shost->cmd_per_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Al Virob59fb6f2013-03-31 02:59:55 -04003293 seq_printf(m,
3294 " unchecked_isa_dma %d, use_clustering %d\n",
3295 shost->unchecked_isa_dma, shost->use_clustering);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Al Virob59fb6f2013-03-31 02:59:55 -04003297 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003298 " flags 0x%x, last_reset 0x%lx, jiffies 0x%lx, asc_n_io_port 0x%x\n",
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02003299 boardp->flags, shost->last_reset, jiffies,
Al Virob59fb6f2013-03-31 02:59:55 -04003300 boardp->asc_n_io_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Al Viro31491e12013-03-31 03:04:13 -04003302 seq_printf(m, " io_port 0x%lx\n", shost->io_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003304 if (ASC_NARROW_BOARD(boardp)) {
3305 chip_scsi_id = boardp->dvc_cfg.asc_dvc_cfg.chip_scsi_id;
3306 } else {
3307 chip_scsi_id = boardp->dvc_var.adv_dvc_var.chip_scsi_id;
3308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309}
3310
3311/*
3312 * asc_prt_asc_board_info()
3313 *
3314 * Print dynamic board configuration information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 */
Al Virob59fb6f2013-03-31 02:59:55 -04003316static void asc_prt_asc_board_info(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003318 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003319 int chip_scsi_id;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003320 ASC_DVC_VAR *v;
3321 ASC_DVC_CFG *c;
3322 int i;
3323 int renegotiate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003325 v = &boardp->dvc_var.asc_dvc_var;
3326 c = &boardp->dvc_cfg.asc_dvc_cfg;
3327 chip_scsi_id = c->chip_scsi_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Al Virob59fb6f2013-03-31 02:59:55 -04003329 seq_printf(m,
3330 "\nAsc Library Configuration and Statistics for AdvanSys SCSI Host %d:\n",
3331 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Al Virob59fb6f2013-03-31 02:59:55 -04003333 seq_printf(m, " chip_version %u, mcode_date 0x%x, "
3334 "mcode_version 0x%x, err_code %u\n",
3335 c->chip_version, c->mcode_date, c->mcode_version,
3336 v->err_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003338 /* Current number of commands waiting for the host. */
Al Virob59fb6f2013-03-31 02:59:55 -04003339 seq_printf(m,
3340 " Total Command Pending: %d\n", v->cur_total_qng);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003342 seq_puts(m, " Command Queuing:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003343 for (i = 0; i <= ASC_MAX_TID; i++) {
3344 if ((chip_scsi_id == i) ||
3345 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3346 continue;
3347 }
Al Virob59fb6f2013-03-31 02:59:55 -04003348 seq_printf(m, " %X:%c",
3349 i,
3350 (v->use_tagged_qng & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003353 /* Current number of commands waiting for a device. */
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003354 seq_puts(m, "\n Command Queue Pending:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003355 for (i = 0; i <= ASC_MAX_TID; i++) {
3356 if ((chip_scsi_id == i) ||
3357 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3358 continue;
3359 }
Al Virob59fb6f2013-03-31 02:59:55 -04003360 seq_printf(m, " %X:%u", i, v->cur_dvc_qng[i]);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003363 /* Current limit on number of commands that can be sent to a device. */
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003364 seq_puts(m, "\n Command Queue Limit:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003365 for (i = 0; i <= ASC_MAX_TID; i++) {
3366 if ((chip_scsi_id == i) ||
3367 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3368 continue;
3369 }
Al Virob59fb6f2013-03-31 02:59:55 -04003370 seq_printf(m, " %X:%u", i, v->max_dvc_qng[i]);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003373 /* Indicate whether the device has returned queue full status. */
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003374 seq_puts(m, "\n Command Queue Full:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003375 for (i = 0; i <= ASC_MAX_TID; i++) {
3376 if ((chip_scsi_id == i) ||
3377 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3378 continue;
3379 }
Al Virob59fb6f2013-03-31 02:59:55 -04003380 if (boardp->queue_full & ADV_TID_TO_TIDMASK(i))
3381 seq_printf(m, " %X:Y-%d",
3382 i, boardp->queue_full_cnt[i]);
3383 else
3384 seq_printf(m, " %X:N", i);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003387 seq_puts(m, "\n Synchronous Transfer:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003388 for (i = 0; i <= ASC_MAX_TID; i++) {
3389 if ((chip_scsi_id == i) ||
3390 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3391 continue;
3392 }
Al Virob59fb6f2013-03-31 02:59:55 -04003393 seq_printf(m, " %X:%c",
3394 i,
3395 (v->sdtr_done & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003396 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003397 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003399 for (i = 0; i <= ASC_MAX_TID; i++) {
3400 uchar syn_period_ix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003402 if ((chip_scsi_id == i) ||
3403 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0) ||
3404 ((v->init_sdtr & ADV_TID_TO_TIDMASK(i)) == 0)) {
3405 continue;
3406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Al Virob59fb6f2013-03-31 02:59:55 -04003408 seq_printf(m, " %X:", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003410 if ((boardp->sdtr_data[i] & ASC_SYN_MAX_OFFSET) == 0) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003411 seq_puts(m, " Asynchronous");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003412 } else {
3413 syn_period_ix =
3414 (boardp->sdtr_data[i] >> 4) & (v->max_sdtr_index -
3415 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Al Virob59fb6f2013-03-31 02:59:55 -04003417 seq_printf(m,
3418 " Transfer Period Factor: %d (%d.%d Mhz),",
3419 v->sdtr_period_tbl[syn_period_ix],
3420 250 / v->sdtr_period_tbl[syn_period_ix],
3421 ASC_TENTHS(250,
3422 v->sdtr_period_tbl[syn_period_ix]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
Al Virob59fb6f2013-03-31 02:59:55 -04003424 seq_printf(m, " REQ/ACK Offset: %d",
3425 boardp->sdtr_data[i] & ASC_SYN_MAX_OFFSET);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003428 if ((v->sdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003429 seq_puts(m, "*\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003430 renegotiate = 1;
3431 } else {
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003432 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003433 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003436 if (renegotiate) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003437 seq_puts(m, " * = Re-negotiation pending before next command.\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439}
3440
3441/*
3442 * asc_prt_adv_board_info()
3443 *
3444 * Print dynamic board configuration information.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 */
Al Virob59fb6f2013-03-31 02:59:55 -04003446static void asc_prt_adv_board_info(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003448 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003449 int i;
3450 ADV_DVC_VAR *v;
3451 ADV_DVC_CFG *c;
3452 AdvPortAddr iop_base;
3453 ushort chip_scsi_id;
3454 ushort lramword;
3455 uchar lrambyte;
3456 ushort tagqng_able;
3457 ushort sdtr_able, wdtr_able;
3458 ushort wdtr_done, sdtr_done;
3459 ushort period = 0;
3460 int renegotiate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003462 v = &boardp->dvc_var.adv_dvc_var;
3463 c = &boardp->dvc_cfg.adv_dvc_cfg;
3464 iop_base = v->iop_base;
3465 chip_scsi_id = v->chip_scsi_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
Al Virob59fb6f2013-03-31 02:59:55 -04003467 seq_printf(m,
3468 "\nAdv Library Configuration and Statistics for AdvanSys SCSI Host %d:\n",
3469 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Al Virob59fb6f2013-03-31 02:59:55 -04003471 seq_printf(m,
3472 " iop_base 0x%lx, cable_detect: %X, err_code %u\n",
Al Viro31491e12013-03-31 03:04:13 -04003473 (unsigned long)v->iop_base,
Al Virob59fb6f2013-03-31 02:59:55 -04003474 AdvReadWordRegister(iop_base,IOPW_SCSI_CFG1) & CABLE_DETECT,
3475 v->err_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Al Virob59fb6f2013-03-31 02:59:55 -04003477 seq_printf(m, " chip_version %u, mcode_date 0x%x, "
3478 "mcode_version 0x%x\n", c->chip_version,
3479 c->mcode_date, c->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003481 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003482 seq_puts(m, " Queuing Enabled:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003483 for (i = 0; i <= ADV_MAX_TID; i++) {
3484 if ((chip_scsi_id == i) ||
3485 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3486 continue;
3487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488
Al Virob59fb6f2013-03-31 02:59:55 -04003489 seq_printf(m, " %X:%c",
3490 i,
3491 (tagqng_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003494 seq_puts(m, "\n Queue Limit:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003495 for (i = 0; i <= ADV_MAX_TID; i++) {
3496 if ((chip_scsi_id == i) ||
3497 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3498 continue;
3499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003501 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + i,
3502 lrambyte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
Al Virob59fb6f2013-03-31 02:59:55 -04003504 seq_printf(m, " %X:%d", i, lrambyte);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506
Rasmus Villemoes3d300792014-12-03 00:10:53 +01003507 seq_puts(m, "\n Command Pending:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003508 for (i = 0; i <= ADV_MAX_TID; i++) {
3509 if ((chip_scsi_id == i) ||
3510 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3511 continue;
3512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003514 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_QUEUED_CMD + i,
3515 lrambyte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
Al Virob59fb6f2013-03-31 02:59:55 -04003517 seq_printf(m, " %X:%d", i, lrambyte);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003518 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003519 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003521 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003522 seq_puts(m, " Wide Enabled:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003523 for (i = 0; i <= ADV_MAX_TID; i++) {
3524 if ((chip_scsi_id == i) ||
3525 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3526 continue;
3527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Al Virob59fb6f2013-03-31 02:59:55 -04003529 seq_printf(m, " %X:%c",
3530 i,
3531 (wdtr_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003532 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003533 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003535 AdvReadWordLram(iop_base, ASC_MC_WDTR_DONE, wdtr_done);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003536 seq_puts(m, " Transfer Bit Width:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003537 for (i = 0; i <= ADV_MAX_TID; i++) {
3538 if ((chip_scsi_id == i) ||
3539 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3540 continue;
3541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003543 AdvReadWordLram(iop_base,
3544 ASC_MC_DEVICE_HSHK_CFG_TABLE + (2 * i),
3545 lramword);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546
Al Virob59fb6f2013-03-31 02:59:55 -04003547 seq_printf(m, " %X:%d",
3548 i, (lramword & 0x8000) ? 16 : 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003550 if ((wdtr_able & ADV_TID_TO_TIDMASK(i)) &&
3551 (wdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003552 seq_putc(m, '*');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003553 renegotiate = 1;
3554 }
3555 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003556 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003558 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003559 seq_puts(m, " Synchronous Enabled:");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003560 for (i = 0; i <= ADV_MAX_TID; i++) {
3561 if ((chip_scsi_id == i) ||
3562 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3563 continue;
3564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Al Virob59fb6f2013-03-31 02:59:55 -04003566 seq_printf(m, " %X:%c",
3567 i,
3568 (sdtr_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003569 }
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003570 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003572 AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, sdtr_done);
3573 for (i = 0; i <= ADV_MAX_TID; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003575 AdvReadWordLram(iop_base,
3576 ASC_MC_DEVICE_HSHK_CFG_TABLE + (2 * i),
3577 lramword);
3578 lramword &= ~0x8000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003580 if ((chip_scsi_id == i) ||
3581 ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0) ||
3582 ((sdtr_able & ADV_TID_TO_TIDMASK(i)) == 0)) {
3583 continue;
3584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Al Virob59fb6f2013-03-31 02:59:55 -04003586 seq_printf(m, " %X:", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003588 if ((lramword & 0x1F) == 0) { /* Check for REQ/ACK Offset 0. */
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003589 seq_puts(m, " Asynchronous");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003590 } else {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003591 seq_puts(m, " Transfer Period Factor: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003593 if ((lramword & 0x1F00) == 0x1100) { /* 80 Mhz */
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003594 seq_puts(m, "9 (80.0 Mhz),");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003595 } else if ((lramword & 0x1F00) == 0x1000) { /* 40 Mhz */
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003596 seq_puts(m, "10 (40.0 Mhz),");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003597 } else { /* 20 Mhz or below. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003599 period = (((lramword >> 8) * 25) + 50) / 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003601 if (period == 0) { /* Should never happen. */
Al Viro31491e12013-03-31 03:04:13 -04003602 seq_printf(m, "%d (? Mhz), ", period);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003603 } else {
Al Virob59fb6f2013-03-31 02:59:55 -04003604 seq_printf(m,
3605 "%d (%d.%d Mhz),",
3606 period, 250 / period,
3607 ASC_TENTHS(250, period));
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003608 }
3609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Al Virob59fb6f2013-03-31 02:59:55 -04003611 seq_printf(m, " REQ/ACK Offset: %d",
3612 lramword & 0x1F);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003615 if ((sdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003616 seq_puts(m, "*\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003617 renegotiate = 1;
3618 } else {
Rasmus Villemoesf50332f2014-12-03 00:10:54 +01003619 seq_putc(m, '\n');
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003620 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003623 if (renegotiate) {
Rasmus Villemoes2f979422014-12-03 00:10:50 +01003624 seq_puts(m, " * = Re-negotiation pending before next command.\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626}
3627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628#ifdef ADVANSYS_STATS
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629/*
3630 * asc_prt_board_stats()
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 */
Al Virob59fb6f2013-03-31 02:59:55 -04003632static void asc_prt_board_stats(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003634 struct asc_board *boardp = shost_priv(shost);
3635 struct asc_stats *s = &boardp->asc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636
Al Virob59fb6f2013-03-31 02:59:55 -04003637 seq_printf(m,
3638 "\nLinux Driver Statistics for AdvanSys SCSI Host %d:\n",
3639 shost->host_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
Al Virob59fb6f2013-03-31 02:59:55 -04003641 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003642 " queuecommand %u, reset %u, biosparam %u, interrupt %u\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003643 s->queuecommand, s->reset, s->biosparam,
3644 s->interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645
Al Virob59fb6f2013-03-31 02:59:55 -04003646 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003647 " callback %u, done %u, build_error %u, build_noreq %u, build_nosg %u\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003648 s->callback, s->done, s->build_error,
3649 s->adv_build_noreq, s->adv_build_nosg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
Al Virob59fb6f2013-03-31 02:59:55 -04003651 seq_printf(m,
Al Viro31491e12013-03-31 03:04:13 -04003652 " exe_noerror %u, exe_busy %u, exe_error %u, exe_unknown %u\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003653 s->exe_noerror, s->exe_busy, s->exe_error,
3654 s->exe_unknown);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003656 /*
3657 * Display data transfer statistics.
3658 */
Matthew Wilcox52c334e2007-10-02 21:55:39 -04003659 if (s->xfer_cnt > 0) {
Al Viro31491e12013-03-31 03:04:13 -04003660 seq_printf(m, " xfer_cnt %u, xfer_elem %u, ",
Al Virob59fb6f2013-03-31 02:59:55 -04003661 s->xfer_cnt, s->xfer_elem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Al Viro31491e12013-03-31 03:04:13 -04003663 seq_printf(m, "xfer_bytes %u.%01u kb\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003664 s->xfer_sect / 2, ASC_TENTHS(s->xfer_sect, 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003666 /* Scatter gather transfer statistics */
Al Viro31491e12013-03-31 03:04:13 -04003667 seq_printf(m, " avg_num_elem %u.%01u, ",
Al Virob59fb6f2013-03-31 02:59:55 -04003668 s->xfer_elem / s->xfer_cnt,
3669 ASC_TENTHS(s->xfer_elem, s->xfer_cnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670
Al Viro31491e12013-03-31 03:04:13 -04003671 seq_printf(m, "avg_elem_size %u.%01u kb, ",
Al Virob59fb6f2013-03-31 02:59:55 -04003672 (s->xfer_sect / 2) / s->xfer_elem,
3673 ASC_TENTHS((s->xfer_sect / 2), s->xfer_elem));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Al Viro31491e12013-03-31 03:04:13 -04003675 seq_printf(m, "avg_xfer_size %u.%01u kb\n",
Al Virob59fb6f2013-03-31 02:59:55 -04003676 (s->xfer_sect / 2) / s->xfer_cnt,
3677 ASC_TENTHS((s->xfer_sect / 2), s->xfer_cnt));
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680#endif /* ADVANSYS_STATS */
3681
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682/*
Al Virob59fb6f2013-03-31 02:59:55 -04003683 * advansys_show_info() - /proc/scsi/advansys/{0,1,2,3,...}
Matthew Wilcox51219352007-10-02 21:55:22 -04003684 *
Al Virob59fb6f2013-03-31 02:59:55 -04003685 * m: seq_file to print into
3686 * shost: Scsi_Host
Matthew Wilcox51219352007-10-02 21:55:22 -04003687 *
3688 * Return the number of bytes read from or written to a
3689 * /proc/scsi/advansys/[0...] file.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 */
Matthew Wilcox51219352007-10-02 21:55:22 -04003691static int
Al Virob59fb6f2013-03-31 02:59:55 -04003692advansys_show_info(struct seq_file *m, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04003694 struct asc_board *boardp = shost_priv(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003696 ASC_DBG(1, "begin\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
Matthew Wilcox51219352007-10-02 21:55:22 -04003698 /*
Matthew Wilcox51219352007-10-02 21:55:22 -04003699 * User read of /proc/scsi/advansys/[0...] file.
3700 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Matthew Wilcox51219352007-10-02 21:55:22 -04003702 /*
3703 * Get board configuration information.
3704 *
3705 * advansys_info() returns the board string from its own static buffer.
3706 */
Matthew Wilcox51219352007-10-02 21:55:22 -04003707 /* Copy board information. */
Al Virob59fb6f2013-03-31 02:59:55 -04003708 seq_printf(m, "%s\n", (char *)advansys_info(shost));
Matthew Wilcox51219352007-10-02 21:55:22 -04003709 /*
3710 * Display Wide Board BIOS Information.
3711 */
Al Virob59fb6f2013-03-31 02:59:55 -04003712 if (!ASC_NARROW_BOARD(boardp))
3713 asc_prt_adv_bios(m, shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04003714
3715 /*
3716 * Display driver information for each device attached to the board.
3717 */
Al Virob59fb6f2013-03-31 02:59:55 -04003718 asc_prt_board_devices(m, shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04003719
3720 /*
3721 * Display EEPROM configuration for the board.
3722 */
Al Virob59fb6f2013-03-31 02:59:55 -04003723 if (ASC_NARROW_BOARD(boardp))
3724 asc_prt_asc_board_eeprom(m, shost);
3725 else
3726 asc_prt_adv_board_eeprom(m, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Matthew Wilcox51219352007-10-02 21:55:22 -04003728 /*
3729 * Display driver configuration and information for the board.
3730 */
Al Virob59fb6f2013-03-31 02:59:55 -04003731 asc_prt_driver_conf(m, shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732
Matthew Wilcox51219352007-10-02 21:55:22 -04003733#ifdef ADVANSYS_STATS
3734 /*
3735 * Display driver statistics for the board.
3736 */
Al Virob59fb6f2013-03-31 02:59:55 -04003737 asc_prt_board_stats(m, shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04003738#endif /* ADVANSYS_STATS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
Matthew Wilcox51219352007-10-02 21:55:22 -04003740 /*
3741 * Display Asc Library dynamic configuration information
3742 * for the board.
3743 */
Al Virob59fb6f2013-03-31 02:59:55 -04003744 if (ASC_NARROW_BOARD(boardp))
3745 asc_prt_asc_board_info(m, shost);
3746 else
3747 asc_prt_adv_board_info(m, shost);
3748 return 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04003749}
3750#endif /* CONFIG_PROC_FS */
3751
3752static void asc_scsi_done(struct scsi_cmnd *scp)
3753{
Matthew Wilcox52c334e2007-10-02 21:55:39 -04003754 scsi_dma_unmap(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04003755 ASC_STATS(scp->device->host, done);
Matthew Wilcox51219352007-10-02 21:55:22 -04003756 scp->scsi_done(scp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757}
3758
Matthew Wilcox51219352007-10-02 21:55:22 -04003759static void AscSetBank(PortAddr iop_base, uchar bank)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
Matthew Wilcox51219352007-10-02 21:55:22 -04003761 uchar val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Matthew Wilcox51219352007-10-02 21:55:22 -04003763 val = AscGetChipControl(iop_base) &
3764 (~
3765 (CC_SINGLE_STEP | CC_TEST | CC_DIAG | CC_SCSI_RESET |
3766 CC_CHIP_RESET));
3767 if (bank == 1) {
3768 val |= CC_BANK_ONE;
3769 } else if (bank == 2) {
3770 val |= CC_DIAG | CC_BANK_ONE;
3771 } else {
3772 val &= ~CC_BANK_ONE;
3773 }
3774 AscSetChipControl(iop_base, val);
Matthew Wilcox51219352007-10-02 21:55:22 -04003775}
3776
3777static void AscSetChipIH(PortAddr iop_base, ushort ins_code)
3778{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003779 AscSetBank(iop_base, 1);
Matthew Wilcox51219352007-10-02 21:55:22 -04003780 AscWriteChipIH(iop_base, ins_code);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003781 AscSetBank(iop_base, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782}
3783
Matthew Wilcox51219352007-10-02 21:55:22 -04003784static int AscStartChip(PortAddr iop_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785{
Matthew Wilcox51219352007-10-02 21:55:22 -04003786 AscSetChipControl(iop_base, 0);
3787 if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
3788 return (0);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04003789 }
Matthew Wilcox51219352007-10-02 21:55:22 -04003790 return (1);
3791}
3792
3793static int AscStopChip(PortAddr iop_base)
3794{
3795 uchar cc_val;
3796
3797 cc_val =
3798 AscGetChipControl(iop_base) &
3799 (~(CC_SINGLE_STEP | CC_TEST | CC_DIAG));
3800 AscSetChipControl(iop_base, (uchar)(cc_val | CC_HALT));
3801 AscSetChipIH(iop_base, INS_HALT);
3802 AscSetChipIH(iop_base, INS_RFLAG_WTM);
3803 if ((AscGetChipStatus(iop_base) & CSW_HALTED) == 0) {
3804 return (0);
3805 }
3806 return (1);
3807}
3808
3809static int AscIsChipHalted(PortAddr iop_base)
3810{
3811 if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
3812 if ((AscGetChipControl(iop_base) & CC_HALT) != 0) {
3813 return (1);
3814 }
3815 }
3816 return (0);
3817}
3818
3819static int AscResetChipAndScsiBus(ASC_DVC_VAR *asc_dvc)
3820{
3821 PortAddr iop_base;
3822 int i = 10;
3823
3824 iop_base = asc_dvc->iop_base;
3825 while ((AscGetChipStatus(iop_base) & CSW_SCSI_RESET_ACTIVE)
3826 && (i-- > 0)) {
3827 mdelay(100);
3828 }
3829 AscStopChip(iop_base);
3830 AscSetChipControl(iop_base, CC_CHIP_RESET | CC_SCSI_RESET | CC_HALT);
3831 udelay(60);
3832 AscSetChipIH(iop_base, INS_RFLAG_WTM);
3833 AscSetChipIH(iop_base, INS_HALT);
3834 AscSetChipControl(iop_base, CC_CHIP_RESET | CC_HALT);
3835 AscSetChipControl(iop_base, CC_HALT);
3836 mdelay(200);
3837 AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
3838 AscSetChipStatus(iop_base, 0);
3839 return (AscIsChipHalted(iop_base));
3840}
3841
3842static int AscFindSignature(PortAddr iop_base)
3843{
3844 ushort sig_word;
3845
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003846 ASC_DBG(1, "AscGetChipSignatureByte(0x%x) 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04003847 iop_base, AscGetChipSignatureByte(iop_base));
3848 if (AscGetChipSignatureByte(iop_base) == (uchar)ASC_1000_ID1B) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04003849 ASC_DBG(1, "AscGetChipSignatureWord(0x%x) 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04003850 iop_base, AscGetChipSignatureWord(iop_base));
3851 sig_word = AscGetChipSignatureWord(iop_base);
3852 if ((sig_word == (ushort)ASC_1000_ID0W) ||
3853 (sig_word == (ushort)ASC_1000_ID0W_FIX)) {
3854 return (1);
3855 }
3856 }
3857 return (0);
3858}
3859
3860static void AscEnableInterrupt(PortAddr iop_base)
3861{
3862 ushort cfg;
3863
3864 cfg = AscGetChipCfgLsw(iop_base);
3865 AscSetChipCfgLsw(iop_base, cfg | ASC_CFG0_HOST_INT_ON);
Matthew Wilcox51219352007-10-02 21:55:22 -04003866}
3867
3868static void AscDisableInterrupt(PortAddr iop_base)
3869{
3870 ushort cfg;
3871
3872 cfg = AscGetChipCfgLsw(iop_base);
3873 AscSetChipCfgLsw(iop_base, cfg & (~ASC_CFG0_HOST_INT_ON));
Matthew Wilcox51219352007-10-02 21:55:22 -04003874}
3875
3876static uchar AscReadLramByte(PortAddr iop_base, ushort addr)
3877{
3878 unsigned char byte_data;
3879 unsigned short word_data;
3880
3881 if (isodd_word(addr)) {
3882 AscSetChipLramAddr(iop_base, addr - 1);
3883 word_data = AscGetChipLramData(iop_base);
3884 byte_data = (word_data >> 8) & 0xFF;
3885 } else {
3886 AscSetChipLramAddr(iop_base, addr);
3887 word_data = AscGetChipLramData(iop_base);
3888 byte_data = word_data & 0xFF;
3889 }
3890 return byte_data;
3891}
3892
3893static ushort AscReadLramWord(PortAddr iop_base, ushort addr)
3894{
3895 ushort word_data;
3896
3897 AscSetChipLramAddr(iop_base, addr);
3898 word_data = AscGetChipLramData(iop_base);
3899 return (word_data);
3900}
3901
3902#if CC_VERY_LONG_SG_LIST
3903static ASC_DCNT AscReadLramDWord(PortAddr iop_base, ushort addr)
3904{
3905 ushort val_low, val_high;
3906 ASC_DCNT dword_data;
3907
3908 AscSetChipLramAddr(iop_base, addr);
3909 val_low = AscGetChipLramData(iop_base);
3910 val_high = AscGetChipLramData(iop_base);
3911 dword_data = ((ASC_DCNT) val_high << 16) | (ASC_DCNT) val_low;
3912 return (dword_data);
3913}
3914#endif /* CC_VERY_LONG_SG_LIST */
3915
3916static void
3917AscMemWordSetLram(PortAddr iop_base, ushort s_addr, ushort set_wval, int words)
3918{
3919 int i;
3920
3921 AscSetChipLramAddr(iop_base, s_addr);
3922 for (i = 0; i < words; i++) {
3923 AscSetChipLramData(iop_base, set_wval);
3924 }
3925}
3926
3927static void AscWriteLramWord(PortAddr iop_base, ushort addr, ushort word_val)
3928{
3929 AscSetChipLramAddr(iop_base, addr);
3930 AscSetChipLramData(iop_base, word_val);
Matthew Wilcox51219352007-10-02 21:55:22 -04003931}
3932
3933static void AscWriteLramByte(PortAddr iop_base, ushort addr, uchar byte_val)
3934{
3935 ushort word_data;
3936
3937 if (isodd_word(addr)) {
3938 addr--;
3939 word_data = AscReadLramWord(iop_base, addr);
3940 word_data &= 0x00FF;
3941 word_data |= (((ushort)byte_val << 8) & 0xFF00);
3942 } else {
3943 word_data = AscReadLramWord(iop_base, addr);
3944 word_data &= 0xFF00;
3945 word_data |= ((ushort)byte_val & 0x00FF);
3946 }
3947 AscWriteLramWord(iop_base, addr, word_data);
Matthew Wilcox51219352007-10-02 21:55:22 -04003948}
3949
3950/*
3951 * Copy 2 bytes to LRAM.
3952 *
3953 * The source data is assumed to be in little-endian order in memory
3954 * and is maintained in little-endian order when written to LRAM.
3955 */
3956static void
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05303957AscMemWordCopyPtrToLram(PortAddr iop_base, ushort s_addr,
3958 const uchar *s_buffer, int words)
Matthew Wilcox51219352007-10-02 21:55:22 -04003959{
3960 int i;
3961
3962 AscSetChipLramAddr(iop_base, s_addr);
3963 for (i = 0; i < 2 * words; i += 2) {
3964 /*
3965 * On a little-endian system the second argument below
3966 * produces a little-endian ushort which is written to
3967 * LRAM in little-endian order. On a big-endian system
3968 * the second argument produces a big-endian ushort which
3969 * is "transparently" byte-swapped by outpw() and written
3970 * in little-endian order to LRAM.
3971 */
3972 outpw(iop_base + IOP_RAM_DATA,
3973 ((ushort)s_buffer[i + 1] << 8) | s_buffer[i]);
3974 }
Matthew Wilcox51219352007-10-02 21:55:22 -04003975}
3976
3977/*
3978 * Copy 4 bytes to LRAM.
3979 *
3980 * The source data is assumed to be in little-endian order in memory
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003981 * and is maintained in little-endian order when written to LRAM.
Matthew Wilcox51219352007-10-02 21:55:22 -04003982 */
3983static void
3984AscMemDWordCopyPtrToLram(PortAddr iop_base,
3985 ushort s_addr, uchar *s_buffer, int dwords)
3986{
3987 int i;
3988
3989 AscSetChipLramAddr(iop_base, s_addr);
3990 for (i = 0; i < 4 * dwords; i += 4) {
3991 outpw(iop_base + IOP_RAM_DATA, ((ushort)s_buffer[i + 1] << 8) | s_buffer[i]); /* LSW */
3992 outpw(iop_base + IOP_RAM_DATA, ((ushort)s_buffer[i + 3] << 8) | s_buffer[i + 2]); /* MSW */
3993 }
Matthew Wilcox51219352007-10-02 21:55:22 -04003994}
3995
3996/*
3997 * Copy 2 bytes from LRAM.
3998 *
3999 * The source data is assumed to be in little-endian order in LRAM
4000 * and is maintained in little-endian order when written to memory.
4001 */
4002static void
4003AscMemWordCopyPtrFromLram(PortAddr iop_base,
4004 ushort s_addr, uchar *d_buffer, int words)
4005{
4006 int i;
4007 ushort word;
4008
4009 AscSetChipLramAddr(iop_base, s_addr);
4010 for (i = 0; i < 2 * words; i += 2) {
4011 word = inpw(iop_base + IOP_RAM_DATA);
4012 d_buffer[i] = word & 0xff;
4013 d_buffer[i + 1] = (word >> 8) & 0xff;
4014 }
Matthew Wilcox51219352007-10-02 21:55:22 -04004015}
4016
4017static ASC_DCNT AscMemSumLramWord(PortAddr iop_base, ushort s_addr, int words)
4018{
4019 ASC_DCNT sum;
4020 int i;
4021
4022 sum = 0L;
4023 for (i = 0; i < words; i++, s_addr += 2) {
4024 sum += AscReadLramWord(iop_base, s_addr);
4025 }
4026 return (sum);
4027}
4028
4029static ushort AscInitLram(ASC_DVC_VAR *asc_dvc)
4030{
4031 uchar i;
4032 ushort s_addr;
4033 PortAddr iop_base;
4034 ushort warn_code;
4035
4036 iop_base = asc_dvc->iop_base;
4037 warn_code = 0;
4038 AscMemWordSetLram(iop_base, ASC_QADR_BEG, 0,
4039 (ushort)(((int)(asc_dvc->max_total_qng + 2 + 1) *
4040 64) >> 1));
4041 i = ASC_MIN_ACTIVE_QNO;
4042 s_addr = ASC_QADR_BEG + ASC_QBLK_SIZE;
4043 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
4044 (uchar)(i + 1));
4045 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
4046 (uchar)(asc_dvc->max_total_qng));
4047 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
4048 (uchar)i);
4049 i++;
4050 s_addr += ASC_QBLK_SIZE;
4051 for (; i < asc_dvc->max_total_qng; i++, s_addr += ASC_QBLK_SIZE) {
4052 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
4053 (uchar)(i + 1));
4054 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
4055 (uchar)(i - 1));
4056 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
4057 (uchar)i);
4058 }
4059 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
4060 (uchar)ASC_QLINK_END);
4061 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
4062 (uchar)(asc_dvc->max_total_qng - 1));
4063 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
4064 (uchar)asc_dvc->max_total_qng);
4065 i++;
4066 s_addr += ASC_QBLK_SIZE;
4067 for (; i <= (uchar)(asc_dvc->max_total_qng + 3);
4068 i++, s_addr += ASC_QBLK_SIZE) {
4069 AscWriteLramByte(iop_base,
4070 (ushort)(s_addr + (ushort)ASC_SCSIQ_B_FWD), i);
4071 AscWriteLramByte(iop_base,
4072 (ushort)(s_addr + (ushort)ASC_SCSIQ_B_BWD), i);
4073 AscWriteLramByte(iop_base,
4074 (ushort)(s_addr + (ushort)ASC_SCSIQ_B_QNO), i);
4075 }
4076 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077}
4078
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004079static ASC_DCNT
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304080AscLoadMicroCode(PortAddr iop_base, ushort s_addr,
4081 const uchar *mcode_buf, ushort mcode_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082{
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004083 ASC_DCNT chksum;
4084 ushort mcode_word_size;
4085 ushort mcode_chksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004087 /* Write the microcode buffer starting at LRAM address 0. */
4088 mcode_word_size = (ushort)(mcode_size >> 1);
4089 AscMemWordSetLram(iop_base, s_addr, 0, mcode_word_size);
4090 AscMemWordCopyPtrToLram(iop_base, s_addr, mcode_buf, mcode_word_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004092 chksum = AscMemSumLramWord(iop_base, s_addr, mcode_word_size);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04004093 ASC_DBG(1, "chksum 0x%lx\n", (ulong)chksum);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004094 mcode_chksum = (ushort)AscMemSumLramWord(iop_base,
4095 (ushort)ASC_CODE_SEC_BEG,
4096 (ushort)((mcode_size -
4097 s_addr - (ushort)
4098 ASC_CODE_SEC_BEG) /
4099 2));
Matthew Wilcoxb352f922007-10-02 21:55:33 -04004100 ASC_DBG(1, "mcode_chksum 0x%lx\n", (ulong)mcode_chksum);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004101 AscWriteLramWord(iop_base, ASCV_MCODE_CHKSUM_W, mcode_chksum);
4102 AscWriteLramWord(iop_base, ASCV_MCODE_SIZE_W, mcode_size);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04004103 return chksum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104}
4105
Matthew Wilcox51219352007-10-02 21:55:22 -04004106static void AscInitQLinkVar(ASC_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107{
Matthew Wilcox51219352007-10-02 21:55:22 -04004108 PortAddr iop_base;
4109 int i;
4110 ushort lram_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Matthew Wilcox51219352007-10-02 21:55:22 -04004112 iop_base = asc_dvc->iop_base;
4113 AscPutRiscVarFreeQHead(iop_base, 1);
4114 AscPutRiscVarDoneQTail(iop_base, asc_dvc->max_total_qng);
4115 AscPutVarFreeQHead(iop_base, 1);
4116 AscPutVarDoneQTail(iop_base, asc_dvc->max_total_qng);
4117 AscWriteLramByte(iop_base, ASCV_BUSY_QHEAD_B,
4118 (uchar)((int)asc_dvc->max_total_qng + 1));
4119 AscWriteLramByte(iop_base, ASCV_DISC1_QHEAD_B,
4120 (uchar)((int)asc_dvc->max_total_qng + 2));
4121 AscWriteLramByte(iop_base, (ushort)ASCV_TOTAL_READY_Q_B,
4122 asc_dvc->max_total_qng);
4123 AscWriteLramWord(iop_base, ASCV_ASCDVC_ERR_CODE_W, 0);
4124 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
4125 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, 0);
4126 AscWriteLramByte(iop_base, ASCV_SCSIBUSY_B, 0);
4127 AscWriteLramByte(iop_base, ASCV_WTM_FLAG_B, 0);
4128 AscPutQDoneInProgress(iop_base, 0);
4129 lram_addr = ASC_QADR_BEG;
4130 for (i = 0; i < 32; i++, lram_addr += 2) {
4131 AscWriteLramWord(iop_base, lram_addr, 0);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133}
4134
Matthew Wilcox51219352007-10-02 21:55:22 -04004135static ushort AscInitMicroCodeVar(ASC_DVC_VAR *asc_dvc)
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004136{
Matthew Wilcox51219352007-10-02 21:55:22 -04004137 int i;
4138 ushort warn_code;
4139 PortAddr iop_base;
4140 ASC_PADDR phy_addr;
4141 ASC_DCNT phy_size;
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04004142 struct asc_board *board = asc_dvc_to_board(asc_dvc);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004143
Matthew Wilcox51219352007-10-02 21:55:22 -04004144 iop_base = asc_dvc->iop_base;
4145 warn_code = 0;
4146 for (i = 0; i <= ASC_MAX_TID; i++) {
4147 AscPutMCodeInitSDTRAtID(iop_base, i,
4148 asc_dvc->cfg->sdtr_period_offset[i]);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004149 }
4150
Matthew Wilcox51219352007-10-02 21:55:22 -04004151 AscInitQLinkVar(asc_dvc);
4152 AscWriteLramByte(iop_base, ASCV_DISC_ENABLE_B,
4153 asc_dvc->cfg->disc_enable);
4154 AscWriteLramByte(iop_base, ASCV_HOSTSCSI_ID_B,
4155 ASC_TID_TO_TARGET_ID(asc_dvc->cfg->chip_scsi_id));
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004156
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04004157 /* Ensure overrun buffer is aligned on an 8 byte boundary. */
4158 BUG_ON((unsigned long)asc_dvc->overrun_buf & 7);
4159 asc_dvc->overrun_dma = dma_map_single(board->dev, asc_dvc->overrun_buf,
4160 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004161 if (dma_mapping_error(board->dev, asc_dvc->overrun_dma)) {
4162 warn_code = -ENOMEM;
4163 goto err_dma_map;
4164 }
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04004165 phy_addr = cpu_to_le32(asc_dvc->overrun_dma);
Matthew Wilcox51219352007-10-02 21:55:22 -04004166 AscMemDWordCopyPtrToLram(iop_base, ASCV_OVERRUN_PADDR_D,
4167 (uchar *)&phy_addr, 1);
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -04004168 phy_size = cpu_to_le32(ASC_OVERRUN_BSIZE);
Matthew Wilcox51219352007-10-02 21:55:22 -04004169 AscMemDWordCopyPtrToLram(iop_base, ASCV_OVERRUN_BSIZE_D,
4170 (uchar *)&phy_size, 1);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004171
Matthew Wilcox51219352007-10-02 21:55:22 -04004172 asc_dvc->cfg->mcode_date =
4173 AscReadLramWord(iop_base, (ushort)ASCV_MC_DATE_W);
4174 asc_dvc->cfg->mcode_version =
4175 AscReadLramWord(iop_base, (ushort)ASCV_MC_VER_W);
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004176
Matthew Wilcox51219352007-10-02 21:55:22 -04004177 AscSetPCAddr(iop_base, ASC_MCODE_START_ADDR);
4178 if (AscGetPCAddr(iop_base) != ASC_MCODE_START_ADDR) {
4179 asc_dvc->err_code |= ASC_IERR_SET_PC_ADDR;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004180 warn_code = UW_ERR;
4181 goto err_mcode_start;
Matthew Wilcox51219352007-10-02 21:55:22 -04004182 }
4183 if (AscStartChip(iop_base) != 1) {
4184 asc_dvc->err_code |= ASC_IERR_START_STOP_CHIP;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004185 warn_code = UW_ERR;
4186 goto err_mcode_start;
Matthew Wilcox51219352007-10-02 21:55:22 -04004187 }
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004188
Matthew Wilcox51219352007-10-02 21:55:22 -04004189 return warn_code;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004190
4191err_mcode_start:
4192 dma_unmap_single(board->dev, asc_dvc->overrun_dma,
4193 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
4194err_dma_map:
4195 asc_dvc->overrun_dma = 0;
4196 return warn_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04004197}
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004198
Matthew Wilcox51219352007-10-02 21:55:22 -04004199static ushort AscInitAsc1000Driver(ASC_DVC_VAR *asc_dvc)
4200{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304201 const struct firmware *fw;
4202 const char fwname[] = "advansys/mcode.bin";
4203 int err;
4204 unsigned long chksum;
Matthew Wilcox51219352007-10-02 21:55:22 -04004205 ushort warn_code;
4206 PortAddr iop_base;
4207
4208 iop_base = asc_dvc->iop_base;
4209 warn_code = 0;
4210 if ((asc_dvc->dvc_cntl & ASC_CNTL_RESET_SCSI) &&
4211 !(asc_dvc->init_state & ASC_INIT_RESET_SCSI_DONE)) {
4212 AscResetChipAndScsiBus(asc_dvc);
4213 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
4214 }
4215 asc_dvc->init_state |= ASC_INIT_STATE_BEG_LOAD_MC;
4216 if (asc_dvc->err_code != 0)
4217 return UW_ERR;
4218 if (!AscFindSignature(asc_dvc->iop_base)) {
4219 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
4220 return warn_code;
4221 }
4222 AscDisableInterrupt(iop_base);
4223 warn_code |= AscInitLram(asc_dvc);
4224 if (asc_dvc->err_code != 0)
4225 return UW_ERR;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304226
4227 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
4228 if (err) {
4229 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
4230 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004231 asc_dvc->err_code |= ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304232 return err;
4233 }
4234 if (fw->size < 4) {
4235 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
4236 fw->size, fwname);
4237 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004238 asc_dvc->err_code |= ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304239 return -EINVAL;
4240 }
4241 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
4242 (fw->data[1] << 8) | fw->data[0];
4243 ASC_DBG(1, "_asc_mcode_chksum 0x%lx\n", (ulong)chksum);
4244 if (AscLoadMicroCode(iop_base, 0, &fw->data[4],
4245 fw->size - 4) != chksum) {
Matthew Wilcox51219352007-10-02 21:55:22 -04004246 asc_dvc->err_code |= ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304247 release_firmware(fw);
Matthew Wilcox51219352007-10-02 21:55:22 -04004248 return warn_code;
4249 }
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304250 release_firmware(fw);
Matthew Wilcox51219352007-10-02 21:55:22 -04004251 warn_code |= AscInitMicroCodeVar(asc_dvc);
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03004252 if (!asc_dvc->overrun_dma)
4253 return warn_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04004254 asc_dvc->init_state |= ASC_INIT_STATE_END_LOAD_MC;
4255 AscEnableInterrupt(iop_base);
4256 return warn_code;
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004257}
4258
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259/*
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004260 * Load the Microcode
4261 *
4262 * Write the microcode image to RISC memory starting at address 0.
4263 *
4264 * The microcode is stored compressed in the following format:
4265 *
4266 * 254 word (508 byte) table indexed by byte code followed
4267 * by the following byte codes:
4268 *
4269 * 1-Byte Code:
4270 * 00: Emit word 0 in table.
4271 * 01: Emit word 1 in table.
4272 * .
4273 * FD: Emit word 253 in table.
4274 *
4275 * Multi-Byte Code:
4276 * FE WW WW: (3 byte code) Word to emit is the next word WW WW.
4277 * FF BB WW WW: (4 byte code) Emit BB count times next word WW WW.
4278 *
4279 * Returns 0 or an error if the checksum doesn't match
4280 */
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304281static int AdvLoadMicrocode(AdvPortAddr iop_base, const unsigned char *buf,
4282 int size, int memsize, int chksum)
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004283{
4284 int i, j, end, len = 0;
4285 ADV_DCNT sum;
4286
4287 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, 0);
4288
4289 for (i = 253 * 2; i < size; i++) {
4290 if (buf[i] == 0xff) {
4291 unsigned short word = (buf[i + 3] << 8) | buf[i + 2];
4292 for (j = 0; j < buf[i + 1]; j++) {
4293 AdvWriteWordAutoIncLram(iop_base, word);
4294 len += 2;
4295 }
4296 i += 3;
4297 } else if (buf[i] == 0xfe) {
4298 unsigned short word = (buf[i + 2] << 8) | buf[i + 1];
4299 AdvWriteWordAutoIncLram(iop_base, word);
4300 i += 2;
4301 len += 2;
4302 } else {
Matthew Wilcox951b62c2007-10-05 15:57:06 -04004303 unsigned int off = buf[i] * 2;
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004304 unsigned short word = (buf[off + 1] << 8) | buf[off];
4305 AdvWriteWordAutoIncLram(iop_base, word);
4306 len += 2;
4307 }
4308 }
4309
4310 end = len;
4311
4312 while (len < memsize) {
4313 AdvWriteWordAutoIncLram(iop_base, 0);
4314 len += 2;
4315 }
4316
4317 /* Verify the microcode checksum. */
4318 sum = 0;
4319 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, 0);
4320
4321 for (len = 0; len < end; len += 2) {
4322 sum += AdvReadWordAutoIncLram(iop_base);
4323 }
4324
4325 if (sum != chksum)
4326 return ASC_IERR_MCODE_CHKSUM;
4327
4328 return 0;
4329}
4330
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004331static void AdvBuildCarrierFreelist(struct adv_dvc_var *adv_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04004332{
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004333 off_t carr_offset = 0, next_offset;
4334 dma_addr_t carr_paddr;
4335 int carr_num = ADV_CARRIER_BUFSIZE / sizeof(ADV_CARR_T), i;
Matthew Wilcox51219352007-10-02 21:55:22 -04004336
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004337 for (i = 0; i < carr_num; i++) {
4338 carr_offset = i * sizeof(ADV_CARR_T);
4339 /* Get physical address of the carrier 'carrp'. */
4340 carr_paddr = adv_dvc->carrier_addr + carr_offset;
4341
4342 adv_dvc->carrier[i].carr_pa = cpu_to_le32(carr_paddr);
4343 adv_dvc->carrier[i].carr_va = cpu_to_le32(carr_offset);
4344 adv_dvc->carrier[i].areq_vpa = 0;
4345 next_offset = carr_offset + sizeof(ADV_CARR_T);
4346 if (i == carr_num)
4347 next_offset = ~0;
4348 adv_dvc->carrier[i].next_vpa = cpu_to_le32(next_offset);
4349 }
4350 /*
4351 * We cannot have a carrier with 'carr_va' of '0', as
4352 * a reference to this carrier would be interpreted as
4353 * list termination.
4354 * So start at carrier 1 with the freelist.
4355 */
4356 adv_dvc->carr_freelist = &adv_dvc->carrier[1];
4357}
4358
4359static ADV_CARR_T *adv_get_carrier(struct adv_dvc_var *adv_dvc, u32 offset)
4360{
4361 int index;
4362
4363 BUG_ON(offset > ADV_CARRIER_BUFSIZE);
4364
4365 index = offset / sizeof(ADV_CARR_T);
4366 return &adv_dvc->carrier[index];
4367}
4368
4369static ADV_CARR_T *adv_get_next_carrier(struct adv_dvc_var *adv_dvc)
4370{
4371 ADV_CARR_T *carrp = adv_dvc->carr_freelist;
4372 u32 next_vpa = le32_to_cpu(carrp->next_vpa);
4373
4374 if (next_vpa == 0 || next_vpa == ~0) {
4375 ASC_DBG(1, "invalid vpa offset 0x%x\n", next_vpa);
4376 return NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04004377 }
4378
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004379 adv_dvc->carr_freelist = adv_get_carrier(adv_dvc, next_vpa);
4380 /*
4381 * insert stopper carrier to terminate list
4382 */
4383 carrp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
Matthew Wilcox51219352007-10-02 21:55:22 -04004384
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004385 return carrp;
Matthew Wilcox51219352007-10-02 21:55:22 -04004386}
4387
4388/*
Hannes Reinecke4b47e462015-04-24 13:18:24 +02004389 * 'offset' is the index in the request pointer array
4390 */
4391static adv_req_t * adv_get_reqp(struct adv_dvc_var *adv_dvc, u32 offset)
4392{
4393 struct asc_board *boardp = adv_dvc->drv_ptr;
4394
4395 BUG_ON(offset > adv_dvc->max_host_qng);
4396 return &boardp->adv_reqp[offset];
4397}
4398
4399/*
Matthew Wilcox51219352007-10-02 21:55:22 -04004400 * Send an idle command to the chip and wait for completion.
4401 *
4402 * Command completion is polled for once per microsecond.
4403 *
4404 * The function can be called from anywhere including an interrupt handler.
4405 * But the function is not re-entrant, so it uses the DvcEnter/LeaveCritical()
4406 * functions to prevent reentrancy.
4407 *
4408 * Return Values:
4409 * ADV_TRUE - command completed successfully
4410 * ADV_FALSE - command failed
4411 * ADV_ERROR - command timed out
4412 */
4413static int
4414AdvSendIdleCmd(ADV_DVC_VAR *asc_dvc,
4415 ushort idle_cmd, ADV_DCNT idle_cmd_parameter)
4416{
4417 int result;
4418 ADV_DCNT i, j;
4419 AdvPortAddr iop_base;
4420
4421 iop_base = asc_dvc->iop_base;
4422
4423 /*
4424 * Clear the idle command status which is set by the microcode
4425 * to a non-zero value to indicate when the command is completed.
4426 * The non-zero result is one of the IDLE_CMD_STATUS_* values
4427 */
4428 AdvWriteWordLram(iop_base, ASC_MC_IDLE_CMD_STATUS, (ushort)0);
4429
4430 /*
4431 * Write the idle command value after the idle command parameter
4432 * has been written to avoid a race condition. If the order is not
4433 * followed, the microcode may process the idle command before the
4434 * parameters have been written to LRAM.
4435 */
4436 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IDLE_CMD_PARAMETER,
4437 cpu_to_le32(idle_cmd_parameter));
4438 AdvWriteWordLram(iop_base, ASC_MC_IDLE_CMD, idle_cmd);
4439
4440 /*
4441 * Tickle the RISC to tell it to process the idle command.
4442 */
4443 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_B);
4444 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
4445 /*
4446 * Clear the tickle value. In the ASC-3550 the RISC flag
4447 * command 'clr_tickle_b' does not work unless the host
4448 * value is cleared.
4449 */
4450 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_NOP);
4451 }
4452
4453 /* Wait for up to 100 millisecond for the idle command to timeout. */
4454 for (i = 0; i < SCSI_WAIT_100_MSEC; i++) {
4455 /* Poll once each microsecond for command completion. */
4456 for (j = 0; j < SCSI_US_PER_MSEC; j++) {
4457 AdvReadWordLram(iop_base, ASC_MC_IDLE_CMD_STATUS,
4458 result);
4459 if (result != 0)
4460 return result;
4461 udelay(1);
4462 }
4463 }
4464
4465 BUG(); /* The idle command should never timeout. */
4466 return ADV_ERROR;
4467}
4468
4469/*
4470 * Reset SCSI Bus and purge all outstanding requests.
4471 *
4472 * Return Value:
4473 * ADV_TRUE(1) - All requests are purged and SCSI Bus is reset.
4474 * ADV_FALSE(0) - Microcode command failed.
4475 * ADV_ERROR(-1) - Microcode command timed-out. Microcode or IC
4476 * may be hung which requires driver recovery.
4477 */
4478static int AdvResetSB(ADV_DVC_VAR *asc_dvc)
4479{
4480 int status;
4481
4482 /*
4483 * Send the SCSI Bus Reset idle start idle command which asserts
4484 * the SCSI Bus Reset signal.
4485 */
4486 status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_START, 0L);
4487 if (status != ADV_TRUE) {
4488 return status;
4489 }
4490
4491 /*
4492 * Delay for the specified SCSI Bus Reset hold time.
4493 *
4494 * The hold time delay is done on the host because the RISC has no
4495 * microsecond accurate timer.
4496 */
4497 udelay(ASC_SCSI_RESET_HOLD_TIME_US);
4498
4499 /*
4500 * Send the SCSI Bus Reset end idle command which de-asserts
4501 * the SCSI Bus Reset signal and purges any pending requests.
4502 */
4503 status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_END, 0L);
4504 if (status != ADV_TRUE) {
4505 return status;
4506 }
4507
4508 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
4509
4510 return status;
4511}
4512
4513/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 * Initialize the ASC-3550.
4515 *
4516 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
4517 *
4518 * For a non-fatal error return a warning code. If there are no warnings
4519 * then 0 is returned.
4520 *
4521 * Needed after initialization for error recovery.
4522 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004523static int AdvInitAsc3550Driver(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304525 const struct firmware *fw;
4526 const char fwname[] = "advansys/3550.bin";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004527 AdvPortAddr iop_base;
4528 ushort warn_code;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004529 int begin_addr;
4530 int end_addr;
4531 ushort code_sum;
4532 int word;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004533 int i;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304534 int err;
4535 unsigned long chksum;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004536 ushort scsi_cfg1;
4537 uchar tid;
4538 ushort bios_mem[ASC_MC_BIOSLEN / 2]; /* BIOS RISC Memory 0x40-0x8F. */
4539 ushort wdtr_able = 0, sdtr_able, tagqng_able;
4540 uchar max_cmd[ADV_MAX_TID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004542 /* If there is already an error, don't continue. */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004543 if (asc_dvc->err_code != 0)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004544 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004546 /*
4547 * The caller must set 'chip_type' to ADV_CHIP_ASC3550.
4548 */
4549 if (asc_dvc->chip_type != ADV_CHIP_ASC3550) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004550 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004551 return ADV_ERROR;
4552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004554 warn_code = 0;
4555 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004557 /*
4558 * Save the RISC memory BIOS region before writing the microcode.
4559 * The BIOS may already be loaded and using its RISC LRAM region
4560 * so its region must be saved and restored.
4561 *
4562 * Note: This code makes the assumption, which is currently true,
4563 * that a chip reset does not clear RISC LRAM.
4564 */
4565 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
4566 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
4567 bios_mem[i]);
4568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004570 /*
4571 * Save current per TID negotiated values.
4572 */
4573 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] == 0x55AA) {
4574 ushort bios_version, major, minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004576 bios_version =
4577 bios_mem[(ASC_MC_BIOS_VERSION - ASC_MC_BIOSMEM) / 2];
4578 major = (bios_version >> 12) & 0xF;
4579 minor = (bios_version >> 8) & 0xF;
4580 if (major < 3 || (major == 3 && minor == 1)) {
4581 /* BIOS 3.1 and earlier location of 'wdtr_able' variable. */
4582 AdvReadWordLram(iop_base, 0x120, wdtr_able);
4583 } else {
4584 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
4585 }
4586 }
4587 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
4588 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
4589 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
4590 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
4591 max_cmd[tid]);
4592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304594 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
4595 if (err) {
4596 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
4597 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004598 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304599 return err;
4600 }
4601 if (fw->size < 4) {
4602 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
4603 fw->size, fwname);
4604 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03004605 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304606 return -EINVAL;
4607 }
4608 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
4609 (fw->data[1] << 8) | fw->data[0];
4610 asc_dvc->err_code = AdvLoadMicrocode(iop_base, &fw->data[4],
4611 fw->size - 4, ADV_3550_MEMSIZE,
4612 chksum);
4613 release_firmware(fw);
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004614 if (asc_dvc->err_code)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004615 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004617 /*
4618 * Restore the RISC memory BIOS region.
4619 */
4620 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
4621 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
4622 bios_mem[i]);
4623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004625 /*
4626 * Calculate and write the microcode code checksum to the microcode
4627 * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
4628 */
4629 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
4630 AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
4631 code_sum = 0;
4632 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
4633 for (word = begin_addr; word < end_addr; word += 2) {
4634 code_sum += AdvReadWordAutoIncLram(iop_base);
4635 }
4636 AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004638 /*
4639 * Read and save microcode version and date.
4640 */
4641 AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
4642 asc_dvc->cfg->mcode_date);
4643 AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
4644 asc_dvc->cfg->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004646 /*
4647 * Set the chip type to indicate the ASC3550.
4648 */
4649 AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC3550);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004651 /*
4652 * If the PCI Configuration Command Register "Parity Error Response
4653 * Control" Bit was clear (0), then set the microcode variable
4654 * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
4655 * to ignore DMA parity errors.
4656 */
4657 if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
4658 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
4659 word |= CONTROL_FLAG_IGNORE_PERR;
4660 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
4661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004663 /*
4664 * For ASC-3550, setting the START_CTL_EMFU [3:2] bits sets a FIFO
4665 * threshold of 128 bytes. This register is only accessible to the host.
4666 */
4667 AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
4668 START_CTL_EMFU | READ_CMD_MRM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004670 /*
4671 * Microcode operating variables for WDTR, SDTR, and command tag
Matthew Wilcox47d853c2007-07-26 11:41:33 -04004672 * queuing will be set in slave_configure() based on what a
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004673 * device reports it is capable of in Inquiry byte 7.
4674 *
4675 * If SCSI Bus Resets have been disabled, then directly set
4676 * SDTR and WDTR from the EEPROM configuration. This will allow
4677 * the BIOS and warm boot to work without a SCSI bus hang on
4678 * the Inquiry caused by host and target mismatched DTR values.
4679 * Without the SCSI Bus Reset, before an Inquiry a device can't
4680 * be assumed to be in Asynchronous, Narrow mode.
4681 */
4682 if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
4683 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
4684 asc_dvc->wdtr_able);
4685 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
4686 asc_dvc->sdtr_able);
4687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004689 /*
4690 * Set microcode operating variables for SDTR_SPEED1, SDTR_SPEED2,
4691 * SDTR_SPEED3, and SDTR_SPEED4 based on the ULTRA EEPROM per TID
4692 * bitmask. These values determine the maximum SDTR speed negotiated
4693 * with a device.
4694 *
4695 * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
4696 * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
4697 * without determining here whether the device supports SDTR.
4698 *
4699 * 4-bit speed SDTR speed name
4700 * =========== ===============
4701 * 0000b (0x0) SDTR disabled
4702 * 0001b (0x1) 5 Mhz
4703 * 0010b (0x2) 10 Mhz
4704 * 0011b (0x3) 20 Mhz (Ultra)
4705 * 0100b (0x4) 40 Mhz (LVD/Ultra2)
4706 * 0101b (0x5) 80 Mhz (LVD2/Ultra3)
4707 * 0110b (0x6) Undefined
4708 * .
4709 * 1111b (0xF) Undefined
4710 */
4711 word = 0;
4712 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
4713 if (ADV_TID_TO_TIDMASK(tid) & asc_dvc->ultra_able) {
4714 /* Set Ultra speed for TID 'tid'. */
4715 word |= (0x3 << (4 * (tid % 4)));
4716 } else {
4717 /* Set Fast speed for TID 'tid'. */
4718 word |= (0x2 << (4 * (tid % 4)));
4719 }
4720 if (tid == 3) { /* Check if done with sdtr_speed1. */
4721 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, word);
4722 word = 0;
4723 } else if (tid == 7) { /* Check if done with sdtr_speed2. */
4724 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, word);
4725 word = 0;
4726 } else if (tid == 11) { /* Check if done with sdtr_speed3. */
4727 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, word);
4728 word = 0;
4729 } else if (tid == 15) { /* Check if done with sdtr_speed4. */
4730 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, word);
4731 /* End of loop. */
4732 }
4733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004735 /*
4736 * Set microcode operating variable for the disconnect per TID bitmask.
4737 */
4738 AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
4739 asc_dvc->cfg->disc_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004741 /*
4742 * Set SCSI_CFG0 Microcode Default Value.
4743 *
4744 * The microcode will set the SCSI_CFG0 register using this value
4745 * after it is started below.
4746 */
4747 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
4748 PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
4749 asc_dvc->chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004751 /*
4752 * Determine SCSI_CFG1 Microcode Default Value.
4753 *
4754 * The microcode will set the SCSI_CFG1 register using this value
4755 * after it is started below.
4756 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004758 /* Read current SCSI_CFG1 Register value. */
4759 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004761 /*
4762 * If all three connectors are in use, return an error.
4763 */
4764 if ((scsi_cfg1 & CABLE_ILLEGAL_A) == 0 ||
4765 (scsi_cfg1 & CABLE_ILLEGAL_B) == 0) {
4766 asc_dvc->err_code |= ASC_IERR_ILLEGAL_CONNECTION;
4767 return ADV_ERROR;
4768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004770 /*
4771 * If the internal narrow cable is reversed all of the SCSI_CTRL
4772 * register signals will be set. Check for and return an error if
4773 * this condition is found.
4774 */
4775 if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
4776 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
4777 return ADV_ERROR;
4778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004780 /*
4781 * If this is a differential board and a single-ended device
4782 * is attached to one of the connectors, return an error.
4783 */
4784 if ((scsi_cfg1 & DIFF_MODE) && (scsi_cfg1 & DIFF_SENSE) == 0) {
4785 asc_dvc->err_code |= ASC_IERR_SINGLE_END_DEVICE;
4786 return ADV_ERROR;
4787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004789 /*
4790 * If automatic termination control is enabled, then set the
4791 * termination value based on a table listed in a_condor.h.
4792 *
4793 * If manual termination was specified with an EEPROM setting
4794 * then 'termination' was set-up in AdvInitFrom3550EEPROM() and
4795 * is ready to be 'ored' into SCSI_CFG1.
4796 */
4797 if (asc_dvc->cfg->termination == 0) {
4798 /*
4799 * The software always controls termination by setting TERM_CTL_SEL.
4800 * If TERM_CTL_SEL were set to 0, the hardware would set termination.
4801 */
4802 asc_dvc->cfg->termination |= TERM_CTL_SEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004804 switch (scsi_cfg1 & CABLE_DETECT) {
4805 /* TERM_CTL_H: on, TERM_CTL_L: on */
4806 case 0x3:
4807 case 0x7:
4808 case 0xB:
4809 case 0xD:
4810 case 0xE:
4811 case 0xF:
4812 asc_dvc->cfg->termination |= (TERM_CTL_H | TERM_CTL_L);
4813 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004815 /* TERM_CTL_H: on, TERM_CTL_L: off */
4816 case 0x1:
4817 case 0x5:
4818 case 0x9:
4819 case 0xA:
4820 case 0xC:
4821 asc_dvc->cfg->termination |= TERM_CTL_H;
4822 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004824 /* TERM_CTL_H: off, TERM_CTL_L: off */
4825 case 0x2:
4826 case 0x6:
4827 break;
4828 }
4829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004831 /*
4832 * Clear any set TERM_CTL_H and TERM_CTL_L bits.
4833 */
4834 scsi_cfg1 &= ~TERM_CTL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004836 /*
4837 * Invert the TERM_CTL_H and TERM_CTL_L bits and then
4838 * set 'scsi_cfg1'. The TERM_POL bit does not need to be
4839 * referenced, because the hardware internally inverts
4840 * the Termination High and Low bits if TERM_POL is set.
4841 */
4842 scsi_cfg1 |= (TERM_CTL_SEL | (~asc_dvc->cfg->termination & TERM_CTL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004844 /*
4845 * Set SCSI_CFG1 Microcode Default Value
4846 *
4847 * Set filter value and possibly modified termination control
4848 * bits in the Microcode SCSI_CFG1 Register Value.
4849 *
4850 * The microcode will set the SCSI_CFG1 register using this value
4851 * after it is started below.
4852 */
4853 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1,
4854 FLTR_DISABLE | scsi_cfg1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004856 /*
4857 * Set MEM_CFG Microcode Default Value
4858 *
4859 * The microcode will set the MEM_CFG register using this value
4860 * after it is started below.
4861 *
4862 * MEM_CFG may be accessed as a word or byte, but only bits 0-7
4863 * are defined.
4864 *
4865 * ASC-3550 has 8KB internal memory.
4866 */
4867 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
4868 BIOS_EN | RAM_SZ_8KB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004870 /*
4871 * Set SEL_MASK Microcode Default Value
4872 *
4873 * The microcode will set the SEL_MASK register using this value
4874 * after it is started below.
4875 */
4876 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
4877 ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06004879 AdvBuildCarrierFreelist(asc_dvc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004881 /*
4882 * Set-up the Host->RISC Initiator Command Queue (ICQ).
4883 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004885 asc_dvc->icq_sp = adv_get_next_carrier(asc_dvc);
4886 if (!asc_dvc->icq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004887 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
4888 return ADV_ERROR;
4889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004891 /*
4892 * Set RISC ICQ physical address start value.
4893 */
4894 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004896 /*
4897 * Set-up the RISC->Host Initiator Response Queue (IRQ).
4898 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02004899 asc_dvc->irq_sp = adv_get_next_carrier(asc_dvc);
4900 if (!asc_dvc->irq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004901 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
4902 return ADV_ERROR;
4903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004905 /*
4906 * Set RISC IRQ physical address start value.
4907 */
4908 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
4909 asc_dvc->carr_pending_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004911 AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
4912 (ADV_INTR_ENABLE_HOST_INTR |
4913 ADV_INTR_ENABLE_GLOBAL_INTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004915 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
4916 AdvWriteWordRegister(iop_base, IOPW_PC, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004918 /* finally, finally, gentlemen, start your engine */
4919 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004921 /*
4922 * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
4923 * Resets should be performed. The RISC has to be running
4924 * to issue a SCSI Bus Reset.
4925 */
4926 if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
4927 /*
4928 * If the BIOS Signature is present in memory, restore the
4929 * BIOS Handshake Configuration Table and do not perform
4930 * a SCSI Bus Reset.
4931 */
4932 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
4933 0x55AA) {
4934 /*
4935 * Restore per TID negotiated values.
4936 */
4937 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
4938 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
4939 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
4940 tagqng_able);
4941 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
4942 AdvWriteByteLram(iop_base,
4943 ASC_MC_NUMBER_OF_MAX_CMD + tid,
4944 max_cmd[tid]);
4945 }
4946 } else {
4947 if (AdvResetSB(asc_dvc) != ADV_TRUE) {
4948 warn_code = ASC_WARN_BUSRESET_ERROR;
4949 }
4950 }
4951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004952
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004953 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954}
4955
4956/*
4957 * Initialize the ASC-38C0800.
4958 *
4959 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
4960 *
4961 * For a non-fatal error return a warning code. If there are no warnings
4962 * then 0 is returned.
4963 *
4964 * Needed after initialization for error recovery.
4965 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004966static int AdvInitAsc38C0800Driver(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304968 const struct firmware *fw;
4969 const char fwname[] = "advansys/38C0800.bin";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004970 AdvPortAddr iop_base;
4971 ushort warn_code;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004972 int begin_addr;
4973 int end_addr;
4974 ushort code_sum;
4975 int word;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004976 int i;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05304977 int err;
4978 unsigned long chksum;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004979 ushort scsi_cfg1;
4980 uchar byte;
4981 uchar tid;
4982 ushort bios_mem[ASC_MC_BIOSLEN / 2]; /* BIOS RISC Memory 0x40-0x8F. */
4983 ushort wdtr_able, sdtr_able, tagqng_able;
4984 uchar max_cmd[ADV_MAX_TID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004986 /* If there is already an error, don't continue. */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06004987 if (asc_dvc->err_code != 0)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004988 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004990 /*
4991 * The caller must set 'chip_type' to ADV_CHIP_ASC38C0800.
4992 */
4993 if (asc_dvc->chip_type != ADV_CHIP_ASC38C0800) {
4994 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
4995 return ADV_ERROR;
4996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
Matthew Wilcox27c868c2007-07-26 10:56:23 -04004998 warn_code = 0;
4999 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005001 /*
5002 * Save the RISC memory BIOS region before writing the microcode.
5003 * The BIOS may already be loaded and using its RISC LRAM region
5004 * so its region must be saved and restored.
5005 *
5006 * Note: This code makes the assumption, which is currently true,
5007 * that a chip reset does not clear RISC LRAM.
5008 */
5009 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
5010 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
5011 bios_mem[i]);
5012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005014 /*
5015 * Save current per TID negotiated values.
5016 */
5017 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5018 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5019 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
5020 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
5021 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
5022 max_cmd[tid]);
5023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005025 /*
5026 * RAM BIST (RAM Built-In Self Test)
5027 *
5028 * Address : I/O base + offset 0x38h register (byte).
5029 * Function: Bit 7-6(RW) : RAM mode
5030 * Normal Mode : 0x00
5031 * Pre-test Mode : 0x40
5032 * RAM Test Mode : 0x80
5033 * Bit 5 : unused
5034 * Bit 4(RO) : Done bit
5035 * Bit 3-0(RO) : Status
5036 * Host Error : 0x08
5037 * Int_RAM Error : 0x04
5038 * RISC Error : 0x02
5039 * SCSI Error : 0x01
5040 * No Error : 0x00
5041 *
5042 * Note: RAM BIST code should be put right here, before loading the
5043 * microcode and after saving the RISC memory BIOS region.
5044 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005046 /*
5047 * LRAM Pre-test
5048 *
5049 * Write PRE_TEST_MODE (0x40) to register and wait for 10 milliseconds.
5050 * If Done bit not set or low nibble not PRE_TEST_VALUE (0x05), return
5051 * an error. Reset to NORMAL_MODE (0x00) and do again. If cannot reset
5052 * to NORMAL_MODE, return an error too.
5053 */
5054 for (i = 0; i < 2; i++) {
5055 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, PRE_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005056 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005057 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
5058 if ((byte & RAM_TEST_DONE) == 0
5059 || (byte & 0x0F) != PRE_TEST_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005060 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005061 return ADV_ERROR;
5062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005064 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005065 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005066 if (AdvReadByteRegister(iop_base, IOPB_RAM_BIST)
5067 != NORMAL_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005068 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005069 return ADV_ERROR;
5070 }
5071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005073 /*
5074 * LRAM Test - It takes about 1.5 ms to run through the test.
5075 *
5076 * Write RAM_TEST_MODE (0x80) to register and wait for 10 milliseconds.
5077 * If Done bit not set or Status not 0, save register byte, set the
5078 * err_code, and return an error.
5079 */
5080 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, RAM_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005081 mdelay(10); /* Wait for 10ms before checking status. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005083 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
5084 if ((byte & RAM_TEST_DONE) == 0 || (byte & RAM_TEST_STATUS) != 0) {
5085 /* Get here if Done bit not set or Status not 0. */
5086 asc_dvc->bist_err_code = byte; /* for BIOS display message */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005087 asc_dvc->err_code = ASC_IERR_BIST_RAM_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005088 return ADV_ERROR;
5089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005091 /* We need to reset back to normal mode after LRAM test passes. */
5092 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305094 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
5095 if (err) {
5096 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
5097 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03005098 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305099 return err;
5100 }
5101 if (fw->size < 4) {
5102 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
5103 fw->size, fwname);
5104 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03005105 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305106 return -EINVAL;
5107 }
5108 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
5109 (fw->data[1] << 8) | fw->data[0];
5110 asc_dvc->err_code = AdvLoadMicrocode(iop_base, &fw->data[4],
5111 fw->size - 4, ADV_38C0800_MEMSIZE,
5112 chksum);
5113 release_firmware(fw);
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005114 if (asc_dvc->err_code)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005115 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005117 /*
5118 * Restore the RISC memory BIOS region.
5119 */
5120 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
5121 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
5122 bios_mem[i]);
5123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005125 /*
5126 * Calculate and write the microcode code checksum to the microcode
5127 * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
5128 */
5129 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
5130 AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
5131 code_sum = 0;
5132 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
5133 for (word = begin_addr; word < end_addr; word += 2) {
5134 code_sum += AdvReadWordAutoIncLram(iop_base);
5135 }
5136 AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005138 /*
5139 * Read microcode version and date.
5140 */
5141 AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
5142 asc_dvc->cfg->mcode_date);
5143 AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
5144 asc_dvc->cfg->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005146 /*
5147 * Set the chip type to indicate the ASC38C0800.
5148 */
5149 AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC38C0800);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005151 /*
5152 * Write 1 to bit 14 'DIS_TERM_DRV' in the SCSI_CFG1 register.
5153 * When DIS_TERM_DRV set to 1, C_DET[3:0] will reflect current
5154 * cable detection and then we are able to read C_DET[3:0].
5155 *
5156 * Note: We will reset DIS_TERM_DRV to 0 in the 'Set SCSI_CFG1
5157 * Microcode Default Value' section below.
5158 */
5159 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
5160 AdvWriteWordRegister(iop_base, IOPW_SCSI_CFG1,
5161 scsi_cfg1 | DIS_TERM_DRV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005163 /*
5164 * If the PCI Configuration Command Register "Parity Error Response
5165 * Control" Bit was clear (0), then set the microcode variable
5166 * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
5167 * to ignore DMA parity errors.
5168 */
5169 if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
5170 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5171 word |= CONTROL_FLAG_IGNORE_PERR;
5172 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005175 /*
5176 * For ASC-38C0800, set FIFO_THRESH_80B [6:4] bits and START_CTL_TH [3:2]
5177 * bits for the default FIFO threshold.
5178 *
5179 * Note: ASC-38C0800 FIFO threshold has been changed to 256 bytes.
5180 *
5181 * For DMA Errata #4 set the BC_THRESH_ENB bit.
5182 */
5183 AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
5184 BC_THRESH_ENB | FIFO_THRESH_80B | START_CTL_TH |
5185 READ_CMD_MRM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005187 /*
5188 * Microcode operating variables for WDTR, SDTR, and command tag
Matthew Wilcox47d853c2007-07-26 11:41:33 -04005189 * queuing will be set in slave_configure() based on what a
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005190 * device reports it is capable of in Inquiry byte 7.
5191 *
5192 * If SCSI Bus Resets have been disabled, then directly set
5193 * SDTR and WDTR from the EEPROM configuration. This will allow
5194 * the BIOS and warm boot to work without a SCSI bus hang on
5195 * the Inquiry caused by host and target mismatched DTR values.
5196 * Without the SCSI Bus Reset, before an Inquiry a device can't
5197 * be assumed to be in Asynchronous, Narrow mode.
5198 */
5199 if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
5200 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
5201 asc_dvc->wdtr_able);
5202 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
5203 asc_dvc->sdtr_able);
5204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005206 /*
5207 * Set microcode operating variables for DISC and SDTR_SPEED1,
5208 * SDTR_SPEED2, SDTR_SPEED3, and SDTR_SPEED4 based on the EEPROM
5209 * configuration values.
5210 *
5211 * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
5212 * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
5213 * without determining here whether the device supports SDTR.
5214 */
5215 AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
5216 asc_dvc->cfg->disc_enable);
5217 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, asc_dvc->sdtr_speed1);
5218 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, asc_dvc->sdtr_speed2);
5219 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, asc_dvc->sdtr_speed3);
5220 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, asc_dvc->sdtr_speed4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005222 /*
5223 * Set SCSI_CFG0 Microcode Default Value.
5224 *
5225 * The microcode will set the SCSI_CFG0 register using this value
5226 * after it is started below.
5227 */
5228 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
5229 PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
5230 asc_dvc->chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005232 /*
5233 * Determine SCSI_CFG1 Microcode Default Value.
5234 *
5235 * The microcode will set the SCSI_CFG1 register using this value
5236 * after it is started below.
5237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005238
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005239 /* Read current SCSI_CFG1 Register value. */
5240 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005242 /*
5243 * If the internal narrow cable is reversed all of the SCSI_CTRL
5244 * register signals will be set. Check for and return an error if
5245 * this condition is found.
5246 */
5247 if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
5248 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
5249 return ADV_ERROR;
5250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005252 /*
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005253 * All kind of combinations of devices attached to one of four
5254 * connectors are acceptable except HVD device attached. For example,
5255 * LVD device can be attached to SE connector while SE device attached
5256 * to LVD connector. If LVD device attached to SE connector, it only
5257 * runs up to Ultra speed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005258 *
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005259 * If an HVD device is attached to one of LVD connectors, return an
5260 * error. However, there is no way to detect HVD device attached to
5261 * SE connectors.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005262 */
5263 if (scsi_cfg1 & HVD) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005264 asc_dvc->err_code = ASC_IERR_HVD_DEVICE;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005265 return ADV_ERROR;
5266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005268 /*
5269 * If either SE or LVD automatic termination control is enabled, then
5270 * set the termination value based on a table listed in a_condor.h.
5271 *
5272 * If manual termination was specified with an EEPROM setting then
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005273 * 'termination' was set-up in AdvInitFrom38C0800EEPROM() and is ready
5274 * to be 'ored' into SCSI_CFG1.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005275 */
5276 if ((asc_dvc->cfg->termination & TERM_SE) == 0) {
5277 /* SE automatic termination control is enabled. */
5278 switch (scsi_cfg1 & C_DET_SE) {
5279 /* TERM_SE_HI: on, TERM_SE_LO: on */
5280 case 0x1:
5281 case 0x2:
5282 case 0x3:
5283 asc_dvc->cfg->termination |= TERM_SE;
5284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005286 /* TERM_SE_HI: on, TERM_SE_LO: off */
5287 case 0x0:
5288 asc_dvc->cfg->termination |= TERM_SE_HI;
5289 break;
5290 }
5291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005293 if ((asc_dvc->cfg->termination & TERM_LVD) == 0) {
5294 /* LVD automatic termination control is enabled. */
5295 switch (scsi_cfg1 & C_DET_LVD) {
5296 /* TERM_LVD_HI: on, TERM_LVD_LO: on */
5297 case 0x4:
5298 case 0x8:
5299 case 0xC:
5300 asc_dvc->cfg->termination |= TERM_LVD;
5301 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005303 /* TERM_LVD_HI: off, TERM_LVD_LO: off */
5304 case 0x0:
5305 break;
5306 }
5307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005309 /*
5310 * Clear any set TERM_SE and TERM_LVD bits.
5311 */
5312 scsi_cfg1 &= (~TERM_SE & ~TERM_LVD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005314 /*
5315 * Invert the TERM_SE and TERM_LVD bits and then set 'scsi_cfg1'.
5316 */
5317 scsi_cfg1 |= (~asc_dvc->cfg->termination & 0xF0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005319 /*
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005320 * Clear BIG_ENDIAN, DIS_TERM_DRV, Terminator Polarity and HVD/LVD/SE
5321 * bits and set possibly modified termination control bits in the
5322 * Microcode SCSI_CFG1 Register Value.
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005323 */
5324 scsi_cfg1 &= (~BIG_ENDIAN & ~DIS_TERM_DRV & ~TERM_POL & ~HVD_LVD_SE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005326 /*
5327 * Set SCSI_CFG1 Microcode Default Value
5328 *
5329 * Set possibly modified termination control and reset DIS_TERM_DRV
5330 * bits in the Microcode SCSI_CFG1 Register Value.
5331 *
5332 * The microcode will set the SCSI_CFG1 register using this value
5333 * after it is started below.
5334 */
5335 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1, scsi_cfg1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005337 /*
5338 * Set MEM_CFG Microcode Default Value
5339 *
5340 * The microcode will set the MEM_CFG register using this value
5341 * after it is started below.
5342 *
5343 * MEM_CFG may be accessed as a word or byte, but only bits 0-7
5344 * are defined.
5345 *
5346 * ASC-38C0800 has 16KB internal memory.
5347 */
5348 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
5349 BIOS_EN | RAM_SZ_16KB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005351 /*
5352 * Set SEL_MASK Microcode Default Value
5353 *
5354 * The microcode will set the SEL_MASK register using this value
5355 * after it is started below.
5356 */
5357 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
5358 ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06005360 AdvBuildCarrierFreelist(asc_dvc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005362 /*
5363 * Set-up the Host->RISC Initiator Command Queue (ICQ).
5364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005366 asc_dvc->icq_sp = adv_get_next_carrier(asc_dvc);
5367 if (!asc_dvc->icq_sp) {
5368 ASC_DBG(0, "Failed to get ICQ carrier\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005369 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5370 return ADV_ERROR;
5371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005373 /*
5374 * Set RISC ICQ physical address start value.
5375 * carr_pa is LE, must be native before write
5376 */
5377 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005379 /*
5380 * Set-up the RISC->Host Initiator Response Queue (IRQ).
5381 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005382 asc_dvc->irq_sp = adv_get_next_carrier(asc_dvc);
5383 if (!asc_dvc->irq_sp) {
5384 ASC_DBG(0, "Failed to get IRQ carrier\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005385 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5386 return ADV_ERROR;
5387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005389 /*
5390 * Set RISC IRQ physical address start value.
5391 *
5392 * carr_pa is LE, must be native before write *
5393 */
5394 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
5395 asc_dvc->carr_pending_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005397 AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
5398 (ADV_INTR_ENABLE_HOST_INTR |
5399 ADV_INTR_ENABLE_GLOBAL_INTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005401 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
5402 AdvWriteWordRegister(iop_base, IOPW_PC, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005404 /* finally, finally, gentlemen, start your engine */
5405 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005407 /*
5408 * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
5409 * Resets should be performed. The RISC has to be running
5410 * to issue a SCSI Bus Reset.
5411 */
5412 if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
5413 /*
5414 * If the BIOS Signature is present in memory, restore the
5415 * BIOS Handshake Configuration Table and do not perform
5416 * a SCSI Bus Reset.
5417 */
5418 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
5419 0x55AA) {
5420 /*
5421 * Restore per TID negotiated values.
5422 */
5423 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5424 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5425 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
5426 tagqng_able);
5427 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
5428 AdvWriteByteLram(iop_base,
5429 ASC_MC_NUMBER_OF_MAX_CMD + tid,
5430 max_cmd[tid]);
5431 }
5432 } else {
5433 if (AdvResetSB(asc_dvc) != ADV_TRUE) {
5434 warn_code = ASC_WARN_BUSRESET_ERROR;
5435 }
5436 }
5437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005439 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440}
5441
5442/*
5443 * Initialize the ASC-38C1600.
5444 *
5445 * On failure set the ASC_DVC_VAR field 'err_code' and return ADV_ERROR.
5446 *
5447 * For a non-fatal error return a warning code. If there are no warnings
5448 * then 0 is returned.
5449 *
5450 * Needed after initialization for error recovery.
5451 */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005452static int AdvInitAsc38C1600Driver(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453{
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305454 const struct firmware *fw;
5455 const char fwname[] = "advansys/38C1600.bin";
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005456 AdvPortAddr iop_base;
5457 ushort warn_code;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005458 int begin_addr;
5459 int end_addr;
5460 ushort code_sum;
5461 long word;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005462 int i;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305463 int err;
5464 unsigned long chksum;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005465 ushort scsi_cfg1;
5466 uchar byte;
5467 uchar tid;
5468 ushort bios_mem[ASC_MC_BIOSLEN / 2]; /* BIOS RISC Memory 0x40-0x8F. */
5469 ushort wdtr_able, sdtr_able, ppr_able, tagqng_able;
5470 uchar max_cmd[ASC_MAX_TID + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005472 /* If there is already an error, don't continue. */
5473 if (asc_dvc->err_code != 0) {
5474 return ADV_ERROR;
5475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005477 /*
5478 * The caller must set 'chip_type' to ADV_CHIP_ASC38C1600.
5479 */
5480 if (asc_dvc->chip_type != ADV_CHIP_ASC38C1600) {
5481 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
5482 return ADV_ERROR;
5483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005485 warn_code = 0;
5486 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005488 /*
5489 * Save the RISC memory BIOS region before writing the microcode.
5490 * The BIOS may already be loaded and using its RISC LRAM region
5491 * so its region must be saved and restored.
5492 *
5493 * Note: This code makes the assumption, which is currently true,
5494 * that a chip reset does not clear RISC LRAM.
5495 */
5496 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
5497 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
5498 bios_mem[i]);
5499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005501 /*
5502 * Save current per TID negotiated values.
5503 */
5504 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5505 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5506 AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
5507 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
5508 for (tid = 0; tid <= ASC_MAX_TID; tid++) {
5509 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
5510 max_cmd[tid]);
5511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005513 /*
5514 * RAM BIST (Built-In Self Test)
5515 *
5516 * Address : I/O base + offset 0x38h register (byte).
5517 * Function: Bit 7-6(RW) : RAM mode
5518 * Normal Mode : 0x00
5519 * Pre-test Mode : 0x40
5520 * RAM Test Mode : 0x80
5521 * Bit 5 : unused
5522 * Bit 4(RO) : Done bit
5523 * Bit 3-0(RO) : Status
5524 * Host Error : 0x08
5525 * Int_RAM Error : 0x04
5526 * RISC Error : 0x02
5527 * SCSI Error : 0x01
5528 * No Error : 0x00
5529 *
5530 * Note: RAM BIST code should be put right here, before loading the
5531 * microcode and after saving the RISC memory BIOS region.
5532 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005534 /*
5535 * LRAM Pre-test
5536 *
5537 * Write PRE_TEST_MODE (0x40) to register and wait for 10 milliseconds.
5538 * If Done bit not set or low nibble not PRE_TEST_VALUE (0x05), return
5539 * an error. Reset to NORMAL_MODE (0x00) and do again. If cannot reset
5540 * to NORMAL_MODE, return an error too.
5541 */
5542 for (i = 0; i < 2; i++) {
5543 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, PRE_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005544 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005545 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
5546 if ((byte & RAM_TEST_DONE) == 0
5547 || (byte & 0x0F) != PRE_TEST_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005548 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005549 return ADV_ERROR;
5550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005552 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005553 mdelay(10); /* Wait for 10ms before reading back. */
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005554 if (AdvReadByteRegister(iop_base, IOPB_RAM_BIST)
5555 != NORMAL_VALUE) {
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005556 asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005557 return ADV_ERROR;
5558 }
5559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005561 /*
5562 * LRAM Test - It takes about 1.5 ms to run through the test.
5563 *
5564 * Write RAM_TEST_MODE (0x80) to register and wait for 10 milliseconds.
5565 * If Done bit not set or Status not 0, save register byte, set the
5566 * err_code, and return an error.
5567 */
5568 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, RAM_TEST_MODE);
Matthew Wilcoxb009bef2007-09-09 08:56:38 -06005569 mdelay(10); /* Wait for 10ms before checking status. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005571 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
5572 if ((byte & RAM_TEST_DONE) == 0 || (byte & RAM_TEST_STATUS) != 0) {
5573 /* Get here if Done bit not set or Status not 0. */
5574 asc_dvc->bist_err_code = byte; /* for BIOS display message */
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005575 asc_dvc->err_code = ASC_IERR_BIST_RAM_TEST;
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005576 return ADV_ERROR;
5577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005579 /* We need to reset back to normal mode after LRAM test passes. */
5580 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305582 err = request_firmware(&fw, fwname, asc_dvc->drv_ptr->dev);
5583 if (err) {
5584 printk(KERN_ERR "Failed to load image \"%s\" err %d\n",
5585 fwname, err);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03005586 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305587 return err;
5588 }
5589 if (fw->size < 4) {
5590 printk(KERN_ERR "Bogus length %zu in image \"%s\"\n",
5591 fw->size, fwname);
5592 release_firmware(fw);
Herton Ronaldo Krzesinskicf747442010-03-19 19:37:26 -03005593 asc_dvc->err_code = ASC_IERR_MCODE_CHKSUM;
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +05305594 return -EINVAL;
5595 }
5596 chksum = (fw->data[3] << 24) | (fw->data[2] << 16) |
5597 (fw->data[1] << 8) | fw->data[0];
5598 asc_dvc->err_code = AdvLoadMicrocode(iop_base, &fw->data[4],
5599 fw->size - 4, ADV_38C1600_MEMSIZE,
5600 chksum);
5601 release_firmware(fw);
Matthew Wilcoxb9d96612007-09-09 08:56:28 -06005602 if (asc_dvc->err_code)
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005603 return ADV_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005605 /*
5606 * Restore the RISC memory BIOS region.
5607 */
5608 for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
5609 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
5610 bios_mem[i]);
5611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005613 /*
5614 * Calculate and write the microcode code checksum to the microcode
5615 * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
5616 */
5617 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
5618 AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
5619 code_sum = 0;
5620 AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
5621 for (word = begin_addr; word < end_addr; word += 2) {
5622 code_sum += AdvReadWordAutoIncLram(iop_base);
5623 }
5624 AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005626 /*
5627 * Read microcode version and date.
5628 */
5629 AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
5630 asc_dvc->cfg->mcode_date);
5631 AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
5632 asc_dvc->cfg->mcode_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005634 /*
5635 * Set the chip type to indicate the ASC38C1600.
5636 */
5637 AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC38C1600);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005639 /*
5640 * Write 1 to bit 14 'DIS_TERM_DRV' in the SCSI_CFG1 register.
5641 * When DIS_TERM_DRV set to 1, C_DET[3:0] will reflect current
5642 * cable detection and then we are able to read C_DET[3:0].
5643 *
5644 * Note: We will reset DIS_TERM_DRV to 0 in the 'Set SCSI_CFG1
5645 * Microcode Default Value' section below.
5646 */
5647 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
5648 AdvWriteWordRegister(iop_base, IOPW_SCSI_CFG1,
5649 scsi_cfg1 | DIS_TERM_DRV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005651 /*
5652 * If the PCI Configuration Command Register "Parity Error Response
5653 * Control" Bit was clear (0), then set the microcode variable
5654 * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
5655 * to ignore DMA parity errors.
5656 */
5657 if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
5658 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5659 word |= CONTROL_FLAG_IGNORE_PERR;
5660 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005663 /*
5664 * If the BIOS control flag AIPP (Asynchronous Information
5665 * Phase Protection) disable bit is not set, then set the firmware
5666 * 'control_flag' CONTROL_FLAG_ENABLE_AIPP bit to enable
5667 * AIPP checking and encoding.
5668 */
5669 if ((asc_dvc->bios_ctrl & BIOS_CTRL_AIPP_DIS) == 0) {
5670 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5671 word |= CONTROL_FLAG_ENABLE_AIPP;
5672 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
5673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005675 /*
5676 * For ASC-38C1600 use DMA_CFG0 default values: FIFO_THRESH_80B [6:4],
5677 * and START_CTL_TH [3:2].
5678 */
5679 AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
5680 FIFO_THRESH_80B | START_CTL_TH | READ_CMD_MRM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005682 /*
5683 * Microcode operating variables for WDTR, SDTR, and command tag
Matthew Wilcox47d853c2007-07-26 11:41:33 -04005684 * queuing will be set in slave_configure() based on what a
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005685 * device reports it is capable of in Inquiry byte 7.
5686 *
5687 * If SCSI Bus Resets have been disabled, then directly set
5688 * SDTR and WDTR from the EEPROM configuration. This will allow
5689 * the BIOS and warm boot to work without a SCSI bus hang on
5690 * the Inquiry caused by host and target mismatched DTR values.
5691 * Without the SCSI Bus Reset, before an Inquiry a device can't
5692 * be assumed to be in Asynchronous, Narrow mode.
5693 */
5694 if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
5695 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
5696 asc_dvc->wdtr_able);
5697 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
5698 asc_dvc->sdtr_able);
5699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005701 /*
5702 * Set microcode operating variables for DISC and SDTR_SPEED1,
5703 * SDTR_SPEED2, SDTR_SPEED3, and SDTR_SPEED4 based on the EEPROM
5704 * configuration values.
5705 *
5706 * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
5707 * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
5708 * without determining here whether the device supports SDTR.
5709 */
5710 AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
5711 asc_dvc->cfg->disc_enable);
5712 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, asc_dvc->sdtr_speed1);
5713 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, asc_dvc->sdtr_speed2);
5714 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, asc_dvc->sdtr_speed3);
5715 AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, asc_dvc->sdtr_speed4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005716
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005717 /*
5718 * Set SCSI_CFG0 Microcode Default Value.
5719 *
5720 * The microcode will set the SCSI_CFG0 register using this value
5721 * after it is started below.
5722 */
5723 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
5724 PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
5725 asc_dvc->chip_scsi_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005727 /*
5728 * Calculate SCSI_CFG1 Microcode Default Value.
5729 *
5730 * The microcode will set the SCSI_CFG1 register using this value
5731 * after it is started below.
5732 *
5733 * Each ASC-38C1600 function has only two cable detect bits.
5734 * The bus mode override bits are in IOPB_SOFT_OVER_WR.
5735 */
5736 scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005738 /*
5739 * If the cable is reversed all of the SCSI_CTRL register signals
5740 * will be set. Check for and return an error if this condition is
5741 * found.
5742 */
5743 if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
5744 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
5745 return ADV_ERROR;
5746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005748 /*
5749 * Each ASC-38C1600 function has two connectors. Only an HVD device
5750 * can not be connected to either connector. An LVD device or SE device
5751 * may be connected to either connecor. If an SE device is connected,
5752 * then at most Ultra speed (20 Mhz) can be used on both connectors.
5753 *
5754 * If an HVD device is attached, return an error.
5755 */
5756 if (scsi_cfg1 & HVD) {
5757 asc_dvc->err_code |= ASC_IERR_HVD_DEVICE;
5758 return ADV_ERROR;
5759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005761 /*
5762 * Each function in the ASC-38C1600 uses only the SE cable detect and
5763 * termination because there are two connectors for each function. Each
5764 * function may use either LVD or SE mode. Corresponding the SE automatic
5765 * termination control EEPROM bits are used for each function. Each
5766 * function has its own EEPROM. If SE automatic control is enabled for
5767 * the function, then set the termination value based on a table listed
5768 * in a_condor.h.
5769 *
5770 * If manual termination is specified in the EEPROM for the function,
5771 * then 'termination' was set-up in AscInitFrom38C1600EEPROM() and is
5772 * ready to be 'ored' into SCSI_CFG1.
5773 */
5774 if ((asc_dvc->cfg->termination & TERM_SE) == 0) {
Matthew Wilcox13ac2d92007-07-30 08:10:23 -06005775 struct pci_dev *pdev = adv_dvc_to_pdev(asc_dvc);
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005776 /* SE automatic termination control is enabled. */
5777 switch (scsi_cfg1 & C_DET_SE) {
5778 /* TERM_SE_HI: on, TERM_SE_LO: on */
5779 case 0x1:
5780 case 0x2:
5781 case 0x3:
5782 asc_dvc->cfg->termination |= TERM_SE;
5783 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005785 case 0x0:
Matthew Wilcox13ac2d92007-07-30 08:10:23 -06005786 if (PCI_FUNC(pdev->devfn) == 0) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005787 /* Function 0 - TERM_SE_HI: off, TERM_SE_LO: off */
5788 } else {
5789 /* Function 1 - TERM_SE_HI: on, TERM_SE_LO: off */
5790 asc_dvc->cfg->termination |= TERM_SE_HI;
5791 }
5792 break;
5793 }
5794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005796 /*
5797 * Clear any set TERM_SE bits.
5798 */
5799 scsi_cfg1 &= ~TERM_SE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005801 /*
5802 * Invert the TERM_SE bits and then set 'scsi_cfg1'.
5803 */
5804 scsi_cfg1 |= (~asc_dvc->cfg->termination & TERM_SE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005806 /*
5807 * Clear Big Endian and Terminator Polarity bits and set possibly
5808 * modified termination control bits in the Microcode SCSI_CFG1
5809 * Register Value.
5810 *
5811 * Big Endian bit is not used even on big endian machines.
5812 */
5813 scsi_cfg1 &= (~BIG_ENDIAN & ~DIS_TERM_DRV & ~TERM_POL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005815 /*
5816 * Set SCSI_CFG1 Microcode Default Value
5817 *
5818 * Set possibly modified termination control bits in the Microcode
5819 * SCSI_CFG1 Register Value.
5820 *
5821 * The microcode will set the SCSI_CFG1 register using this value
5822 * after it is started below.
5823 */
5824 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1, scsi_cfg1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005826 /*
5827 * Set MEM_CFG Microcode Default Value
5828 *
5829 * The microcode will set the MEM_CFG register using this value
5830 * after it is started below.
5831 *
5832 * MEM_CFG may be accessed as a word or byte, but only bits 0-7
5833 * are defined.
5834 *
5835 * ASC-38C1600 has 32KB internal memory.
5836 *
5837 * XXX - Since ASC38C1600 Rev.3 has a Local RAM failure issue, we come
5838 * out a special 16K Adv Library and Microcode version. After the issue
5839 * resolved, we should turn back to the 32K support. Both a_condor.h and
5840 * mcode.sas files also need to be updated.
5841 *
5842 * AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
5843 * BIOS_EN | RAM_SZ_32KB);
5844 */
5845 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
5846 BIOS_EN | RAM_SZ_16KB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005848 /*
5849 * Set SEL_MASK Microcode Default Value
5850 *
5851 * The microcode will set the SEL_MASK register using this value
5852 * after it is started below.
5853 */
5854 AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
5855 ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856
Matthew Wilcoxa9f4a592007-09-09 08:56:27 -06005857 AdvBuildCarrierFreelist(asc_dvc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005859 /*
5860 * Set-up the Host->RISC Initiator Command Queue (ICQ).
5861 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005862 asc_dvc->icq_sp = adv_get_next_carrier(asc_dvc);
5863 if (!asc_dvc->icq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005864 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5865 return ADV_ERROR;
5866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005868 /*
5869 * Set RISC ICQ physical address start value. Initialize the
5870 * COMMA register to the same value otherwise the RISC will
5871 * prematurely detect a command is available.
5872 */
5873 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
5874 AdvWriteDWordRegister(iop_base, IOPDW_COMMA,
5875 le32_to_cpu(asc_dvc->icq_sp->carr_pa));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005877 /*
5878 * Set-up the RISC->Host Initiator Response Queue (IRQ).
5879 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02005880 asc_dvc->irq_sp = adv_get_next_carrier(asc_dvc);
5881 if (!asc_dvc->irq_sp) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005882 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
5883 return ADV_ERROR;
5884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005886 /*
5887 * Set RISC IRQ physical address start value.
5888 */
5889 AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
5890 asc_dvc->carr_pending_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005892 AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
5893 (ADV_INTR_ENABLE_HOST_INTR |
5894 ADV_INTR_ENABLE_GLOBAL_INTR));
5895 AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
5896 AdvWriteWordRegister(iop_base, IOPW_PC, word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005898 /* finally, finally, gentlemen, start your engine */
5899 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005901 /*
5902 * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
5903 * Resets should be performed. The RISC has to be running
5904 * to issue a SCSI Bus Reset.
5905 */
5906 if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
5907 /*
5908 * If the BIOS Signature is present in memory, restore the
5909 * per TID microcode operating variables.
5910 */
5911 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
5912 0x55AA) {
5913 /*
5914 * Restore per TID negotiated values.
5915 */
5916 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5917 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5918 AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
5919 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
5920 tagqng_able);
5921 for (tid = 0; tid <= ASC_MAX_TID; tid++) {
5922 AdvWriteByteLram(iop_base,
5923 ASC_MC_NUMBER_OF_MAX_CMD + tid,
5924 max_cmd[tid]);
5925 }
5926 } else {
5927 if (AdvResetSB(asc_dvc) != ADV_TRUE) {
5928 warn_code = ASC_WARN_BUSRESET_ERROR;
5929 }
5930 }
5931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932
Matthew Wilcox27c868c2007-07-26 10:56:23 -04005933 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005934}
5935
5936/*
Matthew Wilcox51219352007-10-02 21:55:22 -04005937 * Reset chip and SCSI Bus.
5938 *
5939 * Return Value:
5940 * ADV_TRUE(1) - Chip re-initialization and SCSI Bus Reset successful.
5941 * ADV_FALSE(0) - Chip re-initialization and SCSI Bus Reset failure.
5942 */
5943static int AdvResetChipAndSB(ADV_DVC_VAR *asc_dvc)
5944{
5945 int status;
5946 ushort wdtr_able, sdtr_able, tagqng_able;
5947 ushort ppr_able = 0;
5948 uchar tid, max_cmd[ADV_MAX_TID + 1];
5949 AdvPortAddr iop_base;
5950 ushort bios_sig;
5951
5952 iop_base = asc_dvc->iop_base;
5953
5954 /*
5955 * Save current per TID negotiated values.
5956 */
5957 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
5958 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
5959 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
5960 AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
5961 }
5962 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
5963 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
5964 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
5965 max_cmd[tid]);
5966 }
5967
5968 /*
5969 * Force the AdvInitAsc3550/38C0800Driver() function to
5970 * perform a SCSI Bus Reset by clearing the BIOS signature word.
5971 * The initialization functions assumes a SCSI Bus Reset is not
5972 * needed if the BIOS signature word is present.
5973 */
5974 AdvReadWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, bios_sig);
5975 AdvWriteWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, 0);
5976
5977 /*
5978 * Stop chip and reset it.
5979 */
5980 AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_STOP);
5981 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG, ADV_CTRL_REG_CMD_RESET);
5982 mdelay(100);
5983 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
5984 ADV_CTRL_REG_CMD_WR_IO_REG);
5985
5986 /*
5987 * Reset Adv Library error code, if any, and try
5988 * re-initializing the chip.
5989 */
5990 asc_dvc->err_code = 0;
5991 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
5992 status = AdvInitAsc38C1600Driver(asc_dvc);
5993 } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
5994 status = AdvInitAsc38C0800Driver(asc_dvc);
5995 } else {
5996 status = AdvInitAsc3550Driver(asc_dvc);
5997 }
5998
5999 /* Translate initialization return value to status value. */
6000 if (status == 0) {
6001 status = ADV_TRUE;
6002 } else {
6003 status = ADV_FALSE;
6004 }
6005
6006 /*
6007 * Restore the BIOS signature word.
6008 */
6009 AdvWriteWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, bios_sig);
6010
6011 /*
6012 * Restore per TID negotiated values.
6013 */
6014 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
6015 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
6016 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
6017 AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
6018 }
6019 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
6020 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
6021 AdvWriteByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
6022 max_cmd[tid]);
6023 }
6024
6025 return status;
6026}
6027
6028/*
6029 * adv_async_callback() - Adv Library asynchronous event callback function.
6030 */
6031static void adv_async_callback(ADV_DVC_VAR *adv_dvc_varp, uchar code)
6032{
6033 switch (code) {
6034 case ADV_ASYNC_SCSI_BUS_RESET_DET:
6035 /*
6036 * The firmware detected a SCSI Bus reset.
6037 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006038 ASC_DBG(0, "ADV_ASYNC_SCSI_BUS_RESET_DET\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006039 break;
6040
6041 case ADV_ASYNC_RDMA_FAILURE:
6042 /*
6043 * Handle RDMA failure by resetting the SCSI Bus and
6044 * possibly the chip if it is unresponsive. Log the error
6045 * with a unique code.
6046 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006047 ASC_DBG(0, "ADV_ASYNC_RDMA_FAILURE\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006048 AdvResetChipAndSB(adv_dvc_varp);
6049 break;
6050
6051 case ADV_HOST_SCSI_BUS_RESET:
6052 /*
6053 * Host generated SCSI bus reset occurred.
6054 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006055 ASC_DBG(0, "ADV_HOST_SCSI_BUS_RESET\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006056 break;
6057
6058 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006059 ASC_DBG(0, "unknown code 0x%x\n", code);
Matthew Wilcox51219352007-10-02 21:55:22 -04006060 break;
6061 }
6062}
6063
6064/*
6065 * adv_isr_callback() - Second Level Interrupt Handler called by AdvISR().
6066 *
6067 * Callback function for the Wide SCSI Adv Library.
6068 */
6069static void adv_isr_callback(ADV_DVC_VAR *adv_dvc_varp, ADV_SCSI_REQ_Q *scsiqp)
6070{
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006071 struct asc_board *boardp = adv_dvc_varp->drv_ptr;
6072 u32 srb_tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04006073 adv_req_t *reqp;
6074 adv_sgblk_t *sgblkp;
6075 struct scsi_cmnd *scp;
Matthew Wilcox51219352007-10-02 21:55:22 -04006076 ADV_DCNT resid_cnt;
Hannes Reinecke811ddc02015-04-24 13:18:22 +02006077 dma_addr_t sense_addr;
Matthew Wilcox51219352007-10-02 21:55:22 -04006078
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006079 ASC_DBG(1, "adv_dvc_varp 0x%p, scsiqp 0x%p\n",
6080 adv_dvc_varp, scsiqp);
Matthew Wilcox51219352007-10-02 21:55:22 -04006081 ASC_DBG_PRT_ADV_SCSI_REQ_Q(2, scsiqp);
6082
6083 /*
6084 * Get the adv_req_t structure for the command that has been
6085 * completed. The adv_req_t structure actually contains the
6086 * completed ADV_SCSI_REQ_Q structure.
6087 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006088 srb_tag = le32_to_cpu(scsiqp->srb_tag);
6089 scp = scsi_host_find_tag(boardp->shost, scsiqp->srb_tag);
Matthew Wilcox51219352007-10-02 21:55:22 -04006090
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006091 ASC_DBG(1, "scp 0x%p\n", scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04006092 if (scp == NULL) {
6093 ASC_PRINT
6094 ("adv_isr_callback: scp is NULL; adv_req_t dropped.\n");
6095 return;
6096 }
6097 ASC_DBG_PRT_CDB(2, scp->cmnd, scp->cmd_len);
6098
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006099 reqp = (adv_req_t *)scp->host_scribble;
6100 ASC_DBG(1, "reqp 0x%lx\n", (ulong)reqp);
6101 if (reqp == NULL) {
6102 ASC_PRINT("adv_isr_callback: reqp is NULL\n");
6103 return;
6104 }
6105 /*
6106 * Remove backreferences to avoid duplicate
6107 * command completions.
6108 */
6109 scp->host_scribble = NULL;
6110 reqp->cmndp = NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04006111
Hannes Reinecke9c17c622015-04-24 13:18:21 +02006112 ASC_STATS(boardp->shost, callback);
6113 ASC_DBG(1, "shost 0x%p\n", boardp->shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04006114
Hannes Reinecke811ddc02015-04-24 13:18:22 +02006115 sense_addr = le32_to_cpu(scsiqp->sense_addr);
6116 dma_unmap_single(boardp->dev, sense_addr,
6117 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
6118
Matthew Wilcox51219352007-10-02 21:55:22 -04006119 /*
6120 * 'done_status' contains the command's ending status.
6121 */
6122 switch (scsiqp->done_status) {
6123 case QD_NO_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006124 ASC_DBG(2, "QD_NO_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006125 scp->result = 0;
6126
6127 /*
6128 * Check for an underrun condition.
6129 *
6130 * If there was no error and an underrun condition, then
6131 * then return the number of underrun bytes.
6132 */
6133 resid_cnt = le32_to_cpu(scsiqp->data_cnt);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04006134 if (scsi_bufflen(scp) != 0 && resid_cnt != 0 &&
6135 resid_cnt <= scsi_bufflen(scp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006136 ASC_DBG(1, "underrun condition %lu bytes\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04006137 (ulong)resid_cnt);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04006138 scsi_set_resid(scp, resid_cnt);
Matthew Wilcox51219352007-10-02 21:55:22 -04006139 }
6140 break;
6141
6142 case QD_WITH_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006143 ASC_DBG(2, "QD_WITH_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006144 switch (scsiqp->host_status) {
6145 case QHSTA_NO_ERROR:
6146 if (scsiqp->scsi_status == SAM_STAT_CHECK_CONDITION) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006147 ASC_DBG(2, "SAM_STAT_CHECK_CONDITION\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006148 ASC_DBG_PRT_SENSE(2, scp->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09006149 SCSI_SENSE_BUFFERSIZE);
Matthew Wilcox51219352007-10-02 21:55:22 -04006150 /*
6151 * Note: The 'status_byte()' macro used by
6152 * target drivers defined in scsi.h shifts the
6153 * status byte returned by host drivers right
6154 * by 1 bit. This is why target drivers also
6155 * use right shifted status byte definitions.
6156 * For instance target drivers use
6157 * CHECK_CONDITION, defined to 0x1, instead of
6158 * the SCSI defined check condition value of
6159 * 0x2. Host drivers are supposed to return
6160 * the status byte as it is defined by SCSI.
6161 */
6162 scp->result = DRIVER_BYTE(DRIVER_SENSE) |
6163 STATUS_BYTE(scsiqp->scsi_status);
6164 } else {
6165 scp->result = STATUS_BYTE(scsiqp->scsi_status);
6166 }
6167 break;
6168
6169 default:
6170 /* Some other QHSTA error occurred. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006171 ASC_DBG(1, "host_status 0x%x\n", scsiqp->host_status);
Matthew Wilcox51219352007-10-02 21:55:22 -04006172 scp->result = HOST_BYTE(DID_BAD_TARGET);
6173 break;
6174 }
6175 break;
6176
6177 case QD_ABORTED_BY_HOST:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006178 ASC_DBG(1, "QD_ABORTED_BY_HOST\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006179 scp->result =
6180 HOST_BYTE(DID_ABORT) | STATUS_BYTE(scsiqp->scsi_status);
6181 break;
6182
6183 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006184 ASC_DBG(1, "done_status 0x%x\n", scsiqp->done_status);
Matthew Wilcox51219352007-10-02 21:55:22 -04006185 scp->result =
6186 HOST_BYTE(DID_ERROR) | STATUS_BYTE(scsiqp->scsi_status);
6187 break;
6188 }
6189
6190 /*
6191 * If the 'init_tidmask' bit isn't already set for the target and the
6192 * current request finished normally, then set the bit for the target
6193 * to indicate that a device is present.
6194 */
6195 if ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(scp->device->id)) == 0 &&
6196 scsiqp->done_status == QD_NO_ERROR &&
6197 scsiqp->host_status == QHSTA_NO_ERROR) {
6198 boardp->init_tidmask |= ADV_TID_TO_TIDMASK(scp->device->id);
6199 }
6200
6201 asc_scsi_done(scp);
6202
6203 /*
6204 * Free all 'adv_sgblk_t' structures allocated for the request.
6205 */
6206 while ((sgblkp = reqp->sgblkp) != NULL) {
6207 /* Remove 'sgblkp' from the request list. */
6208 reqp->sgblkp = sgblkp->next_sgblkp;
6209
6210 /* Add 'sgblkp' to the board free list. */
6211 sgblkp->next_sgblkp = boardp->adv_sgblkp;
6212 boardp->adv_sgblkp = sgblkp;
6213 }
6214
Matthew Wilcoxb352f922007-10-02 21:55:33 -04006215 ASC_DBG(1, "done\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04006216}
6217
6218/*
6219 * Adv Library Interrupt Service Routine
6220 *
6221 * This function is called by a driver's interrupt service routine.
6222 * The function disables and re-enables interrupts.
6223 *
6224 * When a microcode idle command is completed, the ADV_DVC_VAR
6225 * 'idle_cmd_done' field is set to ADV_TRUE.
6226 *
6227 * Note: AdvISR() can be called when interrupts are disabled or even
6228 * when there is no hardware interrupt condition present. It will
6229 * always check for completed idle commands and microcode requests.
6230 * This is an important feature that shouldn't be changed because it
6231 * allows commands to be completed from polling mode loops.
6232 *
6233 * Return:
6234 * ADV_TRUE(1) - interrupt was pending
6235 * ADV_FALSE(0) - no interrupt was pending
6236 */
6237static int AdvISR(ADV_DVC_VAR *asc_dvc)
6238{
6239 AdvPortAddr iop_base;
6240 uchar int_stat;
6241 ushort target_bit;
6242 ADV_CARR_T *free_carrp;
6243 ADV_VADDR irq_next_vpa;
6244 ADV_SCSI_REQ_Q *scsiq;
Hannes Reinecke4b47e462015-04-24 13:18:24 +02006245 adv_req_t *reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04006246
6247 iop_base = asc_dvc->iop_base;
6248
6249 /* Reading the register clears the interrupt. */
6250 int_stat = AdvReadByteRegister(iop_base, IOPB_INTR_STATUS_REG);
6251
6252 if ((int_stat & (ADV_INTR_STATUS_INTRA | ADV_INTR_STATUS_INTRB |
6253 ADV_INTR_STATUS_INTRC)) == 0) {
6254 return ADV_FALSE;
6255 }
6256
6257 /*
6258 * Notify the driver of an asynchronous microcode condition by
6259 * calling the adv_async_callback function. The function
6260 * is passed the microcode ASC_MC_INTRB_CODE byte value.
6261 */
6262 if (int_stat & ADV_INTR_STATUS_INTRB) {
6263 uchar intrb_code;
6264
6265 AdvReadByteLram(iop_base, ASC_MC_INTRB_CODE, intrb_code);
6266
6267 if (asc_dvc->chip_type == ADV_CHIP_ASC3550 ||
6268 asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
6269 if (intrb_code == ADV_ASYNC_CARRIER_READY_FAILURE &&
6270 asc_dvc->carr_pending_cnt != 0) {
6271 AdvWriteByteRegister(iop_base, IOPB_TICKLE,
6272 ADV_TICKLE_A);
6273 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
6274 AdvWriteByteRegister(iop_base,
6275 IOPB_TICKLE,
6276 ADV_TICKLE_NOP);
6277 }
6278 }
6279 }
6280
6281 adv_async_callback(asc_dvc, intrb_code);
6282 }
6283
6284 /*
6285 * Check if the IRQ stopper carrier contains a completed request.
6286 */
6287 while (((irq_next_vpa =
6288 le32_to_cpu(asc_dvc->irq_sp->next_vpa)) & ASC_RQ_DONE) != 0) {
6289 /*
6290 * Get a pointer to the newly completed ADV_SCSI_REQ_Q structure.
6291 * The RISC will have set 'areq_vpa' to a virtual address.
6292 *
6293 * The firmware will have copied the ASC_SCSI_REQ_Q.scsiq_ptr
6294 * field to the carrier ADV_CARR_T.areq_vpa field. The conversion
6295 * below complements the conversion of ASC_SCSI_REQ_Q.scsiq_ptr'
6296 * in AdvExeScsiQueue().
6297 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02006298 u32 pa_offset = le32_to_cpu(asc_dvc->irq_sp->areq_vpa);
6299 ASC_DBG(1, "irq_sp %p areq_vpa %u\n",
6300 asc_dvc->irq_sp, pa_offset);
6301 reqp = adv_get_reqp(asc_dvc, pa_offset);
6302 scsiq = &reqp->scsi_req_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04006303
6304 /*
6305 * Request finished with good status and the queue was not
6306 * DMAed to host memory by the firmware. Set all status fields
6307 * to indicate good status.
6308 */
6309 if ((irq_next_vpa & ASC_RQ_GOOD) != 0) {
6310 scsiq->done_status = QD_NO_ERROR;
6311 scsiq->host_status = scsiq->scsi_status = 0;
6312 scsiq->data_cnt = 0L;
6313 }
6314
6315 /*
6316 * Advance the stopper pointer to the next carrier
6317 * ignoring the lower four bits. Free the previous
6318 * stopper carrier.
6319 */
6320 free_carrp = asc_dvc->irq_sp;
Hannes Reinecke98b96a72015-04-24 13:18:23 +02006321 asc_dvc->irq_sp = adv_get_carrier(asc_dvc,
6322 ASC_GET_CARRP(irq_next_vpa));
Matthew Wilcox51219352007-10-02 21:55:22 -04006323
Hannes Reinecke98b96a72015-04-24 13:18:23 +02006324 free_carrp->next_vpa = asc_dvc->carr_freelist->carr_va;
Matthew Wilcox51219352007-10-02 21:55:22 -04006325 asc_dvc->carr_freelist = free_carrp;
6326 asc_dvc->carr_pending_cnt--;
6327
6328 target_bit = ADV_TID_TO_TIDMASK(scsiq->target_id);
6329
6330 /*
6331 * Clear request microcode control flag.
6332 */
6333 scsiq->cntl = 0;
6334
6335 /*
6336 * Notify the driver of the completed request by passing
6337 * the ADV_SCSI_REQ_Q pointer to its callback function.
6338 */
6339 scsiq->a_flag |= ADV_SCSIQ_DONE;
6340 adv_isr_callback(asc_dvc, scsiq);
6341 /*
6342 * Note: After the driver callback function is called, 'scsiq'
6343 * can no longer be referenced.
6344 *
6345 * Fall through and continue processing other completed
6346 * requests...
6347 */
6348 }
6349 return ADV_TRUE;
6350}
6351
6352static int AscSetLibErrorCode(ASC_DVC_VAR *asc_dvc, ushort err_code)
6353{
6354 if (asc_dvc->err_code == 0) {
6355 asc_dvc->err_code = err_code;
6356 AscWriteLramWord(asc_dvc->iop_base, ASCV_ASCDVC_ERR_CODE_W,
6357 err_code);
6358 }
6359 return err_code;
6360}
6361
6362static void AscAckInterrupt(PortAddr iop_base)
6363{
6364 uchar host_flag;
6365 uchar risc_flag;
6366 ushort loop;
6367
6368 loop = 0;
6369 do {
6370 risc_flag = AscReadLramByte(iop_base, ASCV_RISC_FLAG_B);
6371 if (loop++ > 0x7FFF) {
6372 break;
6373 }
6374 } while ((risc_flag & ASC_RISC_FLAG_GEN_INT) != 0);
6375 host_flag =
6376 AscReadLramByte(iop_base,
6377 ASCV_HOST_FLAG_B) & (~ASC_HOST_FLAG_ACK_INT);
6378 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
6379 (uchar)(host_flag | ASC_HOST_FLAG_ACK_INT));
6380 AscSetChipStatus(iop_base, CIW_INT_ACK);
6381 loop = 0;
6382 while (AscGetChipStatus(iop_base) & CSW_INT_PENDING) {
6383 AscSetChipStatus(iop_base, CIW_INT_ACK);
6384 if (loop++ > 3) {
6385 break;
6386 }
6387 }
6388 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
Matthew Wilcox51219352007-10-02 21:55:22 -04006389}
6390
6391static uchar AscGetSynPeriodIndex(ASC_DVC_VAR *asc_dvc, uchar syn_time)
6392{
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006393 const uchar *period_table;
Matthew Wilcox51219352007-10-02 21:55:22 -04006394 int max_index;
6395 int min_index;
6396 int i;
6397
6398 period_table = asc_dvc->sdtr_period_tbl;
6399 max_index = (int)asc_dvc->max_sdtr_index;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006400 min_index = (int)asc_dvc->min_sdtr_index;
Matthew Wilcox51219352007-10-02 21:55:22 -04006401 if ((syn_time <= period_table[max_index])) {
6402 for (i = min_index; i < (max_index - 1); i++) {
6403 if (syn_time <= period_table[i]) {
6404 return (uchar)i;
6405 }
6406 }
6407 return (uchar)max_index;
6408 } else {
6409 return (uchar)(max_index + 1);
6410 }
6411}
6412
6413static uchar
6414AscMsgOutSDTR(ASC_DVC_VAR *asc_dvc, uchar sdtr_period, uchar sdtr_offset)
6415{
6416 EXT_MSG sdtr_buf;
6417 uchar sdtr_period_index;
6418 PortAddr iop_base;
6419
6420 iop_base = asc_dvc->iop_base;
6421 sdtr_buf.msg_type = EXTENDED_MESSAGE;
6422 sdtr_buf.msg_len = MS_SDTR_LEN;
6423 sdtr_buf.msg_req = EXTENDED_SDTR;
6424 sdtr_buf.xfer_period = sdtr_period;
6425 sdtr_offset &= ASC_SYN_MAX_OFFSET;
6426 sdtr_buf.req_ack_offset = sdtr_offset;
6427 sdtr_period_index = AscGetSynPeriodIndex(asc_dvc, sdtr_period);
6428 if (sdtr_period_index <= asc_dvc->max_sdtr_index) {
6429 AscMemWordCopyPtrToLram(iop_base, ASCV_MSGOUT_BEG,
6430 (uchar *)&sdtr_buf,
6431 sizeof(EXT_MSG) >> 1);
6432 return ((sdtr_period_index << 4) | sdtr_offset);
6433 } else {
6434 sdtr_buf.req_ack_offset = 0;
6435 AscMemWordCopyPtrToLram(iop_base, ASCV_MSGOUT_BEG,
6436 (uchar *)&sdtr_buf,
6437 sizeof(EXT_MSG) >> 1);
6438 return 0;
6439 }
6440}
6441
6442static uchar
6443AscCalSDTRData(ASC_DVC_VAR *asc_dvc, uchar sdtr_period, uchar syn_offset)
6444{
6445 uchar byte;
6446 uchar sdtr_period_ix;
6447
6448 sdtr_period_ix = AscGetSynPeriodIndex(asc_dvc, sdtr_period);
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006449 if (sdtr_period_ix > asc_dvc->max_sdtr_index)
Matthew Wilcox51219352007-10-02 21:55:22 -04006450 return 0xFF;
Matthew Wilcox51219352007-10-02 21:55:22 -04006451 byte = (sdtr_period_ix << 4) | (syn_offset & ASC_SYN_MAX_OFFSET);
6452 return byte;
6453}
6454
6455static int AscSetChipSynRegAtID(PortAddr iop_base, uchar id, uchar sdtr_data)
6456{
6457 ASC_SCSI_BIT_ID_TYPE org_id;
6458 int i;
6459 int sta = TRUE;
6460
6461 AscSetBank(iop_base, 1);
6462 org_id = AscReadChipDvcID(iop_base);
6463 for (i = 0; i <= ASC_MAX_TID; i++) {
6464 if (org_id == (0x01 << i))
6465 break;
6466 }
6467 org_id = (ASC_SCSI_BIT_ID_TYPE) i;
6468 AscWriteChipDvcID(iop_base, id);
6469 if (AscReadChipDvcID(iop_base) == (0x01 << id)) {
6470 AscSetBank(iop_base, 0);
6471 AscSetChipSyn(iop_base, sdtr_data);
6472 if (AscGetChipSyn(iop_base) != sdtr_data) {
6473 sta = FALSE;
6474 }
6475 } else {
6476 sta = FALSE;
6477 }
6478 AscSetBank(iop_base, 1);
6479 AscWriteChipDvcID(iop_base, org_id);
6480 AscSetBank(iop_base, 0);
6481 return (sta);
6482}
6483
6484static void AscSetChipSDTR(PortAddr iop_base, uchar sdtr_data, uchar tid_no)
6485{
6486 AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
6487 AscPutMCodeSDTRDoneAtID(iop_base, tid_no, sdtr_data);
6488}
6489
6490static int AscIsrChipHalted(ASC_DVC_VAR *asc_dvc)
6491{
6492 EXT_MSG ext_msg;
6493 EXT_MSG out_msg;
6494 ushort halt_q_addr;
6495 int sdtr_accept;
6496 ushort int_halt_code;
6497 ASC_SCSI_BIT_ID_TYPE scsi_busy;
6498 ASC_SCSI_BIT_ID_TYPE target_id;
6499 PortAddr iop_base;
6500 uchar tag_code;
6501 uchar q_status;
6502 uchar halt_qp;
6503 uchar sdtr_data;
6504 uchar target_ix;
6505 uchar q_cntl, tid_no;
6506 uchar cur_dvc_qng;
6507 uchar asyn_sdtr;
6508 uchar scsi_status;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04006509 struct asc_board *boardp;
Matthew Wilcox51219352007-10-02 21:55:22 -04006510
6511 BUG_ON(!asc_dvc->drv_ptr);
6512 boardp = asc_dvc->drv_ptr;
6513
6514 iop_base = asc_dvc->iop_base;
6515 int_halt_code = AscReadLramWord(iop_base, ASCV_HALTCODE_W);
6516
6517 halt_qp = AscReadLramByte(iop_base, ASCV_CURCDB_B);
6518 halt_q_addr = ASC_QNO_TO_QADDR(halt_qp);
6519 target_ix = AscReadLramByte(iop_base,
6520 (ushort)(halt_q_addr +
6521 (ushort)ASC_SCSIQ_B_TARGET_IX));
6522 q_cntl = AscReadLramByte(iop_base,
6523 (ushort)(halt_q_addr + (ushort)ASC_SCSIQ_B_CNTL));
6524 tid_no = ASC_TIX_TO_TID(target_ix);
6525 target_id = (uchar)ASC_TID_TO_TARGET_ID(tid_no);
6526 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
6527 asyn_sdtr = ASYN_SDTR_DATA_FIX_PCI_REV_AB;
6528 } else {
6529 asyn_sdtr = 0;
6530 }
6531 if (int_halt_code == ASC_HALT_DISABLE_ASYN_USE_SYN_FIX) {
6532 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
6533 AscSetChipSDTR(iop_base, 0, tid_no);
6534 boardp->sdtr_data[tid_no] = 0;
6535 }
6536 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6537 return (0);
6538 } else if (int_halt_code == ASC_HALT_ENABLE_ASYN_USE_SYN_FIX) {
6539 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
6540 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
6541 boardp->sdtr_data[tid_no] = asyn_sdtr;
6542 }
6543 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6544 return (0);
6545 } else if (int_halt_code == ASC_HALT_EXTMSG_IN) {
6546 AscMemWordCopyPtrFromLram(iop_base,
6547 ASCV_MSGIN_BEG,
6548 (uchar *)&ext_msg,
6549 sizeof(EXT_MSG) >> 1);
6550
6551 if (ext_msg.msg_type == EXTENDED_MESSAGE &&
6552 ext_msg.msg_req == EXTENDED_SDTR &&
6553 ext_msg.msg_len == MS_SDTR_LEN) {
6554 sdtr_accept = TRUE;
6555 if ((ext_msg.req_ack_offset > ASC_SYN_MAX_OFFSET)) {
6556
6557 sdtr_accept = FALSE;
6558 ext_msg.req_ack_offset = ASC_SYN_MAX_OFFSET;
6559 }
6560 if ((ext_msg.xfer_period <
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006561 asc_dvc->sdtr_period_tbl[asc_dvc->min_sdtr_index])
Matthew Wilcox51219352007-10-02 21:55:22 -04006562 || (ext_msg.xfer_period >
6563 asc_dvc->sdtr_period_tbl[asc_dvc->
6564 max_sdtr_index])) {
6565 sdtr_accept = FALSE;
6566 ext_msg.xfer_period =
6567 asc_dvc->sdtr_period_tbl[asc_dvc->
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04006568 min_sdtr_index];
Matthew Wilcox51219352007-10-02 21:55:22 -04006569 }
6570 if (sdtr_accept) {
6571 sdtr_data =
6572 AscCalSDTRData(asc_dvc, ext_msg.xfer_period,
6573 ext_msg.req_ack_offset);
6574 if ((sdtr_data == 0xFF)) {
6575
6576 q_cntl |= QC_MSG_OUT;
6577 asc_dvc->init_sdtr &= ~target_id;
6578 asc_dvc->sdtr_done &= ~target_id;
6579 AscSetChipSDTR(iop_base, asyn_sdtr,
6580 tid_no);
6581 boardp->sdtr_data[tid_no] = asyn_sdtr;
6582 }
6583 }
6584 if (ext_msg.req_ack_offset == 0) {
6585
6586 q_cntl &= ~QC_MSG_OUT;
6587 asc_dvc->init_sdtr &= ~target_id;
6588 asc_dvc->sdtr_done &= ~target_id;
6589 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
6590 } else {
6591 if (sdtr_accept && (q_cntl & QC_MSG_OUT)) {
Matthew Wilcox51219352007-10-02 21:55:22 -04006592 q_cntl &= ~QC_MSG_OUT;
6593 asc_dvc->sdtr_done |= target_id;
6594 asc_dvc->init_sdtr |= target_id;
6595 asc_dvc->pci_fix_asyn_xfer &=
6596 ~target_id;
6597 sdtr_data =
6598 AscCalSDTRData(asc_dvc,
6599 ext_msg.xfer_period,
6600 ext_msg.
6601 req_ack_offset);
6602 AscSetChipSDTR(iop_base, sdtr_data,
6603 tid_no);
6604 boardp->sdtr_data[tid_no] = sdtr_data;
6605 } else {
Matthew Wilcox51219352007-10-02 21:55:22 -04006606 q_cntl |= QC_MSG_OUT;
6607 AscMsgOutSDTR(asc_dvc,
6608 ext_msg.xfer_period,
6609 ext_msg.req_ack_offset);
6610 asc_dvc->pci_fix_asyn_xfer &=
6611 ~target_id;
6612 sdtr_data =
6613 AscCalSDTRData(asc_dvc,
6614 ext_msg.xfer_period,
6615 ext_msg.
6616 req_ack_offset);
6617 AscSetChipSDTR(iop_base, sdtr_data,
6618 tid_no);
6619 boardp->sdtr_data[tid_no] = sdtr_data;
6620 asc_dvc->sdtr_done |= target_id;
6621 asc_dvc->init_sdtr |= target_id;
6622 }
6623 }
6624
6625 AscWriteLramByte(iop_base,
6626 (ushort)(halt_q_addr +
6627 (ushort)ASC_SCSIQ_B_CNTL),
6628 q_cntl);
6629 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6630 return (0);
6631 } else if (ext_msg.msg_type == EXTENDED_MESSAGE &&
6632 ext_msg.msg_req == EXTENDED_WDTR &&
6633 ext_msg.msg_len == MS_WDTR_LEN) {
6634
6635 ext_msg.wdtr_width = 0;
6636 AscMemWordCopyPtrToLram(iop_base,
6637 ASCV_MSGOUT_BEG,
6638 (uchar *)&ext_msg,
6639 sizeof(EXT_MSG) >> 1);
6640 q_cntl |= QC_MSG_OUT;
6641 AscWriteLramByte(iop_base,
6642 (ushort)(halt_q_addr +
6643 (ushort)ASC_SCSIQ_B_CNTL),
6644 q_cntl);
6645 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6646 return (0);
6647 } else {
6648
6649 ext_msg.msg_type = MESSAGE_REJECT;
6650 AscMemWordCopyPtrToLram(iop_base,
6651 ASCV_MSGOUT_BEG,
6652 (uchar *)&ext_msg,
6653 sizeof(EXT_MSG) >> 1);
6654 q_cntl |= QC_MSG_OUT;
6655 AscWriteLramByte(iop_base,
6656 (ushort)(halt_q_addr +
6657 (ushort)ASC_SCSIQ_B_CNTL),
6658 q_cntl);
6659 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6660 return (0);
6661 }
6662 } else if (int_halt_code == ASC_HALT_CHK_CONDITION) {
6663
6664 q_cntl |= QC_REQ_SENSE;
6665
6666 if ((asc_dvc->init_sdtr & target_id) != 0) {
6667
6668 asc_dvc->sdtr_done &= ~target_id;
6669
6670 sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
6671 q_cntl |= QC_MSG_OUT;
6672 AscMsgOutSDTR(asc_dvc,
6673 asc_dvc->
6674 sdtr_period_tbl[(sdtr_data >> 4) &
6675 (uchar)(asc_dvc->
6676 max_sdtr_index -
6677 1)],
6678 (uchar)(sdtr_data & (uchar)
6679 ASC_SYN_MAX_OFFSET));
6680 }
6681
6682 AscWriteLramByte(iop_base,
6683 (ushort)(halt_q_addr +
6684 (ushort)ASC_SCSIQ_B_CNTL), q_cntl);
6685
6686 tag_code = AscReadLramByte(iop_base,
6687 (ushort)(halt_q_addr + (ushort)
6688 ASC_SCSIQ_B_TAG_CODE));
6689 tag_code &= 0xDC;
6690 if ((asc_dvc->pci_fix_asyn_xfer & target_id)
6691 && !(asc_dvc->pci_fix_asyn_xfer_always & target_id)
6692 ) {
6693
6694 tag_code |= (ASC_TAG_FLAG_DISABLE_DISCONNECT
6695 | ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX);
6696
6697 }
6698 AscWriteLramByte(iop_base,
6699 (ushort)(halt_q_addr +
6700 (ushort)ASC_SCSIQ_B_TAG_CODE),
6701 tag_code);
6702
6703 q_status = AscReadLramByte(iop_base,
6704 (ushort)(halt_q_addr + (ushort)
6705 ASC_SCSIQ_B_STATUS));
6706 q_status |= (QS_READY | QS_BUSY);
6707 AscWriteLramByte(iop_base,
6708 (ushort)(halt_q_addr +
6709 (ushort)ASC_SCSIQ_B_STATUS),
6710 q_status);
6711
6712 scsi_busy = AscReadLramByte(iop_base, (ushort)ASCV_SCSIBUSY_B);
6713 scsi_busy &= ~target_id;
6714 AscWriteLramByte(iop_base, (ushort)ASCV_SCSIBUSY_B, scsi_busy);
6715
6716 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6717 return (0);
6718 } else if (int_halt_code == ASC_HALT_SDTR_REJECTED) {
6719
6720 AscMemWordCopyPtrFromLram(iop_base,
6721 ASCV_MSGOUT_BEG,
6722 (uchar *)&out_msg,
6723 sizeof(EXT_MSG) >> 1);
6724
6725 if ((out_msg.msg_type == EXTENDED_MESSAGE) &&
6726 (out_msg.msg_len == MS_SDTR_LEN) &&
6727 (out_msg.msg_req == EXTENDED_SDTR)) {
6728
6729 asc_dvc->init_sdtr &= ~target_id;
6730 asc_dvc->sdtr_done &= ~target_id;
6731 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
6732 boardp->sdtr_data[tid_no] = asyn_sdtr;
6733 }
6734 q_cntl &= ~QC_MSG_OUT;
6735 AscWriteLramByte(iop_base,
6736 (ushort)(halt_q_addr +
6737 (ushort)ASC_SCSIQ_B_CNTL), q_cntl);
6738 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6739 return (0);
6740 } else if (int_halt_code == ASC_HALT_SS_QUEUE_FULL) {
6741
6742 scsi_status = AscReadLramByte(iop_base,
6743 (ushort)((ushort)halt_q_addr +
6744 (ushort)
6745 ASC_SCSIQ_SCSI_STATUS));
6746 cur_dvc_qng =
6747 AscReadLramByte(iop_base,
6748 (ushort)((ushort)ASC_QADR_BEG +
6749 (ushort)target_ix));
6750 if ((cur_dvc_qng > 0) && (asc_dvc->cur_dvc_qng[tid_no] > 0)) {
6751
6752 scsi_busy = AscReadLramByte(iop_base,
6753 (ushort)ASCV_SCSIBUSY_B);
6754 scsi_busy |= target_id;
6755 AscWriteLramByte(iop_base,
6756 (ushort)ASCV_SCSIBUSY_B, scsi_busy);
6757 asc_dvc->queue_full_or_busy |= target_id;
6758
6759 if (scsi_status == SAM_STAT_TASK_SET_FULL) {
6760 if (cur_dvc_qng > ASC_MIN_TAGGED_CMD) {
6761 cur_dvc_qng -= 1;
6762 asc_dvc->max_dvc_qng[tid_no] =
6763 cur_dvc_qng;
6764
6765 AscWriteLramByte(iop_base,
6766 (ushort)((ushort)
6767 ASCV_MAX_DVC_QNG_BEG
6768 + (ushort)
6769 tid_no),
6770 cur_dvc_qng);
6771
6772 /*
6773 * Set the device queue depth to the
6774 * number of active requests when the
6775 * QUEUE FULL condition was encountered.
6776 */
6777 boardp->queue_full |= target_id;
6778 boardp->queue_full_cnt[tid_no] =
6779 cur_dvc_qng;
6780 }
6781 }
6782 }
6783 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6784 return (0);
6785 }
6786#if CC_VERY_LONG_SG_LIST
6787 else if (int_halt_code == ASC_HALT_HOST_COPY_SG_LIST_TO_RISC) {
6788 uchar q_no;
6789 ushort q_addr;
6790 uchar sg_wk_q_no;
6791 uchar first_sg_wk_q_no;
6792 ASC_SCSI_Q *scsiq; /* Ptr to driver request. */
6793 ASC_SG_HEAD *sg_head; /* Ptr to driver SG request. */
6794 ASC_SG_LIST_Q scsi_sg_q; /* Structure written to queue. */
6795 ushort sg_list_dwords;
6796 ushort sg_entry_cnt;
6797 uchar next_qp;
6798 int i;
6799
6800 q_no = AscReadLramByte(iop_base, (ushort)ASCV_REQ_SG_LIST_QP);
6801 if (q_no == ASC_QLINK_END)
6802 return 0;
6803
6804 q_addr = ASC_QNO_TO_QADDR(q_no);
6805
6806 /*
6807 * Convert the request's SRB pointer to a host ASC_SCSI_REQ
6808 * structure pointer using a macro provided by the driver.
6809 * The ASC_SCSI_REQ pointer provides a pointer to the
6810 * host ASC_SG_HEAD structure.
6811 */
6812 /* Read request's SRB pointer. */
6813 scsiq = (ASC_SCSI_Q *)
6814 ASC_SRB2SCSIQ(ASC_U32_TO_VADDR(AscReadLramDWord(iop_base,
6815 (ushort)
6816 (q_addr +
6817 ASC_SCSIQ_D_SRBPTR))));
6818
6819 /*
6820 * Get request's first and working SG queue.
6821 */
6822 sg_wk_q_no = AscReadLramByte(iop_base,
6823 (ushort)(q_addr +
6824 ASC_SCSIQ_B_SG_WK_QP));
6825
6826 first_sg_wk_q_no = AscReadLramByte(iop_base,
6827 (ushort)(q_addr +
6828 ASC_SCSIQ_B_FIRST_SG_WK_QP));
6829
6830 /*
6831 * Reset request's working SG queue back to the
6832 * first SG queue.
6833 */
6834 AscWriteLramByte(iop_base,
6835 (ushort)(q_addr +
6836 (ushort)ASC_SCSIQ_B_SG_WK_QP),
6837 first_sg_wk_q_no);
6838
6839 sg_head = scsiq->sg_head;
6840
6841 /*
6842 * Set sg_entry_cnt to the number of SG elements
6843 * that will be completed on this interrupt.
6844 *
6845 * Note: The allocated SG queues contain ASC_MAX_SG_LIST - 1
6846 * SG elements. The data_cnt and data_addr fields which
6847 * add 1 to the SG element capacity are not used when
6848 * restarting SG handling after a halt.
6849 */
6850 if (scsiq->remain_sg_entry_cnt > (ASC_MAX_SG_LIST - 1)) {
6851 sg_entry_cnt = ASC_MAX_SG_LIST - 1;
6852
6853 /*
6854 * Keep track of remaining number of SG elements that
6855 * will need to be handled on the next interrupt.
6856 */
6857 scsiq->remain_sg_entry_cnt -= (ASC_MAX_SG_LIST - 1);
6858 } else {
6859 sg_entry_cnt = scsiq->remain_sg_entry_cnt;
6860 scsiq->remain_sg_entry_cnt = 0;
6861 }
6862
6863 /*
6864 * Copy SG elements into the list of allocated SG queues.
6865 *
6866 * Last index completed is saved in scsiq->next_sg_index.
6867 */
6868 next_qp = first_sg_wk_q_no;
6869 q_addr = ASC_QNO_TO_QADDR(next_qp);
6870 scsi_sg_q.sg_head_qp = q_no;
6871 scsi_sg_q.cntl = QCSG_SG_XFER_LIST;
6872 for (i = 0; i < sg_head->queue_cnt; i++) {
6873 scsi_sg_q.seq_no = i + 1;
6874 if (sg_entry_cnt > ASC_SG_LIST_PER_Q) {
6875 sg_list_dwords = (uchar)(ASC_SG_LIST_PER_Q * 2);
6876 sg_entry_cnt -= ASC_SG_LIST_PER_Q;
6877 /*
6878 * After very first SG queue RISC FW uses next
6879 * SG queue first element then checks sg_list_cnt
6880 * against zero and then decrements, so set
6881 * sg_list_cnt 1 less than number of SG elements
6882 * in each SG queue.
6883 */
6884 scsi_sg_q.sg_list_cnt = ASC_SG_LIST_PER_Q - 1;
6885 scsi_sg_q.sg_cur_list_cnt =
6886 ASC_SG_LIST_PER_Q - 1;
6887 } else {
6888 /*
6889 * This is the last SG queue in the list of
6890 * allocated SG queues. If there are more
6891 * SG elements than will fit in the allocated
6892 * queues, then set the QCSG_SG_XFER_MORE flag.
6893 */
6894 if (scsiq->remain_sg_entry_cnt != 0) {
6895 scsi_sg_q.cntl |= QCSG_SG_XFER_MORE;
6896 } else {
6897 scsi_sg_q.cntl |= QCSG_SG_XFER_END;
6898 }
6899 /* equals sg_entry_cnt * 2 */
6900 sg_list_dwords = sg_entry_cnt << 1;
6901 scsi_sg_q.sg_list_cnt = sg_entry_cnt - 1;
6902 scsi_sg_q.sg_cur_list_cnt = sg_entry_cnt - 1;
6903 sg_entry_cnt = 0;
6904 }
6905
6906 scsi_sg_q.q_no = next_qp;
6907 AscMemWordCopyPtrToLram(iop_base,
6908 q_addr + ASC_SCSIQ_SGHD_CPY_BEG,
6909 (uchar *)&scsi_sg_q,
6910 sizeof(ASC_SG_LIST_Q) >> 1);
6911
6912 AscMemDWordCopyPtrToLram(iop_base,
6913 q_addr + ASC_SGQ_LIST_BEG,
6914 (uchar *)&sg_head->
6915 sg_list[scsiq->next_sg_index],
6916 sg_list_dwords);
6917
6918 scsiq->next_sg_index += ASC_SG_LIST_PER_Q;
6919
6920 /*
6921 * If the just completed SG queue contained the
6922 * last SG element, then no more SG queues need
6923 * to be written.
6924 */
6925 if (scsi_sg_q.cntl & QCSG_SG_XFER_END) {
6926 break;
6927 }
6928
6929 next_qp = AscReadLramByte(iop_base,
6930 (ushort)(q_addr +
6931 ASC_SCSIQ_B_FWD));
6932 q_addr = ASC_QNO_TO_QADDR(next_qp);
6933 }
6934
6935 /*
6936 * Clear the halt condition so the RISC will be restarted
6937 * after the return.
6938 */
6939 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6940 return (0);
6941 }
6942#endif /* CC_VERY_LONG_SG_LIST */
6943 return (0);
6944}
6945
6946/*
6947 * void
6948 * DvcGetQinfo(PortAddr iop_base, ushort s_addr, uchar *inbuf, int words)
6949 *
6950 * Calling/Exit State:
6951 * none
6952 *
6953 * Description:
6954 * Input an ASC_QDONE_INFO structure from the chip
6955 */
6956static void
6957DvcGetQinfo(PortAddr iop_base, ushort s_addr, uchar *inbuf, int words)
6958{
6959 int i;
6960 ushort word;
6961
6962 AscSetChipLramAddr(iop_base, s_addr);
6963 for (i = 0; i < 2 * words; i += 2) {
6964 if (i == 10) {
6965 continue;
6966 }
6967 word = inpw(iop_base + IOP_RAM_DATA);
6968 inbuf[i] = word & 0xff;
6969 inbuf[i + 1] = (word >> 8) & 0xff;
6970 }
6971 ASC_DBG_PRT_HEX(2, "DvcGetQinfo", inbuf, 2 * words);
6972}
6973
6974static uchar
6975_AscCopyLramScsiDoneQ(PortAddr iop_base,
6976 ushort q_addr,
6977 ASC_QDONE_INFO *scsiq, ASC_DCNT max_dma_count)
6978{
6979 ushort _val;
6980 uchar sg_queue_cnt;
6981
6982 DvcGetQinfo(iop_base,
6983 q_addr + ASC_SCSIQ_DONE_INFO_BEG,
6984 (uchar *)scsiq,
6985 (sizeof(ASC_SCSIQ_2) + sizeof(ASC_SCSIQ_3)) / 2);
6986
6987 _val = AscReadLramWord(iop_base,
6988 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_STATUS));
6989 scsiq->q_status = (uchar)_val;
6990 scsiq->q_no = (uchar)(_val >> 8);
6991 _val = AscReadLramWord(iop_base,
6992 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_CNTL));
6993 scsiq->cntl = (uchar)_val;
6994 sg_queue_cnt = (uchar)(_val >> 8);
6995 _val = AscReadLramWord(iop_base,
6996 (ushort)(q_addr +
6997 (ushort)ASC_SCSIQ_B_SENSE_LEN));
6998 scsiq->sense_len = (uchar)_val;
6999 scsiq->extra_bytes = (uchar)(_val >> 8);
7000
7001 /*
7002 * Read high word of remain bytes from alternate location.
7003 */
7004 scsiq->remain_bytes = (((ADV_DCNT)AscReadLramWord(iop_base,
7005 (ushort)(q_addr +
7006 (ushort)
7007 ASC_SCSIQ_W_ALT_DC1)))
7008 << 16);
7009 /*
7010 * Read low word of remain bytes from original location.
7011 */
7012 scsiq->remain_bytes += AscReadLramWord(iop_base,
7013 (ushort)(q_addr + (ushort)
7014 ASC_SCSIQ_DW_REMAIN_XFER_CNT));
7015
7016 scsiq->remain_bytes &= max_dma_count;
7017 return sg_queue_cnt;
7018}
7019
7020/*
7021 * asc_isr_callback() - Second Level Interrupt Handler called by AscISR().
7022 *
7023 * Interrupt callback function for the Narrow SCSI Asc Library.
7024 */
7025static void asc_isr_callback(ASC_DVC_VAR *asc_dvc_varp, ASC_QDONE_INFO *qdonep)
7026{
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007027 struct asc_board *boardp = asc_dvc_varp->drv_ptr;
7028 u32 srb_tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04007029 struct scsi_cmnd *scp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007030
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007031 ASC_DBG(1, "asc_dvc_varp 0x%p, qdonep 0x%p\n", asc_dvc_varp, qdonep);
Matthew Wilcox51219352007-10-02 21:55:22 -04007032 ASC_DBG_PRT_ASC_QDONE_INFO(2, qdonep);
7033
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007034 /*
7035 * Decrease the srb_tag by 1 to find the SCSI command
7036 */
7037 srb_tag = qdonep->d2.srb_tag - 1;
7038 scp = scsi_host_find_tag(boardp->shost, srb_tag);
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007039 if (!scp)
Matthew Wilcox51219352007-10-02 21:55:22 -04007040 return;
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007041
Matthew Wilcox51219352007-10-02 21:55:22 -04007042 ASC_DBG_PRT_CDB(2, scp->cmnd, scp->cmd_len);
7043
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007044 ASC_STATS(boardp->shost, callback);
Matthew Wilcox51219352007-10-02 21:55:22 -04007045
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007046 dma_unmap_single(boardp->dev, scp->SCp.dma_handle,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09007047 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
Matthew Wilcox51219352007-10-02 21:55:22 -04007048 /*
7049 * 'qdonep' contains the command's ending status.
7050 */
7051 switch (qdonep->d3.done_stat) {
7052 case QD_NO_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007053 ASC_DBG(2, "QD_NO_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007054 scp->result = 0;
7055
7056 /*
7057 * Check for an underrun condition.
7058 *
7059 * If there was no error and an underrun condition, then
7060 * return the number of underrun bytes.
7061 */
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007062 if (scsi_bufflen(scp) != 0 && qdonep->remain_bytes != 0 &&
7063 qdonep->remain_bytes <= scsi_bufflen(scp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007064 ASC_DBG(1, "underrun condition %u bytes\n",
Matthew Wilcox51219352007-10-02 21:55:22 -04007065 (unsigned)qdonep->remain_bytes);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007066 scsi_set_resid(scp, qdonep->remain_bytes);
Matthew Wilcox51219352007-10-02 21:55:22 -04007067 }
7068 break;
7069
7070 case QD_WITH_ERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007071 ASC_DBG(2, "QD_WITH_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007072 switch (qdonep->d3.host_stat) {
7073 case QHSTA_NO_ERROR:
7074 if (qdonep->d3.scsi_stat == SAM_STAT_CHECK_CONDITION) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007075 ASC_DBG(2, "SAM_STAT_CHECK_CONDITION\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007076 ASC_DBG_PRT_SENSE(2, scp->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09007077 SCSI_SENSE_BUFFERSIZE);
Matthew Wilcox51219352007-10-02 21:55:22 -04007078 /*
7079 * Note: The 'status_byte()' macro used by
7080 * target drivers defined in scsi.h shifts the
7081 * status byte returned by host drivers right
7082 * by 1 bit. This is why target drivers also
7083 * use right shifted status byte definitions.
7084 * For instance target drivers use
7085 * CHECK_CONDITION, defined to 0x1, instead of
7086 * the SCSI defined check condition value of
7087 * 0x2. Host drivers are supposed to return
7088 * the status byte as it is defined by SCSI.
7089 */
7090 scp->result = DRIVER_BYTE(DRIVER_SENSE) |
7091 STATUS_BYTE(qdonep->d3.scsi_stat);
7092 } else {
7093 scp->result = STATUS_BYTE(qdonep->d3.scsi_stat);
7094 }
7095 break;
7096
7097 default:
7098 /* QHSTA error occurred */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007099 ASC_DBG(1, "host_stat 0x%x\n", qdonep->d3.host_stat);
Matthew Wilcox51219352007-10-02 21:55:22 -04007100 scp->result = HOST_BYTE(DID_BAD_TARGET);
7101 break;
7102 }
7103 break;
7104
7105 case QD_ABORTED_BY_HOST:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007106 ASC_DBG(1, "QD_ABORTED_BY_HOST\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007107 scp->result =
7108 HOST_BYTE(DID_ABORT) | MSG_BYTE(qdonep->d3.
7109 scsi_msg) |
7110 STATUS_BYTE(qdonep->d3.scsi_stat);
7111 break;
7112
7113 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007114 ASC_DBG(1, "done_stat 0x%x\n", qdonep->d3.done_stat);
Matthew Wilcox51219352007-10-02 21:55:22 -04007115 scp->result =
7116 HOST_BYTE(DID_ERROR) | MSG_BYTE(qdonep->d3.
7117 scsi_msg) |
7118 STATUS_BYTE(qdonep->d3.scsi_stat);
7119 break;
7120 }
7121
7122 /*
7123 * If the 'init_tidmask' bit isn't already set for the target and the
7124 * current request finished normally, then set the bit for the target
7125 * to indicate that a device is present.
7126 */
7127 if ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(scp->device->id)) == 0 &&
7128 qdonep->d3.done_stat == QD_NO_ERROR &&
7129 qdonep->d3.host_stat == QHSTA_NO_ERROR) {
7130 boardp->init_tidmask |= ADV_TID_TO_TIDMASK(scp->device->id);
7131 }
7132
7133 asc_scsi_done(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04007134}
7135
7136static int AscIsrQDone(ASC_DVC_VAR *asc_dvc)
7137{
7138 uchar next_qp;
7139 uchar n_q_used;
7140 uchar sg_list_qp;
7141 uchar sg_queue_cnt;
7142 uchar q_cnt;
7143 uchar done_q_tail;
7144 uchar tid_no;
7145 ASC_SCSI_BIT_ID_TYPE scsi_busy;
7146 ASC_SCSI_BIT_ID_TYPE target_id;
7147 PortAddr iop_base;
7148 ushort q_addr;
7149 ushort sg_q_addr;
7150 uchar cur_target_qng;
7151 ASC_QDONE_INFO scsiq_buf;
7152 ASC_QDONE_INFO *scsiq;
7153 int false_overrun;
7154
7155 iop_base = asc_dvc->iop_base;
7156 n_q_used = 1;
7157 scsiq = (ASC_QDONE_INFO *)&scsiq_buf;
7158 done_q_tail = (uchar)AscGetVarDoneQTail(iop_base);
7159 q_addr = ASC_QNO_TO_QADDR(done_q_tail);
7160 next_qp = AscReadLramByte(iop_base,
7161 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_FWD));
7162 if (next_qp != ASC_QLINK_END) {
7163 AscPutVarDoneQTail(iop_base, next_qp);
7164 q_addr = ASC_QNO_TO_QADDR(next_qp);
7165 sg_queue_cnt = _AscCopyLramScsiDoneQ(iop_base, q_addr, scsiq,
7166 asc_dvc->max_dma_count);
7167 AscWriteLramByte(iop_base,
7168 (ushort)(q_addr +
7169 (ushort)ASC_SCSIQ_B_STATUS),
7170 (uchar)(scsiq->
7171 q_status & (uchar)~(QS_READY |
7172 QS_ABORTED)));
7173 tid_no = ASC_TIX_TO_TID(scsiq->d2.target_ix);
7174 target_id = ASC_TIX_TO_TARGET_ID(scsiq->d2.target_ix);
7175 if ((scsiq->cntl & QC_SG_HEAD) != 0) {
7176 sg_q_addr = q_addr;
7177 sg_list_qp = next_qp;
7178 for (q_cnt = 0; q_cnt < sg_queue_cnt; q_cnt++) {
7179 sg_list_qp = AscReadLramByte(iop_base,
7180 (ushort)(sg_q_addr
7181 + (ushort)
7182 ASC_SCSIQ_B_FWD));
7183 sg_q_addr = ASC_QNO_TO_QADDR(sg_list_qp);
7184 if (sg_list_qp == ASC_QLINK_END) {
7185 AscSetLibErrorCode(asc_dvc,
7186 ASCQ_ERR_SG_Q_LINKS);
7187 scsiq->d3.done_stat = QD_WITH_ERROR;
7188 scsiq->d3.host_stat =
7189 QHSTA_D_QDONE_SG_LIST_CORRUPTED;
7190 goto FATAL_ERR_QDONE;
7191 }
7192 AscWriteLramByte(iop_base,
7193 (ushort)(sg_q_addr + (ushort)
7194 ASC_SCSIQ_B_STATUS),
7195 QS_FREE);
7196 }
7197 n_q_used = sg_queue_cnt + 1;
7198 AscPutVarDoneQTail(iop_base, sg_list_qp);
7199 }
7200 if (asc_dvc->queue_full_or_busy & target_id) {
7201 cur_target_qng = AscReadLramByte(iop_base,
7202 (ushort)((ushort)
7203 ASC_QADR_BEG
7204 + (ushort)
7205 scsiq->d2.
7206 target_ix));
7207 if (cur_target_qng < asc_dvc->max_dvc_qng[tid_no]) {
7208 scsi_busy = AscReadLramByte(iop_base, (ushort)
7209 ASCV_SCSIBUSY_B);
7210 scsi_busy &= ~target_id;
7211 AscWriteLramByte(iop_base,
7212 (ushort)ASCV_SCSIBUSY_B,
7213 scsi_busy);
7214 asc_dvc->queue_full_or_busy &= ~target_id;
7215 }
7216 }
7217 if (asc_dvc->cur_total_qng >= n_q_used) {
7218 asc_dvc->cur_total_qng -= n_q_used;
7219 if (asc_dvc->cur_dvc_qng[tid_no] != 0) {
7220 asc_dvc->cur_dvc_qng[tid_no]--;
7221 }
7222 } else {
7223 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CUR_QNG);
7224 scsiq->d3.done_stat = QD_WITH_ERROR;
7225 goto FATAL_ERR_QDONE;
7226 }
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007227 if ((scsiq->d2.srb_tag == 0UL) ||
Matthew Wilcox51219352007-10-02 21:55:22 -04007228 ((scsiq->q_status & QS_ABORTED) != 0)) {
7229 return (0x11);
7230 } else if (scsiq->q_status == QS_DONE) {
7231 false_overrun = FALSE;
7232 if (scsiq->extra_bytes != 0) {
7233 scsiq->remain_bytes +=
7234 (ADV_DCNT)scsiq->extra_bytes;
7235 }
7236 if (scsiq->d3.done_stat == QD_WITH_ERROR) {
7237 if (scsiq->d3.host_stat ==
7238 QHSTA_M_DATA_OVER_RUN) {
7239 if ((scsiq->
7240 cntl & (QC_DATA_IN | QC_DATA_OUT))
7241 == 0) {
7242 scsiq->d3.done_stat =
7243 QD_NO_ERROR;
7244 scsiq->d3.host_stat =
7245 QHSTA_NO_ERROR;
7246 } else if (false_overrun) {
7247 scsiq->d3.done_stat =
7248 QD_NO_ERROR;
7249 scsiq->d3.host_stat =
7250 QHSTA_NO_ERROR;
7251 }
7252 } else if (scsiq->d3.host_stat ==
7253 QHSTA_M_HUNG_REQ_SCSI_BUS_RESET) {
7254 AscStopChip(iop_base);
7255 AscSetChipControl(iop_base,
7256 (uchar)(CC_SCSI_RESET
7257 | CC_HALT));
7258 udelay(60);
7259 AscSetChipControl(iop_base, CC_HALT);
7260 AscSetChipStatus(iop_base,
7261 CIW_CLR_SCSI_RESET_INT);
7262 AscSetChipStatus(iop_base, 0);
7263 AscSetChipControl(iop_base, 0);
7264 }
7265 }
7266 if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
7267 asc_isr_callback(asc_dvc, scsiq);
7268 } else {
7269 if ((AscReadLramByte(iop_base,
7270 (ushort)(q_addr + (ushort)
7271 ASC_SCSIQ_CDB_BEG))
7272 == START_STOP)) {
7273 asc_dvc->unit_not_ready &= ~target_id;
7274 if (scsiq->d3.done_stat != QD_NO_ERROR) {
7275 asc_dvc->start_motor &=
7276 ~target_id;
7277 }
7278 }
7279 }
7280 return (1);
7281 } else {
7282 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_Q_STATUS);
7283 FATAL_ERR_QDONE:
7284 if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
7285 asc_isr_callback(asc_dvc, scsiq);
7286 }
7287 return (0x80);
7288 }
7289 }
7290 return (0);
7291}
7292
7293static int AscISR(ASC_DVC_VAR *asc_dvc)
7294{
7295 ASC_CS_TYPE chipstat;
7296 PortAddr iop_base;
7297 ushort saved_ram_addr;
7298 uchar ctrl_reg;
7299 uchar saved_ctrl_reg;
7300 int int_pending;
7301 int status;
7302 uchar host_flag;
7303
7304 iop_base = asc_dvc->iop_base;
7305 int_pending = FALSE;
7306
7307 if (AscIsIntPending(iop_base) == 0)
7308 return int_pending;
7309
7310 if ((asc_dvc->init_state & ASC_INIT_STATE_END_LOAD_MC) == 0) {
7311 return ERR;
7312 }
7313 if (asc_dvc->in_critical_cnt != 0) {
7314 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_ON_CRITICAL);
7315 return ERR;
7316 }
7317 if (asc_dvc->is_in_int) {
7318 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_RE_ENTRY);
7319 return ERR;
7320 }
7321 asc_dvc->is_in_int = TRUE;
7322 ctrl_reg = AscGetChipControl(iop_base);
7323 saved_ctrl_reg = ctrl_reg & (~(CC_SCSI_RESET | CC_CHIP_RESET |
7324 CC_SINGLE_STEP | CC_DIAG | CC_TEST));
7325 chipstat = AscGetChipStatus(iop_base);
7326 if (chipstat & CSW_SCSI_RESET_LATCH) {
7327 if (!(asc_dvc->bus_type & (ASC_IS_VL | ASC_IS_EISA))) {
7328 int i = 10;
7329 int_pending = TRUE;
7330 asc_dvc->sdtr_done = 0;
7331 saved_ctrl_reg &= (uchar)(~CC_HALT);
7332 while ((AscGetChipStatus(iop_base) &
7333 CSW_SCSI_RESET_ACTIVE) && (i-- > 0)) {
7334 mdelay(100);
7335 }
7336 AscSetChipControl(iop_base, (CC_CHIP_RESET | CC_HALT));
7337 AscSetChipControl(iop_base, CC_HALT);
7338 AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
7339 AscSetChipStatus(iop_base, 0);
7340 chipstat = AscGetChipStatus(iop_base);
7341 }
7342 }
7343 saved_ram_addr = AscGetChipLramAddr(iop_base);
7344 host_flag = AscReadLramByte(iop_base,
7345 ASCV_HOST_FLAG_B) &
7346 (uchar)(~ASC_HOST_FLAG_IN_ISR);
7347 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
7348 (uchar)(host_flag | (uchar)ASC_HOST_FLAG_IN_ISR));
7349 if ((chipstat & CSW_INT_PENDING) || (int_pending)) {
7350 AscAckInterrupt(iop_base);
7351 int_pending = TRUE;
7352 if ((chipstat & CSW_HALTED) && (ctrl_reg & CC_SINGLE_STEP)) {
7353 if (AscIsrChipHalted(asc_dvc) == ERR) {
7354 goto ISR_REPORT_QDONE_FATAL_ERROR;
7355 } else {
7356 saved_ctrl_reg &= (uchar)(~CC_HALT);
7357 }
7358 } else {
7359 ISR_REPORT_QDONE_FATAL_ERROR:
7360 if ((asc_dvc->dvc_cntl & ASC_CNTL_INT_MULTI_Q) != 0) {
7361 while (((status =
7362 AscIsrQDone(asc_dvc)) & 0x01) != 0) {
7363 }
7364 } else {
7365 do {
7366 if ((status =
7367 AscIsrQDone(asc_dvc)) == 1) {
7368 break;
7369 }
7370 } while (status == 0x11);
7371 }
7372 if ((status & 0x80) != 0)
7373 int_pending = ERR;
7374 }
7375 }
7376 AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
7377 AscSetChipLramAddr(iop_base, saved_ram_addr);
7378 AscSetChipControl(iop_base, saved_ctrl_reg);
7379 asc_dvc->is_in_int = FALSE;
7380 return int_pending;
7381}
7382
7383/*
7384 * advansys_reset()
7385 *
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007386 * Reset the host associated with the command 'scp'.
Matthew Wilcox51219352007-10-02 21:55:22 -04007387 *
7388 * This function runs its own thread. Interrupts must be blocked but
7389 * sleeping is allowed and no locking other than for host structures is
7390 * required. Returns SUCCESS or FAILED.
7391 */
7392static int advansys_reset(struct scsi_cmnd *scp)
7393{
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007394 struct Scsi_Host *shost = scp->device->host;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007395 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007396 unsigned long flags;
Matthew Wilcox51219352007-10-02 21:55:22 -04007397 int status;
7398 int ret = SUCCESS;
7399
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007400 ASC_DBG(1, "0x%p\n", scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04007401
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007402 ASC_STATS(shost, reset);
Matthew Wilcox51219352007-10-02 21:55:22 -04007403
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007404 scmd_printk(KERN_INFO, scp, "SCSI host reset started...\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007405
7406 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007407 ASC_DVC_VAR *asc_dvc = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04007408
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007409 /* Reset the chip and SCSI bus. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007410 ASC_DBG(1, "before AscInitAsc1000Driver()\n");
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007411 status = AscInitAsc1000Driver(asc_dvc);
Matthew Wilcox51219352007-10-02 21:55:22 -04007412
Adam Buchbinder6070d812009-12-04 15:47:01 -05007413 /* Refer to ASC_IERR_* definitions for meaning of 'err_code'. */
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03007414 if (asc_dvc->err_code || !asc_dvc->overrun_dma) {
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007415 scmd_printk(KERN_INFO, scp, "SCSI host reset error: "
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -03007416 "0x%x, status: 0x%x\n", asc_dvc->err_code,
7417 status);
Matthew Wilcox51219352007-10-02 21:55:22 -04007418 ret = FAILED;
7419 } else if (status) {
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007420 scmd_printk(KERN_INFO, scp, "SCSI host reset warning: "
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007421 "0x%x\n", status);
Matthew Wilcox51219352007-10-02 21:55:22 -04007422 } else {
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007423 scmd_printk(KERN_INFO, scp, "SCSI host reset "
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007424 "successful\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007425 }
7426
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007427 ASC_DBG(1, "after AscInitAsc1000Driver()\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007428 } else {
7429 /*
Matthew Wilcox51219352007-10-02 21:55:22 -04007430 * If the suggest reset bus flags are set, then reset the bus.
7431 * Otherwise only reset the device.
7432 */
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007433 ADV_DVC_VAR *adv_dvc = &boardp->dvc_var.adv_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04007434
7435 /*
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007436 * Reset the chip and SCSI bus.
Matthew Wilcox51219352007-10-02 21:55:22 -04007437 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007438 ASC_DBG(1, "before AdvResetChipAndSB()\n");
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007439 switch (AdvResetChipAndSB(adv_dvc)) {
Matthew Wilcox51219352007-10-02 21:55:22 -04007440 case ASC_TRUE:
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007441 scmd_printk(KERN_INFO, scp, "SCSI host reset "
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007442 "successful\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007443 break;
7444 case ASC_FALSE:
7445 default:
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007446 scmd_printk(KERN_INFO, scp, "SCSI host reset error\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007447 ret = FAILED;
7448 break;
7449 }
Matthew Wilcoxf092d222007-10-02 21:55:34 -04007450 spin_lock_irqsave(shost->host_lock, flags);
Matthew Wilcox52fa0772007-10-02 21:55:26 -04007451 AdvISR(adv_dvc);
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +02007452 spin_unlock_irqrestore(shost->host_lock, flags);
Matthew Wilcox51219352007-10-02 21:55:22 -04007453 }
Matthew Wilcox51219352007-10-02 21:55:22 -04007454
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007455 ASC_DBG(1, "ret %d\n", ret);
Matthew Wilcox51219352007-10-02 21:55:22 -04007456
7457 return ret;
7458}
7459
7460/*
7461 * advansys_biosparam()
7462 *
7463 * Translate disk drive geometry if the "BIOS greater than 1 GB"
7464 * support is enabled for a drive.
7465 *
7466 * ip (information pointer) is an int array with the following definition:
7467 * ip[0]: heads
7468 * ip[1]: sectors
7469 * ip[2]: cylinders
7470 */
7471static int
7472advansys_biosparam(struct scsi_device *sdev, struct block_device *bdev,
7473 sector_t capacity, int ip[])
7474{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007475 struct asc_board *boardp = shost_priv(sdev->host);
Matthew Wilcox51219352007-10-02 21:55:22 -04007476
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007477 ASC_DBG(1, "begin\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007478 ASC_STATS(sdev->host, biosparam);
Matthew Wilcox51219352007-10-02 21:55:22 -04007479 if (ASC_NARROW_BOARD(boardp)) {
7480 if ((boardp->dvc_var.asc_dvc_var.dvc_cntl &
7481 ASC_CNTL_BIOS_GT_1GB) && capacity > 0x200000) {
7482 ip[0] = 255;
7483 ip[1] = 63;
7484 } else {
7485 ip[0] = 64;
7486 ip[1] = 32;
7487 }
7488 } else {
7489 if ((boardp->dvc_var.adv_dvc_var.bios_ctrl &
7490 BIOS_CTRL_EXTENDED_XLAT) && capacity > 0x200000) {
7491 ip[0] = 255;
7492 ip[1] = 63;
7493 } else {
7494 ip[0] = 64;
7495 ip[1] = 32;
7496 }
7497 }
7498 ip[2] = (unsigned long)capacity / (ip[0] * ip[1]);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007499 ASC_DBG(1, "end\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007500 return 0;
7501}
7502
7503/*
7504 * First-level interrupt handler.
7505 *
7506 * 'dev_id' is a pointer to the interrupting adapter's Scsi_Host.
7507 */
7508static irqreturn_t advansys_interrupt(int irq, void *dev_id)
7509{
Matthew Wilcox51219352007-10-02 21:55:22 -04007510 struct Scsi_Host *shost = dev_id;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007511 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox51219352007-10-02 21:55:22 -04007512 irqreturn_t result = IRQ_NONE;
7513
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007514 ASC_DBG(2, "boardp 0x%p\n", boardp);
Matthew Wilcoxf092d222007-10-02 21:55:34 -04007515 spin_lock(shost->host_lock);
Matthew Wilcox51219352007-10-02 21:55:22 -04007516 if (ASC_NARROW_BOARD(boardp)) {
7517 if (AscIsIntPending(shost->io_port)) {
7518 result = IRQ_HANDLED;
7519 ASC_STATS(shost, interrupt);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007520 ASC_DBG(1, "before AscISR()\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007521 AscISR(&boardp->dvc_var.asc_dvc_var);
7522 }
7523 } else {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007524 ASC_DBG(1, "before AdvISR()\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007525 if (AdvISR(&boardp->dvc_var.adv_dvc_var)) {
7526 result = IRQ_HANDLED;
7527 ASC_STATS(shost, interrupt);
7528 }
7529 }
Matthew Wilcoxf092d222007-10-02 21:55:34 -04007530 spin_unlock(shost->host_lock);
Matthew Wilcox51219352007-10-02 21:55:22 -04007531
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007532 ASC_DBG(1, "end\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007533 return result;
7534}
7535
7536static int AscHostReqRiscHalt(PortAddr iop_base)
7537{
7538 int count = 0;
7539 int sta = 0;
7540 uchar saved_stop_code;
7541
7542 if (AscIsChipHalted(iop_base))
7543 return (1);
7544 saved_stop_code = AscReadLramByte(iop_base, ASCV_STOP_CODE_B);
7545 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
7546 ASC_STOP_HOST_REQ_RISC_HALT | ASC_STOP_REQ_RISC_STOP);
7547 do {
7548 if (AscIsChipHalted(iop_base)) {
7549 sta = 1;
7550 break;
7551 }
7552 mdelay(100);
7553 } while (count++ < 20);
7554 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, saved_stop_code);
7555 return (sta);
7556}
7557
7558static int
7559AscSetRunChipSynRegAtID(PortAddr iop_base, uchar tid_no, uchar sdtr_data)
7560{
7561 int sta = FALSE;
7562
7563 if (AscHostReqRiscHalt(iop_base)) {
7564 sta = AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
7565 AscStartChip(iop_base);
7566 }
7567 return sta;
7568}
7569
7570static void AscAsyncFix(ASC_DVC_VAR *asc_dvc, struct scsi_device *sdev)
7571{
7572 char type = sdev->type;
7573 ASC_SCSI_BIT_ID_TYPE tid_bits = 1 << sdev->id;
7574
7575 if (!(asc_dvc->bug_fix_cntl & ASC_BUG_FIX_ASYN_USE_SYN))
7576 return;
7577 if (asc_dvc->init_sdtr & tid_bits)
7578 return;
7579
7580 if ((type == TYPE_ROM) && (strncmp(sdev->vendor, "HP ", 3) == 0))
7581 asc_dvc->pci_fix_asyn_xfer_always |= tid_bits;
7582
7583 asc_dvc->pci_fix_asyn_xfer |= tid_bits;
7584 if ((type == TYPE_PROCESSOR) || (type == TYPE_SCANNER) ||
7585 (type == TYPE_ROM) || (type == TYPE_TAPE))
7586 asc_dvc->pci_fix_asyn_xfer &= ~tid_bits;
7587
7588 if (asc_dvc->pci_fix_asyn_xfer & tid_bits)
7589 AscSetRunChipSynRegAtID(asc_dvc->iop_base, sdev->id,
7590 ASYN_SDTR_DATA_FIX_PCI_REV_AB);
7591}
7592
7593static void
7594advansys_narrow_slave_configure(struct scsi_device *sdev, ASC_DVC_VAR *asc_dvc)
7595{
7596 ASC_SCSI_BIT_ID_TYPE tid_bit = 1 << sdev->id;
7597 ASC_SCSI_BIT_ID_TYPE orig_use_tagged_qng = asc_dvc->use_tagged_qng;
7598
7599 if (sdev->lun == 0) {
7600 ASC_SCSI_BIT_ID_TYPE orig_init_sdtr = asc_dvc->init_sdtr;
7601 if ((asc_dvc->cfg->sdtr_enable & tid_bit) && sdev->sdtr) {
7602 asc_dvc->init_sdtr |= tid_bit;
7603 } else {
7604 asc_dvc->init_sdtr &= ~tid_bit;
7605 }
7606
7607 if (orig_init_sdtr != asc_dvc->init_sdtr)
7608 AscAsyncFix(asc_dvc, sdev);
7609 }
7610
7611 if (sdev->tagged_supported) {
7612 if (asc_dvc->cfg->cmd_qng_enabled & tid_bit) {
7613 if (sdev->lun == 0) {
7614 asc_dvc->cfg->can_tagged_qng |= tid_bit;
7615 asc_dvc->use_tagged_qng |= tid_bit;
7616 }
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01007617 scsi_change_queue_depth(sdev,
Matthew Wilcox51219352007-10-02 21:55:22 -04007618 asc_dvc->max_dvc_qng[sdev->id]);
7619 }
7620 } else {
7621 if (sdev->lun == 0) {
7622 asc_dvc->cfg->can_tagged_qng &= ~tid_bit;
7623 asc_dvc->use_tagged_qng &= ~tid_bit;
7624 }
Matthew Wilcox51219352007-10-02 21:55:22 -04007625 }
7626
7627 if ((sdev->lun == 0) &&
7628 (orig_use_tagged_qng != asc_dvc->use_tagged_qng)) {
7629 AscWriteLramByte(asc_dvc->iop_base, ASCV_DISC_ENABLE_B,
7630 asc_dvc->cfg->disc_enable);
7631 AscWriteLramByte(asc_dvc->iop_base, ASCV_USE_TAGGED_QNG_B,
7632 asc_dvc->use_tagged_qng);
7633 AscWriteLramByte(asc_dvc->iop_base, ASCV_CAN_TAGGED_QNG_B,
7634 asc_dvc->cfg->can_tagged_qng);
7635
7636 asc_dvc->max_dvc_qng[sdev->id] =
7637 asc_dvc->cfg->max_tag_qng[sdev->id];
7638 AscWriteLramByte(asc_dvc->iop_base,
7639 (ushort)(ASCV_MAX_DVC_QNG_BEG + sdev->id),
7640 asc_dvc->max_dvc_qng[sdev->id]);
7641 }
7642}
7643
7644/*
7645 * Wide Transfers
7646 *
7647 * If the EEPROM enabled WDTR for the device and the device supports wide
7648 * bus (16 bit) transfers, then turn on the device's 'wdtr_able' bit and
7649 * write the new value to the microcode.
7650 */
7651static void
7652advansys_wide_enable_wdtr(AdvPortAddr iop_base, unsigned short tidmask)
7653{
7654 unsigned short cfg_word;
7655 AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, cfg_word);
7656 if ((cfg_word & tidmask) != 0)
7657 return;
7658
7659 cfg_word |= tidmask;
7660 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, cfg_word);
7661
7662 /*
7663 * Clear the microcode SDTR and WDTR negotiation done indicators for
7664 * the target to cause it to negotiate with the new setting set above.
7665 * WDTR when accepted causes the target to enter asynchronous mode, so
7666 * SDTR must be negotiated.
7667 */
7668 AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7669 cfg_word &= ~tidmask;
7670 AdvWriteWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7671 AdvReadWordLram(iop_base, ASC_MC_WDTR_DONE, cfg_word);
7672 cfg_word &= ~tidmask;
7673 AdvWriteWordLram(iop_base, ASC_MC_WDTR_DONE, cfg_word);
7674}
7675
7676/*
7677 * Synchronous Transfers
7678 *
7679 * If the EEPROM enabled SDTR for the device and the device
7680 * supports synchronous transfers, then turn on the device's
7681 * 'sdtr_able' bit. Write the new value to the microcode.
7682 */
7683static void
7684advansys_wide_enable_sdtr(AdvPortAddr iop_base, unsigned short tidmask)
7685{
7686 unsigned short cfg_word;
7687 AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, cfg_word);
7688 if ((cfg_word & tidmask) != 0)
7689 return;
7690
7691 cfg_word |= tidmask;
7692 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, cfg_word);
7693
7694 /*
7695 * Clear the microcode "SDTR negotiation" done indicator for the
7696 * target to cause it to negotiate with the new setting set above.
7697 */
7698 AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7699 cfg_word &= ~tidmask;
7700 AdvWriteWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
7701}
7702
7703/*
7704 * PPR (Parallel Protocol Request) Capable
7705 *
7706 * If the device supports DT mode, then it must be PPR capable.
7707 * The PPR message will be used in place of the SDTR and WDTR
7708 * messages to negotiate synchronous speed and offset, transfer
7709 * width, and protocol options.
7710 */
7711static void advansys_wide_enable_ppr(ADV_DVC_VAR *adv_dvc,
7712 AdvPortAddr iop_base, unsigned short tidmask)
7713{
7714 AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, adv_dvc->ppr_able);
7715 adv_dvc->ppr_able |= tidmask;
7716 AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, adv_dvc->ppr_able);
7717}
7718
7719static void
7720advansys_wide_slave_configure(struct scsi_device *sdev, ADV_DVC_VAR *adv_dvc)
7721{
7722 AdvPortAddr iop_base = adv_dvc->iop_base;
7723 unsigned short tidmask = 1 << sdev->id;
7724
7725 if (sdev->lun == 0) {
7726 /*
7727 * Handle WDTR, SDTR, and Tag Queuing. If the feature
7728 * is enabled in the EEPROM and the device supports the
7729 * feature, then enable it in the microcode.
7730 */
7731
7732 if ((adv_dvc->wdtr_able & tidmask) && sdev->wdtr)
7733 advansys_wide_enable_wdtr(iop_base, tidmask);
7734 if ((adv_dvc->sdtr_able & tidmask) && sdev->sdtr)
7735 advansys_wide_enable_sdtr(iop_base, tidmask);
7736 if (adv_dvc->chip_type == ADV_CHIP_ASC38C1600 && sdev->ppr)
7737 advansys_wide_enable_ppr(adv_dvc, iop_base, tidmask);
7738
7739 /*
7740 * Tag Queuing is disabled for the BIOS which runs in polled
7741 * mode and would see no benefit from Tag Queuing. Also by
7742 * disabling Tag Queuing in the BIOS devices with Tag Queuing
7743 * bugs will at least work with the BIOS.
7744 */
7745 if ((adv_dvc->tagqng_able & tidmask) &&
7746 sdev->tagged_supported) {
7747 unsigned short cfg_word;
7748 AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, cfg_word);
7749 cfg_word |= tidmask;
7750 AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
7751 cfg_word);
7752 AdvWriteByteLram(iop_base,
7753 ASC_MC_NUMBER_OF_MAX_CMD + sdev->id,
7754 adv_dvc->max_dvc_qng);
7755 }
7756 }
7757
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01007758 if ((adv_dvc->tagqng_able & tidmask) && sdev->tagged_supported)
7759 scsi_change_queue_depth(sdev, adv_dvc->max_dvc_qng);
Matthew Wilcox51219352007-10-02 21:55:22 -04007760}
7761
7762/*
7763 * Set the number of commands to queue per device for the
7764 * specified host adapter.
7765 */
7766static int advansys_slave_configure(struct scsi_device *sdev)
7767{
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007768 struct asc_board *boardp = shost_priv(sdev->host);
Matthew Wilcox51219352007-10-02 21:55:22 -04007769
Matthew Wilcox51219352007-10-02 21:55:22 -04007770 if (ASC_NARROW_BOARD(boardp))
7771 advansys_narrow_slave_configure(sdev,
7772 &boardp->dvc_var.asc_dvc_var);
7773 else
7774 advansys_wide_slave_configure(sdev,
7775 &boardp->dvc_var.adv_dvc_var);
7776
7777 return 0;
7778}
7779
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007780static __le32 advansys_get_sense_buffer_dma(struct scsi_cmnd *scp)
7781{
7782 struct asc_board *board = shost_priv(scp->device->host);
7783 scp->SCp.dma_handle = dma_map_single(board->dev, scp->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09007784 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007785 dma_cache_sync(board->dev, scp->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09007786 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007787 return cpu_to_le32(scp->SCp.dma_handle);
7788}
7789
Matthew Wilcoxd2411492007-10-02 21:55:31 -04007790static int asc_build_req(struct asc_board *boardp, struct scsi_cmnd *scp,
Matthew Wilcox05848b62007-10-02 21:55:25 -04007791 struct asc_scsi_q *asc_scsi_q)
Matthew Wilcox51219352007-10-02 21:55:22 -04007792{
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007793 struct asc_dvc_var *asc_dvc = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007794 int use_sg;
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007795 u32 srb_tag;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007796
Matthew Wilcox05848b62007-10-02 21:55:25 -04007797 memset(asc_scsi_q, 0, sizeof(*asc_scsi_q));
Matthew Wilcox51219352007-10-02 21:55:22 -04007798
7799 /*
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007800 * Set the srb_tag to the command tag + 1, as
7801 * srb_tag '0' is used internally by the chip.
Matthew Wilcox51219352007-10-02 21:55:22 -04007802 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02007803 srb_tag = scp->request->tag + 1;
7804 asc_scsi_q->q2.srb_tag = srb_tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04007805
7806 /*
7807 * Build the ASC_SCSI_Q request.
7808 */
Matthew Wilcox05848b62007-10-02 21:55:25 -04007809 asc_scsi_q->cdbptr = &scp->cmnd[0];
7810 asc_scsi_q->q2.cdb_len = scp->cmd_len;
7811 asc_scsi_q->q1.target_id = ASC_TID_TO_TARGET_ID(scp->device->id);
7812 asc_scsi_q->q1.target_lun = scp->device->lun;
7813 asc_scsi_q->q2.target_ix =
Matthew Wilcox51219352007-10-02 21:55:22 -04007814 ASC_TIDLUN_TO_IX(scp->device->id, scp->device->lun);
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007815 asc_scsi_q->q1.sense_addr = advansys_get_sense_buffer_dma(scp);
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09007816 asc_scsi_q->q1.sense_len = SCSI_SENSE_BUFFERSIZE;
Matthew Wilcox51219352007-10-02 21:55:22 -04007817
7818 /*
7819 * If there are any outstanding requests for the current target,
7820 * then every 255th request send an ORDERED request. This heuristic
7821 * tries to retain the benefit of request sorting while preventing
7822 * request starvation. 255 is the max number of tags or pending commands
7823 * a device may have outstanding.
7824 *
7825 * The request count is incremented below for every successfully
7826 * started request.
7827 *
7828 */
Matthew Wilcoxb249c7f2007-10-02 21:55:40 -04007829 if ((asc_dvc->cur_dvc_qng[scp->device->id] > 0) &&
Matthew Wilcox51219352007-10-02 21:55:22 -04007830 (boardp->reqcnt[scp->device->id] % 255) == 0) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08007831 asc_scsi_q->q2.tag_code = ORDERED_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04007832 } else {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08007833 asc_scsi_q->q2.tag_code = SIMPLE_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04007834 }
7835
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007836 /* Build ASC_SCSI_Q */
7837 use_sg = scsi_dma_map(scp);
7838 if (use_sg != 0) {
Matthew Wilcox51219352007-10-02 21:55:22 -04007839 int sgcnt;
Matthew Wilcox51219352007-10-02 21:55:22 -04007840 struct scatterlist *slp;
Matthew Wilcox05848b62007-10-02 21:55:25 -04007841 struct asc_sg_head *asc_sg_head;
Matthew Wilcox51219352007-10-02 21:55:22 -04007842
Matthew Wilcox51219352007-10-02 21:55:22 -04007843 if (use_sg > scp->device->host->sg_tablesize) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04007844 scmd_printk(KERN_ERR, scp, "use_sg %d > "
7845 "sg_tablesize %d\n", use_sg,
7846 scp->device->host->sg_tablesize);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007847 scsi_dma_unmap(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04007848 scp->result = HOST_BYTE(DID_ERROR);
7849 return ASC_ERROR;
7850 }
7851
Matthew Wilcox05848b62007-10-02 21:55:25 -04007852 asc_sg_head = kzalloc(sizeof(asc_scsi_q->sg_head) +
7853 use_sg * sizeof(struct asc_sg_list), GFP_ATOMIC);
7854 if (!asc_sg_head) {
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007855 scsi_dma_unmap(scp);
Matthew Wilcox05848b62007-10-02 21:55:25 -04007856 scp->result = HOST_BYTE(DID_SOFT_ERROR);
7857 return ASC_ERROR;
7858 }
Matthew Wilcox51219352007-10-02 21:55:22 -04007859
Matthew Wilcox05848b62007-10-02 21:55:25 -04007860 asc_scsi_q->q1.cntl |= QC_SG_HEAD;
7861 asc_scsi_q->sg_head = asc_sg_head;
7862 asc_scsi_q->q1.data_cnt = 0;
7863 asc_scsi_q->q1.data_addr = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04007864 /* This is a byte value, otherwise it would need to be swapped. */
Matthew Wilcox05848b62007-10-02 21:55:25 -04007865 asc_sg_head->entry_cnt = asc_scsi_q->q1.sg_queue_cnt = use_sg;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007866 ASC_STATS_ADD(scp->device->host, xfer_elem,
Matthew Wilcox05848b62007-10-02 21:55:25 -04007867 asc_sg_head->entry_cnt);
Matthew Wilcox51219352007-10-02 21:55:22 -04007868
7869 /*
7870 * Convert scatter-gather list into ASC_SG_HEAD list.
7871 */
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007872 scsi_for_each_sg(scp, slp, use_sg, sgcnt) {
Matthew Wilcox05848b62007-10-02 21:55:25 -04007873 asc_sg_head->sg_list[sgcnt].addr =
Matthew Wilcox51219352007-10-02 21:55:22 -04007874 cpu_to_le32(sg_dma_address(slp));
Matthew Wilcox05848b62007-10-02 21:55:25 -04007875 asc_sg_head->sg_list[sgcnt].bytes =
Matthew Wilcox51219352007-10-02 21:55:22 -04007876 cpu_to_le32(sg_dma_len(slp));
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007877 ASC_STATS_ADD(scp->device->host, xfer_sect,
7878 DIV_ROUND_UP(sg_dma_len(slp), 512));
Matthew Wilcox51219352007-10-02 21:55:22 -04007879 }
7880 }
7881
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007882 ASC_STATS(scp->device->host, xfer_cnt);
7883
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007884 ASC_DBG_PRT_ASC_SCSI_Q(2, asc_scsi_q);
Matthew Wilcox51219352007-10-02 21:55:22 -04007885 ASC_DBG_PRT_CDB(1, scp->cmnd, scp->cmd_len);
7886
7887 return ASC_NOERROR;
7888}
7889
7890/*
7891 * Build scatter-gather list for Adv Library (Wide Board).
7892 *
7893 * Additional ADV_SG_BLOCK structures will need to be allocated
7894 * if the total number of scatter-gather elements exceeds
7895 * NO_OF_SG_PER_BLOCK (15). The ADV_SG_BLOCK structures are
7896 * assumed to be physically contiguous.
7897 *
7898 * Return:
7899 * ADV_SUCCESS(1) - SG List successfully created
7900 * ADV_ERROR(-1) - SG List creation failed
7901 */
7902static int
Hannes Reinecke4b47e462015-04-24 13:18:24 +02007903adv_get_sglist(struct asc_board *boardp, adv_req_t *reqp,
7904 ADV_SCSI_REQ_Q *scsiqp, struct scsi_cmnd *scp, int use_sg)
Matthew Wilcox51219352007-10-02 21:55:22 -04007905{
7906 adv_sgblk_t *sgblkp;
Matthew Wilcox51219352007-10-02 21:55:22 -04007907 struct scatterlist *slp;
7908 int sg_elem_cnt;
7909 ADV_SG_BLOCK *sg_block, *prev_sg_block;
7910 ADV_PADDR sg_block_paddr;
7911 int i;
7912
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007913 slp = scsi_sglist(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04007914 sg_elem_cnt = use_sg;
7915 prev_sg_block = NULL;
7916 reqp->sgblkp = NULL;
7917
7918 for (;;) {
7919 /*
7920 * Allocate a 'adv_sgblk_t' structure from the board free
7921 * list. One 'adv_sgblk_t' structure holds NO_OF_SG_PER_BLOCK
7922 * (15) scatter-gather elements.
7923 */
7924 if ((sgblkp = boardp->adv_sgblkp) == NULL) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04007925 ASC_DBG(1, "no free adv_sgblk_t\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04007926 ASC_STATS(scp->device->host, adv_build_nosg);
7927
7928 /*
7929 * Allocation failed. Free 'adv_sgblk_t' structures
7930 * already allocated for the request.
7931 */
7932 while ((sgblkp = reqp->sgblkp) != NULL) {
7933 /* Remove 'sgblkp' from the request list. */
7934 reqp->sgblkp = sgblkp->next_sgblkp;
7935
7936 /* Add 'sgblkp' to the board free list. */
7937 sgblkp->next_sgblkp = boardp->adv_sgblkp;
7938 boardp->adv_sgblkp = sgblkp;
7939 }
7940 return ASC_BUSY;
7941 }
7942
7943 /* Complete 'adv_sgblk_t' board allocation. */
7944 boardp->adv_sgblkp = sgblkp->next_sgblkp;
7945 sgblkp->next_sgblkp = NULL;
7946
7947 /*
7948 * Get 8 byte aligned virtual and physical addresses
7949 * for the allocated ADV_SG_BLOCK structure.
7950 */
7951 sg_block = (ADV_SG_BLOCK *)ADV_8BALIGN(&sgblkp->sg_block);
7952 sg_block_paddr = virt_to_bus(sg_block);
7953
7954 /*
7955 * Check if this is the first 'adv_sgblk_t' for the
7956 * request.
7957 */
7958 if (reqp->sgblkp == NULL) {
7959 /* Request's first scatter-gather block. */
7960 reqp->sgblkp = sgblkp;
7961
7962 /*
7963 * Set ADV_SCSI_REQ_T ADV_SG_BLOCK virtual and physical
7964 * address pointers.
7965 */
7966 scsiqp->sg_list_ptr = sg_block;
7967 scsiqp->sg_real_addr = cpu_to_le32(sg_block_paddr);
7968 } else {
7969 /* Request's second or later scatter-gather block. */
7970 sgblkp->next_sgblkp = reqp->sgblkp;
7971 reqp->sgblkp = sgblkp;
7972
7973 /*
7974 * Point the previous ADV_SG_BLOCK structure to
7975 * the newly allocated ADV_SG_BLOCK structure.
7976 */
7977 prev_sg_block->sg_ptr = cpu_to_le32(sg_block_paddr);
7978 }
7979
7980 for (i = 0; i < NO_OF_SG_PER_BLOCK; i++) {
7981 sg_block->sg_list[i].sg_addr =
7982 cpu_to_le32(sg_dma_address(slp));
7983 sg_block->sg_list[i].sg_count =
7984 cpu_to_le32(sg_dma_len(slp));
Matthew Wilcox52c334e2007-10-02 21:55:39 -04007985 ASC_STATS_ADD(scp->device->host, xfer_sect,
7986 DIV_ROUND_UP(sg_dma_len(slp), 512));
Matthew Wilcox51219352007-10-02 21:55:22 -04007987
7988 if (--sg_elem_cnt == 0) { /* Last ADV_SG_BLOCK and scatter-gather entry. */
7989 sg_block->sg_cnt = i + 1;
7990 sg_block->sg_ptr = 0L; /* Last ADV_SG_BLOCK in list. */
7991 return ADV_SUCCESS;
7992 }
7993 slp++;
7994 }
7995 sg_block->sg_cnt = NO_OF_SG_PER_BLOCK;
7996 prev_sg_block = sg_block;
7997 }
7998}
7999
8000/*
8001 * Build a request structure for the Adv Library (Wide Board).
8002 *
8003 * If an adv_req_t can not be allocated to issue the request,
8004 * then return ASC_BUSY. If an error occurs, then return ASC_ERROR.
8005 *
8006 * Multi-byte fields in the ASC_SCSI_REQ_Q that are used by the
8007 * microcode for DMA addresses or math operations are byte swapped
8008 * to little-endian order.
8009 */
8010static int
Matthew Wilcoxd2411492007-10-02 21:55:31 -04008011adv_build_req(struct asc_board *boardp, struct scsi_cmnd *scp,
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008012 adv_req_t **adv_reqpp)
Matthew Wilcox51219352007-10-02 21:55:22 -04008013{
Hannes Reinecke9c17c622015-04-24 13:18:21 +02008014 u32 srb_tag = scp->request->tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04008015 adv_req_t *reqp;
8016 ADV_SCSI_REQ_Q *scsiqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04008017 int ret;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008018 int use_sg;
Hannes Reinecke811ddc02015-04-24 13:18:22 +02008019 dma_addr_t sense_addr;
Matthew Wilcox51219352007-10-02 21:55:22 -04008020
8021 /*
8022 * Allocate an adv_req_t structure from the board to execute
8023 * the command.
8024 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02008025 reqp = &boardp->adv_reqp[srb_tag];
8026 if (reqp->cmndp && reqp->cmndp != scp ) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008027 ASC_DBG(1, "no free adv_req_t\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008028 ASC_STATS(scp->device->host, adv_build_noreq);
8029 return ASC_BUSY;
Matthew Wilcox51219352007-10-02 21:55:22 -04008030 }
8031
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008032 reqp->req_addr = boardp->adv_reqp_addr + (srb_tag * sizeof(adv_req_t));
8033
8034 scsiqp = &reqp->scsi_req_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04008035
8036 /*
8037 * Initialize the structure.
8038 */
8039 scsiqp->cntl = scsiqp->scsi_cntl = scsiqp->done_status = 0;
8040
8041 /*
Hannes Reinecke9c17c622015-04-24 13:18:21 +02008042 * Set the srb_tag to the command tag.
Matthew Wilcox51219352007-10-02 21:55:22 -04008043 */
Hannes Reinecke9c17c622015-04-24 13:18:21 +02008044 scsiqp->srb_tag = srb_tag;
Matthew Wilcox51219352007-10-02 21:55:22 -04008045
8046 /*
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008047 * Set 'host_scribble' to point to the adv_req_t structure.
Matthew Wilcox51219352007-10-02 21:55:22 -04008048 */
8049 reqp->cmndp = scp;
Hannes Reinecke9c17c622015-04-24 13:18:21 +02008050 scp->host_scribble = (void *)reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04008051
8052 /*
8053 * Build the ADV_SCSI_REQ_Q request.
8054 */
8055
8056 /* Set CDB length and copy it to the request structure. */
8057 scsiqp->cdb_len = scp->cmd_len;
8058 /* Copy first 12 CDB bytes to cdb[]. */
Hannes Reinecke811ddc02015-04-24 13:18:22 +02008059 memcpy(scsiqp->cdb, scp->cmnd, scp->cmd_len < 12 ? scp->cmd_len : 12);
Matthew Wilcox51219352007-10-02 21:55:22 -04008060 /* Copy last 4 CDB bytes, if present, to cdb16[]. */
Hannes Reinecke811ddc02015-04-24 13:18:22 +02008061 if (scp->cmd_len > 12) {
8062 int cdb16_len = scp->cmd_len - 12;
8063
8064 memcpy(scsiqp->cdb16, &scp->cmnd[12], cdb16_len);
Matthew Wilcox51219352007-10-02 21:55:22 -04008065 }
8066
8067 scsiqp->target_id = scp->device->id;
8068 scsiqp->target_lun = scp->device->lun;
8069
Hannes Reinecke811ddc02015-04-24 13:18:22 +02008070 sense_addr = dma_map_single(boardp->dev, scp->sense_buffer,
8071 SCSI_SENSE_BUFFERSIZE, DMA_FROM_DEVICE);
8072 scsiqp->sense_addr = cpu_to_le32(sense_addr);
8073 scsiqp->sense_len = cpu_to_le32(SCSI_SENSE_BUFFERSIZE);
Matthew Wilcox51219352007-10-02 21:55:22 -04008074
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008075 /* Build ADV_SCSI_REQ_Q */
Matthew Wilcox51219352007-10-02 21:55:22 -04008076
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008077 use_sg = scsi_dma_map(scp);
8078 if (use_sg == 0) {
8079 /* Zero-length transfer */
Matthew Wilcox51219352007-10-02 21:55:22 -04008080 reqp->sgblkp = NULL;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008081 scsiqp->data_cnt = 0;
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008082
8083 scsiqp->data_addr = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04008084 scsiqp->sg_list_ptr = NULL;
8085 scsiqp->sg_real_addr = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04008086 } else {
Matthew Wilcox51219352007-10-02 21:55:22 -04008087 if (use_sg > ADV_MAX_SG_LIST) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04008088 scmd_printk(KERN_ERR, scp, "use_sg %d > "
8089 "ADV_MAX_SG_LIST %d\n", use_sg,
Matthew Wilcox51219352007-10-02 21:55:22 -04008090 scp->device->host->sg_tablesize);
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008091 scsi_dma_unmap(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04008092 scp->result = HOST_BYTE(DID_ERROR);
Hannes Reinecke9c17c622015-04-24 13:18:21 +02008093 reqp->cmndp = NULL;
8094 scp->host_scribble = NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04008095
8096 return ASC_ERROR;
8097 }
8098
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008099 scsiqp->data_cnt = cpu_to_le32(scsi_bufflen(scp));
8100
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008101 ret = adv_get_sglist(boardp, reqp, scsiqp, scp, use_sg);
Matthew Wilcox51219352007-10-02 21:55:22 -04008102 if (ret != ADV_SUCCESS) {
Hannes Reinecke9c17c622015-04-24 13:18:21 +02008103 scsi_dma_unmap(scp);
8104 scp->result = HOST_BYTE(DID_ERROR);
8105 reqp->cmndp = NULL;
8106 scp->host_scribble = NULL;
Matthew Wilcox51219352007-10-02 21:55:22 -04008107
8108 return ret;
8109 }
8110
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008111 ASC_STATS_ADD(scp->device->host, xfer_elem, use_sg);
Matthew Wilcox51219352007-10-02 21:55:22 -04008112 }
8113
Matthew Wilcox52c334e2007-10-02 21:55:39 -04008114 ASC_STATS(scp->device->host, xfer_cnt);
8115
Matthew Wilcox51219352007-10-02 21:55:22 -04008116 ASC_DBG_PRT_ADV_SCSI_REQ_Q(2, scsiqp);
8117 ASC_DBG_PRT_CDB(1, scp->cmnd, scp->cmd_len);
8118
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008119 *adv_reqpp = reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04008120
8121 return ASC_NOERROR;
8122}
8123
8124static int AscSgListToQueue(int sg_list)
8125{
8126 int n_sg_list_qs;
8127
8128 n_sg_list_qs = ((sg_list - 1) / ASC_SG_LIST_PER_Q);
8129 if (((sg_list - 1) % ASC_SG_LIST_PER_Q) != 0)
8130 n_sg_list_qs++;
8131 return n_sg_list_qs + 1;
8132}
8133
8134static uint
8135AscGetNumOfFreeQueue(ASC_DVC_VAR *asc_dvc, uchar target_ix, uchar n_qs)
8136{
8137 uint cur_used_qs;
8138 uint cur_free_qs;
8139 ASC_SCSI_BIT_ID_TYPE target_id;
8140 uchar tid_no;
8141
8142 target_id = ASC_TIX_TO_TARGET_ID(target_ix);
8143 tid_no = ASC_TIX_TO_TID(target_ix);
8144 if ((asc_dvc->unit_not_ready & target_id) ||
8145 (asc_dvc->queue_full_or_busy & target_id)) {
8146 return 0;
8147 }
8148 if (n_qs == 1) {
8149 cur_used_qs = (uint) asc_dvc->cur_total_qng +
8150 (uint) asc_dvc->last_q_shortage + (uint) ASC_MIN_FREE_Q;
8151 } else {
8152 cur_used_qs = (uint) asc_dvc->cur_total_qng +
8153 (uint) ASC_MIN_FREE_Q;
8154 }
8155 if ((uint) (cur_used_qs + n_qs) <= (uint) asc_dvc->max_total_qng) {
8156 cur_free_qs = (uint) asc_dvc->max_total_qng - cur_used_qs;
8157 if (asc_dvc->cur_dvc_qng[tid_no] >=
8158 asc_dvc->max_dvc_qng[tid_no]) {
8159 return 0;
8160 }
8161 return cur_free_qs;
8162 }
8163 if (n_qs > 1) {
8164 if ((n_qs > asc_dvc->last_q_shortage)
8165 && (n_qs <= (asc_dvc->max_total_qng - ASC_MIN_FREE_Q))) {
8166 asc_dvc->last_q_shortage = n_qs;
8167 }
8168 }
8169 return 0;
8170}
8171
8172static uchar AscAllocFreeQueue(PortAddr iop_base, uchar free_q_head)
8173{
8174 ushort q_addr;
8175 uchar next_qp;
8176 uchar q_status;
8177
8178 q_addr = ASC_QNO_TO_QADDR(free_q_head);
8179 q_status = (uchar)AscReadLramByte(iop_base,
8180 (ushort)(q_addr +
8181 ASC_SCSIQ_B_STATUS));
8182 next_qp = AscReadLramByte(iop_base, (ushort)(q_addr + ASC_SCSIQ_B_FWD));
8183 if (((q_status & QS_READY) == 0) && (next_qp != ASC_QLINK_END))
8184 return next_qp;
8185 return ASC_QLINK_END;
8186}
8187
8188static uchar
8189AscAllocMultipleFreeQueue(PortAddr iop_base, uchar free_q_head, uchar n_free_q)
8190{
8191 uchar i;
8192
8193 for (i = 0; i < n_free_q; i++) {
8194 free_q_head = AscAllocFreeQueue(iop_base, free_q_head);
8195 if (free_q_head == ASC_QLINK_END)
8196 break;
8197 }
8198 return free_q_head;
8199}
8200
8201/*
8202 * void
8203 * DvcPutScsiQ(PortAddr iop_base, ushort s_addr, uchar *outbuf, int words)
8204 *
8205 * Calling/Exit State:
8206 * none
8207 *
8208 * Description:
8209 * Output an ASC_SCSI_Q structure to the chip
8210 */
8211static void
8212DvcPutScsiQ(PortAddr iop_base, ushort s_addr, uchar *outbuf, int words)
8213{
8214 int i;
8215
8216 ASC_DBG_PRT_HEX(2, "DvcPutScsiQ", outbuf, 2 * words);
8217 AscSetChipLramAddr(iop_base, s_addr);
8218 for (i = 0; i < 2 * words; i += 2) {
8219 if (i == 4 || i == 20) {
8220 continue;
8221 }
8222 outpw(iop_base + IOP_RAM_DATA,
8223 ((ushort)outbuf[i + 1] << 8) | outbuf[i]);
8224 }
8225}
8226
8227static int AscPutReadyQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar q_no)
8228{
8229 ushort q_addr;
8230 uchar tid_no;
8231 uchar sdtr_data;
8232 uchar syn_period_ix;
8233 uchar syn_offset;
8234 PortAddr iop_base;
8235
8236 iop_base = asc_dvc->iop_base;
8237 if (((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) &&
8238 ((asc_dvc->sdtr_done & scsiq->q1.target_id) == 0)) {
8239 tid_no = ASC_TIX_TO_TID(scsiq->q2.target_ix);
8240 sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
8241 syn_period_ix =
8242 (sdtr_data >> 4) & (asc_dvc->max_sdtr_index - 1);
8243 syn_offset = sdtr_data & ASC_SYN_MAX_OFFSET;
8244 AscMsgOutSDTR(asc_dvc,
8245 asc_dvc->sdtr_period_tbl[syn_period_ix],
8246 syn_offset);
8247 scsiq->q1.cntl |= QC_MSG_OUT;
8248 }
8249 q_addr = ASC_QNO_TO_QADDR(q_no);
8250 if ((scsiq->q1.target_id & asc_dvc->use_tagged_qng) == 0) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08008251 scsiq->q2.tag_code &= ~SIMPLE_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04008252 }
8253 scsiq->q1.status = QS_FREE;
8254 AscMemWordCopyPtrToLram(iop_base,
8255 q_addr + ASC_SCSIQ_CDB_BEG,
8256 (uchar *)scsiq->cdbptr, scsiq->q2.cdb_len >> 1);
8257
8258 DvcPutScsiQ(iop_base,
8259 q_addr + ASC_SCSIQ_CPY_BEG,
8260 (uchar *)&scsiq->q1.cntl,
8261 ((sizeof(ASC_SCSIQ_1) + sizeof(ASC_SCSIQ_2)) / 2) - 1);
8262 AscWriteLramWord(iop_base,
8263 (ushort)(q_addr + (ushort)ASC_SCSIQ_B_STATUS),
8264 (ushort)(((ushort)scsiq->q1.
8265 q_no << 8) | (ushort)QS_READY));
8266 return 1;
8267}
8268
8269static int
8270AscPutReadySgListQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar q_no)
8271{
8272 int sta;
8273 int i;
8274 ASC_SG_HEAD *sg_head;
8275 ASC_SG_LIST_Q scsi_sg_q;
8276 ASC_DCNT saved_data_addr;
8277 ASC_DCNT saved_data_cnt;
8278 PortAddr iop_base;
8279 ushort sg_list_dwords;
8280 ushort sg_index;
8281 ushort sg_entry_cnt;
8282 ushort q_addr;
8283 uchar next_qp;
8284
8285 iop_base = asc_dvc->iop_base;
8286 sg_head = scsiq->sg_head;
8287 saved_data_addr = scsiq->q1.data_addr;
8288 saved_data_cnt = scsiq->q1.data_cnt;
8289 scsiq->q1.data_addr = (ASC_PADDR) sg_head->sg_list[0].addr;
8290 scsiq->q1.data_cnt = (ASC_DCNT) sg_head->sg_list[0].bytes;
8291#if CC_VERY_LONG_SG_LIST
8292 /*
8293 * If sg_head->entry_cnt is greater than ASC_MAX_SG_LIST
8294 * then not all SG elements will fit in the allocated queues.
8295 * The rest of the SG elements will be copied when the RISC
8296 * completes the SG elements that fit and halts.
8297 */
8298 if (sg_head->entry_cnt > ASC_MAX_SG_LIST) {
8299 /*
8300 * Set sg_entry_cnt to be the number of SG elements that
8301 * will fit in the allocated SG queues. It is minus 1, because
8302 * the first SG element is handled above. ASC_MAX_SG_LIST is
8303 * already inflated by 1 to account for this. For example it
8304 * may be 50 which is 1 + 7 queues * 7 SG elements.
8305 */
8306 sg_entry_cnt = ASC_MAX_SG_LIST - 1;
8307
8308 /*
8309 * Keep track of remaining number of SG elements that will
8310 * need to be handled from a_isr.c.
8311 */
8312 scsiq->remain_sg_entry_cnt =
8313 sg_head->entry_cnt - ASC_MAX_SG_LIST;
8314 } else {
8315#endif /* CC_VERY_LONG_SG_LIST */
8316 /*
8317 * Set sg_entry_cnt to be the number of SG elements that
8318 * will fit in the allocated SG queues. It is minus 1, because
8319 * the first SG element is handled above.
8320 */
8321 sg_entry_cnt = sg_head->entry_cnt - 1;
8322#if CC_VERY_LONG_SG_LIST
8323 }
8324#endif /* CC_VERY_LONG_SG_LIST */
8325 if (sg_entry_cnt != 0) {
8326 scsiq->q1.cntl |= QC_SG_HEAD;
8327 q_addr = ASC_QNO_TO_QADDR(q_no);
8328 sg_index = 1;
8329 scsiq->q1.sg_queue_cnt = sg_head->queue_cnt;
8330 scsi_sg_q.sg_head_qp = q_no;
8331 scsi_sg_q.cntl = QCSG_SG_XFER_LIST;
8332 for (i = 0; i < sg_head->queue_cnt; i++) {
8333 scsi_sg_q.seq_no = i + 1;
8334 if (sg_entry_cnt > ASC_SG_LIST_PER_Q) {
8335 sg_list_dwords = (uchar)(ASC_SG_LIST_PER_Q * 2);
8336 sg_entry_cnt -= ASC_SG_LIST_PER_Q;
8337 if (i == 0) {
8338 scsi_sg_q.sg_list_cnt =
8339 ASC_SG_LIST_PER_Q;
8340 scsi_sg_q.sg_cur_list_cnt =
8341 ASC_SG_LIST_PER_Q;
8342 } else {
8343 scsi_sg_q.sg_list_cnt =
8344 ASC_SG_LIST_PER_Q - 1;
8345 scsi_sg_q.sg_cur_list_cnt =
8346 ASC_SG_LIST_PER_Q - 1;
8347 }
8348 } else {
8349#if CC_VERY_LONG_SG_LIST
8350 /*
8351 * This is the last SG queue in the list of
8352 * allocated SG queues. If there are more
8353 * SG elements than will fit in the allocated
8354 * queues, then set the QCSG_SG_XFER_MORE flag.
8355 */
8356 if (sg_head->entry_cnt > ASC_MAX_SG_LIST) {
8357 scsi_sg_q.cntl |= QCSG_SG_XFER_MORE;
8358 } else {
8359#endif /* CC_VERY_LONG_SG_LIST */
8360 scsi_sg_q.cntl |= QCSG_SG_XFER_END;
8361#if CC_VERY_LONG_SG_LIST
8362 }
8363#endif /* CC_VERY_LONG_SG_LIST */
8364 sg_list_dwords = sg_entry_cnt << 1;
8365 if (i == 0) {
8366 scsi_sg_q.sg_list_cnt = sg_entry_cnt;
8367 scsi_sg_q.sg_cur_list_cnt =
8368 sg_entry_cnt;
8369 } else {
8370 scsi_sg_q.sg_list_cnt =
8371 sg_entry_cnt - 1;
8372 scsi_sg_q.sg_cur_list_cnt =
8373 sg_entry_cnt - 1;
8374 }
8375 sg_entry_cnt = 0;
8376 }
8377 next_qp = AscReadLramByte(iop_base,
8378 (ushort)(q_addr +
8379 ASC_SCSIQ_B_FWD));
8380 scsi_sg_q.q_no = next_qp;
8381 q_addr = ASC_QNO_TO_QADDR(next_qp);
8382 AscMemWordCopyPtrToLram(iop_base,
8383 q_addr + ASC_SCSIQ_SGHD_CPY_BEG,
8384 (uchar *)&scsi_sg_q,
8385 sizeof(ASC_SG_LIST_Q) >> 1);
8386 AscMemDWordCopyPtrToLram(iop_base,
8387 q_addr + ASC_SGQ_LIST_BEG,
8388 (uchar *)&sg_head->
8389 sg_list[sg_index],
8390 sg_list_dwords);
8391 sg_index += ASC_SG_LIST_PER_Q;
8392 scsiq->next_sg_index = sg_index;
8393 }
8394 } else {
8395 scsiq->q1.cntl &= ~QC_SG_HEAD;
8396 }
8397 sta = AscPutReadyQueue(asc_dvc, scsiq, q_no);
8398 scsiq->q1.data_addr = saved_data_addr;
8399 scsiq->q1.data_cnt = saved_data_cnt;
8400 return (sta);
8401}
8402
8403static int
8404AscSendScsiQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar n_q_required)
8405{
8406 PortAddr iop_base;
8407 uchar free_q_head;
8408 uchar next_qp;
8409 uchar tid_no;
8410 uchar target_ix;
8411 int sta;
8412
8413 iop_base = asc_dvc->iop_base;
8414 target_ix = scsiq->q2.target_ix;
8415 tid_no = ASC_TIX_TO_TID(target_ix);
8416 sta = 0;
8417 free_q_head = (uchar)AscGetVarFreeQHead(iop_base);
8418 if (n_q_required > 1) {
8419 next_qp = AscAllocMultipleFreeQueue(iop_base, free_q_head,
8420 (uchar)n_q_required);
8421 if (next_qp != ASC_QLINK_END) {
8422 asc_dvc->last_q_shortage = 0;
8423 scsiq->sg_head->queue_cnt = n_q_required - 1;
8424 scsiq->q1.q_no = free_q_head;
8425 sta = AscPutReadySgListQueue(asc_dvc, scsiq,
8426 free_q_head);
8427 }
8428 } else if (n_q_required == 1) {
8429 next_qp = AscAllocFreeQueue(iop_base, free_q_head);
8430 if (next_qp != ASC_QLINK_END) {
8431 scsiq->q1.q_no = free_q_head;
8432 sta = AscPutReadyQueue(asc_dvc, scsiq, free_q_head);
8433 }
8434 }
8435 if (sta == 1) {
8436 AscPutVarFreeQHead(iop_base, next_qp);
8437 asc_dvc->cur_total_qng += n_q_required;
8438 asc_dvc->cur_dvc_qng[tid_no]++;
8439 }
8440 return sta;
8441}
8442
8443#define ASC_SYN_OFFSET_ONE_DISABLE_LIST 16
8444static uchar _syn_offset_one_disable_cmd[ASC_SYN_OFFSET_ONE_DISABLE_LIST] = {
8445 INQUIRY,
8446 REQUEST_SENSE,
8447 READ_CAPACITY,
8448 READ_TOC,
8449 MODE_SELECT,
8450 MODE_SENSE,
8451 MODE_SELECT_10,
8452 MODE_SENSE_10,
8453 0xFF,
8454 0xFF,
8455 0xFF,
8456 0xFF,
8457 0xFF,
8458 0xFF,
8459 0xFF,
8460 0xFF
8461};
8462
8463static int AscExeScsiQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq)
8464{
8465 PortAddr iop_base;
8466 int sta;
8467 int n_q_required;
8468 int disable_syn_offset_one_fix;
8469 int i;
8470 ASC_PADDR addr;
8471 ushort sg_entry_cnt = 0;
8472 ushort sg_entry_cnt_minus_one = 0;
8473 uchar target_ix;
8474 uchar tid_no;
8475 uchar sdtr_data;
8476 uchar extra_bytes;
8477 uchar scsi_cmd;
8478 uchar disable_cmd;
8479 ASC_SG_HEAD *sg_head;
8480 ASC_DCNT data_cnt;
8481
8482 iop_base = asc_dvc->iop_base;
8483 sg_head = scsiq->sg_head;
8484 if (asc_dvc->err_code != 0)
8485 return (ERR);
8486 scsiq->q1.q_no = 0;
8487 if ((scsiq->q2.tag_code & ASC_TAG_FLAG_EXTRA_BYTES) == 0) {
8488 scsiq->q1.extra_bytes = 0;
8489 }
8490 sta = 0;
8491 target_ix = scsiq->q2.target_ix;
8492 tid_no = ASC_TIX_TO_TID(target_ix);
8493 n_q_required = 1;
8494 if (scsiq->cdbptr[0] == REQUEST_SENSE) {
8495 if ((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) {
8496 asc_dvc->sdtr_done &= ~scsiq->q1.target_id;
8497 sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
8498 AscMsgOutSDTR(asc_dvc,
8499 asc_dvc->
8500 sdtr_period_tbl[(sdtr_data >> 4) &
8501 (uchar)(asc_dvc->
8502 max_sdtr_index -
8503 1)],
8504 (uchar)(sdtr_data & (uchar)
8505 ASC_SYN_MAX_OFFSET));
8506 scsiq->q1.cntl |= (QC_MSG_OUT | QC_URGENT);
8507 }
8508 }
8509 if (asc_dvc->in_critical_cnt != 0) {
8510 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CRITICAL_RE_ENTRY);
8511 return (ERR);
8512 }
8513 asc_dvc->in_critical_cnt++;
8514 if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
8515 if ((sg_entry_cnt = sg_head->entry_cnt) == 0) {
8516 asc_dvc->in_critical_cnt--;
8517 return (ERR);
8518 }
8519#if !CC_VERY_LONG_SG_LIST
8520 if (sg_entry_cnt > ASC_MAX_SG_LIST) {
8521 asc_dvc->in_critical_cnt--;
8522 return (ERR);
8523 }
8524#endif /* !CC_VERY_LONG_SG_LIST */
8525 if (sg_entry_cnt == 1) {
8526 scsiq->q1.data_addr =
8527 (ADV_PADDR)sg_head->sg_list[0].addr;
8528 scsiq->q1.data_cnt =
8529 (ADV_DCNT)sg_head->sg_list[0].bytes;
8530 scsiq->q1.cntl &= ~(QC_SG_HEAD | QC_SG_SWAP_QUEUE);
8531 }
8532 sg_entry_cnt_minus_one = sg_entry_cnt - 1;
8533 }
8534 scsi_cmd = scsiq->cdbptr[0];
8535 disable_syn_offset_one_fix = FALSE;
8536 if ((asc_dvc->pci_fix_asyn_xfer & scsiq->q1.target_id) &&
8537 !(asc_dvc->pci_fix_asyn_xfer_always & scsiq->q1.target_id)) {
8538 if (scsiq->q1.cntl & QC_SG_HEAD) {
8539 data_cnt = 0;
8540 for (i = 0; i < sg_entry_cnt; i++) {
8541 data_cnt +=
8542 (ADV_DCNT)le32_to_cpu(sg_head->sg_list[i].
8543 bytes);
8544 }
8545 } else {
8546 data_cnt = le32_to_cpu(scsiq->q1.data_cnt);
8547 }
8548 if (data_cnt != 0UL) {
8549 if (data_cnt < 512UL) {
8550 disable_syn_offset_one_fix = TRUE;
8551 } else {
8552 for (i = 0; i < ASC_SYN_OFFSET_ONE_DISABLE_LIST;
8553 i++) {
8554 disable_cmd =
8555 _syn_offset_one_disable_cmd[i];
8556 if (disable_cmd == 0xFF) {
8557 break;
8558 }
8559 if (scsi_cmd == disable_cmd) {
8560 disable_syn_offset_one_fix =
8561 TRUE;
8562 break;
8563 }
8564 }
8565 }
8566 }
8567 }
8568 if (disable_syn_offset_one_fix) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08008569 scsiq->q2.tag_code &= ~SIMPLE_QUEUE_TAG;
Matthew Wilcox51219352007-10-02 21:55:22 -04008570 scsiq->q2.tag_code |= (ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX |
8571 ASC_TAG_FLAG_DISABLE_DISCONNECT);
8572 } else {
8573 scsiq->q2.tag_code &= 0x27;
8574 }
8575 if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
8576 if (asc_dvc->bug_fix_cntl) {
8577 if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
8578 if ((scsi_cmd == READ_6) ||
8579 (scsi_cmd == READ_10)) {
8580 addr =
8581 (ADV_PADDR)le32_to_cpu(sg_head->
8582 sg_list
8583 [sg_entry_cnt_minus_one].
8584 addr) +
8585 (ADV_DCNT)le32_to_cpu(sg_head->
8586 sg_list
8587 [sg_entry_cnt_minus_one].
8588 bytes);
8589 extra_bytes =
8590 (uchar)((ushort)addr & 0x0003);
8591 if ((extra_bytes != 0)
8592 &&
8593 ((scsiq->q2.
8594 tag_code &
8595 ASC_TAG_FLAG_EXTRA_BYTES)
8596 == 0)) {
8597 scsiq->q2.tag_code |=
8598 ASC_TAG_FLAG_EXTRA_BYTES;
8599 scsiq->q1.extra_bytes =
8600 extra_bytes;
8601 data_cnt =
8602 le32_to_cpu(sg_head->
8603 sg_list
8604 [sg_entry_cnt_minus_one].
8605 bytes);
8606 data_cnt -=
8607 (ASC_DCNT) extra_bytes;
8608 sg_head->
8609 sg_list
8610 [sg_entry_cnt_minus_one].
8611 bytes =
8612 cpu_to_le32(data_cnt);
8613 }
8614 }
8615 }
8616 }
8617 sg_head->entry_to_copy = sg_head->entry_cnt;
8618#if CC_VERY_LONG_SG_LIST
8619 /*
8620 * Set the sg_entry_cnt to the maximum possible. The rest of
8621 * the SG elements will be copied when the RISC completes the
8622 * SG elements that fit and halts.
8623 */
8624 if (sg_entry_cnt > ASC_MAX_SG_LIST) {
8625 sg_entry_cnt = ASC_MAX_SG_LIST;
8626 }
8627#endif /* CC_VERY_LONG_SG_LIST */
8628 n_q_required = AscSgListToQueue(sg_entry_cnt);
8629 if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, n_q_required) >=
8630 (uint) n_q_required)
8631 || ((scsiq->q1.cntl & QC_URGENT) != 0)) {
8632 if ((sta =
8633 AscSendScsiQueue(asc_dvc, scsiq,
8634 n_q_required)) == 1) {
8635 asc_dvc->in_critical_cnt--;
8636 return (sta);
8637 }
8638 }
8639 } else {
8640 if (asc_dvc->bug_fix_cntl) {
8641 if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
8642 if ((scsi_cmd == READ_6) ||
8643 (scsi_cmd == READ_10)) {
8644 addr =
8645 le32_to_cpu(scsiq->q1.data_addr) +
8646 le32_to_cpu(scsiq->q1.data_cnt);
8647 extra_bytes =
8648 (uchar)((ushort)addr & 0x0003);
8649 if ((extra_bytes != 0)
8650 &&
8651 ((scsiq->q2.
8652 tag_code &
8653 ASC_TAG_FLAG_EXTRA_BYTES)
8654 == 0)) {
8655 data_cnt =
8656 le32_to_cpu(scsiq->q1.
8657 data_cnt);
8658 if (((ushort)data_cnt & 0x01FF)
8659 == 0) {
8660 scsiq->q2.tag_code |=
8661 ASC_TAG_FLAG_EXTRA_BYTES;
8662 data_cnt -= (ASC_DCNT)
8663 extra_bytes;
8664 scsiq->q1.data_cnt =
8665 cpu_to_le32
8666 (data_cnt);
8667 scsiq->q1.extra_bytes =
8668 extra_bytes;
8669 }
8670 }
8671 }
8672 }
8673 }
8674 n_q_required = 1;
8675 if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, 1) >= 1) ||
8676 ((scsiq->q1.cntl & QC_URGENT) != 0)) {
8677 if ((sta = AscSendScsiQueue(asc_dvc, scsiq,
8678 n_q_required)) == 1) {
8679 asc_dvc->in_critical_cnt--;
8680 return (sta);
8681 }
8682 }
8683 }
8684 asc_dvc->in_critical_cnt--;
8685 return (sta);
8686}
8687
8688/*
8689 * AdvExeScsiQueue() - Send a request to the RISC microcode program.
8690 *
8691 * Allocate a carrier structure, point the carrier to the ADV_SCSI_REQ_Q,
8692 * add the carrier to the ICQ (Initiator Command Queue), and tickle the
8693 * RISC to notify it a new command is ready to be executed.
8694 *
8695 * If 'done_status' is not set to QD_DO_RETRY, then 'error_retry' will be
8696 * set to SCSI_MAX_RETRY.
8697 *
8698 * Multi-byte fields in the ASC_SCSI_REQ_Q that are used by the microcode
8699 * for DMA addresses or math operations are byte swapped to little-endian
8700 * order.
8701 *
8702 * Return:
8703 * ADV_SUCCESS(1) - The request was successfully queued.
8704 * ADV_BUSY(0) - Resource unavailable; Retry again after pending
8705 * request completes.
8706 * ADV_ERROR(-1) - Invalid ADV_SCSI_REQ_Q request structure
8707 * host IC error.
8708 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008709static int AdvExeScsiQueue(ADV_DVC_VAR *asc_dvc, adv_req_t *reqp)
Matthew Wilcox51219352007-10-02 21:55:22 -04008710{
8711 AdvPortAddr iop_base;
Matthew Wilcox51219352007-10-02 21:55:22 -04008712 ADV_CARR_T *new_carrp;
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008713 ADV_SCSI_REQ_Q *scsiq = &reqp->scsi_req_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04008714
8715 /*
8716 * The ADV_SCSI_REQ_Q 'target_id' field should never exceed ADV_MAX_TID.
8717 */
8718 if (scsiq->target_id > ADV_MAX_TID) {
8719 scsiq->host_status = QHSTA_M_INVALID_DEVICE;
8720 scsiq->done_status = QD_WITH_ERROR;
8721 return ADV_ERROR;
8722 }
8723
8724 iop_base = asc_dvc->iop_base;
8725
8726 /*
8727 * Allocate a carrier ensuring at least one carrier always
8728 * remains on the freelist and initialize fields.
8729 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +02008730 new_carrp = adv_get_next_carrier(asc_dvc);
8731 if (!new_carrp) {
8732 ASC_DBG(1, "No free carriers\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008733 return ADV_BUSY;
8734 }
Matthew Wilcox51219352007-10-02 21:55:22 -04008735
Hannes Reinecke98b96a72015-04-24 13:18:23 +02008736 asc_dvc->carr_pending_cnt++;
Matthew Wilcox51219352007-10-02 21:55:22 -04008737
8738 /*
8739 * Clear the ADV_SCSI_REQ_Q done flag.
8740 */
8741 scsiq->a_flag &= ~ADV_SCSIQ_DONE;
8742
Matthew Wilcox51219352007-10-02 21:55:22 -04008743 /* Save virtual and physical address of ADV_SCSI_REQ_Q and carrier. */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008744 scsiq->scsiq_ptr = cpu_to_le32(scsiq->srb_tag);
8745 scsiq->scsiq_rptr = cpu_to_le32(reqp->req_addr);
Matthew Wilcox51219352007-10-02 21:55:22 -04008746
Hannes Reinecke98b96a72015-04-24 13:18:23 +02008747 scsiq->carr_va = asc_dvc->icq_sp->carr_va;
Matthew Wilcox51219352007-10-02 21:55:22 -04008748 scsiq->carr_pa = asc_dvc->icq_sp->carr_pa;
8749
8750 /*
8751 * Use the current stopper to send the ADV_SCSI_REQ_Q command to
8752 * the microcode. The newly allocated stopper will become the new
8753 * stopper.
8754 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008755 asc_dvc->icq_sp->areq_vpa = scsiq->scsiq_rptr;
Matthew Wilcox51219352007-10-02 21:55:22 -04008756
8757 /*
8758 * Set the 'next_vpa' pointer for the old stopper to be the
8759 * physical address of the new stopper. The RISC can only
8760 * follow physical addresses.
8761 */
8762 asc_dvc->icq_sp->next_vpa = new_carrp->carr_pa;
8763
8764 /*
8765 * Set the host adapter stopper pointer to point to the new carrier.
8766 */
8767 asc_dvc->icq_sp = new_carrp;
8768
8769 if (asc_dvc->chip_type == ADV_CHIP_ASC3550 ||
8770 asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
8771 /*
8772 * Tickle the RISC to tell it to read its Command Queue Head pointer.
8773 */
8774 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_A);
8775 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
8776 /*
8777 * Clear the tickle value. In the ASC-3550 the RISC flag
8778 * command 'clr_tickle_a' does not work unless the host
8779 * value is cleared.
8780 */
8781 AdvWriteByteRegister(iop_base, IOPB_TICKLE,
8782 ADV_TICKLE_NOP);
8783 }
8784 } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
8785 /*
8786 * Notify the RISC a carrier is ready by writing the physical
8787 * address of the new carrier stopper to the COMMA register.
8788 */
8789 AdvWriteDWordRegister(iop_base, IOPDW_COMMA,
8790 le32_to_cpu(new_carrp->carr_pa));
8791 }
8792
8793 return ADV_SUCCESS;
8794}
8795
8796/*
8797 * Execute a single 'Scsi_Cmnd'.
Matthew Wilcox51219352007-10-02 21:55:22 -04008798 */
8799static int asc_execute_scsi_cmnd(struct scsi_cmnd *scp)
8800{
Matthew Wilcox41d24932007-10-02 21:55:24 -04008801 int ret, err_code;
Matthew Wilcoxd2411492007-10-02 21:55:31 -04008802 struct asc_board *boardp = shost_priv(scp->device->host);
Matthew Wilcox51219352007-10-02 21:55:22 -04008803
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008804 ASC_DBG(1, "scp 0x%p\n", scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04008805
8806 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcox41d24932007-10-02 21:55:24 -04008807 ASC_DVC_VAR *asc_dvc = &boardp->dvc_var.asc_dvc_var;
Matthew Wilcox05848b62007-10-02 21:55:25 -04008808 struct asc_scsi_q asc_scsi_q;
Matthew Wilcox51219352007-10-02 21:55:22 -04008809
Matthew Wilcox41d24932007-10-02 21:55:24 -04008810 /* asc_build_req() can not return ASC_BUSY. */
Matthew Wilcox05848b62007-10-02 21:55:25 -04008811 ret = asc_build_req(boardp, scp, &asc_scsi_q);
8812 if (ret == ASC_ERROR) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008813 ASC_STATS(scp->device->host, build_error);
8814 return ASC_ERROR;
8815 }
8816
Matthew Wilcox41d24932007-10-02 21:55:24 -04008817 ret = AscExeScsiQueue(asc_dvc, &asc_scsi_q);
Matthew Wilcox05848b62007-10-02 21:55:25 -04008818 kfree(asc_scsi_q.sg_head);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008819 err_code = asc_dvc->err_code;
Matthew Wilcox51219352007-10-02 21:55:22 -04008820 } else {
Matthew Wilcox41d24932007-10-02 21:55:24 -04008821 ADV_DVC_VAR *adv_dvc = &boardp->dvc_var.adv_dvc_var;
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008822 adv_req_t *adv_reqp;
Matthew Wilcox51219352007-10-02 21:55:22 -04008823
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008824 switch (adv_build_req(boardp, scp, &adv_reqp)) {
Matthew Wilcox51219352007-10-02 21:55:22 -04008825 case ASC_NOERROR:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008826 ASC_DBG(3, "adv_build_req ASC_NOERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008827 break;
8828 case ASC_BUSY:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008829 ASC_DBG(1, "adv_build_req ASC_BUSY\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008830 /*
8831 * The asc_stats fields 'adv_build_noreq' and
8832 * 'adv_build_nosg' count wide board busy conditions.
8833 * They are updated in adv_build_req and
8834 * adv_get_sglist, respectively.
8835 */
8836 return ASC_BUSY;
8837 case ASC_ERROR:
8838 default:
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008839 ASC_DBG(1, "adv_build_req ASC_ERROR\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008840 ASC_STATS(scp->device->host, build_error);
8841 return ASC_ERROR;
8842 }
8843
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008844 ret = AdvExeScsiQueue(adv_dvc, adv_reqp);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008845 err_code = adv_dvc->err_code;
8846 }
8847
8848 switch (ret) {
8849 case ASC_NOERROR:
8850 ASC_STATS(scp->device->host, exe_noerror);
8851 /*
8852 * Increment monotonically increasing per device
8853 * successful request counter. Wrapping doesn't matter.
8854 */
8855 boardp->reqcnt[scp->device->id]++;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008856 ASC_DBG(1, "ExeScsiQueue() ASC_NOERROR\n");
Matthew Wilcox41d24932007-10-02 21:55:24 -04008857 break;
8858 case ASC_BUSY:
Hannes Reinecke4b47e462015-04-24 13:18:24 +02008859 ASC_DBG(1, "ExeScsiQueue() ASC_BUSY\n");
Matthew Wilcox41d24932007-10-02 21:55:24 -04008860 ASC_STATS(scp->device->host, exe_busy);
8861 break;
8862 case ASC_ERROR:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04008863 scmd_printk(KERN_ERR, scp, "ExeScsiQueue() ASC_ERROR, "
8864 "err_code 0x%x\n", err_code);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008865 ASC_STATS(scp->device->host, exe_error);
8866 scp->result = HOST_BYTE(DID_ERROR);
8867 break;
8868 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04008869 scmd_printk(KERN_ERR, scp, "ExeScsiQueue() unknown, "
8870 "err_code 0x%x\n", err_code);
Matthew Wilcox41d24932007-10-02 21:55:24 -04008871 ASC_STATS(scp->device->host, exe_unknown);
8872 scp->result = HOST_BYTE(DID_ERROR);
8873 break;
Matthew Wilcox51219352007-10-02 21:55:22 -04008874 }
8875
Matthew Wilcoxb352f922007-10-02 21:55:33 -04008876 ASC_DBG(1, "end\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04008877 return ret;
8878}
8879
8880/*
8881 * advansys_queuecommand() - interrupt-driven I/O entrypoint.
8882 *
8883 * This function always returns 0. Command return status is saved
8884 * in the 'scp' result field.
8885 */
8886static int
Jeff Garzikf2812332010-11-16 02:10:29 -05008887advansys_queuecommand_lck(struct scsi_cmnd *scp, void (*done)(struct scsi_cmnd *))
Matthew Wilcox51219352007-10-02 21:55:22 -04008888{
8889 struct Scsi_Host *shost = scp->device->host;
Matthew Wilcox51219352007-10-02 21:55:22 -04008890 int asc_res, result = 0;
8891
8892 ASC_STATS(shost, queuecommand);
8893 scp->scsi_done = done;
8894
Matthew Wilcox51219352007-10-02 21:55:22 -04008895 asc_res = asc_execute_scsi_cmnd(scp);
Matthew Wilcox51219352007-10-02 21:55:22 -04008896
8897 switch (asc_res) {
8898 case ASC_NOERROR:
8899 break;
8900 case ASC_BUSY:
8901 result = SCSI_MLQUEUE_HOST_BUSY;
8902 break;
8903 case ASC_ERROR:
8904 default:
8905 asc_scsi_done(scp);
8906 break;
8907 }
8908
8909 return result;
8910}
8911
Jeff Garzikf2812332010-11-16 02:10:29 -05008912static DEF_SCSI_QCMD(advansys_queuecommand)
8913
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008914static ushort AscGetEisaChipCfg(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04008915{
8916 PortAddr eisa_cfg_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
8917 (PortAddr) (ASC_EISA_CFG_IOP_MASK);
8918 return inpw(eisa_cfg_iop);
8919}
8920
8921/*
8922 * Return the BIOS address of the adapter at the specified
8923 * I/O port and with the specified bus type.
8924 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008925static unsigned short AscGetChipBiosAddress(PortAddr iop_base,
8926 unsigned short bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008927{
8928 unsigned short cfg_lsw;
8929 unsigned short bios_addr;
8930
8931 /*
8932 * The PCI BIOS is re-located by the motherboard BIOS. Because
8933 * of this the driver can not determine where a PCI BIOS is
8934 * loaded and executes.
8935 */
8936 if (bus_type & ASC_IS_PCI)
8937 return 0;
8938
8939 if ((bus_type & ASC_IS_EISA) != 0) {
8940 cfg_lsw = AscGetEisaChipCfg(iop_base);
8941 cfg_lsw &= 0x000F;
8942 bios_addr = ASC_BIOS_MIN_ADDR + cfg_lsw * ASC_BIOS_BANK_SIZE;
8943 return bios_addr;
8944 }
8945
8946 cfg_lsw = AscGetChipCfgLsw(iop_base);
8947
8948 /*
8949 * ISA PnP uses the top bit as the 32K BIOS flag
8950 */
8951 if (bus_type == ASC_IS_ISAPNP)
8952 cfg_lsw &= 0x7FFF;
8953 bios_addr = ASC_BIOS_MIN_ADDR + (cfg_lsw >> 12) * ASC_BIOS_BANK_SIZE;
8954 return bios_addr;
8955}
8956
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008957static uchar AscSetChipScsiID(PortAddr iop_base, uchar new_host_id)
Matthew Wilcox51219352007-10-02 21:55:22 -04008958{
8959 ushort cfg_lsw;
8960
8961 if (AscGetChipScsiID(iop_base) == new_host_id) {
8962 return (new_host_id);
8963 }
8964 cfg_lsw = AscGetChipCfgLsw(iop_base);
8965 cfg_lsw &= 0xF8FF;
8966 cfg_lsw |= (ushort)((new_host_id & ASC_MAX_TID) << 8);
8967 AscSetChipCfgLsw(iop_base, cfg_lsw);
8968 return (AscGetChipScsiID(iop_base));
8969}
8970
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008971static unsigned char AscGetChipScsiCtrl(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04008972{
8973 unsigned char sc;
8974
8975 AscSetBank(iop_base, 1);
8976 sc = inp(iop_base + IOP_REG_SC);
8977 AscSetBank(iop_base, 0);
8978 return sc;
8979}
8980
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008981static unsigned char AscGetChipVersion(PortAddr iop_base,
8982 unsigned short bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04008983{
8984 if (bus_type & ASC_IS_EISA) {
8985 PortAddr eisa_iop;
8986 unsigned char revision;
8987 eisa_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
8988 (PortAddr) ASC_EISA_REV_IOP_MASK;
8989 revision = inp(eisa_iop);
8990 return ASC_CHIP_MIN_VER_EISA - 1 + revision;
8991 }
8992 return AscGetChipVerNo(iop_base);
8993}
8994
Matthew Wilcox51219352007-10-02 21:55:22 -04008995#ifdef CONFIG_ISA
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08008996static void AscEnableIsaDma(uchar dma_channel)
Matthew Wilcox51219352007-10-02 21:55:22 -04008997{
8998 if (dma_channel < 4) {
8999 outp(0x000B, (ushort)(0xC0 | dma_channel));
9000 outp(0x000A, dma_channel);
9001 } else if (dma_channel < 8) {
9002 outp(0x00D6, (ushort)(0xC0 | (dma_channel - 4)));
9003 outp(0x00D4, (ushort)(dma_channel - 4));
9004 }
Matthew Wilcox51219352007-10-02 21:55:22 -04009005}
9006#endif /* CONFIG_ISA */
9007
9008static int AscStopQueueExe(PortAddr iop_base)
9009{
9010 int count = 0;
9011
9012 if (AscReadLramByte(iop_base, ASCV_STOP_CODE_B) == 0) {
9013 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
9014 ASC_STOP_REQ_RISC_STOP);
9015 do {
9016 if (AscReadLramByte(iop_base, ASCV_STOP_CODE_B) &
9017 ASC_STOP_ACK_RISC_STOP) {
9018 return (1);
9019 }
9020 mdelay(100);
9021 } while (count++ < 20);
9022 }
9023 return (0);
9024}
9025
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009026static ASC_DCNT AscGetMaxDmaCount(ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04009027{
9028 if (bus_type & ASC_IS_ISA)
9029 return ASC_MAX_ISA_DMA_COUNT;
9030 else if (bus_type & (ASC_IS_EISA | ASC_IS_VL))
9031 return ASC_MAX_VL_DMA_COUNT;
9032 return ASC_MAX_PCI_DMA_COUNT;
9033}
9034
9035#ifdef CONFIG_ISA
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009036static ushort AscGetIsaDmaChannel(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04009037{
9038 ushort channel;
9039
9040 channel = AscGetChipCfgLsw(iop_base) & 0x0003;
9041 if (channel == 0x03)
9042 return (0);
9043 else if (channel == 0x00)
9044 return (7);
9045 return (channel + 4);
9046}
9047
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009048static ushort AscSetIsaDmaChannel(PortAddr iop_base, ushort dma_channel)
Matthew Wilcox51219352007-10-02 21:55:22 -04009049{
9050 ushort cfg_lsw;
9051 uchar value;
9052
9053 if ((dma_channel >= 5) && (dma_channel <= 7)) {
9054 if (dma_channel == 7)
9055 value = 0x00;
9056 else
9057 value = dma_channel - 4;
9058 cfg_lsw = AscGetChipCfgLsw(iop_base) & 0xFFFC;
9059 cfg_lsw |= value;
9060 AscSetChipCfgLsw(iop_base, cfg_lsw);
9061 return (AscGetIsaDmaChannel(iop_base));
9062 }
9063 return 0;
9064}
9065
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009066static uchar AscGetIsaDmaSpeed(PortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -04009067{
9068 uchar speed_value;
9069
9070 AscSetBank(iop_base, 1);
9071 speed_value = AscReadChipDmaSpeed(iop_base);
9072 speed_value &= 0x07;
9073 AscSetBank(iop_base, 0);
9074 return speed_value;
9075}
9076
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009077static uchar AscSetIsaDmaSpeed(PortAddr iop_base, uchar speed_value)
Matthew Wilcox51219352007-10-02 21:55:22 -04009078{
9079 speed_value &= 0x07;
9080 AscSetBank(iop_base, 1);
9081 AscWriteChipDmaSpeed(iop_base, speed_value);
9082 AscSetBank(iop_base, 0);
9083 return AscGetIsaDmaSpeed(iop_base);
9084}
9085#endif /* CONFIG_ISA */
9086
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009087static ushort AscInitAscDvcVar(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04009088{
9089 int i;
9090 PortAddr iop_base;
9091 ushort warn_code;
9092 uchar chip_version;
9093
9094 iop_base = asc_dvc->iop_base;
9095 warn_code = 0;
9096 asc_dvc->err_code = 0;
9097 if ((asc_dvc->bus_type &
9098 (ASC_IS_ISA | ASC_IS_PCI | ASC_IS_EISA | ASC_IS_VL)) == 0) {
9099 asc_dvc->err_code |= ASC_IERR_NO_BUS_TYPE;
9100 }
9101 AscSetChipControl(iop_base, CC_HALT);
9102 AscSetChipStatus(iop_base, 0);
9103 asc_dvc->bug_fix_cntl = 0;
9104 asc_dvc->pci_fix_asyn_xfer = 0;
9105 asc_dvc->pci_fix_asyn_xfer_always = 0;
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02009106 /* asc_dvc->init_state initialized in AscInitGetConfig(). */
Matthew Wilcox51219352007-10-02 21:55:22 -04009107 asc_dvc->sdtr_done = 0;
9108 asc_dvc->cur_total_qng = 0;
9109 asc_dvc->is_in_int = 0;
9110 asc_dvc->in_critical_cnt = 0;
9111 asc_dvc->last_q_shortage = 0;
9112 asc_dvc->use_tagged_qng = 0;
9113 asc_dvc->no_scam = 0;
9114 asc_dvc->unit_not_ready = 0;
9115 asc_dvc->queue_full_or_busy = 0;
9116 asc_dvc->redo_scam = 0;
9117 asc_dvc->res2 = 0;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04009118 asc_dvc->min_sdtr_index = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -04009119 asc_dvc->cfg->can_tagged_qng = 0;
9120 asc_dvc->cfg->cmd_qng_enabled = 0;
9121 asc_dvc->dvc_cntl = ASC_DEF_DVC_CNTL;
9122 asc_dvc->init_sdtr = 0;
9123 asc_dvc->max_total_qng = ASC_DEF_MAX_TOTAL_QNG;
9124 asc_dvc->scsi_reset_wait = 3;
9125 asc_dvc->start_motor = ASC_SCSI_WIDTH_BIT_SET;
9126 asc_dvc->max_dma_count = AscGetMaxDmaCount(asc_dvc->bus_type);
9127 asc_dvc->cfg->sdtr_enable = ASC_SCSI_WIDTH_BIT_SET;
9128 asc_dvc->cfg->disc_enable = ASC_SCSI_WIDTH_BIT_SET;
9129 asc_dvc->cfg->chip_scsi_id = ASC_DEF_CHIP_SCSI_ID;
Matthew Wilcox51219352007-10-02 21:55:22 -04009130 chip_version = AscGetChipVersion(iop_base, asc_dvc->bus_type);
9131 asc_dvc->cfg->chip_version = chip_version;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04009132 asc_dvc->sdtr_period_tbl = asc_syn_xfer_period;
Matthew Wilcox51219352007-10-02 21:55:22 -04009133 asc_dvc->max_sdtr_index = 7;
9134 if ((asc_dvc->bus_type & ASC_IS_PCI) &&
9135 (chip_version >= ASC_CHIP_VER_PCI_ULTRA_3150)) {
9136 asc_dvc->bus_type = ASC_IS_PCI_ULTRA;
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04009137 asc_dvc->sdtr_period_tbl = asc_syn_ultra_xfer_period;
Matthew Wilcox51219352007-10-02 21:55:22 -04009138 asc_dvc->max_sdtr_index = 15;
9139 if (chip_version == ASC_CHIP_VER_PCI_ULTRA_3150) {
9140 AscSetExtraControl(iop_base,
9141 (SEC_ACTIVE_NEGATE | SEC_SLEW_RATE));
9142 } else if (chip_version >= ASC_CHIP_VER_PCI_ULTRA_3050) {
9143 AscSetExtraControl(iop_base,
9144 (SEC_ACTIVE_NEGATE |
9145 SEC_ENABLE_FILTER));
9146 }
9147 }
9148 if (asc_dvc->bus_type == ASC_IS_PCI) {
9149 AscSetExtraControl(iop_base,
9150 (SEC_ACTIVE_NEGATE | SEC_SLEW_RATE));
9151 }
9152
9153 asc_dvc->cfg->isa_dma_speed = ASC_DEF_ISA_DMA_SPEED;
9154#ifdef CONFIG_ISA
9155 if ((asc_dvc->bus_type & ASC_IS_ISA) != 0) {
9156 if (chip_version >= ASC_CHIP_MIN_VER_ISA_PNP) {
9157 AscSetChipIFC(iop_base, IFC_INIT_DEFAULT);
9158 asc_dvc->bus_type = ASC_IS_ISAPNP;
9159 }
9160 asc_dvc->cfg->isa_dma_channel =
9161 (uchar)AscGetIsaDmaChannel(iop_base);
9162 }
9163#endif /* CONFIG_ISA */
9164 for (i = 0; i <= ASC_MAX_TID; i++) {
9165 asc_dvc->cur_dvc_qng[i] = 0;
9166 asc_dvc->max_dvc_qng[i] = ASC_MAX_SCSI1_QNG;
9167 asc_dvc->scsiq_busy_head[i] = (ASC_SCSI_Q *)0L;
9168 asc_dvc->scsiq_busy_tail[i] = (ASC_SCSI_Q *)0L;
9169 asc_dvc->cfg->max_tag_qng[i] = ASC_MAX_INRAM_TAG_QNG;
9170 }
9171 return warn_code;
9172}
9173
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009174static int AscWriteEEPCmdReg(PortAddr iop_base, uchar cmd_reg)
Matthew Wilcox51219352007-10-02 21:55:22 -04009175{
9176 int retry;
9177
9178 for (retry = 0; retry < ASC_EEP_MAX_RETRY; retry++) {
9179 unsigned char read_back;
9180 AscSetChipEEPCmd(iop_base, cmd_reg);
9181 mdelay(1);
9182 read_back = AscGetChipEEPCmd(iop_base);
9183 if (read_back == cmd_reg)
9184 return 1;
9185 }
9186 return 0;
9187}
9188
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009189static void AscWaitEEPRead(void)
Matthew Wilcox51219352007-10-02 21:55:22 -04009190{
9191 mdelay(1);
9192}
9193
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009194static ushort AscReadEEPWord(PortAddr iop_base, uchar addr)
Matthew Wilcox51219352007-10-02 21:55:22 -04009195{
9196 ushort read_wval;
9197 uchar cmd_reg;
9198
9199 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_DISABLE);
9200 AscWaitEEPRead();
9201 cmd_reg = addr | ASC_EEP_CMD_READ;
9202 AscWriteEEPCmdReg(iop_base, cmd_reg);
9203 AscWaitEEPRead();
9204 read_wval = AscGetChipEEPData(iop_base);
9205 AscWaitEEPRead();
9206 return read_wval;
9207}
9208
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009209static ushort AscGetEEPConfig(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf,
9210 ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04009211{
9212 ushort wval;
9213 ushort sum;
9214 ushort *wbuf;
9215 int cfg_beg;
9216 int cfg_end;
9217 int uchar_end_in_config = ASC_EEP_MAX_DVC_ADDR - 2;
9218 int s_addr;
9219
9220 wbuf = (ushort *)cfg_buf;
9221 sum = 0;
9222 /* Read two config words; Byte-swapping done by AscReadEEPWord(). */
9223 for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
9224 *wbuf = AscReadEEPWord(iop_base, (uchar)s_addr);
9225 sum += *wbuf;
9226 }
9227 if (bus_type & ASC_IS_VL) {
9228 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
9229 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
9230 } else {
9231 cfg_beg = ASC_EEP_DVC_CFG_BEG;
9232 cfg_end = ASC_EEP_MAX_DVC_ADDR;
9233 }
9234 for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
9235 wval = AscReadEEPWord(iop_base, (uchar)s_addr);
9236 if (s_addr <= uchar_end_in_config) {
9237 /*
9238 * Swap all char fields - must unswap bytes already swapped
9239 * by AscReadEEPWord().
9240 */
9241 *wbuf = le16_to_cpu(wval);
9242 } else {
9243 /* Don't swap word field at the end - cntl field. */
9244 *wbuf = wval;
9245 }
9246 sum += wval; /* Checksum treats all EEPROM data as words. */
9247 }
9248 /*
9249 * Read the checksum word which will be compared against 'sum'
9250 * by the caller. Word field already swapped.
9251 */
9252 *wbuf = AscReadEEPWord(iop_base, (uchar)s_addr);
9253 return sum;
9254}
9255
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009256static int AscTestExternalLram(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04009257{
9258 PortAddr iop_base;
9259 ushort q_addr;
9260 ushort saved_word;
9261 int sta;
9262
9263 iop_base = asc_dvc->iop_base;
9264 sta = 0;
9265 q_addr = ASC_QNO_TO_QADDR(241);
9266 saved_word = AscReadLramWord(iop_base, q_addr);
9267 AscSetChipLramAddr(iop_base, q_addr);
9268 AscSetChipLramData(iop_base, 0x55AA);
9269 mdelay(10);
9270 AscSetChipLramAddr(iop_base, q_addr);
9271 if (AscGetChipLramData(iop_base) == 0x55AA) {
9272 sta = 1;
9273 AscWriteLramWord(iop_base, q_addr, saved_word);
9274 }
9275 return (sta);
9276}
9277
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009278static void AscWaitEEPWrite(void)
Matthew Wilcox51219352007-10-02 21:55:22 -04009279{
9280 mdelay(20);
Matthew Wilcox51219352007-10-02 21:55:22 -04009281}
9282
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009283static int AscWriteEEPDataReg(PortAddr iop_base, ushort data_reg)
Matthew Wilcox51219352007-10-02 21:55:22 -04009284{
9285 ushort read_back;
9286 int retry;
9287
9288 retry = 0;
9289 while (TRUE) {
9290 AscSetChipEEPData(iop_base, data_reg);
9291 mdelay(1);
9292 read_back = AscGetChipEEPData(iop_base);
9293 if (read_back == data_reg) {
9294 return (1);
9295 }
9296 if (retry++ > ASC_EEP_MAX_RETRY) {
9297 return (0);
9298 }
9299 }
9300}
9301
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009302static ushort AscWriteEEPWord(PortAddr iop_base, uchar addr, ushort word_val)
Matthew Wilcox51219352007-10-02 21:55:22 -04009303{
9304 ushort read_wval;
9305
9306 read_wval = AscReadEEPWord(iop_base, addr);
9307 if (read_wval != word_val) {
9308 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_ABLE);
9309 AscWaitEEPRead();
9310 AscWriteEEPDataReg(iop_base, word_val);
9311 AscWaitEEPRead();
9312 AscWriteEEPCmdReg(iop_base,
9313 (uchar)((uchar)ASC_EEP_CMD_WRITE | addr));
9314 AscWaitEEPWrite();
9315 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_DISABLE);
9316 AscWaitEEPRead();
9317 return (AscReadEEPWord(iop_base, addr));
9318 }
9319 return (read_wval);
9320}
9321
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009322static int AscSetEEPConfigOnce(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf,
9323 ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04009324{
9325 int n_error;
9326 ushort *wbuf;
9327 ushort word;
9328 ushort sum;
9329 int s_addr;
9330 int cfg_beg;
9331 int cfg_end;
9332 int uchar_end_in_config = ASC_EEP_MAX_DVC_ADDR - 2;
9333
9334 wbuf = (ushort *)cfg_buf;
9335 n_error = 0;
9336 sum = 0;
9337 /* Write two config words; AscWriteEEPWord() will swap bytes. */
9338 for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
9339 sum += *wbuf;
9340 if (*wbuf != AscWriteEEPWord(iop_base, (uchar)s_addr, *wbuf)) {
9341 n_error++;
9342 }
9343 }
9344 if (bus_type & ASC_IS_VL) {
9345 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
9346 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
9347 } else {
9348 cfg_beg = ASC_EEP_DVC_CFG_BEG;
9349 cfg_end = ASC_EEP_MAX_DVC_ADDR;
9350 }
9351 for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
9352 if (s_addr <= uchar_end_in_config) {
9353 /*
9354 * This is a char field. Swap char fields before they are
9355 * swapped again by AscWriteEEPWord().
9356 */
9357 word = cpu_to_le16(*wbuf);
9358 if (word !=
9359 AscWriteEEPWord(iop_base, (uchar)s_addr, word)) {
9360 n_error++;
9361 }
9362 } else {
9363 /* Don't swap word field at the end - cntl field. */
9364 if (*wbuf !=
9365 AscWriteEEPWord(iop_base, (uchar)s_addr, *wbuf)) {
9366 n_error++;
9367 }
9368 }
9369 sum += *wbuf; /* Checksum calculated from word values. */
9370 }
9371 /* Write checksum word. It will be swapped by AscWriteEEPWord(). */
9372 *wbuf = sum;
9373 if (sum != AscWriteEEPWord(iop_base, (uchar)s_addr, sum)) {
9374 n_error++;
9375 }
9376
9377 /* Read EEPROM back again. */
9378 wbuf = (ushort *)cfg_buf;
9379 /*
9380 * Read two config words; Byte-swapping done by AscReadEEPWord().
9381 */
9382 for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
9383 if (*wbuf != AscReadEEPWord(iop_base, (uchar)s_addr)) {
9384 n_error++;
9385 }
9386 }
9387 if (bus_type & ASC_IS_VL) {
9388 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
9389 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
9390 } else {
9391 cfg_beg = ASC_EEP_DVC_CFG_BEG;
9392 cfg_end = ASC_EEP_MAX_DVC_ADDR;
9393 }
9394 for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
9395 if (s_addr <= uchar_end_in_config) {
9396 /*
9397 * Swap all char fields. Must unswap bytes already swapped
9398 * by AscReadEEPWord().
9399 */
9400 word =
9401 le16_to_cpu(AscReadEEPWord
9402 (iop_base, (uchar)s_addr));
9403 } else {
9404 /* Don't swap word field at the end - cntl field. */
9405 word = AscReadEEPWord(iop_base, (uchar)s_addr);
9406 }
9407 if (*wbuf != word) {
9408 n_error++;
9409 }
9410 }
9411 /* Read checksum; Byte swapping not needed. */
9412 if (AscReadEEPWord(iop_base, (uchar)s_addr) != sum) {
9413 n_error++;
9414 }
9415 return n_error;
9416}
9417
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009418static int AscSetEEPConfig(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf,
9419 ushort bus_type)
Matthew Wilcox51219352007-10-02 21:55:22 -04009420{
9421 int retry;
9422 int n_error;
9423
9424 retry = 0;
9425 while (TRUE) {
9426 if ((n_error = AscSetEEPConfigOnce(iop_base, cfg_buf,
9427 bus_type)) == 0) {
9428 break;
9429 }
9430 if (++retry > ASC_EEP_MAX_RETRY) {
9431 break;
9432 }
9433 }
9434 return n_error;
9435}
9436
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009437static ushort AscInitFromEEP(ASC_DVC_VAR *asc_dvc)
Matthew Wilcox51219352007-10-02 21:55:22 -04009438{
9439 ASCEEP_CONFIG eep_config_buf;
9440 ASCEEP_CONFIG *eep_config;
9441 PortAddr iop_base;
9442 ushort chksum;
9443 ushort warn_code;
9444 ushort cfg_msw, cfg_lsw;
9445 int i;
9446 int write_eep = 0;
9447
9448 iop_base = asc_dvc->iop_base;
9449 warn_code = 0;
9450 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0x00FE);
9451 AscStopQueueExe(iop_base);
9452 if ((AscStopChip(iop_base) == FALSE) ||
9453 (AscGetChipScsiCtrl(iop_base) != 0)) {
9454 asc_dvc->init_state |= ASC_INIT_RESET_SCSI_DONE;
9455 AscResetChipAndScsiBus(asc_dvc);
9456 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
9457 }
9458 if (AscIsChipHalted(iop_base) == FALSE) {
9459 asc_dvc->err_code |= ASC_IERR_START_STOP_CHIP;
9460 return (warn_code);
9461 }
9462 AscSetPCAddr(iop_base, ASC_MCODE_START_ADDR);
9463 if (AscGetPCAddr(iop_base) != ASC_MCODE_START_ADDR) {
9464 asc_dvc->err_code |= ASC_IERR_SET_PC_ADDR;
9465 return (warn_code);
9466 }
9467 eep_config = (ASCEEP_CONFIG *)&eep_config_buf;
9468 cfg_msw = AscGetChipCfgMsw(iop_base);
9469 cfg_lsw = AscGetChipCfgLsw(iop_base);
9470 if ((cfg_msw & ASC_CFG_MSW_CLR_MASK) != 0) {
9471 cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
9472 warn_code |= ASC_WARN_CFG_MSW_RECOVER;
9473 AscSetChipCfgMsw(iop_base, cfg_msw);
9474 }
9475 chksum = AscGetEEPConfig(iop_base, eep_config, asc_dvc->bus_type);
Matthew Wilcoxb352f922007-10-02 21:55:33 -04009476 ASC_DBG(1, "chksum 0x%x\n", chksum);
Matthew Wilcox51219352007-10-02 21:55:22 -04009477 if (chksum == 0) {
9478 chksum = 0xaa55;
9479 }
9480 if (AscGetChipStatus(iop_base) & CSW_AUTO_CONFIG) {
9481 warn_code |= ASC_WARN_AUTO_CONFIG;
9482 if (asc_dvc->cfg->chip_version == 3) {
9483 if (eep_config->cfg_lsw != cfg_lsw) {
9484 warn_code |= ASC_WARN_EEPROM_RECOVER;
9485 eep_config->cfg_lsw =
9486 AscGetChipCfgLsw(iop_base);
9487 }
9488 if (eep_config->cfg_msw != cfg_msw) {
9489 warn_code |= ASC_WARN_EEPROM_RECOVER;
9490 eep_config->cfg_msw =
9491 AscGetChipCfgMsw(iop_base);
9492 }
9493 }
9494 }
9495 eep_config->cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
9496 eep_config->cfg_lsw |= ASC_CFG0_HOST_INT_ON;
Matthew Wilcoxb352f922007-10-02 21:55:33 -04009497 ASC_DBG(1, "eep_config->chksum 0x%x\n", eep_config->chksum);
Matthew Wilcox51219352007-10-02 21:55:22 -04009498 if (chksum != eep_config->chksum) {
9499 if (AscGetChipVersion(iop_base, asc_dvc->bus_type) ==
9500 ASC_CHIP_VER_PCI_ULTRA_3050) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -04009501 ASC_DBG(1, "chksum error ignored; EEPROM-less board\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009502 eep_config->init_sdtr = 0xFF;
9503 eep_config->disc_enable = 0xFF;
9504 eep_config->start_motor = 0xFF;
9505 eep_config->use_cmd_qng = 0;
9506 eep_config->max_total_qng = 0xF0;
9507 eep_config->max_tag_qng = 0x20;
9508 eep_config->cntl = 0xBFFF;
9509 ASC_EEP_SET_CHIP_ID(eep_config, 7);
9510 eep_config->no_scam = 0;
9511 eep_config->adapter_info[0] = 0;
9512 eep_config->adapter_info[1] = 0;
9513 eep_config->adapter_info[2] = 0;
9514 eep_config->adapter_info[3] = 0;
9515 eep_config->adapter_info[4] = 0;
9516 /* Indicate EEPROM-less board. */
9517 eep_config->adapter_info[5] = 0xBB;
9518 } else {
9519 ASC_PRINT
9520 ("AscInitFromEEP: EEPROM checksum error; Will try to re-write EEPROM.\n");
9521 write_eep = 1;
9522 warn_code |= ASC_WARN_EEPROM_CHKSUM;
9523 }
9524 }
9525 asc_dvc->cfg->sdtr_enable = eep_config->init_sdtr;
9526 asc_dvc->cfg->disc_enable = eep_config->disc_enable;
9527 asc_dvc->cfg->cmd_qng_enabled = eep_config->use_cmd_qng;
9528 asc_dvc->cfg->isa_dma_speed = ASC_EEP_GET_DMA_SPD(eep_config);
9529 asc_dvc->start_motor = eep_config->start_motor;
9530 asc_dvc->dvc_cntl = eep_config->cntl;
9531 asc_dvc->no_scam = eep_config->no_scam;
9532 asc_dvc->cfg->adapter_info[0] = eep_config->adapter_info[0];
9533 asc_dvc->cfg->adapter_info[1] = eep_config->adapter_info[1];
9534 asc_dvc->cfg->adapter_info[2] = eep_config->adapter_info[2];
9535 asc_dvc->cfg->adapter_info[3] = eep_config->adapter_info[3];
9536 asc_dvc->cfg->adapter_info[4] = eep_config->adapter_info[4];
9537 asc_dvc->cfg->adapter_info[5] = eep_config->adapter_info[5];
9538 if (!AscTestExternalLram(asc_dvc)) {
9539 if (((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) ==
9540 ASC_IS_PCI_ULTRA)) {
9541 eep_config->max_total_qng =
9542 ASC_MAX_PCI_ULTRA_INRAM_TOTAL_QNG;
9543 eep_config->max_tag_qng =
9544 ASC_MAX_PCI_ULTRA_INRAM_TAG_QNG;
9545 } else {
9546 eep_config->cfg_msw |= 0x0800;
9547 cfg_msw |= 0x0800;
9548 AscSetChipCfgMsw(iop_base, cfg_msw);
9549 eep_config->max_total_qng = ASC_MAX_PCI_INRAM_TOTAL_QNG;
9550 eep_config->max_tag_qng = ASC_MAX_INRAM_TAG_QNG;
9551 }
9552 } else {
9553 }
9554 if (eep_config->max_total_qng < ASC_MIN_TOTAL_QNG) {
9555 eep_config->max_total_qng = ASC_MIN_TOTAL_QNG;
9556 }
9557 if (eep_config->max_total_qng > ASC_MAX_TOTAL_QNG) {
9558 eep_config->max_total_qng = ASC_MAX_TOTAL_QNG;
9559 }
9560 if (eep_config->max_tag_qng > eep_config->max_total_qng) {
9561 eep_config->max_tag_qng = eep_config->max_total_qng;
9562 }
9563 if (eep_config->max_tag_qng < ASC_MIN_TAG_Q_PER_DVC) {
9564 eep_config->max_tag_qng = ASC_MIN_TAG_Q_PER_DVC;
9565 }
9566 asc_dvc->max_total_qng = eep_config->max_total_qng;
9567 if ((eep_config->use_cmd_qng & eep_config->disc_enable) !=
9568 eep_config->use_cmd_qng) {
9569 eep_config->disc_enable = eep_config->use_cmd_qng;
9570 warn_code |= ASC_WARN_CMD_QNG_CONFLICT;
9571 }
Matthew Wilcox51219352007-10-02 21:55:22 -04009572 ASC_EEP_SET_CHIP_ID(eep_config,
9573 ASC_EEP_GET_CHIP_ID(eep_config) & ASC_MAX_TID);
9574 asc_dvc->cfg->chip_scsi_id = ASC_EEP_GET_CHIP_ID(eep_config);
9575 if (((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) == ASC_IS_PCI_ULTRA) &&
9576 !(asc_dvc->dvc_cntl & ASC_CNTL_SDTR_ENABLE_ULTRA)) {
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04009577 asc_dvc->min_sdtr_index = ASC_SDTR_ULTRA_PCI_10MB_INDEX;
Matthew Wilcox51219352007-10-02 21:55:22 -04009578 }
9579
9580 for (i = 0; i <= ASC_MAX_TID; i++) {
9581 asc_dvc->dos_int13_table[i] = eep_config->dos_int13_table[i];
9582 asc_dvc->cfg->max_tag_qng[i] = eep_config->max_tag_qng;
9583 asc_dvc->cfg->sdtr_period_offset[i] =
9584 (uchar)(ASC_DEF_SDTR_OFFSET |
Matthew Wilcoxafbb68c2007-10-02 21:55:36 -04009585 (asc_dvc->min_sdtr_index << 4));
Matthew Wilcox51219352007-10-02 21:55:22 -04009586 }
9587 eep_config->cfg_msw = AscGetChipCfgMsw(iop_base);
9588 if (write_eep) {
9589 if ((i = AscSetEEPConfig(iop_base, eep_config,
9590 asc_dvc->bus_type)) != 0) {
9591 ASC_PRINT1
9592 ("AscInitFromEEP: Failed to re-write EEPROM with %d errors.\n",
9593 i);
9594 } else {
9595 ASC_PRINT
9596 ("AscInitFromEEP: Successfully re-wrote EEPROM.\n");
9597 }
9598 }
9599 return (warn_code);
9600}
9601
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009602static int AscInitGetConfig(struct Scsi_Host *shost)
Matthew Wilcox51219352007-10-02 21:55:22 -04009603{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009604 struct asc_board *board = shost_priv(shost);
9605 ASC_DVC_VAR *asc_dvc = &board->dvc_var.asc_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04009606 unsigned short warn_code = 0;
9607
9608 asc_dvc->init_state = ASC_INIT_STATE_BEG_GET_CFG;
9609 if (asc_dvc->err_code != 0)
9610 return asc_dvc->err_code;
9611
9612 if (AscFindSignature(asc_dvc->iop_base)) {
9613 warn_code |= AscInitAscDvcVar(asc_dvc);
9614 warn_code |= AscInitFromEEP(asc_dvc);
9615 asc_dvc->init_state |= ASC_INIT_STATE_END_GET_CFG;
9616 if (asc_dvc->scsi_reset_wait > ASC_MAX_SCSI_RESET_WAIT)
9617 asc_dvc->scsi_reset_wait = ASC_MAX_SCSI_RESET_WAIT;
9618 } else {
9619 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
9620 }
9621
9622 switch (warn_code) {
9623 case 0: /* No error */
9624 break;
9625 case ASC_WARN_IO_PORT_ROTATE:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009626 shost_printk(KERN_WARNING, shost, "I/O port address "
9627 "modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009628 break;
9629 case ASC_WARN_AUTO_CONFIG:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009630 shost_printk(KERN_WARNING, shost, "I/O port increment switch "
9631 "enabled\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009632 break;
9633 case ASC_WARN_EEPROM_CHKSUM:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009634 shost_printk(KERN_WARNING, shost, "EEPROM checksum error\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009635 break;
9636 case ASC_WARN_IRQ_MODIFIED:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009637 shost_printk(KERN_WARNING, shost, "IRQ modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009638 break;
9639 case ASC_WARN_CMD_QNG_CONFLICT:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009640 shost_printk(KERN_WARNING, shost, "tag queuing enabled w/o "
9641 "disconnects\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009642 break;
9643 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009644 shost_printk(KERN_WARNING, shost, "unknown warning: 0x%x\n",
9645 warn_code);
Matthew Wilcox51219352007-10-02 21:55:22 -04009646 break;
9647 }
9648
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009649 if (asc_dvc->err_code != 0)
9650 shost_printk(KERN_ERR, shost, "error 0x%x at init_state "
9651 "0x%x\n", asc_dvc->err_code, asc_dvc->init_state);
Matthew Wilcox51219352007-10-02 21:55:22 -04009652
9653 return asc_dvc->err_code;
9654}
9655
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009656static int AscInitSetConfig(struct pci_dev *pdev, struct Scsi_Host *shost)
Matthew Wilcox51219352007-10-02 21:55:22 -04009657{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009658 struct asc_board *board = shost_priv(shost);
9659 ASC_DVC_VAR *asc_dvc = &board->dvc_var.asc_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -04009660 PortAddr iop_base = asc_dvc->iop_base;
9661 unsigned short cfg_msw;
9662 unsigned short warn_code = 0;
9663
9664 asc_dvc->init_state |= ASC_INIT_STATE_BEG_SET_CFG;
9665 if (asc_dvc->err_code != 0)
9666 return asc_dvc->err_code;
9667 if (!AscFindSignature(asc_dvc->iop_base)) {
9668 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
9669 return asc_dvc->err_code;
9670 }
9671
9672 cfg_msw = AscGetChipCfgMsw(iop_base);
9673 if ((cfg_msw & ASC_CFG_MSW_CLR_MASK) != 0) {
9674 cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
9675 warn_code |= ASC_WARN_CFG_MSW_RECOVER;
9676 AscSetChipCfgMsw(iop_base, cfg_msw);
9677 }
9678 if ((asc_dvc->cfg->cmd_qng_enabled & asc_dvc->cfg->disc_enable) !=
9679 asc_dvc->cfg->cmd_qng_enabled) {
9680 asc_dvc->cfg->disc_enable = asc_dvc->cfg->cmd_qng_enabled;
9681 warn_code |= ASC_WARN_CMD_QNG_CONFLICT;
9682 }
9683 if (AscGetChipStatus(iop_base) & CSW_AUTO_CONFIG) {
9684 warn_code |= ASC_WARN_AUTO_CONFIG;
9685 }
Matthew Wilcox51219352007-10-02 21:55:22 -04009686#ifdef CONFIG_PCI
9687 if (asc_dvc->bus_type & ASC_IS_PCI) {
9688 cfg_msw &= 0xFFC0;
9689 AscSetChipCfgMsw(iop_base, cfg_msw);
9690 if ((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) == ASC_IS_PCI_ULTRA) {
9691 } else {
9692 if ((pdev->device == PCI_DEVICE_ID_ASP_1200A) ||
9693 (pdev->device == PCI_DEVICE_ID_ASP_ABP940)) {
9694 asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_IF_NOT_DWB;
9695 asc_dvc->bug_fix_cntl |=
9696 ASC_BUG_FIX_ASYN_USE_SYN;
9697 }
9698 }
9699 } else
9700#endif /* CONFIG_PCI */
9701 if (asc_dvc->bus_type == ASC_IS_ISAPNP) {
9702 if (AscGetChipVersion(iop_base, asc_dvc->bus_type)
9703 == ASC_CHIP_VER_ASYN_BUG) {
9704 asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_ASYN_USE_SYN;
9705 }
9706 }
9707 if (AscSetChipScsiID(iop_base, asc_dvc->cfg->chip_scsi_id) !=
9708 asc_dvc->cfg->chip_scsi_id) {
9709 asc_dvc->err_code |= ASC_IERR_SET_SCSI_ID;
9710 }
9711#ifdef CONFIG_ISA
9712 if (asc_dvc->bus_type & ASC_IS_ISA) {
9713 AscSetIsaDmaChannel(iop_base, asc_dvc->cfg->isa_dma_channel);
9714 AscSetIsaDmaSpeed(iop_base, asc_dvc->cfg->isa_dma_speed);
9715 }
9716#endif /* CONFIG_ISA */
9717
9718 asc_dvc->init_state |= ASC_INIT_STATE_END_SET_CFG;
9719
9720 switch (warn_code) {
9721 case 0: /* No error. */
9722 break;
9723 case ASC_WARN_IO_PORT_ROTATE:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009724 shost_printk(KERN_WARNING, shost, "I/O port address "
9725 "modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009726 break;
9727 case ASC_WARN_AUTO_CONFIG:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009728 shost_printk(KERN_WARNING, shost, "I/O port increment switch "
9729 "enabled\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009730 break;
9731 case ASC_WARN_EEPROM_CHKSUM:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009732 shost_printk(KERN_WARNING, shost, "EEPROM checksum error\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009733 break;
9734 case ASC_WARN_IRQ_MODIFIED:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009735 shost_printk(KERN_WARNING, shost, "IRQ modified\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009736 break;
9737 case ASC_WARN_CMD_QNG_CONFLICT:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009738 shost_printk(KERN_WARNING, shost, "tag queuing w/o "
9739 "disconnects\n");
Matthew Wilcox51219352007-10-02 21:55:22 -04009740 break;
9741 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009742 shost_printk(KERN_WARNING, shost, "unknown warning: 0x%x\n",
9743 warn_code);
Matthew Wilcox51219352007-10-02 21:55:22 -04009744 break;
9745 }
9746
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -04009747 if (asc_dvc->err_code != 0)
9748 shost_printk(KERN_ERR, shost, "error 0x%x at init_state "
9749 "0x%x\n", asc_dvc->err_code, asc_dvc->init_state);
Matthew Wilcox51219352007-10-02 21:55:22 -04009750
9751 return asc_dvc->err_code;
9752}
9753
9754/*
9755 * EEPROM Configuration.
9756 *
9757 * All drivers should use this structure to set the default EEPROM
9758 * configuration. The BIOS now uses this structure when it is built.
9759 * Additional structure information can be found in a_condor.h where
9760 * the structure is defined.
9761 *
9762 * The *_Field_IsChar structs are needed to correct for endianness.
9763 * These values are read from the board 16 bits at a time directly
9764 * into the structs. Because some fields are char, the values will be
9765 * in the wrong order. The *_Field_IsChar tells when to flip the
9766 * bytes. Data read and written to PCI memory is automatically swapped
9767 * on big-endian platforms so char fields read as words are actually being
9768 * unswapped on big-endian platforms.
9769 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009770static ADVEEP_3550_CONFIG Default_3550_EEPROM_Config = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009771 ADV_EEPROM_BIOS_ENABLE, /* cfg_lsw */
9772 0x0000, /* cfg_msw */
9773 0xFFFF, /* disc_enable */
9774 0xFFFF, /* wdtr_able */
9775 0xFFFF, /* sdtr_able */
9776 0xFFFF, /* start_motor */
9777 0xFFFF, /* tagqng_able */
9778 0xFFFF, /* bios_scan */
9779 0, /* scam_tolerant */
9780 7, /* adapter_scsi_id */
9781 0, /* bios_boot_delay */
9782 3, /* scsi_reset_delay */
9783 0, /* bios_id_lun */
9784 0, /* termination */
9785 0, /* reserved1 */
9786 0xFFE7, /* bios_ctrl */
9787 0xFFFF, /* ultra_able */
9788 0, /* reserved2 */
9789 ASC_DEF_MAX_HOST_QNG, /* max_host_qng */
9790 ASC_DEF_MAX_DVC_QNG, /* max_dvc_qng */
9791 0, /* dvc_cntl */
9792 0, /* bug_fix */
9793 0, /* serial_number_word1 */
9794 0, /* serial_number_word2 */
9795 0, /* serial_number_word3 */
9796 0, /* check_sum */
9797 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
9798 , /* oem_name[16] */
9799 0, /* dvc_err_code */
9800 0, /* adv_err_code */
9801 0, /* adv_err_addr */
9802 0, /* saved_dvc_err_code */
9803 0, /* saved_adv_err_code */
9804 0, /* saved_adv_err_addr */
9805 0 /* num_of_err */
9806};
9807
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009808static ADVEEP_3550_CONFIG ADVEEP_3550_Config_Field_IsChar = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009809 0, /* cfg_lsw */
9810 0, /* cfg_msw */
9811 0, /* -disc_enable */
9812 0, /* wdtr_able */
9813 0, /* sdtr_able */
9814 0, /* start_motor */
9815 0, /* tagqng_able */
9816 0, /* bios_scan */
9817 0, /* scam_tolerant */
9818 1, /* adapter_scsi_id */
9819 1, /* bios_boot_delay */
9820 1, /* scsi_reset_delay */
9821 1, /* bios_id_lun */
9822 1, /* termination */
9823 1, /* reserved1 */
9824 0, /* bios_ctrl */
9825 0, /* ultra_able */
9826 0, /* reserved2 */
9827 1, /* max_host_qng */
9828 1, /* max_dvc_qng */
9829 0, /* dvc_cntl */
9830 0, /* bug_fix */
9831 0, /* serial_number_word1 */
9832 0, /* serial_number_word2 */
9833 0, /* serial_number_word3 */
9834 0, /* check_sum */
9835 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
9836 , /* oem_name[16] */
9837 0, /* dvc_err_code */
9838 0, /* adv_err_code */
9839 0, /* adv_err_addr */
9840 0, /* saved_dvc_err_code */
9841 0, /* saved_adv_err_code */
9842 0, /* saved_adv_err_addr */
9843 0 /* num_of_err */
9844};
9845
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009846static ADVEEP_38C0800_CONFIG Default_38C0800_EEPROM_Config = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009847 ADV_EEPROM_BIOS_ENABLE, /* 00 cfg_lsw */
9848 0x0000, /* 01 cfg_msw */
9849 0xFFFF, /* 02 disc_enable */
9850 0xFFFF, /* 03 wdtr_able */
9851 0x4444, /* 04 sdtr_speed1 */
9852 0xFFFF, /* 05 start_motor */
9853 0xFFFF, /* 06 tagqng_able */
9854 0xFFFF, /* 07 bios_scan */
9855 0, /* 08 scam_tolerant */
9856 7, /* 09 adapter_scsi_id */
9857 0, /* bios_boot_delay */
9858 3, /* 10 scsi_reset_delay */
9859 0, /* bios_id_lun */
9860 0, /* 11 termination_se */
9861 0, /* termination_lvd */
9862 0xFFE7, /* 12 bios_ctrl */
9863 0x4444, /* 13 sdtr_speed2 */
9864 0x4444, /* 14 sdtr_speed3 */
9865 ASC_DEF_MAX_HOST_QNG, /* 15 max_host_qng */
9866 ASC_DEF_MAX_DVC_QNG, /* max_dvc_qng */
9867 0, /* 16 dvc_cntl */
9868 0x4444, /* 17 sdtr_speed4 */
9869 0, /* 18 serial_number_word1 */
9870 0, /* 19 serial_number_word2 */
9871 0, /* 20 serial_number_word3 */
9872 0, /* 21 check_sum */
9873 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
9874 , /* 22-29 oem_name[16] */
9875 0, /* 30 dvc_err_code */
9876 0, /* 31 adv_err_code */
9877 0, /* 32 adv_err_addr */
9878 0, /* 33 saved_dvc_err_code */
9879 0, /* 34 saved_adv_err_code */
9880 0, /* 35 saved_adv_err_addr */
9881 0, /* 36 reserved */
9882 0, /* 37 reserved */
9883 0, /* 38 reserved */
9884 0, /* 39 reserved */
9885 0, /* 40 reserved */
9886 0, /* 41 reserved */
9887 0, /* 42 reserved */
9888 0, /* 43 reserved */
9889 0, /* 44 reserved */
9890 0, /* 45 reserved */
9891 0, /* 46 reserved */
9892 0, /* 47 reserved */
9893 0, /* 48 reserved */
9894 0, /* 49 reserved */
9895 0, /* 50 reserved */
9896 0, /* 51 reserved */
9897 0, /* 52 reserved */
9898 0, /* 53 reserved */
9899 0, /* 54 reserved */
9900 0, /* 55 reserved */
9901 0, /* 56 cisptr_lsw */
9902 0, /* 57 cisprt_msw */
9903 PCI_VENDOR_ID_ASP, /* 58 subsysvid */
9904 PCI_DEVICE_ID_38C0800_REV1, /* 59 subsysid */
9905 0, /* 60 reserved */
9906 0, /* 61 reserved */
9907 0, /* 62 reserved */
9908 0 /* 63 reserved */
9909};
9910
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009911static ADVEEP_38C0800_CONFIG ADVEEP_38C0800_Config_Field_IsChar = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009912 0, /* 00 cfg_lsw */
9913 0, /* 01 cfg_msw */
9914 0, /* 02 disc_enable */
9915 0, /* 03 wdtr_able */
9916 0, /* 04 sdtr_speed1 */
9917 0, /* 05 start_motor */
9918 0, /* 06 tagqng_able */
9919 0, /* 07 bios_scan */
9920 0, /* 08 scam_tolerant */
9921 1, /* 09 adapter_scsi_id */
9922 1, /* bios_boot_delay */
9923 1, /* 10 scsi_reset_delay */
9924 1, /* bios_id_lun */
9925 1, /* 11 termination_se */
9926 1, /* termination_lvd */
9927 0, /* 12 bios_ctrl */
9928 0, /* 13 sdtr_speed2 */
9929 0, /* 14 sdtr_speed3 */
9930 1, /* 15 max_host_qng */
9931 1, /* max_dvc_qng */
9932 0, /* 16 dvc_cntl */
9933 0, /* 17 sdtr_speed4 */
9934 0, /* 18 serial_number_word1 */
9935 0, /* 19 serial_number_word2 */
9936 0, /* 20 serial_number_word3 */
9937 0, /* 21 check_sum */
9938 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
9939 , /* 22-29 oem_name[16] */
9940 0, /* 30 dvc_err_code */
9941 0, /* 31 adv_err_code */
9942 0, /* 32 adv_err_addr */
9943 0, /* 33 saved_dvc_err_code */
9944 0, /* 34 saved_adv_err_code */
9945 0, /* 35 saved_adv_err_addr */
9946 0, /* 36 reserved */
9947 0, /* 37 reserved */
9948 0, /* 38 reserved */
9949 0, /* 39 reserved */
9950 0, /* 40 reserved */
9951 0, /* 41 reserved */
9952 0, /* 42 reserved */
9953 0, /* 43 reserved */
9954 0, /* 44 reserved */
9955 0, /* 45 reserved */
9956 0, /* 46 reserved */
9957 0, /* 47 reserved */
9958 0, /* 48 reserved */
9959 0, /* 49 reserved */
9960 0, /* 50 reserved */
9961 0, /* 51 reserved */
9962 0, /* 52 reserved */
9963 0, /* 53 reserved */
9964 0, /* 54 reserved */
9965 0, /* 55 reserved */
9966 0, /* 56 cisptr_lsw */
9967 0, /* 57 cisprt_msw */
9968 0, /* 58 subsysvid */
9969 0, /* 59 subsysid */
9970 0, /* 60 reserved */
9971 0, /* 61 reserved */
9972 0, /* 62 reserved */
9973 0 /* 63 reserved */
9974};
9975
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -08009976static ADVEEP_38C1600_CONFIG Default_38C1600_EEPROM_Config = {
Matthew Wilcox51219352007-10-02 21:55:22 -04009977 ADV_EEPROM_BIOS_ENABLE, /* 00 cfg_lsw */
9978 0x0000, /* 01 cfg_msw */
9979 0xFFFF, /* 02 disc_enable */
9980 0xFFFF, /* 03 wdtr_able */
9981 0x5555, /* 04 sdtr_speed1 */
9982 0xFFFF, /* 05 start_motor */
9983 0xFFFF, /* 06 tagqng_able */
9984 0xFFFF, /* 07 bios_scan */
9985 0, /* 08 scam_tolerant */
9986 7, /* 09 adapter_scsi_id */
9987 0, /* bios_boot_delay */
9988 3, /* 10 scsi_reset_delay */
9989 0, /* bios_id_lun */
9990 0, /* 11 termination_se */
9991 0, /* termination_lvd */
9992 0xFFE7, /* 12 bios_ctrl */
9993 0x5555, /* 13 sdtr_speed2 */
9994 0x5555, /* 14 sdtr_speed3 */
9995 ASC_DEF_MAX_HOST_QNG, /* 15 max_host_qng */
9996 ASC_DEF_MAX_DVC_QNG, /* max_dvc_qng */
9997 0, /* 16 dvc_cntl */
9998 0x5555, /* 17 sdtr_speed4 */
9999 0, /* 18 serial_number_word1 */
10000 0, /* 19 serial_number_word2 */
10001 0, /* 20 serial_number_word3 */
10002 0, /* 21 check_sum */
10003 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
10004 , /* 22-29 oem_name[16] */
10005 0, /* 30 dvc_err_code */
10006 0, /* 31 adv_err_code */
10007 0, /* 32 adv_err_addr */
10008 0, /* 33 saved_dvc_err_code */
10009 0, /* 34 saved_adv_err_code */
10010 0, /* 35 saved_adv_err_addr */
10011 0, /* 36 reserved */
10012 0, /* 37 reserved */
10013 0, /* 38 reserved */
10014 0, /* 39 reserved */
10015 0, /* 40 reserved */
10016 0, /* 41 reserved */
10017 0, /* 42 reserved */
10018 0, /* 43 reserved */
10019 0, /* 44 reserved */
10020 0, /* 45 reserved */
10021 0, /* 46 reserved */
10022 0, /* 47 reserved */
10023 0, /* 48 reserved */
10024 0, /* 49 reserved */
10025 0, /* 50 reserved */
10026 0, /* 51 reserved */
10027 0, /* 52 reserved */
10028 0, /* 53 reserved */
10029 0, /* 54 reserved */
10030 0, /* 55 reserved */
10031 0, /* 56 cisptr_lsw */
10032 0, /* 57 cisprt_msw */
10033 PCI_VENDOR_ID_ASP, /* 58 subsysvid */
10034 PCI_DEVICE_ID_38C1600_REV1, /* 59 subsysid */
10035 0, /* 60 reserved */
10036 0, /* 61 reserved */
10037 0, /* 62 reserved */
10038 0 /* 63 reserved */
10039};
10040
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010041static ADVEEP_38C1600_CONFIG ADVEEP_38C1600_Config_Field_IsChar = {
Matthew Wilcox51219352007-10-02 21:55:22 -040010042 0, /* 00 cfg_lsw */
10043 0, /* 01 cfg_msw */
10044 0, /* 02 disc_enable */
10045 0, /* 03 wdtr_able */
10046 0, /* 04 sdtr_speed1 */
10047 0, /* 05 start_motor */
10048 0, /* 06 tagqng_able */
10049 0, /* 07 bios_scan */
10050 0, /* 08 scam_tolerant */
10051 1, /* 09 adapter_scsi_id */
10052 1, /* bios_boot_delay */
10053 1, /* 10 scsi_reset_delay */
10054 1, /* bios_id_lun */
10055 1, /* 11 termination_se */
10056 1, /* termination_lvd */
10057 0, /* 12 bios_ctrl */
10058 0, /* 13 sdtr_speed2 */
10059 0, /* 14 sdtr_speed3 */
10060 1, /* 15 max_host_qng */
10061 1, /* max_dvc_qng */
10062 0, /* 16 dvc_cntl */
10063 0, /* 17 sdtr_speed4 */
10064 0, /* 18 serial_number_word1 */
10065 0, /* 19 serial_number_word2 */
10066 0, /* 20 serial_number_word3 */
10067 0, /* 21 check_sum */
10068 {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
10069 , /* 22-29 oem_name[16] */
10070 0, /* 30 dvc_err_code */
10071 0, /* 31 adv_err_code */
10072 0, /* 32 adv_err_addr */
10073 0, /* 33 saved_dvc_err_code */
10074 0, /* 34 saved_adv_err_code */
10075 0, /* 35 saved_adv_err_addr */
10076 0, /* 36 reserved */
10077 0, /* 37 reserved */
10078 0, /* 38 reserved */
10079 0, /* 39 reserved */
10080 0, /* 40 reserved */
10081 0, /* 41 reserved */
10082 0, /* 42 reserved */
10083 0, /* 43 reserved */
10084 0, /* 44 reserved */
10085 0, /* 45 reserved */
10086 0, /* 46 reserved */
10087 0, /* 47 reserved */
10088 0, /* 48 reserved */
10089 0, /* 49 reserved */
10090 0, /* 50 reserved */
10091 0, /* 51 reserved */
10092 0, /* 52 reserved */
10093 0, /* 53 reserved */
10094 0, /* 54 reserved */
10095 0, /* 55 reserved */
10096 0, /* 56 cisptr_lsw */
10097 0, /* 57 cisprt_msw */
10098 0, /* 58 subsysvid */
10099 0, /* 59 subsysid */
10100 0, /* 60 reserved */
10101 0, /* 61 reserved */
10102 0, /* 62 reserved */
10103 0 /* 63 reserved */
10104};
10105
10106#ifdef CONFIG_PCI
10107/*
10108 * Wait for EEPROM command to complete
10109 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010110static void AdvWaitEEPCmd(AdvPortAddr iop_base)
Matthew Wilcox51219352007-10-02 21:55:22 -040010111{
10112 int eep_delay_ms;
10113
10114 for (eep_delay_ms = 0; eep_delay_ms < ADV_EEP_DELAY_MS; eep_delay_ms++) {
10115 if (AdvReadWordRegister(iop_base, IOPW_EE_CMD) &
10116 ASC_EEP_CMD_DONE) {
10117 break;
10118 }
10119 mdelay(1);
10120 }
10121 if ((AdvReadWordRegister(iop_base, IOPW_EE_CMD) & ASC_EEP_CMD_DONE) ==
10122 0)
10123 BUG();
10124}
10125
10126/*
10127 * Read the EEPROM from specified location
10128 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010129static ushort AdvReadEEPWord(AdvPortAddr iop_base, int eep_word_addr)
Matthew Wilcox51219352007-10-02 21:55:22 -040010130{
10131 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
10132 ASC_EEP_CMD_READ | eep_word_addr);
10133 AdvWaitEEPCmd(iop_base);
10134 return AdvReadWordRegister(iop_base, IOPW_EE_DATA);
10135}
10136
10137/*
10138 * Write the EEPROM from 'cfg_buf'.
10139 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010140static void AdvSet3550EEPConfig(AdvPortAddr iop_base,
10141 ADVEEP_3550_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -040010142{
10143 ushort *wbuf;
10144 ushort addr, chksum;
10145 ushort *charfields;
10146
10147 wbuf = (ushort *)cfg_buf;
10148 charfields = (ushort *)&ADVEEP_3550_Config_Field_IsChar;
10149 chksum = 0;
10150
10151 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
10152 AdvWaitEEPCmd(iop_base);
10153
10154 /*
10155 * Write EEPROM from word 0 to word 20.
10156 */
10157 for (addr = ADV_EEP_DVC_CFG_BEGIN;
10158 addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
10159 ushort word;
10160
10161 if (*charfields++) {
10162 word = cpu_to_le16(*wbuf);
10163 } else {
10164 word = *wbuf;
10165 }
10166 chksum += *wbuf; /* Checksum is calculated from word values. */
10167 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
10168 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
10169 ASC_EEP_CMD_WRITE | addr);
10170 AdvWaitEEPCmd(iop_base);
10171 mdelay(ADV_EEP_DELAY_MS);
10172 }
10173
10174 /*
10175 * Write EEPROM checksum at word 21.
10176 */
10177 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
10178 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
10179 AdvWaitEEPCmd(iop_base);
10180 wbuf++;
10181 charfields++;
10182
10183 /*
10184 * Write EEPROM OEM name at words 22 to 29.
10185 */
10186 for (addr = ADV_EEP_DVC_CTL_BEGIN;
10187 addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
10188 ushort word;
10189
10190 if (*charfields++) {
10191 word = cpu_to_le16(*wbuf);
10192 } else {
10193 word = *wbuf;
10194 }
10195 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
10196 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
10197 ASC_EEP_CMD_WRITE | addr);
10198 AdvWaitEEPCmd(iop_base);
10199 }
10200 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
10201 AdvWaitEEPCmd(iop_base);
10202}
10203
10204/*
10205 * Write the EEPROM from 'cfg_buf'.
10206 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010207static void AdvSet38C0800EEPConfig(AdvPortAddr iop_base,
10208 ADVEEP_38C0800_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -040010209{
10210 ushort *wbuf;
10211 ushort *charfields;
10212 ushort addr, chksum;
10213
10214 wbuf = (ushort *)cfg_buf;
10215 charfields = (ushort *)&ADVEEP_38C0800_Config_Field_IsChar;
10216 chksum = 0;
10217
10218 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
10219 AdvWaitEEPCmd(iop_base);
10220
10221 /*
10222 * Write EEPROM from word 0 to word 20.
10223 */
10224 for (addr = ADV_EEP_DVC_CFG_BEGIN;
10225 addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
10226 ushort word;
10227
10228 if (*charfields++) {
10229 word = cpu_to_le16(*wbuf);
10230 } else {
10231 word = *wbuf;
10232 }
10233 chksum += *wbuf; /* Checksum is calculated from word values. */
10234 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
10235 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
10236 ASC_EEP_CMD_WRITE | addr);
10237 AdvWaitEEPCmd(iop_base);
10238 mdelay(ADV_EEP_DELAY_MS);
10239 }
10240
10241 /*
10242 * Write EEPROM checksum at word 21.
10243 */
10244 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
10245 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
10246 AdvWaitEEPCmd(iop_base);
10247 wbuf++;
10248 charfields++;
10249
10250 /*
10251 * Write EEPROM OEM name at words 22 to 29.
10252 */
10253 for (addr = ADV_EEP_DVC_CTL_BEGIN;
10254 addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
10255 ushort word;
10256
10257 if (*charfields++) {
10258 word = cpu_to_le16(*wbuf);
10259 } else {
10260 word = *wbuf;
10261 }
10262 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
10263 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
10264 ASC_EEP_CMD_WRITE | addr);
10265 AdvWaitEEPCmd(iop_base);
10266 }
10267 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
10268 AdvWaitEEPCmd(iop_base);
10269}
10270
10271/*
10272 * Write the EEPROM from 'cfg_buf'.
10273 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010274static void AdvSet38C1600EEPConfig(AdvPortAddr iop_base,
10275 ADVEEP_38C1600_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -040010276{
10277 ushort *wbuf;
10278 ushort *charfields;
10279 ushort addr, chksum;
10280
10281 wbuf = (ushort *)cfg_buf;
10282 charfields = (ushort *)&ADVEEP_38C1600_Config_Field_IsChar;
10283 chksum = 0;
10284
10285 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
10286 AdvWaitEEPCmd(iop_base);
10287
10288 /*
10289 * Write EEPROM from word 0 to word 20.
10290 */
10291 for (addr = ADV_EEP_DVC_CFG_BEGIN;
10292 addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
10293 ushort word;
10294
10295 if (*charfields++) {
10296 word = cpu_to_le16(*wbuf);
10297 } else {
10298 word = *wbuf;
10299 }
10300 chksum += *wbuf; /* Checksum is calculated from word values. */
10301 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
10302 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
10303 ASC_EEP_CMD_WRITE | addr);
10304 AdvWaitEEPCmd(iop_base);
10305 mdelay(ADV_EEP_DELAY_MS);
10306 }
10307
10308 /*
10309 * Write EEPROM checksum at word 21.
10310 */
10311 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
10312 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
10313 AdvWaitEEPCmd(iop_base);
10314 wbuf++;
10315 charfields++;
10316
10317 /*
10318 * Write EEPROM OEM name at words 22 to 29.
10319 */
10320 for (addr = ADV_EEP_DVC_CTL_BEGIN;
10321 addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
10322 ushort word;
10323
10324 if (*charfields++) {
10325 word = cpu_to_le16(*wbuf);
10326 } else {
10327 word = *wbuf;
10328 }
10329 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
10330 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
10331 ASC_EEP_CMD_WRITE | addr);
10332 AdvWaitEEPCmd(iop_base);
10333 }
10334 AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
10335 AdvWaitEEPCmd(iop_base);
10336}
10337
10338/*
10339 * Read EEPROM configuration into the specified buffer.
10340 *
10341 * Return a checksum based on the EEPROM configuration read.
10342 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010343static ushort AdvGet3550EEPConfig(AdvPortAddr iop_base,
10344 ADVEEP_3550_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -040010345{
10346 ushort wval, chksum;
10347 ushort *wbuf;
10348 int eep_addr;
10349 ushort *charfields;
10350
10351 charfields = (ushort *)&ADVEEP_3550_Config_Field_IsChar;
10352 wbuf = (ushort *)cfg_buf;
10353 chksum = 0;
10354
10355 for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
10356 eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
10357 wval = AdvReadEEPWord(iop_base, eep_addr);
10358 chksum += wval; /* Checksum is calculated from word values. */
10359 if (*charfields++) {
10360 *wbuf = le16_to_cpu(wval);
10361 } else {
10362 *wbuf = wval;
10363 }
10364 }
10365 /* Read checksum word. */
10366 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
10367 wbuf++;
10368 charfields++;
10369
10370 /* Read rest of EEPROM not covered by the checksum. */
10371 for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
10372 eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
10373 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
10374 if (*charfields++) {
10375 *wbuf = le16_to_cpu(*wbuf);
10376 }
10377 }
10378 return chksum;
10379}
10380
10381/*
10382 * Read EEPROM configuration into the specified buffer.
10383 *
10384 * Return a checksum based on the EEPROM configuration read.
10385 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010386static ushort AdvGet38C0800EEPConfig(AdvPortAddr iop_base,
10387 ADVEEP_38C0800_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -040010388{
10389 ushort wval, chksum;
10390 ushort *wbuf;
10391 int eep_addr;
10392 ushort *charfields;
10393
10394 charfields = (ushort *)&ADVEEP_38C0800_Config_Field_IsChar;
10395 wbuf = (ushort *)cfg_buf;
10396 chksum = 0;
10397
10398 for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
10399 eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
10400 wval = AdvReadEEPWord(iop_base, eep_addr);
10401 chksum += wval; /* Checksum is calculated from word values. */
10402 if (*charfields++) {
10403 *wbuf = le16_to_cpu(wval);
10404 } else {
10405 *wbuf = wval;
10406 }
10407 }
10408 /* Read checksum word. */
10409 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
10410 wbuf++;
10411 charfields++;
10412
10413 /* Read rest of EEPROM not covered by the checksum. */
10414 for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
10415 eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
10416 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
10417 if (*charfields++) {
10418 *wbuf = le16_to_cpu(*wbuf);
10419 }
10420 }
10421 return chksum;
10422}
10423
10424/*
10425 * Read EEPROM configuration into the specified buffer.
10426 *
10427 * Return a checksum based on the EEPROM configuration read.
10428 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010429static ushort AdvGet38C1600EEPConfig(AdvPortAddr iop_base,
10430 ADVEEP_38C1600_CONFIG *cfg_buf)
Matthew Wilcox51219352007-10-02 21:55:22 -040010431{
10432 ushort wval, chksum;
10433 ushort *wbuf;
10434 int eep_addr;
10435 ushort *charfields;
10436
10437 charfields = (ushort *)&ADVEEP_38C1600_Config_Field_IsChar;
10438 wbuf = (ushort *)cfg_buf;
10439 chksum = 0;
10440
10441 for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
10442 eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
10443 wval = AdvReadEEPWord(iop_base, eep_addr);
10444 chksum += wval; /* Checksum is calculated from word values. */
10445 if (*charfields++) {
10446 *wbuf = le16_to_cpu(wval);
10447 } else {
10448 *wbuf = wval;
10449 }
10450 }
10451 /* Read checksum word. */
10452 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
10453 wbuf++;
10454 charfields++;
10455
10456 /* Read rest of EEPROM not covered by the checksum. */
10457 for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
10458 eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
10459 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
10460 if (*charfields++) {
10461 *wbuf = le16_to_cpu(*wbuf);
10462 }
10463 }
10464 return chksum;
10465}
10466
10467/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070010468 * Read the board's EEPROM configuration. Set fields in ADV_DVC_VAR and
10469 * ADV_DVC_CFG based on the EEPROM settings. The chip is stopped while
10470 * all of this is done.
10471 *
10472 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
10473 *
10474 * For a non-fatal error return a warning code. If there are no warnings
10475 * then 0 is returned.
10476 *
10477 * Note: Chip is stopped on entry.
10478 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010479static int AdvInitFrom3550EEP(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010480{
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010481 AdvPortAddr iop_base;
10482 ushort warn_code;
10483 ADVEEP_3550_CONFIG eep_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010484
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010485 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010486
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010487 warn_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010488
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010489 /*
10490 * Read the board's EEPROM configuration.
10491 *
10492 * Set default values if a bad checksum is found.
10493 */
10494 if (AdvGet3550EEPConfig(iop_base, &eep_config) != eep_config.check_sum) {
10495 warn_code |= ASC_WARN_EEPROM_CHKSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010496
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010497 /*
10498 * Set EEPROM default values.
10499 */
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010500 memcpy(&eep_config, &Default_3550_EEPROM_Config,
10501 sizeof(ADVEEP_3550_CONFIG));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010502
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010503 /*
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010504 * Assume the 6 byte board serial number that was read from
10505 * EEPROM is correct even if the EEPROM checksum failed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010506 */
10507 eep_config.serial_number_word3 =
10508 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010509
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010510 eep_config.serial_number_word2 =
10511 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010512
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010513 eep_config.serial_number_word1 =
10514 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010515
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010516 AdvSet3550EEPConfig(iop_base, &eep_config);
10517 }
10518 /*
10519 * Set ASC_DVC_VAR and ASC_DVC_CFG variables from the
10520 * EEPROM configuration that was read.
10521 *
10522 * This is the mapping of EEPROM fields to Adv Library fields.
10523 */
10524 asc_dvc->wdtr_able = eep_config.wdtr_able;
10525 asc_dvc->sdtr_able = eep_config.sdtr_able;
10526 asc_dvc->ultra_able = eep_config.ultra_able;
10527 asc_dvc->tagqng_able = eep_config.tagqng_able;
10528 asc_dvc->cfg->disc_enable = eep_config.disc_enable;
10529 asc_dvc->max_host_qng = eep_config.max_host_qng;
10530 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
10531 asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ADV_MAX_TID);
10532 asc_dvc->start_motor = eep_config.start_motor;
10533 asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
10534 asc_dvc->bios_ctrl = eep_config.bios_ctrl;
10535 asc_dvc->no_scam = eep_config.scam_tolerant;
10536 asc_dvc->cfg->serial1 = eep_config.serial_number_word1;
10537 asc_dvc->cfg->serial2 = eep_config.serial_number_word2;
10538 asc_dvc->cfg->serial3 = eep_config.serial_number_word3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010539
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010540 /*
10541 * Set the host maximum queuing (max. 253, min. 16) and the per device
10542 * maximum queuing (max. 63, min. 4).
10543 */
10544 if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
10545 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10546 } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
10547 /* If the value is zero, assume it is uninitialized. */
10548 if (eep_config.max_host_qng == 0) {
10549 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10550 } else {
10551 eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
10552 }
10553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010554
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010555 if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
10556 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10557 } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
10558 /* If the value is zero, assume it is uninitialized. */
10559 if (eep_config.max_dvc_qng == 0) {
10560 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10561 } else {
10562 eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
10563 }
10564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010565
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010566 /*
10567 * If 'max_dvc_qng' is greater than 'max_host_qng', then
10568 * set 'max_dvc_qng' to 'max_host_qng'.
10569 */
10570 if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
10571 eep_config.max_dvc_qng = eep_config.max_host_qng;
10572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010573
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010574 /*
10575 * Set ADV_DVC_VAR 'max_host_qng' and ADV_DVC_VAR 'max_dvc_qng'
10576 * values based on possibly adjusted EEPROM values.
10577 */
10578 asc_dvc->max_host_qng = eep_config.max_host_qng;
10579 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010580
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010581 /*
10582 * If the EEPROM 'termination' field is set to automatic (0), then set
10583 * the ADV_DVC_CFG 'termination' field to automatic also.
10584 *
10585 * If the termination is specified with a non-zero 'termination'
10586 * value check that a legal value is set and set the ADV_DVC_CFG
10587 * 'termination' field appropriately.
10588 */
10589 if (eep_config.termination == 0) {
10590 asc_dvc->cfg->termination = 0; /* auto termination */
10591 } else {
10592 /* Enable manual control with low off / high off. */
10593 if (eep_config.termination == 1) {
10594 asc_dvc->cfg->termination = TERM_CTL_SEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010595
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010596 /* Enable manual control with low off / high on. */
10597 } else if (eep_config.termination == 2) {
10598 asc_dvc->cfg->termination = TERM_CTL_SEL | TERM_CTL_H;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010599
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010600 /* Enable manual control with low on / high on. */
10601 } else if (eep_config.termination == 3) {
10602 asc_dvc->cfg->termination =
10603 TERM_CTL_SEL | TERM_CTL_H | TERM_CTL_L;
10604 } else {
10605 /*
10606 * The EEPROM 'termination' field contains a bad value. Use
10607 * automatic termination instead.
10608 */
10609 asc_dvc->cfg->termination = 0;
10610 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10611 }
10612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010613
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010614 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010615}
10616
10617/*
10618 * Read the board's EEPROM configuration. Set fields in ADV_DVC_VAR and
10619 * ADV_DVC_CFG based on the EEPROM settings. The chip is stopped while
10620 * all of this is done.
10621 *
10622 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
10623 *
10624 * For a non-fatal error return a warning code. If there are no warnings
10625 * then 0 is returned.
10626 *
10627 * Note: Chip is stopped on entry.
10628 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010629static int AdvInitFrom38C0800EEP(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010630{
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010631 AdvPortAddr iop_base;
10632 ushort warn_code;
10633 ADVEEP_38C0800_CONFIG eep_config;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010634 uchar tid, termination;
10635 ushort sdtr_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010636
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010637 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010638
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010639 warn_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010640
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010641 /*
10642 * Read the board's EEPROM configuration.
10643 *
10644 * Set default values if a bad checksum is found.
10645 */
10646 if (AdvGet38C0800EEPConfig(iop_base, &eep_config) !=
10647 eep_config.check_sum) {
10648 warn_code |= ASC_WARN_EEPROM_CHKSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010649
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010650 /*
10651 * Set EEPROM default values.
10652 */
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010653 memcpy(&eep_config, &Default_38C0800_EEPROM_Config,
10654 sizeof(ADVEEP_38C0800_CONFIG));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010655
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010656 /*
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010657 * Assume the 6 byte board serial number that was read from
10658 * EEPROM is correct even if the EEPROM checksum failed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010659 */
10660 eep_config.serial_number_word3 =
10661 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010662
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010663 eep_config.serial_number_word2 =
10664 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010665
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010666 eep_config.serial_number_word1 =
10667 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010668
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010669 AdvSet38C0800EEPConfig(iop_base, &eep_config);
10670 }
10671 /*
10672 * Set ADV_DVC_VAR and ADV_DVC_CFG variables from the
10673 * EEPROM configuration that was read.
10674 *
10675 * This is the mapping of EEPROM fields to Adv Library fields.
10676 */
10677 asc_dvc->wdtr_able = eep_config.wdtr_able;
10678 asc_dvc->sdtr_speed1 = eep_config.sdtr_speed1;
10679 asc_dvc->sdtr_speed2 = eep_config.sdtr_speed2;
10680 asc_dvc->sdtr_speed3 = eep_config.sdtr_speed3;
10681 asc_dvc->sdtr_speed4 = eep_config.sdtr_speed4;
10682 asc_dvc->tagqng_able = eep_config.tagqng_able;
10683 asc_dvc->cfg->disc_enable = eep_config.disc_enable;
10684 asc_dvc->max_host_qng = eep_config.max_host_qng;
10685 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
10686 asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ADV_MAX_TID);
10687 asc_dvc->start_motor = eep_config.start_motor;
10688 asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
10689 asc_dvc->bios_ctrl = eep_config.bios_ctrl;
10690 asc_dvc->no_scam = eep_config.scam_tolerant;
10691 asc_dvc->cfg->serial1 = eep_config.serial_number_word1;
10692 asc_dvc->cfg->serial2 = eep_config.serial_number_word2;
10693 asc_dvc->cfg->serial3 = eep_config.serial_number_word3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010694
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010695 /*
10696 * For every Target ID if any of its 'sdtr_speed[1234]' bits
10697 * are set, then set an 'sdtr_able' bit for it.
10698 */
10699 asc_dvc->sdtr_able = 0;
10700 for (tid = 0; tid <= ADV_MAX_TID; tid++) {
10701 if (tid == 0) {
10702 sdtr_speed = asc_dvc->sdtr_speed1;
10703 } else if (tid == 4) {
10704 sdtr_speed = asc_dvc->sdtr_speed2;
10705 } else if (tid == 8) {
10706 sdtr_speed = asc_dvc->sdtr_speed3;
10707 } else if (tid == 12) {
10708 sdtr_speed = asc_dvc->sdtr_speed4;
10709 }
10710 if (sdtr_speed & ADV_MAX_TID) {
10711 asc_dvc->sdtr_able |= (1 << tid);
10712 }
10713 sdtr_speed >>= 4;
10714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010715
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010716 /*
10717 * Set the host maximum queuing (max. 253, min. 16) and the per device
10718 * maximum queuing (max. 63, min. 4).
10719 */
10720 if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
10721 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10722 } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
10723 /* If the value is zero, assume it is uninitialized. */
10724 if (eep_config.max_host_qng == 0) {
10725 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10726 } else {
10727 eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
10728 }
10729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010730
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010731 if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
10732 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10733 } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
10734 /* If the value is zero, assume it is uninitialized. */
10735 if (eep_config.max_dvc_qng == 0) {
10736 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10737 } else {
10738 eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
10739 }
10740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010741
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010742 /*
10743 * If 'max_dvc_qng' is greater than 'max_host_qng', then
10744 * set 'max_dvc_qng' to 'max_host_qng'.
10745 */
10746 if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
10747 eep_config.max_dvc_qng = eep_config.max_host_qng;
10748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010749
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010750 /*
10751 * Set ADV_DVC_VAR 'max_host_qng' and ADV_DVC_VAR 'max_dvc_qng'
10752 * values based on possibly adjusted EEPROM values.
10753 */
10754 asc_dvc->max_host_qng = eep_config.max_host_qng;
10755 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010756
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010757 /*
10758 * If the EEPROM 'termination' field is set to automatic (0), then set
10759 * the ADV_DVC_CFG 'termination' field to automatic also.
10760 *
10761 * If the termination is specified with a non-zero 'termination'
10762 * value check that a legal value is set and set the ADV_DVC_CFG
10763 * 'termination' field appropriately.
10764 */
10765 if (eep_config.termination_se == 0) {
10766 termination = 0; /* auto termination for SE */
10767 } else {
10768 /* Enable manual control with low off / high off. */
10769 if (eep_config.termination_se == 1) {
10770 termination = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010771
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010772 /* Enable manual control with low off / high on. */
10773 } else if (eep_config.termination_se == 2) {
10774 termination = TERM_SE_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010775
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010776 /* Enable manual control with low on / high on. */
10777 } else if (eep_config.termination_se == 3) {
10778 termination = TERM_SE;
10779 } else {
10780 /*
10781 * The EEPROM 'termination_se' field contains a bad value.
10782 * Use automatic termination instead.
10783 */
10784 termination = 0;
10785 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10786 }
10787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010788
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010789 if (eep_config.termination_lvd == 0) {
10790 asc_dvc->cfg->termination = termination; /* auto termination for LVD */
10791 } else {
10792 /* Enable manual control with low off / high off. */
10793 if (eep_config.termination_lvd == 1) {
10794 asc_dvc->cfg->termination = termination;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010795
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010796 /* Enable manual control with low off / high on. */
10797 } else if (eep_config.termination_lvd == 2) {
10798 asc_dvc->cfg->termination = termination | TERM_LVD_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010799
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010800 /* Enable manual control with low on / high on. */
10801 } else if (eep_config.termination_lvd == 3) {
10802 asc_dvc->cfg->termination = termination | TERM_LVD;
10803 } else {
10804 /*
10805 * The EEPROM 'termination_lvd' field contains a bad value.
10806 * Use automatic termination instead.
10807 */
10808 asc_dvc->cfg->termination = termination;
10809 warn_code |= ASC_WARN_EEPROM_TERMINATION;
10810 }
10811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010812
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010813 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010814}
10815
10816/*
10817 * Read the board's EEPROM configuration. Set fields in ASC_DVC_VAR and
10818 * ASC_DVC_CFG based on the EEPROM settings. The chip is stopped while
10819 * all of this is done.
10820 *
10821 * On failure set the ASC_DVC_VAR field 'err_code' and return ADV_ERROR.
10822 *
10823 * For a non-fatal error return a warning code. If there are no warnings
10824 * then 0 is returned.
10825 *
10826 * Note: Chip is stopped on entry.
10827 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080010828static int AdvInitFrom38C1600EEP(ADV_DVC_VAR *asc_dvc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010829{
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010830 AdvPortAddr iop_base;
10831 ushort warn_code;
10832 ADVEEP_38C1600_CONFIG eep_config;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010833 uchar tid, termination;
10834 ushort sdtr_speed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010835
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010836 iop_base = asc_dvc->iop_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010837
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010838 warn_code = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010839
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010840 /*
10841 * Read the board's EEPROM configuration.
10842 *
10843 * Set default values if a bad checksum is found.
10844 */
10845 if (AdvGet38C1600EEPConfig(iop_base, &eep_config) !=
10846 eep_config.check_sum) {
Matthew Wilcox13ac2d92007-07-30 08:10:23 -060010847 struct pci_dev *pdev = adv_dvc_to_pdev(asc_dvc);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010848 warn_code |= ASC_WARN_EEPROM_CHKSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010849
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010850 /*
10851 * Set EEPROM default values.
10852 */
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010853 memcpy(&eep_config, &Default_38C1600_EEPROM_Config,
10854 sizeof(ADVEEP_38C1600_CONFIG));
Linus Torvalds1da177e2005-04-16 15:20:36 -070010855
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010856 if (PCI_FUNC(pdev->devfn) != 0) {
10857 u8 ints;
10858 /*
10859 * Disable Bit 14 (BIOS_ENABLE) to fix SPARC Ultra 60
10860 * and old Mac system booting problem. The Expansion
10861 * ROM must be disabled in Function 1 for these systems
10862 */
10863 eep_config.cfg_lsw &= ~ADV_EEPROM_BIOS_ENABLE;
10864 /*
10865 * Clear the INTAB (bit 11) if the GPIO 0 input
10866 * indicates the Function 1 interrupt line is wired
10867 * to INTB.
10868 *
10869 * Set/Clear Bit 11 (INTAB) from the GPIO bit 0 input:
10870 * 1 - Function 1 interrupt line wired to INT A.
10871 * 0 - Function 1 interrupt line wired to INT B.
10872 *
10873 * Note: Function 0 is always wired to INTA.
10874 * Put all 5 GPIO bits in input mode and then read
10875 * their input values.
10876 */
10877 AdvWriteByteRegister(iop_base, IOPB_GPIO_CNTL, 0);
10878 ints = AdvReadByteRegister(iop_base, IOPB_GPIO_DATA);
10879 if ((ints & 0x01) == 0)
10880 eep_config.cfg_lsw &= ~ADV_EEPROM_INTAB;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010882
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010883 /*
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010884 * Assume the 6 byte board serial number that was read from
10885 * EEPROM is correct even if the EEPROM checksum failed.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010886 */
10887 eep_config.serial_number_word3 =
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010888 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010889 eep_config.serial_number_word2 =
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010890 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010891 eep_config.serial_number_word1 =
Matthew Wilcoxd68f4322007-07-26 11:58:12 -040010892 AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010893
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010894 AdvSet38C1600EEPConfig(iop_base, &eep_config);
10895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010896
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010897 /*
10898 * Set ASC_DVC_VAR and ASC_DVC_CFG variables from the
10899 * EEPROM configuration that was read.
10900 *
10901 * This is the mapping of EEPROM fields to Adv Library fields.
10902 */
10903 asc_dvc->wdtr_able = eep_config.wdtr_able;
10904 asc_dvc->sdtr_speed1 = eep_config.sdtr_speed1;
10905 asc_dvc->sdtr_speed2 = eep_config.sdtr_speed2;
10906 asc_dvc->sdtr_speed3 = eep_config.sdtr_speed3;
10907 asc_dvc->sdtr_speed4 = eep_config.sdtr_speed4;
10908 asc_dvc->ppr_able = 0;
10909 asc_dvc->tagqng_able = eep_config.tagqng_able;
10910 asc_dvc->cfg->disc_enable = eep_config.disc_enable;
10911 asc_dvc->max_host_qng = eep_config.max_host_qng;
10912 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
10913 asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ASC_MAX_TID);
10914 asc_dvc->start_motor = eep_config.start_motor;
10915 asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
10916 asc_dvc->bios_ctrl = eep_config.bios_ctrl;
10917 asc_dvc->no_scam = eep_config.scam_tolerant;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010918
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010919 /*
10920 * For every Target ID if any of its 'sdtr_speed[1234]' bits
10921 * are set, then set an 'sdtr_able' bit for it.
10922 */
10923 asc_dvc->sdtr_able = 0;
10924 for (tid = 0; tid <= ASC_MAX_TID; tid++) {
10925 if (tid == 0) {
10926 sdtr_speed = asc_dvc->sdtr_speed1;
10927 } else if (tid == 4) {
10928 sdtr_speed = asc_dvc->sdtr_speed2;
10929 } else if (tid == 8) {
10930 sdtr_speed = asc_dvc->sdtr_speed3;
10931 } else if (tid == 12) {
10932 sdtr_speed = asc_dvc->sdtr_speed4;
10933 }
10934 if (sdtr_speed & ASC_MAX_TID) {
10935 asc_dvc->sdtr_able |= (1 << tid);
10936 }
10937 sdtr_speed >>= 4;
10938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010939
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010940 /*
10941 * Set the host maximum queuing (max. 253, min. 16) and the per device
10942 * maximum queuing (max. 63, min. 4).
10943 */
10944 if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
10945 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10946 } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
10947 /* If the value is zero, assume it is uninitialized. */
10948 if (eep_config.max_host_qng == 0) {
10949 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
10950 } else {
10951 eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
10952 }
10953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010954
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010955 if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
10956 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10957 } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
10958 /* If the value is zero, assume it is uninitialized. */
10959 if (eep_config.max_dvc_qng == 0) {
10960 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
10961 } else {
10962 eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
10963 }
10964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010965
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010966 /*
10967 * If 'max_dvc_qng' is greater than 'max_host_qng', then
10968 * set 'max_dvc_qng' to 'max_host_qng'.
10969 */
10970 if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
10971 eep_config.max_dvc_qng = eep_config.max_host_qng;
10972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010973
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010974 /*
10975 * Set ASC_DVC_VAR 'max_host_qng' and ASC_DVC_VAR 'max_dvc_qng'
10976 * values based on possibly adjusted EEPROM values.
10977 */
10978 asc_dvc->max_host_qng = eep_config.max_host_qng;
10979 asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010980
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010981 /*
10982 * If the EEPROM 'termination' field is set to automatic (0), then set
10983 * the ASC_DVC_CFG 'termination' field to automatic also.
10984 *
10985 * If the termination is specified with a non-zero 'termination'
10986 * value check that a legal value is set and set the ASC_DVC_CFG
10987 * 'termination' field appropriately.
10988 */
10989 if (eep_config.termination_se == 0) {
10990 termination = 0; /* auto termination for SE */
10991 } else {
10992 /* Enable manual control with low off / high off. */
10993 if (eep_config.termination_se == 1) {
10994 termination = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010995
Matthew Wilcox27c868c2007-07-26 10:56:23 -040010996 /* Enable manual control with low off / high on. */
10997 } else if (eep_config.termination_se == 2) {
10998 termination = TERM_SE_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010999
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011000 /* Enable manual control with low on / high on. */
11001 } else if (eep_config.termination_se == 3) {
11002 termination = TERM_SE;
11003 } else {
11004 /*
11005 * The EEPROM 'termination_se' field contains a bad value.
11006 * Use automatic termination instead.
11007 */
11008 termination = 0;
11009 warn_code |= ASC_WARN_EEPROM_TERMINATION;
11010 }
11011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011012
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011013 if (eep_config.termination_lvd == 0) {
11014 asc_dvc->cfg->termination = termination; /* auto termination for LVD */
11015 } else {
11016 /* Enable manual control with low off / high off. */
11017 if (eep_config.termination_lvd == 1) {
11018 asc_dvc->cfg->termination = termination;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011019
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011020 /* Enable manual control with low off / high on. */
11021 } else if (eep_config.termination_lvd == 2) {
11022 asc_dvc->cfg->termination = termination | TERM_LVD_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011023
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011024 /* Enable manual control with low on / high on. */
11025 } else if (eep_config.termination_lvd == 3) {
11026 asc_dvc->cfg->termination = termination | TERM_LVD;
11027 } else {
11028 /*
11029 * The EEPROM 'termination_lvd' field contains a bad value.
11030 * Use automatic termination instead.
11031 */
11032 asc_dvc->cfg->termination = termination;
11033 warn_code |= ASC_WARN_EEPROM_TERMINATION;
11034 }
11035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011036
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011037 return warn_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011038}
11039
11040/*
Matthew Wilcox51219352007-10-02 21:55:22 -040011041 * Initialize the ADV_DVC_VAR structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011042 *
Matthew Wilcox51219352007-10-02 21:55:22 -040011043 * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011044 *
Matthew Wilcox51219352007-10-02 21:55:22 -040011045 * For a non-fatal error return a warning code. If there are no warnings
11046 * then 0 is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011047 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011048static int AdvInitGetConfig(struct pci_dev *pdev, struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011049{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011050 struct asc_board *board = shost_priv(shost);
11051 ADV_DVC_VAR *asc_dvc = &board->dvc_var.adv_dvc_var;
Matthew Wilcox51219352007-10-02 21:55:22 -040011052 unsigned short warn_code = 0;
11053 AdvPortAddr iop_base = asc_dvc->iop_base;
11054 u16 cmd;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011055 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011056
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011057 asc_dvc->err_code = 0;
Matthew Wilcox51219352007-10-02 21:55:22 -040011058
11059 /*
11060 * Save the state of the PCI Configuration Command Register
11061 * "Parity Error Response Control" Bit. If the bit is clear (0),
11062 * in AdvInitAsc3550/38C0800Driver() tell the microcode to ignore
11063 * DMA parity errors.
11064 */
11065 asc_dvc->cfg->control_flag = 0;
11066 pci_read_config_word(pdev, PCI_COMMAND, &cmd);
11067 if ((cmd & PCI_COMMAND_PARITY) == 0)
11068 asc_dvc->cfg->control_flag |= CONTROL_FLAG_IGNORE_PERR;
11069
Matthew Wilcox51219352007-10-02 21:55:22 -040011070 asc_dvc->cfg->chip_version =
11071 AdvGetChipVersion(iop_base, asc_dvc->bus_type);
11072
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011073 ASC_DBG(1, "iopb_chip_id_1: 0x%x 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -040011074 (ushort)AdvReadByteRegister(iop_base, IOPB_CHIP_ID_1),
11075 (ushort)ADV_CHIP_ID_BYTE);
11076
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011077 ASC_DBG(1, "iopw_chip_id_0: 0x%x 0x%x\n",
Matthew Wilcox51219352007-10-02 21:55:22 -040011078 (ushort)AdvReadWordRegister(iop_base, IOPW_CHIP_ID_0),
11079 (ushort)ADV_CHIP_ID_WORD);
11080
11081 /*
11082 * Reset the chip to start and allow register writes.
11083 */
11084 if (AdvFindSignature(iop_base) == 0) {
11085 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
11086 return ADV_ERROR;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011087 } else {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011088 /*
Matthew Wilcox51219352007-10-02 21:55:22 -040011089 * The caller must set 'chip_type' to a valid setting.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011090 */
Matthew Wilcox51219352007-10-02 21:55:22 -040011091 if (asc_dvc->chip_type != ADV_CHIP_ASC3550 &&
11092 asc_dvc->chip_type != ADV_CHIP_ASC38C0800 &&
11093 asc_dvc->chip_type != ADV_CHIP_ASC38C1600) {
11094 asc_dvc->err_code |= ASC_IERR_BAD_CHIPTYPE;
11095 return ADV_ERROR;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011097
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011098 /*
Matthew Wilcox51219352007-10-02 21:55:22 -040011099 * Reset Chip.
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011100 */
Matthew Wilcox51219352007-10-02 21:55:22 -040011101 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
11102 ADV_CTRL_REG_CMD_RESET);
11103 mdelay(100);
11104 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
11105 ADV_CTRL_REG_CMD_WR_IO_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011106
Matthew Wilcox51219352007-10-02 21:55:22 -040011107 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
11108 status = AdvInitFrom38C1600EEP(asc_dvc);
11109 } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
11110 status = AdvInitFrom38C0800EEP(asc_dvc);
11111 } else {
11112 status = AdvInitFrom3550EEP(asc_dvc);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011113 }
Matthew Wilcox51219352007-10-02 21:55:22 -040011114 warn_code |= status;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011116
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011117 if (warn_code != 0)
11118 shost_printk(KERN_WARNING, shost, "warning: 0x%x\n", warn_code);
Matthew Wilcox51219352007-10-02 21:55:22 -040011119
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011120 if (asc_dvc->err_code)
11121 shost_printk(KERN_ERR, shost, "error code 0x%x\n",
11122 asc_dvc->err_code);
Matthew Wilcox51219352007-10-02 21:55:22 -040011123
11124 return asc_dvc->err_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011125}
Matthew Wilcox51219352007-10-02 21:55:22 -040011126#endif
11127
11128static struct scsi_host_template advansys_template = {
11129 .proc_name = DRV_NAME,
11130#ifdef CONFIG_PROC_FS
Al Virob59fb6f2013-03-31 02:59:55 -040011131 .show_info = advansys_show_info,
Matthew Wilcox51219352007-10-02 21:55:22 -040011132#endif
11133 .name = DRV_NAME,
11134 .info = advansys_info,
11135 .queuecommand = advansys_queuecommand,
Hannes Reineckeeac0b0c2015-04-24 13:18:20 +020011136 .eh_host_reset_handler = advansys_reset,
Matthew Wilcox51219352007-10-02 21:55:22 -040011137 .bios_param = advansys_biosparam,
11138 .slave_configure = advansys_slave_configure,
11139 /*
11140 * Because the driver may control an ISA adapter 'unchecked_isa_dma'
11141 * must be set. The flag will be cleared in advansys_board_found
11142 * for non-ISA adapters.
11143 */
11144 .unchecked_isa_dma = 1,
11145 /*
11146 * All adapters controlled by this driver are capable of large
11147 * scatter-gather lists. According to the mid-level SCSI documentation
11148 * this obviates any performance gain provided by setting
11149 * 'use_clustering'. But empirically while CPU utilization is increased
11150 * by enabling clustering, I/O throughput increases as well.
11151 */
11152 .use_clustering = ENABLE_CLUSTERING,
Hannes Reinecke9c17c622015-04-24 13:18:21 +020011153 .use_blk_tags = 1,
Matthew Wilcox51219352007-10-02 21:55:22 -040011154};
Linus Torvalds1da177e2005-04-16 15:20:36 -070011155
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011156static int advansys_wide_init_chip(struct Scsi_Host *shost)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011157{
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011158 struct asc_board *board = shost_priv(shost);
11159 struct adv_dvc_var *adv_dvc = &board->dvc_var.adv_dvc_var;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011160 int sg_cnt = 0;
11161 adv_sgblk_t *sgp;
11162 int warn_code, err_code;
11163
11164 /*
11165 * Allocate buffer carrier structures. The total size
Hannes Reinecke98b96a72015-04-24 13:18:23 +020011166 * is about 8 KB, so allocate all at once.
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011167 */
Hannes Reinecke98b96a72015-04-24 13:18:23 +020011168 adv_dvc->carrier = dma_alloc_coherent(board->dev,
11169 ADV_CARRIER_BUFSIZE, &adv_dvc->carrier_addr, GFP_KERNEL);
11170 ASC_DBG(1, "carrier 0x%p\n", adv_dvc->carrier);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011171
Hannes Reinecke98b96a72015-04-24 13:18:23 +020011172 if (!adv_dvc->carrier)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011173 goto kmalloc_failed;
11174
11175 /*
11176 * Allocate up to 'max_host_qng' request structures for the Wide
11177 * board. The total size is about 16 KB, so allocate all at once.
11178 * If the allocation fails decrement and try again.
11179 */
Hannes Reinecke4b47e462015-04-24 13:18:24 +020011180 board->adv_reqp_size = adv_dvc->max_host_qng * sizeof(adv_req_t);
11181 if (board->adv_reqp_size & 0x1f) {
11182 ASC_DBG(1, "unaligned reqp %lu bytes\n", sizeof(adv_req_t));
11183 board->adv_reqp_size = ADV_32BALIGN(board->adv_reqp_size);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011184 }
Hannes Reinecke4b47e462015-04-24 13:18:24 +020011185 board->adv_reqp = dma_alloc_coherent(board->dev, board->adv_reqp_size,
11186 &board->adv_reqp_addr, GFP_KERNEL);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011187
Hannes Reinecke4b47e462015-04-24 13:18:24 +020011188 if (!board->adv_reqp)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011189 goto kmalloc_failed;
11190
Hannes Reinecke4b47e462015-04-24 13:18:24 +020011191 ASC_DBG(1, "reqp 0x%p, req_cnt %d, bytes %lu\n", board->adv_reqp,
11192 adv_dvc->max_host_qng, board->adv_reqp_size);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011193
11194 /*
11195 * Allocate up to ADV_TOT_SG_BLOCK request structures for
11196 * the Wide board. Each structure is about 136 bytes.
11197 */
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011198 board->adv_sgblkp = NULL;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011199 for (sg_cnt = 0; sg_cnt < ADV_TOT_SG_BLOCK; sg_cnt++) {
11200 sgp = kmalloc(sizeof(adv_sgblk_t), GFP_KERNEL);
11201
11202 if (!sgp)
11203 break;
11204
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011205 sgp->next_sgblkp = board->adv_sgblkp;
11206 board->adv_sgblkp = sgp;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011207
11208 }
11209
Matthew Wilcox9d511a42007-10-02 21:55:42 -040011210 ASC_DBG(1, "sg_cnt %d * %lu = %lu bytes\n", sg_cnt, sizeof(adv_sgblk_t),
11211 sizeof(adv_sgblk_t) * sg_cnt);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011212
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011213 if (!board->adv_sgblkp)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011214 goto kmalloc_failed;
11215
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011216 if (adv_dvc->chip_type == ADV_CHIP_ASC3550) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011217 ASC_DBG(2, "AdvInitAsc3550Driver()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011218 warn_code = AdvInitAsc3550Driver(adv_dvc);
11219 } else if (adv_dvc->chip_type == ADV_CHIP_ASC38C0800) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011220 ASC_DBG(2, "AdvInitAsc38C0800Driver()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011221 warn_code = AdvInitAsc38C0800Driver(adv_dvc);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011222 } else {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011223 ASC_DBG(2, "AdvInitAsc38C1600Driver()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011224 warn_code = AdvInitAsc38C1600Driver(adv_dvc);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011225 }
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011226 err_code = adv_dvc->err_code;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011227
11228 if (warn_code || err_code) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011229 shost_printk(KERN_WARNING, shost, "error: warn 0x%x, error "
11230 "0x%x\n", warn_code, err_code);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011231 }
11232
11233 goto exit;
11234
11235 kmalloc_failed:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011236 shost_printk(KERN_ERR, shost, "error: kmalloc() failed\n");
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011237 err_code = ADV_ERROR;
11238 exit:
11239 return err_code;
11240}
11241
Matthew Wilcox98d41c22007-10-02 21:55:37 -040011242static void advansys_wide_free_mem(struct asc_board *board)
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011243{
Matthew Wilcox98d41c22007-10-02 21:55:37 -040011244 struct adv_dvc_var *adv_dvc = &board->dvc_var.adv_dvc_var;
Hannes Reinecke98b96a72015-04-24 13:18:23 +020011245
11246 if (adv_dvc->carrier) {
11247 dma_free_coherent(board->dev, ADV_CARRIER_BUFSIZE,
11248 adv_dvc->carrier, adv_dvc->carrier_addr);
11249 adv_dvc->carrier = NULL;
11250 }
Hannes Reinecke4b47e462015-04-24 13:18:24 +020011251 if (board->adv_reqp) {
11252 dma_free_coherent(board->dev, board->adv_reqp_size,
11253 board->adv_reqp, board->adv_reqp_addr);
11254 board->adv_reqp = NULL;
11255 }
Matthew Wilcox98d41c22007-10-02 21:55:37 -040011256 while (board->adv_sgblkp) {
11257 adv_sgblk_t *sgp = board->adv_sgblkp;
11258 board->adv_sgblkp = sgp->next_sgblkp;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011259 kfree(sgp);
11260 }
11261}
11262
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011263static int advansys_board_found(struct Scsi_Host *shost, unsigned int iop,
11264 int bus_type)
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011265{
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011266 struct pci_dev *pdev;
Matthew Wilcoxd2411492007-10-02 21:55:31 -040011267 struct asc_board *boardp = shost_priv(shost);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011268 ASC_DVC_VAR *asc_dvc_varp = NULL;
11269 ADV_DVC_VAR *adv_dvc_varp = NULL;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011270 int share_irq, warn_code, ret;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011271
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011272 pdev = (bus_type == ASC_IS_PCI) ? to_pci_dev(boardp->dev) : NULL;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011273
11274 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011275 ASC_DBG(1, "narrow board\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011276 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
11277 asc_dvc_varp->bus_type = bus_type;
11278 asc_dvc_varp->drv_ptr = boardp;
11279 asc_dvc_varp->cfg = &boardp->dvc_cfg.asc_dvc_cfg;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011280 asc_dvc_varp->iop_base = iop;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011281 } else {
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040011282#ifdef CONFIG_PCI
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011283 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
11284 adv_dvc_varp->drv_ptr = boardp;
11285 adv_dvc_varp->cfg = &boardp->dvc_cfg.adv_dvc_cfg;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011286 if (pdev->device == PCI_DEVICE_ID_ASP_ABP940UW) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011287 ASC_DBG(1, "wide board ASC-3550\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011288 adv_dvc_varp->chip_type = ADV_CHIP_ASC3550;
11289 } else if (pdev->device == PCI_DEVICE_ID_38C0800_REV1) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011290 ASC_DBG(1, "wide board ASC-38C0800\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011291 adv_dvc_varp->chip_type = ADV_CHIP_ASC38C0800;
11292 } else {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011293 ASC_DBG(1, "wide board ASC-38C1600\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011294 adv_dvc_varp->chip_type = ADV_CHIP_ASC38C1600;
11295 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011296
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040011297 boardp->asc_n_io_port = pci_resource_len(pdev, 1);
Arjan van de Ven25729a72008-09-28 16:18:02 -070011298 boardp->ioremap_addr = pci_ioremap_bar(pdev, 1);
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040011299 if (!boardp->ioremap_addr) {
Matthew Wilcox9d511a42007-10-02 21:55:42 -040011300 shost_printk(KERN_ERR, shost, "ioremap(%lx, %d) "
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011301 "returned NULL\n",
Matthew Wilcox9d511a42007-10-02 21:55:42 -040011302 (long)pci_resource_start(pdev, 1),
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011303 boardp->asc_n_io_port);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011304 ret = -ENODEV;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011305 goto err_shost;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011306 }
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011307 adv_dvc_varp->iop_base = (AdvPortAddr)boardp->ioremap_addr;
11308 ASC_DBG(1, "iop_base: 0x%p\n", adv_dvc_varp->iop_base);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011309
11310 /*
11311 * Even though it isn't used to access wide boards, other
11312 * than for the debug line below, save I/O Port address so
11313 * that it can be reported.
11314 */
11315 boardp->ioport = iop;
11316
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011317 ASC_DBG(1, "iopb_chip_id_1 0x%x, iopw_chip_id_0 0x%x\n",
11318 (ushort)inp(iop + 1), (ushort)inpw(iop));
Matthew Wilcox57ba5fe2007-07-26 11:55:07 -040011319#endif /* CONFIG_PCI */
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011320 }
11321
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011322 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011323 /*
11324 * Set the board bus type and PCI IRQ before
11325 * calling AscInitGetConfig().
11326 */
11327 switch (asc_dvc_varp->bus_type) {
11328#ifdef CONFIG_ISA
11329 case ASC_IS_ISA:
11330 shost->unchecked_isa_dma = TRUE;
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011331 share_irq = 0;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011332 break;
11333 case ASC_IS_VL:
11334 shost->unchecked_isa_dma = FALSE;
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011335 share_irq = 0;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011336 break;
11337 case ASC_IS_EISA:
11338 shost->unchecked_isa_dma = FALSE;
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011339 share_irq = IRQF_SHARED;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011340 break;
11341#endif /* CONFIG_ISA */
11342#ifdef CONFIG_PCI
11343 case ASC_IS_PCI:
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011344 shost->unchecked_isa_dma = FALSE;
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011345 share_irq = IRQF_SHARED;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011346 break;
11347#endif /* CONFIG_PCI */
11348 default:
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011349 shost_printk(KERN_ERR, shost, "unknown adapter type: "
11350 "%d\n", asc_dvc_varp->bus_type);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011351 shost->unchecked_isa_dma = TRUE;
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011352 share_irq = 0;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011353 break;
11354 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011355
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011356 /*
11357 * NOTE: AscInitGetConfig() may change the board's
11358 * bus_type value. The bus_type value should no
11359 * longer be used. If the bus_type field must be
11360 * referenced only use the bit-wise AND operator "&".
11361 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011362 ASC_DBG(2, "AscInitGetConfig()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011363 ret = AscInitGetConfig(shost) ? -ENODEV : 0;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011364 } else {
Matthew Wilcoxc2dce2f2007-09-09 08:56:30 -060011365#ifdef CONFIG_PCI
11366 /*
11367 * For Wide boards set PCI information before calling
11368 * AdvInitGetConfig().
11369 */
Matthew Wilcoxc2dce2f2007-09-09 08:56:30 -060011370 shost->unchecked_isa_dma = FALSE;
11371 share_irq = IRQF_SHARED;
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011372 ASC_DBG(2, "AdvInitGetConfig()\n");
Matthew Wilcox394dbf32007-07-26 11:56:40 -040011373
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011374 ret = AdvInitGetConfig(pdev, shost) ? -ENODEV : 0;
Matthew Wilcoxc2dce2f2007-09-09 08:56:30 -060011375#endif /* CONFIG_PCI */
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011376 }
11377
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011378 if (ret)
Al Virob59fb6f2013-03-31 02:59:55 -040011379 goto err_unmap;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011380
11381 /*
11382 * Save the EEPROM configuration so that it can be displayed
11383 * from /proc/scsi/advansys/[0...].
11384 */
11385 if (ASC_NARROW_BOARD(boardp)) {
11386
11387 ASCEEP_CONFIG *ep;
11388
11389 /*
11390 * Set the adapter's target id bit in the 'init_tidmask' field.
11391 */
11392 boardp->init_tidmask |=
11393 ADV_TID_TO_TIDMASK(asc_dvc_varp->cfg->chip_scsi_id);
11394
11395 /*
11396 * Save EEPROM settings for the board.
11397 */
11398 ep = &boardp->eep_config.asc_eep;
11399
11400 ep->init_sdtr = asc_dvc_varp->cfg->sdtr_enable;
11401 ep->disc_enable = asc_dvc_varp->cfg->disc_enable;
11402 ep->use_cmd_qng = asc_dvc_varp->cfg->cmd_qng_enabled;
11403 ASC_EEP_SET_DMA_SPD(ep, asc_dvc_varp->cfg->isa_dma_speed);
11404 ep->start_motor = asc_dvc_varp->start_motor;
11405 ep->cntl = asc_dvc_varp->dvc_cntl;
11406 ep->no_scam = asc_dvc_varp->no_scam;
11407 ep->max_total_qng = asc_dvc_varp->max_total_qng;
11408 ASC_EEP_SET_CHIP_ID(ep, asc_dvc_varp->cfg->chip_scsi_id);
11409 /* 'max_tag_qng' is set to the same value for every device. */
11410 ep->max_tag_qng = asc_dvc_varp->cfg->max_tag_qng[0];
11411 ep->adapter_info[0] = asc_dvc_varp->cfg->adapter_info[0];
11412 ep->adapter_info[1] = asc_dvc_varp->cfg->adapter_info[1];
11413 ep->adapter_info[2] = asc_dvc_varp->cfg->adapter_info[2];
11414 ep->adapter_info[3] = asc_dvc_varp->cfg->adapter_info[3];
11415 ep->adapter_info[4] = asc_dvc_varp->cfg->adapter_info[4];
11416 ep->adapter_info[5] = asc_dvc_varp->cfg->adapter_info[5];
11417
11418 /*
11419 * Modify board configuration.
11420 */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011421 ASC_DBG(2, "AscInitSetConfig()\n");
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011422 ret = AscInitSetConfig(pdev, shost) ? -ENODEV : 0;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011423 if (ret)
Al Virob59fb6f2013-03-31 02:59:55 -040011424 goto err_unmap;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011425 } else {
11426 ADVEEP_3550_CONFIG *ep_3550;
11427 ADVEEP_38C0800_CONFIG *ep_38C0800;
11428 ADVEEP_38C1600_CONFIG *ep_38C1600;
11429
11430 /*
11431 * Save Wide EEP Configuration Information.
11432 */
11433 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
11434 ep_3550 = &boardp->eep_config.adv_3550_eep;
11435
11436 ep_3550->adapter_scsi_id = adv_dvc_varp->chip_scsi_id;
11437 ep_3550->max_host_qng = adv_dvc_varp->max_host_qng;
11438 ep_3550->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
11439 ep_3550->termination = adv_dvc_varp->cfg->termination;
11440 ep_3550->disc_enable = adv_dvc_varp->cfg->disc_enable;
11441 ep_3550->bios_ctrl = adv_dvc_varp->bios_ctrl;
11442 ep_3550->wdtr_able = adv_dvc_varp->wdtr_able;
11443 ep_3550->sdtr_able = adv_dvc_varp->sdtr_able;
11444 ep_3550->ultra_able = adv_dvc_varp->ultra_able;
11445 ep_3550->tagqng_able = adv_dvc_varp->tagqng_able;
11446 ep_3550->start_motor = adv_dvc_varp->start_motor;
11447 ep_3550->scsi_reset_delay =
11448 adv_dvc_varp->scsi_reset_wait;
11449 ep_3550->serial_number_word1 =
11450 adv_dvc_varp->cfg->serial1;
11451 ep_3550->serial_number_word2 =
11452 adv_dvc_varp->cfg->serial2;
11453 ep_3550->serial_number_word3 =
11454 adv_dvc_varp->cfg->serial3;
11455 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
11456 ep_38C0800 = &boardp->eep_config.adv_38C0800_eep;
11457
11458 ep_38C0800->adapter_scsi_id =
11459 adv_dvc_varp->chip_scsi_id;
11460 ep_38C0800->max_host_qng = adv_dvc_varp->max_host_qng;
11461 ep_38C0800->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
11462 ep_38C0800->termination_lvd =
11463 adv_dvc_varp->cfg->termination;
11464 ep_38C0800->disc_enable =
11465 adv_dvc_varp->cfg->disc_enable;
11466 ep_38C0800->bios_ctrl = adv_dvc_varp->bios_ctrl;
11467 ep_38C0800->wdtr_able = adv_dvc_varp->wdtr_able;
11468 ep_38C0800->tagqng_able = adv_dvc_varp->tagqng_able;
11469 ep_38C0800->sdtr_speed1 = adv_dvc_varp->sdtr_speed1;
11470 ep_38C0800->sdtr_speed2 = adv_dvc_varp->sdtr_speed2;
11471 ep_38C0800->sdtr_speed3 = adv_dvc_varp->sdtr_speed3;
11472 ep_38C0800->sdtr_speed4 = adv_dvc_varp->sdtr_speed4;
11473 ep_38C0800->tagqng_able = adv_dvc_varp->tagqng_able;
11474 ep_38C0800->start_motor = adv_dvc_varp->start_motor;
11475 ep_38C0800->scsi_reset_delay =
11476 adv_dvc_varp->scsi_reset_wait;
11477 ep_38C0800->serial_number_word1 =
11478 adv_dvc_varp->cfg->serial1;
11479 ep_38C0800->serial_number_word2 =
11480 adv_dvc_varp->cfg->serial2;
11481 ep_38C0800->serial_number_word3 =
11482 adv_dvc_varp->cfg->serial3;
11483 } else {
11484 ep_38C1600 = &boardp->eep_config.adv_38C1600_eep;
11485
11486 ep_38C1600->adapter_scsi_id =
11487 adv_dvc_varp->chip_scsi_id;
11488 ep_38C1600->max_host_qng = adv_dvc_varp->max_host_qng;
11489 ep_38C1600->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
11490 ep_38C1600->termination_lvd =
11491 adv_dvc_varp->cfg->termination;
11492 ep_38C1600->disc_enable =
11493 adv_dvc_varp->cfg->disc_enable;
11494 ep_38C1600->bios_ctrl = adv_dvc_varp->bios_ctrl;
11495 ep_38C1600->wdtr_able = adv_dvc_varp->wdtr_able;
11496 ep_38C1600->tagqng_able = adv_dvc_varp->tagqng_able;
11497 ep_38C1600->sdtr_speed1 = adv_dvc_varp->sdtr_speed1;
11498 ep_38C1600->sdtr_speed2 = adv_dvc_varp->sdtr_speed2;
11499 ep_38C1600->sdtr_speed3 = adv_dvc_varp->sdtr_speed3;
11500 ep_38C1600->sdtr_speed4 = adv_dvc_varp->sdtr_speed4;
11501 ep_38C1600->tagqng_able = adv_dvc_varp->tagqng_able;
11502 ep_38C1600->start_motor = adv_dvc_varp->start_motor;
11503 ep_38C1600->scsi_reset_delay =
11504 adv_dvc_varp->scsi_reset_wait;
11505 ep_38C1600->serial_number_word1 =
11506 adv_dvc_varp->cfg->serial1;
11507 ep_38C1600->serial_number_word2 =
11508 adv_dvc_varp->cfg->serial2;
11509 ep_38C1600->serial_number_word3 =
11510 adv_dvc_varp->cfg->serial3;
11511 }
11512
11513 /*
11514 * Set the adapter's target id bit in the 'init_tidmask' field.
11515 */
11516 boardp->init_tidmask |=
11517 ADV_TID_TO_TIDMASK(adv_dvc_varp->chip_scsi_id);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011518 }
11519
11520 /*
11521 * Channels are numbered beginning with 0. For AdvanSys one host
11522 * structure supports one channel. Multi-channel boards have a
11523 * separate host structure for each channel.
11524 */
11525 shost->max_channel = 0;
11526 if (ASC_NARROW_BOARD(boardp)) {
11527 shost->max_id = ASC_MAX_TID + 1;
11528 shost->max_lun = ASC_MAX_LUN + 1;
Matthew Wilcoxf05ec592007-09-09 08:56:36 -060011529 shost->max_cmd_len = ASC_MAX_CDB_LEN;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011530
11531 shost->io_port = asc_dvc_varp->iop_base;
11532 boardp->asc_n_io_port = ASC_IOADR_GAP;
11533 shost->this_id = asc_dvc_varp->cfg->chip_scsi_id;
11534
11535 /* Set maximum number of queues the adapter can handle. */
11536 shost->can_queue = asc_dvc_varp->max_total_qng;
11537 } else {
11538 shost->max_id = ADV_MAX_TID + 1;
11539 shost->max_lun = ADV_MAX_LUN + 1;
Matthew Wilcoxf05ec592007-09-09 08:56:36 -060011540 shost->max_cmd_len = ADV_MAX_CDB_LEN;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011541
11542 /*
11543 * Save the I/O Port address and length even though
11544 * I/O ports are not used to access Wide boards.
11545 * Instead the Wide boards are accessed with
11546 * PCI Memory Mapped I/O.
11547 */
11548 shost->io_port = iop;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011549
11550 shost->this_id = adv_dvc_varp->chip_scsi_id;
11551
11552 /* Set maximum number of queues the adapter can handle. */
11553 shost->can_queue = adv_dvc_varp->max_host_qng;
11554 }
Hannes Reinecke9c17c622015-04-24 13:18:21 +020011555 ret = scsi_init_shared_tag_map(shost, shost->can_queue);
11556 if (ret) {
11557 shost_printk(KERN_ERR, shost, "init tag map failed\n");
11558 goto err_free_dma;
11559 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011560
11561 /*
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011562 * Following v1.3.89, 'cmd_per_lun' is no longer needed
11563 * and should be set to zero.
11564 *
11565 * But because of a bug introduced in v1.3.89 if the driver is
11566 * compiled as a module and 'cmd_per_lun' is zero, the Mid-Level
11567 * SCSI function 'allocate_device' will panic. To allow the driver
11568 * to work as a module in these kernels set 'cmd_per_lun' to 1.
11569 *
11570 * Note: This is wrong. cmd_per_lun should be set to the depth
11571 * you want on untagged devices always.
11572 #ifdef MODULE
11573 */
11574 shost->cmd_per_lun = 1;
11575/* #else
11576 shost->cmd_per_lun = 0;
11577#endif */
11578
11579 /*
11580 * Set the maximum number of scatter-gather elements the
11581 * adapter can handle.
11582 */
11583 if (ASC_NARROW_BOARD(boardp)) {
11584 /*
11585 * Allow two commands with 'sg_tablesize' scatter-gather
11586 * elements to be executed simultaneously. This value is
11587 * the theoretical hardware limit. It may be decreased
11588 * below.
11589 */
11590 shost->sg_tablesize =
11591 (((asc_dvc_varp->max_total_qng - 2) / 2) *
11592 ASC_SG_LIST_PER_Q) + 1;
11593 } else {
11594 shost->sg_tablesize = ADV_MAX_SG_LIST;
11595 }
11596
11597 /*
11598 * The value of 'sg_tablesize' can not exceed the SCSI
11599 * mid-level driver definition of SG_ALL. SG_ALL also
11600 * must not be exceeded, because it is used to define the
11601 * size of the scatter-gather table in 'struct asc_sg_head'.
11602 */
11603 if (shost->sg_tablesize > SG_ALL) {
11604 shost->sg_tablesize = SG_ALL;
11605 }
11606
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011607 ASC_DBG(1, "sg_tablesize: %d\n", shost->sg_tablesize);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011608
11609 /* BIOS start address. */
11610 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011611 shost->base = AscGetChipBiosAddress(asc_dvc_varp->iop_base,
11612 asc_dvc_varp->bus_type);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011613 } else {
11614 /*
11615 * Fill-in BIOS board variables. The Wide BIOS saves
11616 * information in LRAM that is used by the driver.
11617 */
11618 AdvReadWordLram(adv_dvc_varp->iop_base,
11619 BIOS_SIGNATURE, boardp->bios_signature);
11620 AdvReadWordLram(adv_dvc_varp->iop_base,
11621 BIOS_VERSION, boardp->bios_version);
11622 AdvReadWordLram(adv_dvc_varp->iop_base,
11623 BIOS_CODESEG, boardp->bios_codeseg);
11624 AdvReadWordLram(adv_dvc_varp->iop_base,
11625 BIOS_CODELEN, boardp->bios_codelen);
11626
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011627 ASC_DBG(1, "bios_signature 0x%x, bios_version 0x%x\n",
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011628 boardp->bios_signature, boardp->bios_version);
11629
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011630 ASC_DBG(1, "bios_codeseg 0x%x, bios_codelen 0x%x\n",
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011631 boardp->bios_codeseg, boardp->bios_codelen);
11632
11633 /*
11634 * If the BIOS saved a valid signature, then fill in
11635 * the BIOS code segment base address.
11636 */
11637 if (boardp->bios_signature == 0x55AA) {
11638 /*
11639 * Convert x86 realmode code segment to a linear
11640 * address by shifting left 4.
11641 */
11642 shost->base = ((ulong)boardp->bios_codeseg << 4);
11643 } else {
11644 shost->base = 0;
11645 }
11646 }
11647
11648 /*
11649 * Register Board Resources - I/O Port, DMA, IRQ
11650 */
11651
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011652 /* Register DMA Channel for Narrow boards. */
11653 shost->dma_channel = NO_ISA_DMA; /* Default to no ISA DMA. */
11654#ifdef CONFIG_ISA
11655 if (ASC_NARROW_BOARD(boardp)) {
11656 /* Register DMA channel for ISA bus. */
11657 if (asc_dvc_varp->bus_type & ASC_IS_ISA) {
11658 shost->dma_channel = asc_dvc_varp->cfg->isa_dma_channel;
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011659 ret = request_dma(shost->dma_channel, DRV_NAME);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011660 if (ret) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011661 shost_printk(KERN_ERR, shost, "request_dma() "
11662 "%d failed %d\n",
11663 shost->dma_channel, ret);
Al Virob59fb6f2013-03-31 02:59:55 -040011664 goto err_unmap;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011665 }
11666 AscEnableIsaDma(shost->dma_channel);
11667 }
11668 }
11669#endif /* CONFIG_ISA */
11670
11671 /* Register IRQ Number. */
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011672 ASC_DBG(2, "request_irq(%d, %p)\n", boardp->irq, shost);
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011673
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011674 ret = request_irq(boardp->irq, advansys_interrupt, share_irq,
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011675 DRV_NAME, shost);
Matthew Wilcox074c8fe2007-07-28 23:11:05 -060011676
11677 if (ret) {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011678 if (ret == -EBUSY) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011679 shost_printk(KERN_ERR, shost, "request_irq(): IRQ 0x%x "
11680 "already in use\n", boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011681 } else if (ret == -EINVAL) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011682 shost_printk(KERN_ERR, shost, "request_irq(): IRQ 0x%x "
11683 "not valid\n", boardp->irq);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011684 } else {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011685 shost_printk(KERN_ERR, shost, "request_irq(): IRQ 0x%x "
11686 "failed with %d\n", boardp->irq, ret);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011687 }
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011688 goto err_free_dma;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011689 }
11690
11691 /*
11692 * Initialize board RISC chip and enable interrupts.
11693 */
11694 if (ASC_NARROW_BOARD(boardp)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011695 ASC_DBG(2, "AscInitAsc1000Driver()\n");
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011696
11697 asc_dvc_varp->overrun_buf = kzalloc(ASC_OVERRUN_BSIZE, GFP_KERNEL);
11698 if (!asc_dvc_varp->overrun_buf) {
11699 ret = -ENOMEM;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011700 goto err_free_irq;
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011701 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011702 warn_code = AscInitAsc1000Driver(asc_dvc_varp);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011703
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011704 if (warn_code || asc_dvc_varp->err_code) {
Matthew Wilcox9d0e96e2007-10-02 21:55:35 -040011705 shost_printk(KERN_ERR, shost, "error: init_state 0x%x, "
11706 "warn 0x%x, error 0x%x\n",
11707 asc_dvc_varp->init_state, warn_code,
11708 asc_dvc_varp->err_code);
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011709 if (!asc_dvc_varp->overrun_dma) {
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011710 ret = -ENODEV;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011711 goto err_free_mem;
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011712 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011713 }
11714 } else {
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011715 if (advansys_wide_init_chip(shost)) {
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011716 ret = -ENODEV;
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011717 goto err_free_mem;
11718 }
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011719 }
11720
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011721 ASC_DBG_PRT_SCSI_HOST(2, shost);
11722
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011723 ret = scsi_add_host(shost, boardp->dev);
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011724 if (ret)
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011725 goto err_free_mem;
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011726
11727 scsi_scan_host(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011728 return 0;
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011729
Herton Ronaldo Krzesinski9a908c12010-03-30 13:35:38 -030011730 err_free_mem:
11731 if (ASC_NARROW_BOARD(boardp)) {
11732 if (asc_dvc_varp->overrun_dma)
11733 dma_unmap_single(boardp->dev, asc_dvc_varp->overrun_dma,
11734 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
11735 kfree(asc_dvc_varp->overrun_buf);
11736 } else
11737 advansys_wide_free_mem(boardp);
11738 err_free_irq:
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011739 free_irq(boardp->irq, shost);
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011740 err_free_dma:
Al Viro30037812008-11-22 17:34:54 +000011741#ifdef CONFIG_ISA
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011742 if (shost->dma_channel != NO_ISA_DMA)
11743 free_dma(shost->dma_channel);
Al Viro30037812008-11-22 17:34:54 +000011744#endif
Matthew Wilcoxb2c16f52007-07-29 17:30:28 -060011745 err_unmap:
11746 if (boardp->ioremap_addr)
11747 iounmap(boardp->ioremap_addr);
11748 err_shost:
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011749 return ret;
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011750}
11751
11752/*
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011753 * advansys_release()
11754 *
11755 * Release resources allocated for a single AdvanSys adapter.
11756 */
11757static int advansys_release(struct Scsi_Host *shost)
11758{
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011759 struct asc_board *board = shost_priv(shost);
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011760 ASC_DBG(1, "begin\n");
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011761 scsi_remove_host(shost);
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011762 free_irq(board->irq, shost);
Al Viro30037812008-11-22 17:34:54 +000011763#ifdef CONFIG_ISA
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011764 if (shost->dma_channel != NO_ISA_DMA) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011765 ASC_DBG(1, "free_dma()\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011766 free_dma(shost->dma_channel);
11767 }
Al Viro30037812008-11-22 17:34:54 +000011768#endif
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011769 if (ASC_NARROW_BOARD(board)) {
11770 dma_unmap_single(board->dev,
11771 board->dvc_var.asc_dvc_var.overrun_dma,
11772 ASC_OVERRUN_BSIZE, DMA_FROM_DEVICE);
FUJITA Tomonori7d5d4082008-02-08 09:50:08 +090011773 kfree(board->dvc_var.asc_dvc_var.overrun_buf);
Matthew Wilcoxd10fb2c2007-10-02 21:55:41 -040011774 } else {
11775 iounmap(board->ioremap_addr);
11776 advansys_wide_free_mem(board);
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011777 }
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060011778 scsi_host_put(shost);
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011779 ASC_DBG(1, "end\n");
Matthew Wilcox27c868c2007-07-26 10:56:23 -040011780 return 0;
11781}
11782
Matthew Wilcox95c9f162007-09-09 08:56:39 -060011783#define ASC_IOADR_TABLE_MAX_IX 11
11784
Randy Dunlap747d0162008-01-14 00:55:18 -080011785static PortAddr _asc_def_iop_base[ASC_IOADR_TABLE_MAX_IX] = {
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011786 0x100, 0x0110, 0x120, 0x0130, 0x140, 0x0150, 0x0190,
11787 0x0210, 0x0230, 0x0250, 0x0330
11788};
11789
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011790/*
11791 * The ISA IRQ number is found in bits 2 and 3 of the CfgLsw. It decodes as:
11792 * 00: 10
11793 * 01: 11
11794 * 10: 12
11795 * 11: 15
11796 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011797static unsigned int advansys_isa_irq_no(PortAddr iop_base)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011798{
11799 unsigned short cfg_lsw = AscGetChipCfgLsw(iop_base);
11800 unsigned int chip_irq = ((cfg_lsw >> 2) & 0x03) + 10;
11801 if (chip_irq == 13)
11802 chip_irq = 15;
11803 return chip_irq;
11804}
11805
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011806static int advansys_isa_probe(struct device *dev, unsigned int id)
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011807{
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011808 int err = -ENODEV;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011809 PortAddr iop_base = _asc_def_iop_base[id];
11810 struct Scsi_Host *shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011811 struct asc_board *board;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011812
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011813 if (!request_region(iop_base, ASC_IOADR_GAP, DRV_NAME)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011814 ASC_DBG(1, "I/O port 0x%x busy\n", iop_base);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011815 return -ENODEV;
11816 }
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011817 ASC_DBG(1, "probing I/O port 0x%x\n", iop_base);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011818 if (!AscFindSignature(iop_base))
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011819 goto release_region;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011820 if (!(AscGetChipVersion(iop_base, ASC_IS_ISA) & ASC_CHIP_VER_ISA_BIT))
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011821 goto release_region;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011822
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011823 err = -ENOMEM;
11824 shost = scsi_host_alloc(&advansys_template, sizeof(*board));
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011825 if (!shost)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011826 goto release_region;
11827
Matthew Wilcoxd2411492007-10-02 21:55:31 -040011828 board = shost_priv(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011829 board->irq = advansys_isa_irq_no(iop_base);
11830 board->dev = dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +020011831 board->shost = shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011832
11833 err = advansys_board_found(shost, iop_base, ASC_IS_ISA);
11834 if (err)
11835 goto free_host;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011836
11837 dev_set_drvdata(dev, shost);
11838 return 0;
11839
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011840 free_host:
11841 scsi_host_put(shost);
11842 release_region:
Matthew Wilcox71f36112007-07-30 08:04:53 -060011843 release_region(iop_base, ASC_IOADR_GAP);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011844 return err;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011845}
11846
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011847static int advansys_isa_remove(struct device *dev, unsigned int id)
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011848{
Matthew Wilcox71f36112007-07-30 08:04:53 -060011849 int ioport = _asc_def_iop_base[id];
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011850 advansys_release(dev_get_drvdata(dev));
Matthew Wilcox71f36112007-07-30 08:04:53 -060011851 release_region(ioport, ASC_IOADR_GAP);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011852 return 0;
11853}
11854
11855static struct isa_driver advansys_isa_driver = {
11856 .probe = advansys_isa_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011857 .remove = advansys_isa_remove,
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011858 .driver = {
11859 .owner = THIS_MODULE,
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011860 .name = DRV_NAME,
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011861 },
11862};
11863
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011864/*
11865 * The VLB IRQ number is found in bits 2 to 4 of the CfgLsw. It decodes as:
11866 * 000: invalid
11867 * 001: 10
11868 * 010: 11
11869 * 011: 12
11870 * 100: invalid
11871 * 101: 14
11872 * 110: 15
11873 * 111: invalid
11874 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011875static unsigned int advansys_vlb_irq_no(PortAddr iop_base)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011876{
11877 unsigned short cfg_lsw = AscGetChipCfgLsw(iop_base);
11878 unsigned int chip_irq = ((cfg_lsw >> 2) & 0x07) + 9;
11879 if ((chip_irq < 10) || (chip_irq == 13) || (chip_irq > 15))
11880 return 0;
11881 return chip_irq;
11882}
11883
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011884static int advansys_vlb_probe(struct device *dev, unsigned int id)
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011885{
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011886 int err = -ENODEV;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011887 PortAddr iop_base = _asc_def_iop_base[id];
11888 struct Scsi_Host *shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011889 struct asc_board *board;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011890
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011891 if (!request_region(iop_base, ASC_IOADR_GAP, DRV_NAME)) {
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011892 ASC_DBG(1, "I/O port 0x%x busy\n", iop_base);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011893 return -ENODEV;
11894 }
Matthew Wilcoxb352f922007-10-02 21:55:33 -040011895 ASC_DBG(1, "probing I/O port 0x%x\n", iop_base);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011896 if (!AscFindSignature(iop_base))
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011897 goto release_region;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011898 /*
11899 * I don't think this condition can actually happen, but the old
11900 * driver did it, and the chances of finding a VLB setup in 2007
11901 * to do testing with is slight to none.
11902 */
11903 if (AscGetChipVersion(iop_base, ASC_IS_VL) > ASC_CHIP_MAX_VER_VL)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011904 goto release_region;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011905
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011906 err = -ENOMEM;
11907 shost = scsi_host_alloc(&advansys_template, sizeof(*board));
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011908 if (!shost)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011909 goto release_region;
11910
Matthew Wilcoxd2411492007-10-02 21:55:31 -040011911 board = shost_priv(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011912 board->irq = advansys_vlb_irq_no(iop_base);
11913 board->dev = dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +020011914 board->shost = shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011915
11916 err = advansys_board_found(shost, iop_base, ASC_IS_VL);
11917 if (err)
11918 goto free_host;
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011919
11920 dev_set_drvdata(dev, shost);
11921 return 0;
11922
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011923 free_host:
11924 scsi_host_put(shost);
11925 release_region:
Matthew Wilcox71f36112007-07-30 08:04:53 -060011926 release_region(iop_base, ASC_IOADR_GAP);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011927 return -ENODEV;
11928}
11929
11930static struct isa_driver advansys_vlb_driver = {
11931 .probe = advansys_vlb_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011932 .remove = advansys_isa_remove,
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011933 .driver = {
11934 .owner = THIS_MODULE,
Matthew Wilcoxb8e5152b2007-09-09 08:56:26 -060011935 .name = "advansys_vlb",
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060011936 },
11937};
11938
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011939static struct eisa_device_id advansys_eisa_table[] = {
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011940 { "ABP7401" },
11941 { "ABP7501" },
11942 { "" }
11943};
11944
11945MODULE_DEVICE_TABLE(eisa, advansys_eisa_table);
11946
11947/*
11948 * EISA is a little more tricky than PCI; each EISA device may have two
11949 * channels, and this driver is written to make each channel its own Scsi_Host
11950 */
11951struct eisa_scsi_data {
11952 struct Scsi_Host *host[2];
11953};
11954
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011955/*
11956 * The EISA IRQ number is found in bits 8 to 10 of the CfgLsw. It decodes as:
11957 * 000: 10
11958 * 001: 11
11959 * 010: 12
11960 * 011: invalid
11961 * 100: 14
11962 * 101: 15
11963 * 110: invalid
11964 * 111: invalid
11965 */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011966static unsigned int advansys_eisa_irq_no(struct eisa_device *edev)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011967{
11968 unsigned short cfg_lsw = inw(edev->base_addr + 0xc86);
11969 unsigned int chip_irq = ((cfg_lsw >> 8) & 0x07) + 10;
11970 if ((chip_irq == 13) || (chip_irq > 15))
11971 return 0;
11972 return chip_irq;
11973}
11974
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080011975static int advansys_eisa_probe(struct device *dev)
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011976{
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011977 int i, ioport, irq = 0;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011978 int err;
11979 struct eisa_device *edev = to_eisa_device(dev);
11980 struct eisa_scsi_data *data;
11981
11982 err = -ENOMEM;
11983 data = kzalloc(sizeof(*data), GFP_KERNEL);
11984 if (!data)
11985 goto fail;
11986 ioport = edev->base_addr + 0xc30;
11987
11988 err = -ENODEV;
11989 for (i = 0; i < 2; i++, ioport += 0x20) {
Matthew Wilcoxd361db42007-10-02 21:55:29 -040011990 struct asc_board *board;
11991 struct Scsi_Host *shost;
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060011992 if (!request_region(ioport, ASC_IOADR_GAP, DRV_NAME)) {
Matthew Wilcox71f36112007-07-30 08:04:53 -060011993 printk(KERN_WARNING "Region %x-%x busy\n", ioport,
11994 ioport + ASC_IOADR_GAP - 1);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060011995 continue;
Matthew Wilcox71f36112007-07-30 08:04:53 -060011996 }
11997 if (!AscFindSignature(ioport)) {
11998 release_region(ioport, ASC_IOADR_GAP);
11999 continue;
12000 }
12001
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012002 /*
12003 * I don't know why we need to do this for EISA chips, but
12004 * not for any others. It looks to be equivalent to
12005 * AscGetChipCfgMsw, but I may have overlooked something,
12006 * so I'm not converting it until I get an EISA board to
12007 * test with.
12008 */
12009 inw(ioport + 4);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012010
12011 if (!irq)
12012 irq = advansys_eisa_irq_no(edev);
12013
12014 err = -ENOMEM;
12015 shost = scsi_host_alloc(&advansys_template, sizeof(*board));
12016 if (!shost)
12017 goto release_region;
12018
Matthew Wilcoxd2411492007-10-02 21:55:31 -040012019 board = shost_priv(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012020 board->irq = irq;
12021 board->dev = dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +020012022 board->shost = shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012023
12024 err = advansys_board_found(shost, ioport, ASC_IS_EISA);
12025 if (!err) {
12026 data->host[i] = shost;
12027 continue;
Matthew Wilcox71f36112007-07-30 08:04:53 -060012028 }
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012029
12030 scsi_host_put(shost);
12031 release_region:
12032 release_region(ioport, ASC_IOADR_GAP);
12033 break;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012034 }
12035
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012036 if (err)
12037 goto free_data;
12038 dev_set_drvdata(dev, data);
12039 return 0;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012040
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012041 free_data:
12042 kfree(data->host[0]);
12043 kfree(data->host[1]);
12044 kfree(data);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012045 fail:
12046 return err;
12047}
12048
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080012049static int advansys_eisa_remove(struct device *dev)
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012050{
12051 int i;
12052 struct eisa_scsi_data *data = dev_get_drvdata(dev);
12053
12054 for (i = 0; i < 2; i++) {
Matthew Wilcox71f36112007-07-30 08:04:53 -060012055 int ioport;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012056 struct Scsi_Host *shost = data->host[i];
12057 if (!shost)
12058 continue;
Matthew Wilcox71f36112007-07-30 08:04:53 -060012059 ioport = shost->io_port;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012060 advansys_release(shost);
Matthew Wilcox71f36112007-07-30 08:04:53 -060012061 release_region(ioport, ASC_IOADR_GAP);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012062 }
12063
12064 kfree(data);
12065 return 0;
12066}
12067
12068static struct eisa_driver advansys_eisa_driver = {
12069 .id_table = advansys_eisa_table,
12070 .driver = {
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060012071 .name = DRV_NAME,
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012072 .probe = advansys_eisa_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080012073 .remove = advansys_eisa_remove,
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012074 }
12075};
12076
Dave Jones2672ea82006-08-02 17:11:49 -040012077/* PCI Devices supported by this driver */
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080012078static struct pci_device_id advansys_pci_tbl[] = {
Matthew Wilcox27c868c2007-07-26 10:56:23 -040012079 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_1200A,
12080 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
12081 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940,
12082 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
12083 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940U,
12084 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
12085 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940UW,
12086 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
12087 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_38C0800_REV1,
12088 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
12089 {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_38C1600_REV1,
12090 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
12091 {}
Dave Jones2672ea82006-08-02 17:11:49 -040012092};
Matthew Wilcox27c868c2007-07-26 10:56:23 -040012093
Dave Jones2672ea82006-08-02 17:11:49 -040012094MODULE_DEVICE_TABLE(pci, advansys_pci_tbl);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012095
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080012096static void advansys_set_latency(struct pci_dev *pdev)
Matthew Wilcox9649af32007-07-26 21:51:47 -060012097{
12098 if ((pdev->device == PCI_DEVICE_ID_ASP_1200A) ||
12099 (pdev->device == PCI_DEVICE_ID_ASP_ABP940)) {
12100 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0);
12101 } else {
12102 u8 latency;
12103 pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency);
12104 if (latency < 0x20)
12105 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x20);
12106 }
12107}
12108
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080012109static int advansys_pci_probe(struct pci_dev *pdev,
12110 const struct pci_device_id *ent)
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012111{
12112 int err, ioport;
12113 struct Scsi_Host *shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012114 struct asc_board *board;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012115
12116 err = pci_enable_device(pdev);
12117 if (err)
12118 goto fail;
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060012119 err = pci_request_regions(pdev, DRV_NAME);
Matthew Wilcox71f36112007-07-30 08:04:53 -060012120 if (err)
12121 goto disable_device;
Matthew Wilcox9649af32007-07-26 21:51:47 -060012122 pci_set_master(pdev);
12123 advansys_set_latency(pdev);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012124
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012125 err = -ENODEV;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012126 if (pci_resource_len(pdev, 0) == 0)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012127 goto release_region;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012128
12129 ioport = pci_resource_start(pdev, 0);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012130
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012131 err = -ENOMEM;
12132 shost = scsi_host_alloc(&advansys_template, sizeof(*board));
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012133 if (!shost)
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012134 goto release_region;
12135
Matthew Wilcoxd2411492007-10-02 21:55:31 -040012136 board = shost_priv(shost);
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012137 board->irq = pdev->irq;
12138 board->dev = &pdev->dev;
Hannes Reinecke9c17c622015-04-24 13:18:21 +020012139 board->shost = shost;
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012140
12141 if (pdev->device == PCI_DEVICE_ID_ASP_ABP940UW ||
12142 pdev->device == PCI_DEVICE_ID_38C0800_REV1 ||
12143 pdev->device == PCI_DEVICE_ID_38C1600_REV1) {
12144 board->flags |= ASC_IS_WIDE_BOARD;
12145 }
12146
12147 err = advansys_board_found(shost, ioport, ASC_IS_PCI);
12148 if (err)
12149 goto free_host;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012150
12151 pci_set_drvdata(pdev, shost);
12152 return 0;
12153
Matthew Wilcoxd361db42007-10-02 21:55:29 -040012154 free_host:
12155 scsi_host_put(shost);
12156 release_region:
Matthew Wilcox71f36112007-07-30 08:04:53 -060012157 pci_release_regions(pdev);
12158 disable_device:
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012159 pci_disable_device(pdev);
12160 fail:
12161 return err;
12162}
12163
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080012164static void advansys_pci_remove(struct pci_dev *pdev)
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012165{
12166 advansys_release(pci_get_drvdata(pdev));
Matthew Wilcox71f36112007-07-30 08:04:53 -060012167 pci_release_regions(pdev);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012168 pci_disable_device(pdev);
12169}
12170
12171static struct pci_driver advansys_pci_driver = {
Matthew Wilcox01fbfe02007-09-09 08:56:40 -060012172 .name = DRV_NAME,
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012173 .id_table = advansys_pci_tbl,
12174 .probe = advansys_pci_probe,
Greg Kroah-Hartman6f039792012-12-21 13:08:55 -080012175 .remove = advansys_pci_remove,
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012176};
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040012177
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060012178static int __init advansys_init(void)
12179{
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060012180 int error;
12181
12182 error = isa_register_driver(&advansys_isa_driver,
12183 ASC_IOADR_TABLE_MAX_IX);
12184 if (error)
12185 goto fail;
12186
12187 error = isa_register_driver(&advansys_vlb_driver,
12188 ASC_IOADR_TABLE_MAX_IX);
12189 if (error)
12190 goto unregister_isa;
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012191
12192 error = eisa_driver_register(&advansys_eisa_driver);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012193 if (error)
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060012194 goto unregister_vlb;
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060012195
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012196 error = pci_register_driver(&advansys_pci_driver);
12197 if (error)
12198 goto unregister_eisa;
12199
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060012200 return 0;
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012201
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012202 unregister_eisa:
12203 eisa_driver_unregister(&advansys_eisa_driver);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060012204 unregister_vlb:
12205 isa_unregister_driver(&advansys_vlb_driver);
12206 unregister_isa:
12207 isa_unregister_driver(&advansys_isa_driver);
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012208 fail:
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012209 return error;
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060012210}
12211
12212static void __exit advansys_exit(void)
12213{
Matthew Wilcox78e77d82007-07-29 21:46:15 -060012214 pci_unregister_driver(&advansys_pci_driver);
Matthew Wilcoxb09e05a2007-07-30 09:14:52 -060012215 eisa_driver_unregister(&advansys_eisa_driver);
Matthew Wilcoxc304ec92007-07-30 09:18:45 -060012216 isa_unregister_driver(&advansys_vlb_driver);
12217 isa_unregister_driver(&advansys_isa_driver);
Matthew Wilcox8dfb5372007-07-30 09:08:34 -060012218}
12219
12220module_init(advansys_init);
12221module_exit(advansys_exit);
12222
Matthew Wilcox8c6af9e2007-07-26 11:03:19 -040012223MODULE_LICENSE("GPL");
Jaswinder Singh Rajput989bb5f2009-04-02 11:28:06 +053012224MODULE_FIRMWARE("advansys/mcode.bin");
12225MODULE_FIRMWARE("advansys/3550.bin");
12226MODULE_FIRMWARE("advansys/38C0800.bin");
12227MODULE_FIRMWARE("advansys/38C1600.bin");