[SCSI] advansys: Restructure asc_execute_scsi_cmnd()
[safe/jmp/linux-2.6] / drivers / scsi / advansys.c
1 #define DRV_NAME "advansys"
2 #define ASC_VERSION "3.4"       /* AdvanSys Driver Version */
3
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.
9  * Copyright (c) 2007 Matthew Wilcox <matthew@wil.cx>
10  * All Rights Reserved.
11  *
12  * 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 /*
19  * As of March 8, 2000 Advanced System Products, Inc. (AdvanSys)
20  * changed its name to ConnectCom Solutions, Inc.
21  * On June 18, 2001 Initio Corp. acquired ConnectCom's SCSI assets
22  */
23
24 #include <linux/module.h>
25 #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>
36 #include <linux/isa.h>
37 #include <linux/eisa.h>
38 #include <linux/pci.h>
39 #include <linux/spinlock.h>
40 #include <linux/dma-mapping.h>
41
42 #include <asm/io.h>
43 #include <asm/system.h>
44 #include <asm/dma.h>
45
46 #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
52 /* FIXME:
53  *
54  *  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
67  *  6. Use scsi_transport_spi
68  *  7. advansys_info is not safe against multiple simultaneous callers
69  *  8. Kill boardp->id
70  *  9. Add module_param to override ISA/VLB ioport array
71  */
72 #warning this driver is still not properly converted to the DMA API
73
74 /* Enable driver /proc statistics. */
75 #define ADVANSYS_STATS
76
77 /* Enable driver tracing. */
78 /* #define ADVANSYS_DEBUG */
79
80 #define ASC_LIB_VERSION_MAJOR  1
81 #define ASC_LIB_VERSION_MINOR  24
82 #define ASC_LIB_SERIAL_NUMBER  123
83
84 /*
85  * Portable Data Types
86  *
87  * Any instance where a 32-bit long or pointer type is assumed
88  * for precision or HW defined structures, the following define
89  * types must be used. In Linux the char, short, and int types
90  * are all consistent at 8, 16, and 32 bits respectively. Pointers
91  * and long types are 64 bits on Alpha and UltraSPARC.
92  */
93 #define ASC_PADDR __u32         /* Physical/Bus address data type. */
94 #define ASC_VADDR __u32         /* Virtual address data type. */
95 #define ASC_DCNT  __u32         /* Unsigned Data count type. */
96 #define ASC_SDCNT __s32         /* Signed Data count type. */
97
98 /*
99  * These macros are used to convert a virtual address to a
100  * 32-bit value. This currently can be used on Linux Alpha
101  * which uses 64-bit virtual address but a 32-bit bus address.
102  * This is likely to break in the future, but doing this now
103  * will give us time to change the HW and FW to handle 64-bit
104  * addresses.
105  */
106 #define ASC_VADDR_TO_U32   virt_to_bus
107 #define ASC_U32_TO_VADDR   bus_to_virt
108
109 typedef unsigned char uchar;
110
111 #ifndef TRUE
112 #define TRUE     (1)
113 #endif
114 #ifndef FALSE
115 #define FALSE    (0)
116 #endif
117
118 #define ERR      (-1)
119 #define UW_ERR   (uint)(0xFFFF)
120 #define isodd_word(val)   ((((uint)val) & (uint)0x0001) != 0)
121
122 #define PCI_VENDOR_ID_ASP               0x10cd
123 #define PCI_DEVICE_ID_ASP_1200A         0x1100
124 #define PCI_DEVICE_ID_ASP_ABP940        0x1200
125 #define PCI_DEVICE_ID_ASP_ABP940U       0x1300
126 #define PCI_DEVICE_ID_ASP_ABP940UW      0x2300
127 #define PCI_DEVICE_ID_38C0800_REV1      0x2500
128 #define PCI_DEVICE_ID_38C1600_REV1      0x2700
129
130 /*
131  * Enable CC_VERY_LONG_SG_LIST to support up to 64K element SG lists.
132  * The SRB structure will have to be changed and the ASC_SRB2SCSIQ()
133  * macro re-defined to be able to obtain a ASC_SCSI_Q pointer from the
134  * SRB structure.
135  */
136 #define CC_VERY_LONG_SG_LIST 0
137 #define ASC_SRB2SCSIQ(srb_ptr)  (srb_ptr)
138
139 #define PortAddr                 unsigned short /* port address size  */
140 #define inp(port)                inb(port)
141 #define outp(port, byte)         outb((byte), (port))
142
143 #define inpw(port)               inw(port)
144 #define outpw(port, word)        outw((word), (port))
145
146 #define ASC_MAX_SG_QUEUE    7
147 #define ASC_MAX_SG_LIST     255
148
149 #define ASC_CS_TYPE  unsigned short
150
151 #define ASC_IS_ISA          (0x0001)
152 #define ASC_IS_ISAPNP       (0x0081)
153 #define ASC_IS_EISA         (0x0002)
154 #define ASC_IS_PCI          (0x0004)
155 #define ASC_IS_PCI_ULTRA    (0x0104)
156 #define ASC_IS_PCMCIA       (0x0008)
157 #define ASC_IS_MCA          (0x0020)
158 #define ASC_IS_VL           (0x0040)
159 #define ASC_IS_WIDESCSI_16  (0x0100)
160 #define ASC_IS_WIDESCSI_32  (0x0200)
161 #define ASC_IS_BIG_ENDIAN   (0x8000)
162
163 #define ASC_CHIP_MIN_VER_VL      (0x01)
164 #define ASC_CHIP_MAX_VER_VL      (0x07)
165 #define ASC_CHIP_MIN_VER_PCI     (0x09)
166 #define ASC_CHIP_MAX_VER_PCI     (0x0F)
167 #define ASC_CHIP_VER_PCI_BIT     (0x08)
168 #define ASC_CHIP_MIN_VER_ISA     (0x11)
169 #define ASC_CHIP_MIN_VER_ISA_PNP (0x21)
170 #define ASC_CHIP_MAX_VER_ISA     (0x27)
171 #define ASC_CHIP_VER_ISA_BIT     (0x30)
172 #define ASC_CHIP_VER_ISAPNP_BIT  (0x20)
173 #define ASC_CHIP_VER_ASYN_BUG    (0x21)
174 #define ASC_CHIP_VER_PCI             0x08
175 #define ASC_CHIP_VER_PCI_ULTRA_3150  (ASC_CHIP_VER_PCI | 0x02)
176 #define ASC_CHIP_VER_PCI_ULTRA_3050  (ASC_CHIP_VER_PCI | 0x03)
177 #define ASC_CHIP_MIN_VER_EISA (0x41)
178 #define ASC_CHIP_MAX_VER_EISA (0x47)
179 #define ASC_CHIP_VER_EISA_BIT (0x40)
180 #define ASC_CHIP_LATEST_VER_EISA   ((ASC_CHIP_MIN_VER_EISA - 1) + 3)
181 #define ASC_MAX_VL_DMA_COUNT    (0x07FFFFFFL)
182 #define ASC_MAX_PCI_DMA_COUNT   (0xFFFFFFFFL)
183 #define ASC_MAX_ISA_DMA_COUNT   (0x00FFFFFFL)
184
185 #define ASC_SCSI_ID_BITS  3
186 #define ASC_SCSI_TIX_TYPE     uchar
187 #define ASC_ALL_DEVICE_BIT_SET  0xFF
188 #define ASC_SCSI_BIT_ID_TYPE  uchar
189 #define ASC_MAX_TID       7
190 #define ASC_MAX_LUN       7
191 #define ASC_SCSI_WIDTH_BIT_SET  0xFF
192 #define ASC_MAX_SENSE_LEN   32
193 #define ASC_MIN_SENSE_LEN   14
194 #define ASC_SCSI_RESET_HOLD_TIME_US  60
195
196 /*
197  * Narrow boards only support 12-byte commands, while wide boards
198  * extend to 16-byte commands.
199  */
200 #define ASC_MAX_CDB_LEN     12
201 #define ADV_MAX_CDB_LEN     16
202
203 #define MS_SDTR_LEN    0x03
204 #define MS_WDTR_LEN    0x02
205
206 #define ASC_SG_LIST_PER_Q   7
207 #define QS_FREE        0x00
208 #define QS_READY       0x01
209 #define QS_DISC1       0x02
210 #define QS_DISC2       0x04
211 #define QS_BUSY        0x08
212 #define QS_ABORTED     0x40
213 #define QS_DONE        0x80
214 #define QC_NO_CALLBACK   0x01
215 #define QC_SG_SWAP_QUEUE 0x02
216 #define QC_SG_HEAD       0x04
217 #define QC_DATA_IN       0x08
218 #define QC_DATA_OUT      0x10
219 #define QC_URGENT        0x20
220 #define QC_MSG_OUT       0x40
221 #define QC_REQ_SENSE     0x80
222 #define QCSG_SG_XFER_LIST  0x02
223 #define QCSG_SG_XFER_MORE  0x04
224 #define QCSG_SG_XFER_END   0x08
225 #define QD_IN_PROGRESS       0x00
226 #define QD_NO_ERROR          0x01
227 #define QD_ABORTED_BY_HOST   0x02
228 #define QD_WITH_ERROR        0x04
229 #define QD_INVALID_REQUEST   0x80
230 #define QD_INVALID_HOST_NUM  0x81
231 #define QD_INVALID_DEVICE    0x82
232 #define QD_ERR_INTERNAL      0xFF
233 #define QHSTA_NO_ERROR               0x00
234 #define QHSTA_M_SEL_TIMEOUT          0x11
235 #define QHSTA_M_DATA_OVER_RUN        0x12
236 #define QHSTA_M_DATA_UNDER_RUN       0x12
237 #define QHSTA_M_UNEXPECTED_BUS_FREE  0x13
238 #define QHSTA_M_BAD_BUS_PHASE_SEQ    0x14
239 #define QHSTA_D_QDONE_SG_LIST_CORRUPTED 0x21
240 #define QHSTA_D_ASC_DVC_ERROR_CODE_SET  0x22
241 #define QHSTA_D_HOST_ABORT_FAILED       0x23
242 #define QHSTA_D_EXE_SCSI_Q_FAILED       0x24
243 #define QHSTA_D_EXE_SCSI_Q_BUSY_TIMEOUT 0x25
244 #define QHSTA_D_ASPI_NO_BUF_POOL        0x26
245 #define QHSTA_M_WTM_TIMEOUT         0x41
246 #define QHSTA_M_BAD_CMPL_STATUS_IN  0x42
247 #define QHSTA_M_NO_AUTO_REQ_SENSE   0x43
248 #define QHSTA_M_AUTO_REQ_SENSE_FAIL 0x44
249 #define QHSTA_M_TARGET_STATUS_BUSY  0x45
250 #define QHSTA_M_BAD_TAG_CODE        0x46
251 #define QHSTA_M_BAD_QUEUE_FULL_OR_BUSY  0x47
252 #define QHSTA_M_HUNG_REQ_SCSI_BUS_RESET 0x48
253 #define QHSTA_D_LRAM_CMP_ERROR        0x81
254 #define QHSTA_M_MICRO_CODE_ERROR_HALT 0xA1
255 #define ASC_FLAG_SCSIQ_REQ        0x01
256 #define ASC_FLAG_BIOS_SCSIQ_REQ   0x02
257 #define ASC_FLAG_BIOS_ASYNC_IO    0x04
258 #define ASC_FLAG_SRB_LINEAR_ADDR  0x08
259 #define ASC_FLAG_WIN16            0x10
260 #define ASC_FLAG_WIN32            0x20
261 #define ASC_FLAG_ISA_OVER_16MB    0x40
262 #define ASC_FLAG_DOS_VM_CALLBACK  0x80
263 #define ASC_TAG_FLAG_EXTRA_BYTES               0x10
264 #define ASC_TAG_FLAG_DISABLE_DISCONNECT        0x04
265 #define ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX  0x08
266 #define ASC_TAG_FLAG_DISABLE_CHK_COND_INT_HOST 0x40
267 #define ASC_SCSIQ_CPY_BEG              4
268 #define ASC_SCSIQ_SGHD_CPY_BEG         2
269 #define ASC_SCSIQ_B_FWD                0
270 #define ASC_SCSIQ_B_BWD                1
271 #define ASC_SCSIQ_B_STATUS             2
272 #define ASC_SCSIQ_B_QNO                3
273 #define ASC_SCSIQ_B_CNTL               4
274 #define ASC_SCSIQ_B_SG_QUEUE_CNT       5
275 #define ASC_SCSIQ_D_DATA_ADDR          8
276 #define ASC_SCSIQ_D_DATA_CNT          12
277 #define ASC_SCSIQ_B_SENSE_LEN         20
278 #define ASC_SCSIQ_DONE_INFO_BEG       22
279 #define ASC_SCSIQ_D_SRBPTR            22
280 #define ASC_SCSIQ_B_TARGET_IX         26
281 #define ASC_SCSIQ_B_CDB_LEN           28
282 #define ASC_SCSIQ_B_TAG_CODE          29
283 #define ASC_SCSIQ_W_VM_ID             30
284 #define ASC_SCSIQ_DONE_STATUS         32
285 #define ASC_SCSIQ_HOST_STATUS         33
286 #define ASC_SCSIQ_SCSI_STATUS         34
287 #define ASC_SCSIQ_CDB_BEG             36
288 #define ASC_SCSIQ_DW_REMAIN_XFER_ADDR 56
289 #define ASC_SCSIQ_DW_REMAIN_XFER_CNT  60
290 #define ASC_SCSIQ_B_FIRST_SG_WK_QP    48
291 #define ASC_SCSIQ_B_SG_WK_QP          49
292 #define ASC_SCSIQ_B_SG_WK_IX          50
293 #define ASC_SCSIQ_W_ALT_DC1           52
294 #define ASC_SCSIQ_B_LIST_CNT          6
295 #define ASC_SCSIQ_B_CUR_LIST_CNT      7
296 #define ASC_SGQ_B_SG_CNTL             4
297 #define ASC_SGQ_B_SG_HEAD_QP          5
298 #define ASC_SGQ_B_SG_LIST_CNT         6
299 #define ASC_SGQ_B_SG_CUR_LIST_CNT     7
300 #define ASC_SGQ_LIST_BEG              8
301 #define ASC_DEF_SCSI1_QNG    4
302 #define ASC_MAX_SCSI1_QNG    4
303 #define ASC_DEF_SCSI2_QNG    16
304 #define ASC_MAX_SCSI2_QNG    32
305 #define ASC_TAG_CODE_MASK    0x23
306 #define ASC_STOP_REQ_RISC_STOP      0x01
307 #define ASC_STOP_ACK_RISC_STOP      0x03
308 #define ASC_STOP_CLEAN_UP_BUSY_Q    0x10
309 #define ASC_STOP_CLEAN_UP_DISC_Q    0x20
310 #define ASC_STOP_HOST_REQ_RISC_HALT 0x40
311 #define ASC_TIDLUN_TO_IX(tid, lun)  (ASC_SCSI_TIX_TYPE)((tid) + ((lun)<<ASC_SCSI_ID_BITS))
312 #define ASC_TID_TO_TARGET_ID(tid)   (ASC_SCSI_BIT_ID_TYPE)(0x01 << (tid))
313 #define ASC_TIX_TO_TARGET_ID(tix)   (0x01 << ((tix) & ASC_MAX_TID))
314 #define ASC_TIX_TO_TID(tix)         ((tix) & ASC_MAX_TID)
315 #define ASC_TID_TO_TIX(tid)         ((tid) & ASC_MAX_TID)
316 #define ASC_TIX_TO_LUN(tix)         (((tix) >> ASC_SCSI_ID_BITS) & ASC_MAX_LUN)
317 #define ASC_QNO_TO_QADDR(q_no)      ((ASC_QADR_BEG)+((int)(q_no) << 6))
318
319 typedef struct asc_scsiq_1 {
320         uchar status;
321         uchar q_no;
322         uchar cntl;
323         uchar sg_queue_cnt;
324         uchar target_id;
325         uchar target_lun;
326         ASC_PADDR data_addr;
327         ASC_DCNT data_cnt;
328         ASC_PADDR sense_addr;
329         uchar sense_len;
330         uchar extra_bytes;
331 } ASC_SCSIQ_1;
332
333 typedef struct asc_scsiq_2 {
334         ASC_VADDR srb_ptr;
335         uchar target_ix;
336         uchar flag;
337         uchar cdb_len;
338         uchar tag_code;
339         ushort vm_id;
340 } ASC_SCSIQ_2;
341
342 typedef struct asc_scsiq_3 {
343         uchar done_stat;
344         uchar host_stat;
345         uchar scsi_stat;
346         uchar scsi_msg;
347 } ASC_SCSIQ_3;
348
349 typedef struct asc_scsiq_4 {
350         uchar cdb[ASC_MAX_CDB_LEN];
351         uchar y_first_sg_list_qp;
352         uchar y_working_sg_qp;
353         uchar y_working_sg_ix;
354         uchar y_res;
355         ushort x_req_count;
356         ushort x_reconnect_rtn;
357         ASC_PADDR x_saved_data_addr;
358         ASC_DCNT x_saved_data_cnt;
359 } ASC_SCSIQ_4;
360
361 typedef struct asc_q_done_info {
362         ASC_SCSIQ_2 d2;
363         ASC_SCSIQ_3 d3;
364         uchar q_status;
365         uchar q_no;
366         uchar cntl;
367         uchar sense_len;
368         uchar extra_bytes;
369         uchar res;
370         ASC_DCNT remain_bytes;
371 } ASC_QDONE_INFO;
372
373 typedef struct asc_sg_list {
374         ASC_PADDR addr;
375         ASC_DCNT bytes;
376 } ASC_SG_LIST;
377
378 typedef struct asc_sg_head {
379         ushort entry_cnt;
380         ushort queue_cnt;
381         ushort entry_to_copy;
382         ushort res;
383         ASC_SG_LIST sg_list[ASC_MAX_SG_LIST];
384 } ASC_SG_HEAD;
385
386 typedef struct asc_scsi_q {
387         ASC_SCSIQ_1 q1;
388         ASC_SCSIQ_2 q2;
389         uchar *cdbptr;
390         ASC_SG_HEAD *sg_head;
391         ushort remain_sg_entry_cnt;
392         ushort next_sg_index;
393 } ASC_SCSI_Q;
394
395 typedef struct asc_scsi_req_q {
396         ASC_SCSIQ_1 r1;
397         ASC_SCSIQ_2 r2;
398         uchar *cdbptr;
399         ASC_SG_HEAD *sg_head;
400         uchar *sense_ptr;
401         ASC_SCSIQ_3 r3;
402         uchar cdb[ASC_MAX_CDB_LEN];
403         uchar sense[ASC_MIN_SENSE_LEN];
404 } ASC_SCSI_REQ_Q;
405
406 typedef struct asc_scsi_bios_req_q {
407         ASC_SCSIQ_1 r1;
408         ASC_SCSIQ_2 r2;
409         uchar *cdbptr;
410         ASC_SG_HEAD *sg_head;
411         uchar *sense_ptr;
412         ASC_SCSIQ_3 r3;
413         uchar cdb[ASC_MAX_CDB_LEN];
414         uchar sense[ASC_MIN_SENSE_LEN];
415 } ASC_SCSI_BIOS_REQ_Q;
416
417 typedef struct asc_risc_q {
418         uchar fwd;
419         uchar bwd;
420         ASC_SCSIQ_1 i1;
421         ASC_SCSIQ_2 i2;
422         ASC_SCSIQ_3 i3;
423         ASC_SCSIQ_4 i4;
424 } ASC_RISC_Q;
425
426 typedef struct asc_sg_list_q {
427         uchar seq_no;
428         uchar q_no;
429         uchar cntl;
430         uchar sg_head_qp;
431         uchar sg_list_cnt;
432         uchar sg_cur_list_cnt;
433 } ASC_SG_LIST_Q;
434
435 typedef struct asc_risc_sg_list_q {
436         uchar fwd;
437         uchar bwd;
438         ASC_SG_LIST_Q sg;
439         ASC_SG_LIST sg_list[7];
440 } ASC_RISC_SG_LIST_Q;
441
442 #define ASCQ_ERR_Q_STATUS             0x0D
443 #define ASCQ_ERR_CUR_QNG              0x17
444 #define ASCQ_ERR_SG_Q_LINKS           0x18
445 #define ASCQ_ERR_ISR_RE_ENTRY         0x1A
446 #define ASCQ_ERR_CRITICAL_RE_ENTRY    0x1B
447 #define ASCQ_ERR_ISR_ON_CRITICAL      0x1C
448
449 /*
450  * Warning code values are set in ASC_DVC_VAR  'warn_code'.
451  */
452 #define ASC_WARN_NO_ERROR             0x0000
453 #define ASC_WARN_IO_PORT_ROTATE       0x0001
454 #define ASC_WARN_EEPROM_CHKSUM        0x0002
455 #define ASC_WARN_IRQ_MODIFIED         0x0004
456 #define ASC_WARN_AUTO_CONFIG          0x0008
457 #define ASC_WARN_CMD_QNG_CONFLICT     0x0010
458 #define ASC_WARN_EEPROM_RECOVER       0x0020
459 #define ASC_WARN_CFG_MSW_RECOVER      0x0040
460
461 /*
462  * Error code values are set in ASC_DVC_VAR  'err_code'.
463  */
464 #define ASC_IERR_WRITE_EEPROM         0x0001
465 #define ASC_IERR_MCODE_CHKSUM         0x0002
466 #define ASC_IERR_SET_PC_ADDR          0x0004
467 #define ASC_IERR_START_STOP_CHIP      0x0008
468 #define ASC_IERR_IRQ_NO               0x0010
469 #define ASC_IERR_SET_IRQ_NO           0x0020
470 #define ASC_IERR_CHIP_VERSION         0x0040
471 #define ASC_IERR_SET_SCSI_ID          0x0080
472 #define ASC_IERR_GET_PHY_ADDR         0x0100
473 #define ASC_IERR_BAD_SIGNATURE        0x0200
474 #define ASC_IERR_NO_BUS_TYPE          0x0400
475 #define ASC_IERR_SCAM                 0x0800
476 #define ASC_IERR_SET_SDTR             0x1000
477 #define ASC_IERR_RW_LRAM              0x8000
478
479 #define ASC_MAX_IRQ_NO  15
480 #define ASC_MIN_IRQ_NO  10
481 #define ASC_DEF_MAX_TOTAL_QNG   (0xF0)
482 #define ASC_MIN_TAG_Q_PER_DVC   (0x04)
483 #define ASC_MIN_FREE_Q        (0x02)
484 #define ASC_MIN_TOTAL_QNG     ((ASC_MAX_SG_QUEUE)+(ASC_MIN_FREE_Q))
485 #define ASC_MAX_TOTAL_QNG 240
486 #define ASC_MAX_PCI_ULTRA_INRAM_TOTAL_QNG 16
487 #define ASC_MAX_PCI_ULTRA_INRAM_TAG_QNG   8
488 #define ASC_MAX_PCI_INRAM_TOTAL_QNG  20
489 #define ASC_MAX_INRAM_TAG_QNG   16
490 #define ASC_IOADR_GAP   0x10
491 #define ASC_MAX_SYN_XFER_NO        16
492 #define ASC_SYN_MAX_OFFSET         0x0F
493 #define ASC_DEF_SDTR_OFFSET        0x0F
494 #define ASC_SDTR_ULTRA_PCI_10MB_INDEX  0x02
495 #define SYN_XFER_NS_0  25
496 #define SYN_XFER_NS_1  30
497 #define SYN_XFER_NS_2  35
498 #define SYN_XFER_NS_3  40
499 #define SYN_XFER_NS_4  50
500 #define SYN_XFER_NS_5  60
501 #define SYN_XFER_NS_6  70
502 #define SYN_XFER_NS_7  85
503 #define SYN_ULTRA_XFER_NS_0    12
504 #define SYN_ULTRA_XFER_NS_1    19
505 #define SYN_ULTRA_XFER_NS_2    25
506 #define SYN_ULTRA_XFER_NS_3    32
507 #define SYN_ULTRA_XFER_NS_4    38
508 #define SYN_ULTRA_XFER_NS_5    44
509 #define SYN_ULTRA_XFER_NS_6    50
510 #define SYN_ULTRA_XFER_NS_7    57
511 #define SYN_ULTRA_XFER_NS_8    63
512 #define SYN_ULTRA_XFER_NS_9    69
513 #define SYN_ULTRA_XFER_NS_10   75
514 #define SYN_ULTRA_XFER_NS_11   82
515 #define SYN_ULTRA_XFER_NS_12   88
516 #define SYN_ULTRA_XFER_NS_13   94
517 #define SYN_ULTRA_XFER_NS_14  100
518 #define SYN_ULTRA_XFER_NS_15  107
519
520 typedef struct ext_msg {
521         uchar msg_type;
522         uchar msg_len;
523         uchar msg_req;
524         union {
525                 struct {
526                         uchar sdtr_xfer_period;
527                         uchar sdtr_req_ack_offset;
528                 } sdtr;
529                 struct {
530                         uchar wdtr_width;
531                 } wdtr;
532                 struct {
533                         uchar mdp_b3;
534                         uchar mdp_b2;
535                         uchar mdp_b1;
536                         uchar mdp_b0;
537                 } mdp;
538         } u_ext_msg;
539         uchar res;
540 } EXT_MSG;
541
542 #define xfer_period     u_ext_msg.sdtr.sdtr_xfer_period
543 #define req_ack_offset  u_ext_msg.sdtr.sdtr_req_ack_offset
544 #define wdtr_width      u_ext_msg.wdtr.wdtr_width
545 #define mdp_b3          u_ext_msg.mdp_b3
546 #define mdp_b2          u_ext_msg.mdp_b2
547 #define mdp_b1          u_ext_msg.mdp_b1
548 #define mdp_b0          u_ext_msg.mdp_b0
549
550 typedef struct asc_dvc_cfg {
551         ASC_SCSI_BIT_ID_TYPE can_tagged_qng;
552         ASC_SCSI_BIT_ID_TYPE cmd_qng_enabled;
553         ASC_SCSI_BIT_ID_TYPE disc_enable;
554         ASC_SCSI_BIT_ID_TYPE sdtr_enable;
555         uchar chip_scsi_id;
556         uchar isa_dma_speed;
557         uchar isa_dma_channel;
558         uchar chip_version;
559         ushort lib_serial_no;
560         ushort lib_version;
561         ushort mcode_date;
562         ushort mcode_version;
563         uchar max_tag_qng[ASC_MAX_TID + 1];
564         uchar *overrun_buf;
565         uchar sdtr_period_offset[ASC_MAX_TID + 1];
566         uchar adapter_info[6];
567 } ASC_DVC_CFG;
568
569 #define ASC_DEF_DVC_CNTL       0xFFFF
570 #define ASC_DEF_CHIP_SCSI_ID   7
571 #define ASC_DEF_ISA_DMA_SPEED  4
572 #define ASC_INIT_STATE_BEG_GET_CFG   0x0001
573 #define ASC_INIT_STATE_END_GET_CFG   0x0002
574 #define ASC_INIT_STATE_BEG_SET_CFG   0x0004
575 #define ASC_INIT_STATE_END_SET_CFG   0x0008
576 #define ASC_INIT_STATE_BEG_LOAD_MC   0x0010
577 #define ASC_INIT_STATE_END_LOAD_MC   0x0020
578 #define ASC_INIT_STATE_BEG_INQUIRY   0x0040
579 #define ASC_INIT_STATE_END_INQUIRY   0x0080
580 #define ASC_INIT_RESET_SCSI_DONE     0x0100
581 #define ASC_INIT_STATE_WITHOUT_EEP   0x8000
582 #define ASC_BUG_FIX_IF_NOT_DWB       0x0001
583 #define ASC_BUG_FIX_ASYN_USE_SYN     0x0002
584 #define ASYN_SDTR_DATA_FIX_PCI_REV_AB 0x41
585 #define ASC_MIN_TAGGED_CMD  7
586 #define ASC_MAX_SCSI_RESET_WAIT      30
587
588 struct asc_dvc_var;             /* Forward Declaration. */
589
590 typedef struct asc_dvc_var {
591         PortAddr iop_base;
592         ushort err_code;
593         ushort dvc_cntl;
594         ushort bug_fix_cntl;
595         ushort bus_type;
596         ASC_SCSI_BIT_ID_TYPE init_sdtr;
597         ASC_SCSI_BIT_ID_TYPE sdtr_done;
598         ASC_SCSI_BIT_ID_TYPE use_tagged_qng;
599         ASC_SCSI_BIT_ID_TYPE unit_not_ready;
600         ASC_SCSI_BIT_ID_TYPE queue_full_or_busy;
601         ASC_SCSI_BIT_ID_TYPE start_motor;
602         uchar scsi_reset_wait;
603         uchar chip_no;
604         char is_in_int;
605         uchar max_total_qng;
606         uchar cur_total_qng;
607         uchar in_critical_cnt;
608         uchar irq_no;
609         uchar last_q_shortage;
610         ushort init_state;
611         uchar cur_dvc_qng[ASC_MAX_TID + 1];
612         uchar max_dvc_qng[ASC_MAX_TID + 1];
613         ASC_SCSI_Q *scsiq_busy_head[ASC_MAX_TID + 1];
614         ASC_SCSI_Q *scsiq_busy_tail[ASC_MAX_TID + 1];
615         uchar sdtr_period_tbl[ASC_MAX_SYN_XFER_NO];
616         ASC_DVC_CFG *cfg;
617         ASC_SCSI_BIT_ID_TYPE pci_fix_asyn_xfer_always;
618         char redo_scam;
619         ushort res2;
620         uchar dos_int13_table[ASC_MAX_TID + 1];
621         ASC_DCNT max_dma_count;
622         ASC_SCSI_BIT_ID_TYPE no_scam;
623         ASC_SCSI_BIT_ID_TYPE pci_fix_asyn_xfer;
624         uchar max_sdtr_index;
625         uchar host_init_sdtr_index;
626         struct asc_board *drv_ptr;
627         ASC_DCNT uc_break;
628 } ASC_DVC_VAR;
629
630 typedef struct asc_dvc_inq_info {
631         uchar type[ASC_MAX_TID + 1][ASC_MAX_LUN + 1];
632 } ASC_DVC_INQ_INFO;
633
634 typedef struct asc_cap_info {
635         ASC_DCNT lba;
636         ASC_DCNT blk_size;
637 } ASC_CAP_INFO;
638
639 typedef struct asc_cap_info_array {
640         ASC_CAP_INFO cap_info[ASC_MAX_TID + 1][ASC_MAX_LUN + 1];
641 } ASC_CAP_INFO_ARRAY;
642
643 #define ASC_MCNTL_NO_SEL_TIMEOUT  (ushort)0x0001
644 #define ASC_MCNTL_NULL_TARGET     (ushort)0x0002
645 #define ASC_CNTL_INITIATOR         (ushort)0x0001
646 #define ASC_CNTL_BIOS_GT_1GB       (ushort)0x0002
647 #define ASC_CNTL_BIOS_GT_2_DISK    (ushort)0x0004
648 #define ASC_CNTL_BIOS_REMOVABLE    (ushort)0x0008
649 #define ASC_CNTL_NO_SCAM           (ushort)0x0010
650 #define ASC_CNTL_INT_MULTI_Q       (ushort)0x0080
651 #define ASC_CNTL_NO_LUN_SUPPORT    (ushort)0x0040
652 #define ASC_CNTL_NO_VERIFY_COPY    (ushort)0x0100
653 #define ASC_CNTL_RESET_SCSI        (ushort)0x0200
654 #define ASC_CNTL_INIT_INQUIRY      (ushort)0x0400
655 #define ASC_CNTL_INIT_VERBOSE      (ushort)0x0800
656 #define ASC_CNTL_SCSI_PARITY       (ushort)0x1000
657 #define ASC_CNTL_BURST_MODE        (ushort)0x2000
658 #define ASC_CNTL_SDTR_ENABLE_ULTRA (ushort)0x4000
659 #define ASC_EEP_DVC_CFG_BEG_VL    2
660 #define ASC_EEP_MAX_DVC_ADDR_VL   15
661 #define ASC_EEP_DVC_CFG_BEG      32
662 #define ASC_EEP_MAX_DVC_ADDR     45
663 #define ASC_EEP_MAX_RETRY        20
664
665 /*
666  * These macros keep the chip SCSI id and ISA DMA speed
667  * bitfields in board order. C bitfields aren't portable
668  * between big and little-endian platforms so they are
669  * not used.
670  */
671
672 #define ASC_EEP_GET_CHIP_ID(cfg)    ((cfg)->id_speed & 0x0f)
673 #define ASC_EEP_GET_DMA_SPD(cfg)    (((cfg)->id_speed & 0xf0) >> 4)
674 #define ASC_EEP_SET_CHIP_ID(cfg, sid) \
675    ((cfg)->id_speed = ((cfg)->id_speed & 0xf0) | ((sid) & ASC_MAX_TID))
676 #define ASC_EEP_SET_DMA_SPD(cfg, spd) \
677    ((cfg)->id_speed = ((cfg)->id_speed & 0x0f) | ((spd) & 0x0f) << 4)
678
679 typedef struct asceep_config {
680         ushort cfg_lsw;
681         ushort cfg_msw;
682         uchar init_sdtr;
683         uchar disc_enable;
684         uchar use_cmd_qng;
685         uchar start_motor;
686         uchar max_total_qng;
687         uchar max_tag_qng;
688         uchar bios_scan;
689         uchar power_up_wait;
690         uchar no_scam;
691         uchar id_speed;         /* low order 4 bits is chip scsi id */
692         /* high order 4 bits is isa dma speed */
693         uchar dos_int13_table[ASC_MAX_TID + 1];
694         uchar adapter_info[6];
695         ushort cntl;
696         ushort chksum;
697 } ASCEEP_CONFIG;
698
699 #define ASC_EEP_CMD_READ          0x80
700 #define ASC_EEP_CMD_WRITE         0x40
701 #define ASC_EEP_CMD_WRITE_ABLE    0x30
702 #define ASC_EEP_CMD_WRITE_DISABLE 0x00
703 #define ASC_OVERRUN_BSIZE  0x00000048UL
704 #define ASCV_MSGOUT_BEG         0x0000
705 #define ASCV_MSGOUT_SDTR_PERIOD (ASCV_MSGOUT_BEG+3)
706 #define ASCV_MSGOUT_SDTR_OFFSET (ASCV_MSGOUT_BEG+4)
707 #define ASCV_BREAK_SAVED_CODE   (ushort)0x0006
708 #define ASCV_MSGIN_BEG          (ASCV_MSGOUT_BEG+8)
709 #define ASCV_MSGIN_SDTR_PERIOD  (ASCV_MSGIN_BEG+3)
710 #define ASCV_MSGIN_SDTR_OFFSET  (ASCV_MSGIN_BEG+4)
711 #define ASCV_SDTR_DATA_BEG      (ASCV_MSGIN_BEG+8)
712 #define ASCV_SDTR_DONE_BEG      (ASCV_SDTR_DATA_BEG+8)
713 #define ASCV_MAX_DVC_QNG_BEG    (ushort)0x0020
714 #define ASCV_BREAK_ADDR           (ushort)0x0028
715 #define ASCV_BREAK_NOTIFY_COUNT   (ushort)0x002A
716 #define ASCV_BREAK_CONTROL        (ushort)0x002C
717 #define ASCV_BREAK_HIT_COUNT      (ushort)0x002E
718
719 #define ASCV_ASCDVC_ERR_CODE_W  (ushort)0x0030
720 #define ASCV_MCODE_CHKSUM_W   (ushort)0x0032
721 #define ASCV_MCODE_SIZE_W     (ushort)0x0034
722 #define ASCV_STOP_CODE_B      (ushort)0x0036
723 #define ASCV_DVC_ERR_CODE_B   (ushort)0x0037
724 #define ASCV_OVERRUN_PADDR_D  (ushort)0x0038
725 #define ASCV_OVERRUN_BSIZE_D  (ushort)0x003C
726 #define ASCV_HALTCODE_W       (ushort)0x0040
727 #define ASCV_CHKSUM_W         (ushort)0x0042
728 #define ASCV_MC_DATE_W        (ushort)0x0044
729 #define ASCV_MC_VER_W         (ushort)0x0046
730 #define ASCV_NEXTRDY_B        (ushort)0x0048
731 #define ASCV_DONENEXT_B       (ushort)0x0049
732 #define ASCV_USE_TAGGED_QNG_B (ushort)0x004A
733 #define ASCV_SCSIBUSY_B       (ushort)0x004B
734 #define ASCV_Q_DONE_IN_PROGRESS_B  (ushort)0x004C
735 #define ASCV_CURCDB_B         (ushort)0x004D
736 #define ASCV_RCLUN_B          (ushort)0x004E
737 #define ASCV_BUSY_QHEAD_B     (ushort)0x004F
738 #define ASCV_DISC1_QHEAD_B    (ushort)0x0050
739 #define ASCV_DISC_ENABLE_B    (ushort)0x0052
740 #define ASCV_CAN_TAGGED_QNG_B (ushort)0x0053
741 #define ASCV_HOSTSCSI_ID_B    (ushort)0x0055
742 #define ASCV_MCODE_CNTL_B     (ushort)0x0056
743 #define ASCV_NULL_TARGET_B    (ushort)0x0057
744 #define ASCV_FREE_Q_HEAD_W    (ushort)0x0058
745 #define ASCV_DONE_Q_TAIL_W    (ushort)0x005A
746 #define ASCV_FREE_Q_HEAD_B    (ushort)(ASCV_FREE_Q_HEAD_W+1)
747 #define ASCV_DONE_Q_TAIL_B    (ushort)(ASCV_DONE_Q_TAIL_W+1)
748 #define ASCV_HOST_FLAG_B      (ushort)0x005D
749 #define ASCV_TOTAL_READY_Q_B  (ushort)0x0064
750 #define ASCV_VER_SERIAL_B     (ushort)0x0065
751 #define ASCV_HALTCODE_SAVED_W (ushort)0x0066
752 #define ASCV_WTM_FLAG_B       (ushort)0x0068
753 #define ASCV_RISC_FLAG_B      (ushort)0x006A
754 #define ASCV_REQ_SG_LIST_QP   (ushort)0x006B
755 #define ASC_HOST_FLAG_IN_ISR        0x01
756 #define ASC_HOST_FLAG_ACK_INT       0x02
757 #define ASC_RISC_FLAG_GEN_INT      0x01
758 #define ASC_RISC_FLAG_REQ_SG_LIST  0x02
759 #define IOP_CTRL         (0x0F)
760 #define IOP_STATUS       (0x0E)
761 #define IOP_INT_ACK      IOP_STATUS
762 #define IOP_REG_IFC      (0x0D)
763 #define IOP_SYN_OFFSET    (0x0B)
764 #define IOP_EXTRA_CONTROL (0x0D)
765 #define IOP_REG_PC        (0x0C)
766 #define IOP_RAM_ADDR      (0x0A)
767 #define IOP_RAM_DATA      (0x08)
768 #define IOP_EEP_DATA      (0x06)
769 #define IOP_EEP_CMD       (0x07)
770 #define IOP_VERSION       (0x03)
771 #define IOP_CONFIG_HIGH   (0x04)
772 #define IOP_CONFIG_LOW    (0x02)
773 #define IOP_SIG_BYTE      (0x01)
774 #define IOP_SIG_WORD      (0x00)
775 #define IOP_REG_DC1      (0x0E)
776 #define IOP_REG_DC0      (0x0C)
777 #define IOP_REG_SB       (0x0B)
778 #define IOP_REG_DA1      (0x0A)
779 #define IOP_REG_DA0      (0x08)
780 #define IOP_REG_SC       (0x09)
781 #define IOP_DMA_SPEED    (0x07)
782 #define IOP_REG_FLAG     (0x07)
783 #define IOP_FIFO_H       (0x06)
784 #define IOP_FIFO_L       (0x04)
785 #define IOP_REG_ID       (0x05)
786 #define IOP_REG_QP       (0x03)
787 #define IOP_REG_IH       (0x02)
788 #define IOP_REG_IX       (0x01)
789 #define IOP_REG_AX       (0x00)
790 #define IFC_REG_LOCK      (0x00)
791 #define IFC_REG_UNLOCK    (0x09)
792 #define IFC_WR_EN_FILTER  (0x10)
793 #define IFC_RD_NO_EEPROM  (0x10)
794 #define IFC_SLEW_RATE     (0x20)
795 #define IFC_ACT_NEG       (0x40)
796 #define IFC_INP_FILTER    (0x80)
797 #define IFC_INIT_DEFAULT  (IFC_ACT_NEG | IFC_REG_UNLOCK)
798 #define SC_SEL   (uchar)(0x80)
799 #define SC_BSY   (uchar)(0x40)
800 #define SC_ACK   (uchar)(0x20)
801 #define SC_REQ   (uchar)(0x10)
802 #define SC_ATN   (uchar)(0x08)
803 #define SC_IO    (uchar)(0x04)
804 #define SC_CD    (uchar)(0x02)
805 #define SC_MSG   (uchar)(0x01)
806 #define SEC_SCSI_CTL         (uchar)(0x80)
807 #define SEC_ACTIVE_NEGATE    (uchar)(0x40)
808 #define SEC_SLEW_RATE        (uchar)(0x20)
809 #define SEC_ENABLE_FILTER    (uchar)(0x10)
810 #define ASC_HALT_EXTMSG_IN     (ushort)0x8000
811 #define ASC_HALT_CHK_CONDITION (ushort)0x8100
812 #define ASC_HALT_SS_QUEUE_FULL (ushort)0x8200
813 #define ASC_HALT_DISABLE_ASYN_USE_SYN_FIX  (ushort)0x8300
814 #define ASC_HALT_ENABLE_ASYN_USE_SYN_FIX   (ushort)0x8400
815 #define ASC_HALT_SDTR_REJECTED (ushort)0x4000
816 #define ASC_HALT_HOST_COPY_SG_LIST_TO_RISC ( ushort )0x2000
817 #define ASC_MAX_QNO        0xF8
818 #define ASC_DATA_SEC_BEG   (ushort)0x0080
819 #define ASC_DATA_SEC_END   (ushort)0x0080
820 #define ASC_CODE_SEC_BEG   (ushort)0x0080
821 #define ASC_CODE_SEC_END   (ushort)0x0080
822 #define ASC_QADR_BEG       (0x4000)
823 #define ASC_QADR_USED      (ushort)(ASC_MAX_QNO * 64)
824 #define ASC_QADR_END       (ushort)0x7FFF
825 #define ASC_QLAST_ADR      (ushort)0x7FC0
826 #define ASC_QBLK_SIZE      0x40
827 #define ASC_BIOS_DATA_QBEG 0xF8
828 #define ASC_MIN_ACTIVE_QNO 0x01
829 #define ASC_QLINK_END      0xFF
830 #define ASC_EEPROM_WORDS   0x10
831 #define ASC_MAX_MGS_LEN    0x10
832 #define ASC_BIOS_ADDR_DEF  0xDC00
833 #define ASC_BIOS_SIZE      0x3800
834 #define ASC_BIOS_RAM_OFF   0x3800
835 #define ASC_BIOS_RAM_SIZE  0x800
836 #define ASC_BIOS_MIN_ADDR  0xC000
837 #define ASC_BIOS_MAX_ADDR  0xEC00
838 #define ASC_BIOS_BANK_SIZE 0x0400
839 #define ASC_MCODE_START_ADDR  0x0080
840 #define ASC_CFG0_HOST_INT_ON    0x0020
841 #define ASC_CFG0_BIOS_ON        0x0040
842 #define ASC_CFG0_VERA_BURST_ON  0x0080
843 #define ASC_CFG0_SCSI_PARITY_ON 0x0800
844 #define ASC_CFG1_SCSI_TARGET_ON 0x0080
845 #define ASC_CFG1_LRAM_8BITS_ON  0x0800
846 #define ASC_CFG_MSW_CLR_MASK    0x3080
847 #define CSW_TEST1             (ASC_CS_TYPE)0x8000
848 #define CSW_AUTO_CONFIG       (ASC_CS_TYPE)0x4000
849 #define CSW_RESERVED1         (ASC_CS_TYPE)0x2000
850 #define CSW_IRQ_WRITTEN       (ASC_CS_TYPE)0x1000
851 #define CSW_33MHZ_SELECTED    (ASC_CS_TYPE)0x0800
852 #define CSW_TEST2             (ASC_CS_TYPE)0x0400
853 #define CSW_TEST3             (ASC_CS_TYPE)0x0200
854 #define CSW_RESERVED2         (ASC_CS_TYPE)0x0100
855 #define CSW_DMA_DONE          (ASC_CS_TYPE)0x0080
856 #define CSW_FIFO_RDY          (ASC_CS_TYPE)0x0040
857 #define CSW_EEP_READ_DONE     (ASC_CS_TYPE)0x0020
858 #define CSW_HALTED            (ASC_CS_TYPE)0x0010
859 #define CSW_SCSI_RESET_ACTIVE (ASC_CS_TYPE)0x0008
860 #define CSW_PARITY_ERR        (ASC_CS_TYPE)0x0004
861 #define CSW_SCSI_RESET_LATCH  (ASC_CS_TYPE)0x0002
862 #define CSW_INT_PENDING       (ASC_CS_TYPE)0x0001
863 #define CIW_CLR_SCSI_RESET_INT (ASC_CS_TYPE)0x1000
864 #define CIW_INT_ACK      (ASC_CS_TYPE)0x0100
865 #define CIW_TEST1        (ASC_CS_TYPE)0x0200
866 #define CIW_TEST2        (ASC_CS_TYPE)0x0400
867 #define CIW_SEL_33MHZ    (ASC_CS_TYPE)0x0800
868 #define CIW_IRQ_ACT      (ASC_CS_TYPE)0x1000
869 #define CC_CHIP_RESET   (uchar)0x80
870 #define CC_SCSI_RESET   (uchar)0x40
871 #define CC_HALT         (uchar)0x20
872 #define CC_SINGLE_STEP  (uchar)0x10
873 #define CC_DMA_ABLE     (uchar)0x08
874 #define CC_TEST         (uchar)0x04
875 #define CC_BANK_ONE     (uchar)0x02
876 #define CC_DIAG         (uchar)0x01
877 #define ASC_1000_ID0W      0x04C1
878 #define ASC_1000_ID0W_FIX  0x00C1
879 #define ASC_1000_ID1B      0x25
880 #define ASC_EISA_REV_IOP_MASK  (0x0C83)
881 #define ASC_EISA_CFG_IOP_MASK  (0x0C86)
882 #define ASC_GET_EISA_SLOT(iop)  (PortAddr)((iop) & 0xF000)
883 #define INS_HALTINT        (ushort)0x6281
884 #define INS_HALT           (ushort)0x6280
885 #define INS_SINT           (ushort)0x6200
886 #define INS_RFLAG_WTM      (ushort)0x7380
887 #define ASC_MC_SAVE_CODE_WSIZE  0x500
888 #define ASC_MC_SAVE_DATA_WSIZE  0x40
889
890 typedef struct asc_mc_saved {
891         ushort data[ASC_MC_SAVE_DATA_WSIZE];
892         ushort code[ASC_MC_SAVE_CODE_WSIZE];
893 } ASC_MC_SAVED;
894
895 #define AscGetQDoneInProgress(port)         AscReadLramByte((port), ASCV_Q_DONE_IN_PROGRESS_B)
896 #define AscPutQDoneInProgress(port, val)    AscWriteLramByte((port), ASCV_Q_DONE_IN_PROGRESS_B, val)
897 #define AscGetVarFreeQHead(port)            AscReadLramWord((port), ASCV_FREE_Q_HEAD_W)
898 #define AscGetVarDoneQTail(port)            AscReadLramWord((port), ASCV_DONE_Q_TAIL_W)
899 #define AscPutVarFreeQHead(port, val)       AscWriteLramWord((port), ASCV_FREE_Q_HEAD_W, val)
900 #define AscPutVarDoneQTail(port, val)       AscWriteLramWord((port), ASCV_DONE_Q_TAIL_W, val)
901 #define AscGetRiscVarFreeQHead(port)        AscReadLramByte((port), ASCV_NEXTRDY_B)
902 #define AscGetRiscVarDoneQTail(port)        AscReadLramByte((port), ASCV_DONENEXT_B)
903 #define AscPutRiscVarFreeQHead(port, val)   AscWriteLramByte((port), ASCV_NEXTRDY_B, val)
904 #define AscPutRiscVarDoneQTail(port, val)   AscWriteLramByte((port), ASCV_DONENEXT_B, val)
905 #define AscPutMCodeSDTRDoneAtID(port, id, data)  AscWriteLramByte((port), (ushort)((ushort)ASCV_SDTR_DONE_BEG+(ushort)id), (data))
906 #define AscGetMCodeSDTRDoneAtID(port, id)        AscReadLramByte((port), (ushort)((ushort)ASCV_SDTR_DONE_BEG+(ushort)id))
907 #define AscPutMCodeInitSDTRAtID(port, id, data)  AscWriteLramByte((port), (ushort)((ushort)ASCV_SDTR_DATA_BEG+(ushort)id), data)
908 #define AscGetMCodeInitSDTRAtID(port, id)        AscReadLramByte((port), (ushort)((ushort)ASCV_SDTR_DATA_BEG+(ushort)id))
909 #define AscSynIndexToPeriod(index)        (uchar)(asc_dvc->sdtr_period_tbl[ (index) ])
910 #define AscGetChipSignatureByte(port)     (uchar)inp((port)+IOP_SIG_BYTE)
911 #define AscGetChipSignatureWord(port)     (ushort)inpw((port)+IOP_SIG_WORD)
912 #define AscGetChipVerNo(port)             (uchar)inp((port)+IOP_VERSION)
913 #define AscGetChipCfgLsw(port)            (ushort)inpw((port)+IOP_CONFIG_LOW)
914 #define AscGetChipCfgMsw(port)            (ushort)inpw((port)+IOP_CONFIG_HIGH)
915 #define AscSetChipCfgLsw(port, data)      outpw((port)+IOP_CONFIG_LOW, data)
916 #define AscSetChipCfgMsw(port, data)      outpw((port)+IOP_CONFIG_HIGH, data)
917 #define AscGetChipEEPCmd(port)            (uchar)inp((port)+IOP_EEP_CMD)
918 #define AscSetChipEEPCmd(port, data)      outp((port)+IOP_EEP_CMD, data)
919 #define AscGetChipEEPData(port)           (ushort)inpw((port)+IOP_EEP_DATA)
920 #define AscSetChipEEPData(port, data)     outpw((port)+IOP_EEP_DATA, data)
921 #define AscGetChipLramAddr(port)          (ushort)inpw((PortAddr)((port)+IOP_RAM_ADDR))
922 #define AscSetChipLramAddr(port, addr)    outpw((PortAddr)((port)+IOP_RAM_ADDR), addr)
923 #define AscGetChipLramData(port)          (ushort)inpw((port)+IOP_RAM_DATA)
924 #define AscSetChipLramData(port, data)    outpw((port)+IOP_RAM_DATA, data)
925 #define AscGetChipIFC(port)               (uchar)inp((port)+IOP_REG_IFC)
926 #define AscSetChipIFC(port, data)          outp((port)+IOP_REG_IFC, data)
927 #define AscGetChipStatus(port)            (ASC_CS_TYPE)inpw((port)+IOP_STATUS)
928 #define AscSetChipStatus(port, cs_val)    outpw((port)+IOP_STATUS, cs_val)
929 #define AscGetChipControl(port)           (uchar)inp((port)+IOP_CTRL)
930 #define AscSetChipControl(port, cc_val)   outp((port)+IOP_CTRL, cc_val)
931 #define AscGetChipSyn(port)               (uchar)inp((port)+IOP_SYN_OFFSET)
932 #define AscSetChipSyn(port, data)         outp((port)+IOP_SYN_OFFSET, data)
933 #define AscSetPCAddr(port, data)          outpw((port)+IOP_REG_PC, data)
934 #define AscGetPCAddr(port)                (ushort)inpw((port)+IOP_REG_PC)
935 #define AscIsIntPending(port)             (AscGetChipStatus(port) & (CSW_INT_PENDING | CSW_SCSI_RESET_LATCH))
936 #define AscGetChipScsiID(port)            ((AscGetChipCfgLsw(port) >> 8) & ASC_MAX_TID)
937 #define AscGetExtraControl(port)          (uchar)inp((port)+IOP_EXTRA_CONTROL)
938 #define AscSetExtraControl(port, data)    outp((port)+IOP_EXTRA_CONTROL, data)
939 #define AscReadChipAX(port)               (ushort)inpw((port)+IOP_REG_AX)
940 #define AscWriteChipAX(port, data)        outpw((port)+IOP_REG_AX, data)
941 #define AscReadChipIX(port)               (uchar)inp((port)+IOP_REG_IX)
942 #define AscWriteChipIX(port, data)        outp((port)+IOP_REG_IX, data)
943 #define AscReadChipIH(port)               (ushort)inpw((port)+IOP_REG_IH)
944 #define AscWriteChipIH(port, data)        outpw((port)+IOP_REG_IH, data)
945 #define AscReadChipQP(port)               (uchar)inp((port)+IOP_REG_QP)
946 #define AscWriteChipQP(port, data)        outp((port)+IOP_REG_QP, data)
947 #define AscReadChipFIFO_L(port)           (ushort)inpw((port)+IOP_REG_FIFO_L)
948 #define AscWriteChipFIFO_L(port, data)    outpw((port)+IOP_REG_FIFO_L, data)
949 #define AscReadChipFIFO_H(port)           (ushort)inpw((port)+IOP_REG_FIFO_H)
950 #define AscWriteChipFIFO_H(port, data)    outpw((port)+IOP_REG_FIFO_H, data)
951 #define AscReadChipDmaSpeed(port)         (uchar)inp((port)+IOP_DMA_SPEED)
952 #define AscWriteChipDmaSpeed(port, data)  outp((port)+IOP_DMA_SPEED, data)
953 #define AscReadChipDA0(port)              (ushort)inpw((port)+IOP_REG_DA0)
954 #define AscWriteChipDA0(port)             outpw((port)+IOP_REG_DA0, data)
955 #define AscReadChipDA1(port)              (ushort)inpw((port)+IOP_REG_DA1)
956 #define AscWriteChipDA1(port)             outpw((port)+IOP_REG_DA1, data)
957 #define AscReadChipDC0(port)              (ushort)inpw((port)+IOP_REG_DC0)
958 #define AscWriteChipDC0(port)             outpw((port)+IOP_REG_DC0, data)
959 #define AscReadChipDC1(port)              (ushort)inpw((port)+IOP_REG_DC1)
960 #define AscWriteChipDC1(port)             outpw((port)+IOP_REG_DC1, data)
961 #define AscReadChipDvcID(port)            (uchar)inp((port)+IOP_REG_ID)
962 #define AscWriteChipDvcID(port, data)     outp((port)+IOP_REG_ID, data)
963
964 #define ADV_LIB_VERSION_MAJOR  5
965 #define ADV_LIB_VERSION_MINOR  14
966
967 /*
968  * Define Adv Library required special types.
969  */
970
971 /*
972  * Portable Data Types
973  *
974  * Any instance where a 32-bit long or pointer type is assumed
975  * for precision or HW defined structures, the following define
976  * types must be used. In Linux the char, short, and int types
977  * are all consistent at 8, 16, and 32 bits respectively. Pointers
978  * and long types are 64 bits on Alpha and UltraSPARC.
979  */
980 #define ADV_PADDR __u32         /* Physical address data type. */
981 #define ADV_VADDR __u32         /* Virtual address data type. */
982 #define ADV_DCNT  __u32         /* Unsigned Data count type. */
983 #define ADV_SDCNT __s32         /* Signed Data count type. */
984
985 /*
986  * These macros are used to convert a virtual address to a
987  * 32-bit value. This currently can be used on Linux Alpha
988  * which uses 64-bit virtual address but a 32-bit bus address.
989  * This is likely to break in the future, but doing this now
990  * will give us time to change the HW and FW to handle 64-bit
991  * addresses.
992  */
993 #define ADV_VADDR_TO_U32   virt_to_bus
994 #define ADV_U32_TO_VADDR   bus_to_virt
995
996 #define AdvPortAddr  void __iomem *     /* Virtual memory address size */
997
998 /*
999  * Define Adv Library required memory access macros.
1000  */
1001 #define ADV_MEM_READB(addr) readb(addr)
1002 #define ADV_MEM_READW(addr) readw(addr)
1003 #define ADV_MEM_WRITEB(addr, byte) writeb(byte, addr)
1004 #define ADV_MEM_WRITEW(addr, word) writew(word, addr)
1005 #define ADV_MEM_WRITEDW(addr, dword) writel(dword, addr)
1006
1007 #define ADV_CARRIER_COUNT (ASC_DEF_MAX_HOST_QNG + 15)
1008
1009 /*
1010  * Define total number of simultaneous maximum element scatter-gather
1011  * request blocks per wide adapter. ASC_DEF_MAX_HOST_QNG (253) is the
1012  * maximum number of outstanding commands per wide host adapter. Each
1013  * command uses one or more ADV_SG_BLOCK each with 15 scatter-gather
1014  * elements. Allow each command to have at least one ADV_SG_BLOCK structure.
1015  * This allows about 15 commands to have the maximum 17 ADV_SG_BLOCK
1016  * structures or 255 scatter-gather elements.
1017  *
1018  */
1019 #define ADV_TOT_SG_BLOCK        ASC_DEF_MAX_HOST_QNG
1020
1021 /*
1022  * Define Adv Library required maximum number of scatter-gather
1023  * elements per request.
1024  */
1025 #define ADV_MAX_SG_LIST         255
1026
1027 /* Number of SG blocks needed. */
1028 #define ADV_NUM_SG_BLOCK \
1029     ((ADV_MAX_SG_LIST + (NO_OF_SG_PER_BLOCK - 1))/NO_OF_SG_PER_BLOCK)
1030
1031 /* Total contiguous memory needed for SG blocks. */
1032 #define ADV_SG_TOTAL_MEM_SIZE \
1033     (sizeof(ADV_SG_BLOCK) *  ADV_NUM_SG_BLOCK)
1034
1035 #define ADV_PAGE_SIZE PAGE_SIZE
1036
1037 #define ADV_NUM_PAGE_CROSSING \
1038     ((ADV_SG_TOTAL_MEM_SIZE + (ADV_PAGE_SIZE - 1))/ADV_PAGE_SIZE)
1039
1040 #define ADV_EEP_DVC_CFG_BEGIN           (0x00)
1041 #define ADV_EEP_DVC_CFG_END             (0x15)
1042 #define ADV_EEP_DVC_CTL_BEGIN           (0x16)  /* location of OEM name */
1043 #define ADV_EEP_MAX_WORD_ADDR           (0x1E)
1044
1045 #define ADV_EEP_DELAY_MS                100
1046
1047 #define ADV_EEPROM_BIG_ENDIAN          0x8000   /* EEPROM Bit 15 */
1048 #define ADV_EEPROM_BIOS_ENABLE         0x4000   /* EEPROM Bit 14 */
1049 /*
1050  * For the ASC3550 Bit 13 is Termination Polarity control bit.
1051  * For later ICs Bit 13 controls whether the CIS (Card Information
1052  * Service Section) is loaded from EEPROM.
1053  */
1054 #define ADV_EEPROM_TERM_POL            0x2000   /* EEPROM Bit 13 */
1055 #define ADV_EEPROM_CIS_LD              0x2000   /* EEPROM Bit 13 */
1056 /*
1057  * ASC38C1600 Bit 11
1058  *
1059  * If EEPROM Bit 11 is 0 for Function 0, then Function 0 will specify
1060  * INT A in the PCI Configuration Space Int Pin field. If it is 1, then
1061  * Function 0 will specify INT B.
1062  *
1063  * If EEPROM Bit 11 is 0 for Function 1, then Function 1 will specify
1064  * INT B in the PCI Configuration Space Int Pin field. If it is 1, then
1065  * Function 1 will specify INT A.
1066  */
1067 #define ADV_EEPROM_INTAB               0x0800   /* EEPROM Bit 11 */
1068
1069 typedef struct adveep_3550_config {
1070         /* Word Offset, Description */
1071
1072         ushort cfg_lsw;         /* 00 power up initialization */
1073         /*  bit 13 set - Term Polarity Control */
1074         /*  bit 14 set - BIOS Enable */
1075         /*  bit 15 set - Big Endian Mode */
1076         ushort cfg_msw;         /* 01 unused      */
1077         ushort disc_enable;     /* 02 disconnect enable */
1078         ushort wdtr_able;       /* 03 Wide DTR able */
1079         ushort sdtr_able;       /* 04 Synchronous DTR able */
1080         ushort start_motor;     /* 05 send start up motor */
1081         ushort tagqng_able;     /* 06 tag queuing able */
1082         ushort bios_scan;       /* 07 BIOS device control */
1083         ushort scam_tolerant;   /* 08 no scam */
1084
1085         uchar adapter_scsi_id;  /* 09 Host Adapter ID */
1086         uchar bios_boot_delay;  /*    power up wait */
1087
1088         uchar scsi_reset_delay; /* 10 reset delay */
1089         uchar bios_id_lun;      /*    first boot device scsi id & lun */
1090         /*    high nibble is lun */
1091         /*    low nibble is scsi id */
1092
1093         uchar termination;      /* 11 0 - automatic */
1094         /*    1 - low off / high off */
1095         /*    2 - low off / high on */
1096         /*    3 - low on  / high on */
1097         /*    There is no low on  / high off */
1098
1099         uchar reserved1;        /*    reserved byte (not used) */
1100
1101         ushort bios_ctrl;       /* 12 BIOS control bits */
1102         /*  bit 0  BIOS don't act as initiator. */
1103         /*  bit 1  BIOS > 1 GB support */
1104         /*  bit 2  BIOS > 2 Disk Support */
1105         /*  bit 3  BIOS don't support removables */
1106         /*  bit 4  BIOS support bootable CD */
1107         /*  bit 5  BIOS scan enabled */
1108         /*  bit 6  BIOS support multiple LUNs */
1109         /*  bit 7  BIOS display of message */
1110         /*  bit 8  SCAM disabled */
1111         /*  bit 9  Reset SCSI bus during init. */
1112         /*  bit 10 */
1113         /*  bit 11 No verbose initialization. */
1114         /*  bit 12 SCSI parity enabled */
1115         /*  bit 13 */
1116         /*  bit 14 */
1117         /*  bit 15 */
1118         ushort ultra_able;      /* 13 ULTRA speed able */
1119         ushort reserved2;       /* 14 reserved */
1120         uchar max_host_qng;     /* 15 maximum host queuing */
1121         uchar max_dvc_qng;      /*    maximum per device queuing */
1122         ushort dvc_cntl;        /* 16 control bit for driver */
1123         ushort bug_fix;         /* 17 control bit for bug fix */
1124         ushort serial_number_word1;     /* 18 Board serial number word 1 */
1125         ushort serial_number_word2;     /* 19 Board serial number word 2 */
1126         ushort serial_number_word3;     /* 20 Board serial number word 3 */
1127         ushort check_sum;       /* 21 EEP check sum */
1128         uchar oem_name[16];     /* 22 OEM name */
1129         ushort dvc_err_code;    /* 30 last device driver error code */
1130         ushort adv_err_code;    /* 31 last uc and Adv Lib error code */
1131         ushort adv_err_addr;    /* 32 last uc error address */
1132         ushort saved_dvc_err_code;      /* 33 saved last dev. driver error code   */
1133         ushort saved_adv_err_code;      /* 34 saved last uc and Adv Lib error code */
1134         ushort saved_adv_err_addr;      /* 35 saved last uc error address         */
1135         ushort num_of_err;      /* 36 number of error */
1136 } ADVEEP_3550_CONFIG;
1137
1138 typedef struct adveep_38C0800_config {
1139         /* Word Offset, Description */
1140
1141         ushort cfg_lsw;         /* 00 power up initialization */
1142         /*  bit 13 set - Load CIS */
1143         /*  bit 14 set - BIOS Enable */
1144         /*  bit 15 set - Big Endian Mode */
1145         ushort cfg_msw;         /* 01 unused      */
1146         ushort disc_enable;     /* 02 disconnect enable */
1147         ushort wdtr_able;       /* 03 Wide DTR able */
1148         ushort sdtr_speed1;     /* 04 SDTR Speed TID 0-3 */
1149         ushort start_motor;     /* 05 send start up motor */
1150         ushort tagqng_able;     /* 06 tag queuing able */
1151         ushort bios_scan;       /* 07 BIOS device control */
1152         ushort scam_tolerant;   /* 08 no scam */
1153
1154         uchar adapter_scsi_id;  /* 09 Host Adapter ID */
1155         uchar bios_boot_delay;  /*    power up wait */
1156
1157         uchar scsi_reset_delay; /* 10 reset delay */
1158         uchar bios_id_lun;      /*    first boot device scsi id & lun */
1159         /*    high nibble is lun */
1160         /*    low nibble is scsi id */
1161
1162         uchar termination_se;   /* 11 0 - automatic */
1163         /*    1 - low off / high off */
1164         /*    2 - low off / high on */
1165         /*    3 - low on  / high on */
1166         /*    There is no low on  / high off */
1167
1168         uchar termination_lvd;  /* 11 0 - automatic */
1169         /*    1 - low off / high off */
1170         /*    2 - low off / high on */
1171         /*    3 - low on  / high on */
1172         /*    There is no low on  / high off */
1173
1174         ushort bios_ctrl;       /* 12 BIOS control bits */
1175         /*  bit 0  BIOS don't act as initiator. */
1176         /*  bit 1  BIOS > 1 GB support */
1177         /*  bit 2  BIOS > 2 Disk Support */
1178         /*  bit 3  BIOS don't support removables */
1179         /*  bit 4  BIOS support bootable CD */
1180         /*  bit 5  BIOS scan enabled */
1181         /*  bit 6  BIOS support multiple LUNs */
1182         /*  bit 7  BIOS display of message */
1183         /*  bit 8  SCAM disabled */
1184         /*  bit 9  Reset SCSI bus during init. */
1185         /*  bit 10 */
1186         /*  bit 11 No verbose initialization. */
1187         /*  bit 12 SCSI parity enabled */
1188         /*  bit 13 */
1189         /*  bit 14 */
1190         /*  bit 15 */
1191         ushort sdtr_speed2;     /* 13 SDTR speed TID 4-7 */
1192         ushort sdtr_speed3;     /* 14 SDTR speed TID 8-11 */
1193         uchar max_host_qng;     /* 15 maximum host queueing */
1194         uchar max_dvc_qng;      /*    maximum per device queuing */
1195         ushort dvc_cntl;        /* 16 control bit for driver */
1196         ushort sdtr_speed4;     /* 17 SDTR speed 4 TID 12-15 */
1197         ushort serial_number_word1;     /* 18 Board serial number word 1 */
1198         ushort serial_number_word2;     /* 19 Board serial number word 2 */
1199         ushort serial_number_word3;     /* 20 Board serial number word 3 */
1200         ushort check_sum;       /* 21 EEP check sum */
1201         uchar oem_name[16];     /* 22 OEM name */
1202         ushort dvc_err_code;    /* 30 last device driver error code */
1203         ushort adv_err_code;    /* 31 last uc and Adv Lib error code */
1204         ushort adv_err_addr;    /* 32 last uc error address */
1205         ushort saved_dvc_err_code;      /* 33 saved last dev. driver error code   */
1206         ushort saved_adv_err_code;      /* 34 saved last uc and Adv Lib error code */
1207         ushort saved_adv_err_addr;      /* 35 saved last uc error address         */
1208         ushort reserved36;      /* 36 reserved */
1209         ushort reserved37;      /* 37 reserved */
1210         ushort reserved38;      /* 38 reserved */
1211         ushort reserved39;      /* 39 reserved */
1212         ushort reserved40;      /* 40 reserved */
1213         ushort reserved41;      /* 41 reserved */
1214         ushort reserved42;      /* 42 reserved */
1215         ushort reserved43;      /* 43 reserved */
1216         ushort reserved44;      /* 44 reserved */
1217         ushort reserved45;      /* 45 reserved */
1218         ushort reserved46;      /* 46 reserved */
1219         ushort reserved47;      /* 47 reserved */
1220         ushort reserved48;      /* 48 reserved */
1221         ushort reserved49;      /* 49 reserved */
1222         ushort reserved50;      /* 50 reserved */
1223         ushort reserved51;      /* 51 reserved */
1224         ushort reserved52;      /* 52 reserved */
1225         ushort reserved53;      /* 53 reserved */
1226         ushort reserved54;      /* 54 reserved */
1227         ushort reserved55;      /* 55 reserved */
1228         ushort cisptr_lsw;      /* 56 CIS PTR LSW */
1229         ushort cisprt_msw;      /* 57 CIS PTR MSW */
1230         ushort subsysvid;       /* 58 SubSystem Vendor ID */
1231         ushort subsysid;        /* 59 SubSystem ID */
1232         ushort reserved60;      /* 60 reserved */
1233         ushort reserved61;      /* 61 reserved */
1234         ushort reserved62;      /* 62 reserved */
1235         ushort reserved63;      /* 63 reserved */
1236 } ADVEEP_38C0800_CONFIG;
1237
1238 typedef struct adveep_38C1600_config {
1239         /* Word Offset, Description */
1240
1241         ushort cfg_lsw;         /* 00 power up initialization */
1242         /*  bit 11 set - Func. 0 INTB, Func. 1 INTA */
1243         /*       clear - Func. 0 INTA, Func. 1 INTB */
1244         /*  bit 13 set - Load CIS */
1245         /*  bit 14 set - BIOS Enable */
1246         /*  bit 15 set - Big Endian Mode */
1247         ushort cfg_msw;         /* 01 unused */
1248         ushort disc_enable;     /* 02 disconnect enable */
1249         ushort wdtr_able;       /* 03 Wide DTR able */
1250         ushort sdtr_speed1;     /* 04 SDTR Speed TID 0-3 */
1251         ushort start_motor;     /* 05 send start up motor */
1252         ushort tagqng_able;     /* 06 tag queuing able */
1253         ushort bios_scan;       /* 07 BIOS device control */
1254         ushort scam_tolerant;   /* 08 no scam */
1255
1256         uchar adapter_scsi_id;  /* 09 Host Adapter ID */
1257         uchar bios_boot_delay;  /*    power up wait */
1258
1259         uchar scsi_reset_delay; /* 10 reset delay */
1260         uchar bios_id_lun;      /*    first boot device scsi id & lun */
1261         /*    high nibble is lun */
1262         /*    low nibble is scsi id */
1263
1264         uchar termination_se;   /* 11 0 - automatic */
1265         /*    1 - low off / high off */
1266         /*    2 - low off / high on */
1267         /*    3 - low on  / high on */
1268         /*    There is no low on  / high off */
1269
1270         uchar termination_lvd;  /* 11 0 - automatic */
1271         /*    1 - low off / high off */
1272         /*    2 - low off / high on */
1273         /*    3 - low on  / high on */
1274         /*    There is no low on  / high off */
1275
1276         ushort bios_ctrl;       /* 12 BIOS control bits */
1277         /*  bit 0  BIOS don't act as initiator. */
1278         /*  bit 1  BIOS > 1 GB support */
1279         /*  bit 2  BIOS > 2 Disk Support */
1280         /*  bit 3  BIOS don't support removables */
1281         /*  bit 4  BIOS support bootable CD */
1282         /*  bit 5  BIOS scan enabled */
1283         /*  bit 6  BIOS support multiple LUNs */
1284         /*  bit 7  BIOS display of message */
1285         /*  bit 8  SCAM disabled */
1286         /*  bit 9  Reset SCSI bus during init. */
1287         /*  bit 10 Basic Integrity Checking disabled */
1288         /*  bit 11 No verbose initialization. */
1289         /*  bit 12 SCSI parity enabled */
1290         /*  bit 13 AIPP (Asyn. Info. Ph. Prot.) dis. */
1291         /*  bit 14 */
1292         /*  bit 15 */
1293         ushort sdtr_speed2;     /* 13 SDTR speed TID 4-7 */
1294         ushort sdtr_speed3;     /* 14 SDTR speed TID 8-11 */
1295         uchar max_host_qng;     /* 15 maximum host queueing */
1296         uchar max_dvc_qng;      /*    maximum per device queuing */
1297         ushort dvc_cntl;        /* 16 control bit for driver */
1298         ushort sdtr_speed4;     /* 17 SDTR speed 4 TID 12-15 */
1299         ushort serial_number_word1;     /* 18 Board serial number word 1 */
1300         ushort serial_number_word2;     /* 19 Board serial number word 2 */
1301         ushort serial_number_word3;     /* 20 Board serial number word 3 */
1302         ushort check_sum;       /* 21 EEP check sum */
1303         uchar oem_name[16];     /* 22 OEM name */
1304         ushort dvc_err_code;    /* 30 last device driver error code */
1305         ushort adv_err_code;    /* 31 last uc and Adv Lib error code */
1306         ushort adv_err_addr;    /* 32 last uc error address */
1307         ushort saved_dvc_err_code;      /* 33 saved last dev. driver error code   */
1308         ushort saved_adv_err_code;      /* 34 saved last uc and Adv Lib error code */
1309         ushort saved_adv_err_addr;      /* 35 saved last uc error address         */
1310         ushort reserved36;      /* 36 reserved */
1311         ushort reserved37;      /* 37 reserved */
1312         ushort reserved38;      /* 38 reserved */
1313         ushort reserved39;      /* 39 reserved */
1314         ushort reserved40;      /* 40 reserved */
1315         ushort reserved41;      /* 41 reserved */
1316         ushort reserved42;      /* 42 reserved */
1317         ushort reserved43;      /* 43 reserved */
1318         ushort reserved44;      /* 44 reserved */
1319         ushort reserved45;      /* 45 reserved */
1320         ushort reserved46;      /* 46 reserved */
1321         ushort reserved47;      /* 47 reserved */
1322         ushort reserved48;      /* 48 reserved */
1323         ushort reserved49;      /* 49 reserved */
1324         ushort reserved50;      /* 50 reserved */
1325         ushort reserved51;      /* 51 reserved */
1326         ushort reserved52;      /* 52 reserved */
1327         ushort reserved53;      /* 53 reserved */
1328         ushort reserved54;      /* 54 reserved */
1329         ushort reserved55;      /* 55 reserved */
1330         ushort cisptr_lsw;      /* 56 CIS PTR LSW */
1331         ushort cisprt_msw;      /* 57 CIS PTR MSW */
1332         ushort subsysvid;       /* 58 SubSystem Vendor ID */
1333         ushort subsysid;        /* 59 SubSystem ID */
1334         ushort reserved60;      /* 60 reserved */
1335         ushort reserved61;      /* 61 reserved */
1336         ushort reserved62;      /* 62 reserved */
1337         ushort reserved63;      /* 63 reserved */
1338 } ADVEEP_38C1600_CONFIG;
1339
1340 /*
1341  * EEPROM Commands
1342  */
1343 #define ASC_EEP_CMD_DONE             0x0200
1344
1345 /* bios_ctrl */
1346 #define BIOS_CTRL_BIOS               0x0001
1347 #define BIOS_CTRL_EXTENDED_XLAT      0x0002
1348 #define BIOS_CTRL_GT_2_DISK          0x0004
1349 #define BIOS_CTRL_BIOS_REMOVABLE     0x0008
1350 #define BIOS_CTRL_BOOTABLE_CD        0x0010
1351 #define BIOS_CTRL_MULTIPLE_LUN       0x0040
1352 #define BIOS_CTRL_DISPLAY_MSG        0x0080
1353 #define BIOS_CTRL_NO_SCAM            0x0100
1354 #define BIOS_CTRL_RESET_SCSI_BUS     0x0200
1355 #define BIOS_CTRL_INIT_VERBOSE       0x0800
1356 #define BIOS_CTRL_SCSI_PARITY        0x1000
1357 #define BIOS_CTRL_AIPP_DIS           0x2000
1358
1359 #define ADV_3550_MEMSIZE   0x2000       /* 8 KB Internal Memory */
1360
1361 #define ADV_38C0800_MEMSIZE  0x4000     /* 16 KB Internal Memory */
1362
1363 /*
1364  * XXX - Since ASC38C1600 Rev.3 has a local RAM failure issue, there is
1365  * a special 16K Adv Library and Microcode version. After the issue is
1366  * resolved, should restore 32K support.
1367  *
1368  * #define ADV_38C1600_MEMSIZE  0x8000L   * 32 KB Internal Memory *
1369  */
1370 #define ADV_38C1600_MEMSIZE  0x4000     /* 16 KB Internal Memory */
1371
1372 /*
1373  * Byte I/O register address from base of 'iop_base'.
1374  */
1375 #define IOPB_INTR_STATUS_REG    0x00
1376 #define IOPB_CHIP_ID_1          0x01
1377 #define IOPB_INTR_ENABLES       0x02
1378 #define IOPB_CHIP_TYPE_REV      0x03
1379 #define IOPB_RES_ADDR_4         0x04
1380 #define IOPB_RES_ADDR_5         0x05
1381 #define IOPB_RAM_DATA           0x06
1382 #define IOPB_RES_ADDR_7         0x07
1383 #define IOPB_FLAG_REG           0x08
1384 #define IOPB_RES_ADDR_9         0x09
1385 #define IOPB_RISC_CSR           0x0A
1386 #define IOPB_RES_ADDR_B         0x0B
1387 #define IOPB_RES_ADDR_C         0x0C
1388 #define IOPB_RES_ADDR_D         0x0D
1389 #define IOPB_SOFT_OVER_WR       0x0E
1390 #define IOPB_RES_ADDR_F         0x0F
1391 #define IOPB_MEM_CFG            0x10
1392 #define IOPB_RES_ADDR_11        0x11
1393 #define IOPB_GPIO_DATA          0x12
1394 #define IOPB_RES_ADDR_13        0x13
1395 #define IOPB_FLASH_PAGE         0x14
1396 #define IOPB_RES_ADDR_15        0x15
1397 #define IOPB_GPIO_CNTL          0x16
1398 #define IOPB_RES_ADDR_17        0x17
1399 #define IOPB_FLASH_DATA         0x18
1400 #define IOPB_RES_ADDR_19        0x19
1401 #define IOPB_RES_ADDR_1A        0x1A
1402 #define IOPB_RES_ADDR_1B        0x1B
1403 #define IOPB_RES_ADDR_1C        0x1C
1404 #define IOPB_RES_ADDR_1D        0x1D
1405 #define IOPB_RES_ADDR_1E        0x1E
1406 #define IOPB_RES_ADDR_1F        0x1F
1407 #define IOPB_DMA_CFG0           0x20
1408 #define IOPB_DMA_CFG1           0x21
1409 #define IOPB_TICKLE             0x22
1410 #define IOPB_DMA_REG_WR         0x23
1411 #define IOPB_SDMA_STATUS        0x24
1412 #define IOPB_SCSI_BYTE_CNT      0x25
1413 #define IOPB_HOST_BYTE_CNT      0x26
1414 #define IOPB_BYTE_LEFT_TO_XFER  0x27
1415 #define IOPB_BYTE_TO_XFER_0     0x28
1416 #define IOPB_BYTE_TO_XFER_1     0x29
1417 #define IOPB_BYTE_TO_XFER_2     0x2A
1418 #define IOPB_BYTE_TO_XFER_3     0x2B
1419 #define IOPB_ACC_GRP            0x2C
1420 #define IOPB_RES_ADDR_2D        0x2D
1421 #define IOPB_DEV_ID             0x2E
1422 #define IOPB_RES_ADDR_2F        0x2F
1423 #define IOPB_SCSI_DATA          0x30
1424 #define IOPB_RES_ADDR_31        0x31
1425 #define IOPB_RES_ADDR_32        0x32
1426 #define IOPB_SCSI_DATA_HSHK     0x33
1427 #define IOPB_SCSI_CTRL          0x34
1428 #define IOPB_RES_ADDR_35        0x35
1429 #define IOPB_RES_ADDR_36        0x36
1430 #define IOPB_RES_ADDR_37        0x37
1431 #define IOPB_RAM_BIST           0x38
1432 #define IOPB_PLL_TEST           0x39
1433 #define IOPB_PCI_INT_CFG        0x3A
1434 #define IOPB_RES_ADDR_3B        0x3B
1435 #define IOPB_RFIFO_CNT          0x3C
1436 #define IOPB_RES_ADDR_3D        0x3D
1437 #define IOPB_RES_ADDR_3E        0x3E
1438 #define IOPB_RES_ADDR_3F        0x3F
1439
1440 /*
1441  * Word I/O register address from base of 'iop_base'.
1442  */
1443 #define IOPW_CHIP_ID_0          0x00    /* CID0  */
1444 #define IOPW_CTRL_REG           0x02    /* CC    */
1445 #define IOPW_RAM_ADDR           0x04    /* LA    */
1446 #define IOPW_RAM_DATA           0x06    /* LD    */
1447 #define IOPW_RES_ADDR_08        0x08
1448 #define IOPW_RISC_CSR           0x0A    /* CSR   */
1449 #define IOPW_SCSI_CFG0          0x0C    /* CFG0  */
1450 #define IOPW_SCSI_CFG1          0x0E    /* CFG1  */
1451 #define IOPW_RES_ADDR_10        0x10
1452 #define IOPW_SEL_MASK           0x12    /* SM    */
1453 #define IOPW_RES_ADDR_14        0x14
1454 #define IOPW_FLASH_ADDR         0x16    /* FA    */
1455 #define IOPW_RES_ADDR_18        0x18
1456 #define IOPW_EE_CMD             0x1A    /* EC    */
1457 #define IOPW_EE_DATA            0x1C    /* ED    */
1458 #define IOPW_SFIFO_CNT          0x1E    /* SFC   */
1459 #define IOPW_RES_ADDR_20        0x20
1460 #define IOPW_Q_BASE             0x22    /* QB    */
1461 #define IOPW_QP                 0x24    /* QP    */
1462 #define IOPW_IX                 0x26    /* IX    */
1463 #define IOPW_SP                 0x28    /* SP    */
1464 #define IOPW_PC                 0x2A    /* PC    */
1465 #define IOPW_RES_ADDR_2C        0x2C
1466 #define IOPW_RES_ADDR_2E        0x2E
1467 #define IOPW_SCSI_DATA          0x30    /* SD    */
1468 #define IOPW_SCSI_DATA_HSHK     0x32    /* SDH   */
1469 #define IOPW_SCSI_CTRL          0x34    /* SC    */
1470 #define IOPW_HSHK_CFG           0x36    /* HCFG  */
1471 #define IOPW_SXFR_STATUS        0x36    /* SXS   */
1472 #define IOPW_SXFR_CNTL          0x38    /* SXL   */
1473 #define IOPW_SXFR_CNTH          0x3A    /* SXH   */
1474 #define IOPW_RES_ADDR_3C        0x3C
1475 #define IOPW_RFIFO_DATA         0x3E    /* RFD   */
1476
1477 /*
1478  * Doubleword I/O register address from base of 'iop_base'.
1479  */
1480 #define IOPDW_RES_ADDR_0         0x00
1481 #define IOPDW_RAM_DATA           0x04
1482 #define IOPDW_RES_ADDR_8         0x08
1483 #define IOPDW_RES_ADDR_C         0x0C
1484 #define IOPDW_RES_ADDR_10        0x10
1485 #define IOPDW_COMMA              0x14
1486 #define IOPDW_COMMB              0x18
1487 #define IOPDW_RES_ADDR_1C        0x1C
1488 #define IOPDW_SDMA_ADDR0         0x20
1489 #define IOPDW_SDMA_ADDR1         0x24
1490 #define IOPDW_SDMA_COUNT         0x28
1491 #define IOPDW_SDMA_ERROR         0x2C
1492 #define IOPDW_RDMA_ADDR0         0x30
1493 #define IOPDW_RDMA_ADDR1         0x34
1494 #define IOPDW_RDMA_COUNT         0x38
1495 #define IOPDW_RDMA_ERROR         0x3C
1496
1497 #define ADV_CHIP_ID_BYTE         0x25
1498 #define ADV_CHIP_ID_WORD         0x04C1
1499
1500 #define ADV_INTR_ENABLE_HOST_INTR                   0x01
1501 #define ADV_INTR_ENABLE_SEL_INTR                    0x02
1502 #define ADV_INTR_ENABLE_DPR_INTR                    0x04
1503 #define ADV_INTR_ENABLE_RTA_INTR                    0x08
1504 #define ADV_INTR_ENABLE_RMA_INTR                    0x10
1505 #define ADV_INTR_ENABLE_RST_INTR                    0x20
1506 #define ADV_INTR_ENABLE_DPE_INTR                    0x40
1507 #define ADV_INTR_ENABLE_GLOBAL_INTR                 0x80
1508
1509 #define ADV_INTR_STATUS_INTRA            0x01
1510 #define ADV_INTR_STATUS_INTRB            0x02
1511 #define ADV_INTR_STATUS_INTRC            0x04
1512
1513 #define ADV_RISC_CSR_STOP           (0x0000)
1514 #define ADV_RISC_TEST_COND          (0x2000)
1515 #define ADV_RISC_CSR_RUN            (0x4000)
1516 #define ADV_RISC_CSR_SINGLE_STEP    (0x8000)
1517
1518 #define ADV_CTRL_REG_HOST_INTR      0x0100
1519 #define ADV_CTRL_REG_SEL_INTR       0x0200
1520 #define ADV_CTRL_REG_DPR_INTR       0x0400
1521 #define ADV_CTRL_REG_RTA_INTR       0x0800
1522 #define ADV_CTRL_REG_RMA_INTR       0x1000
1523 #define ADV_CTRL_REG_RES_BIT14      0x2000
1524 #define ADV_CTRL_REG_DPE_INTR       0x4000
1525 #define ADV_CTRL_REG_POWER_DONE     0x8000
1526 #define ADV_CTRL_REG_ANY_INTR       0xFF00
1527
1528 #define ADV_CTRL_REG_CMD_RESET             0x00C6
1529 #define ADV_CTRL_REG_CMD_WR_IO_REG         0x00C5
1530 #define ADV_CTRL_REG_CMD_RD_IO_REG         0x00C4
1531 #define ADV_CTRL_REG_CMD_WR_PCI_CFG_SPACE  0x00C3
1532 #define ADV_CTRL_REG_CMD_RD_PCI_CFG_SPACE  0x00C2
1533
1534 #define ADV_TICKLE_NOP                      0x00
1535 #define ADV_TICKLE_A                        0x01
1536 #define ADV_TICKLE_B                        0x02
1537 #define ADV_TICKLE_C                        0x03
1538
1539 #define AdvIsIntPending(port) \
1540     (AdvReadWordRegister(port, IOPW_CTRL_REG) & ADV_CTRL_REG_HOST_INTR)
1541
1542 /*
1543  * SCSI_CFG0 Register bit definitions
1544  */
1545 #define TIMER_MODEAB    0xC000  /* Watchdog, Second, and Select. Timer Ctrl. */
1546 #define PARITY_EN       0x2000  /* Enable SCSI Parity Error detection */
1547 #define EVEN_PARITY     0x1000  /* Select Even Parity */
1548 #define WD_LONG         0x0800  /* Watchdog Interval, 1: 57 min, 0: 13 sec */
1549 #define QUEUE_128       0x0400  /* Queue Size, 1: 128 byte, 0: 64 byte */
1550 #define PRIM_MODE       0x0100  /* Primitive SCSI mode */
1551 #define SCAM_EN         0x0080  /* Enable SCAM selection */
1552 #define SEL_TMO_LONG    0x0040  /* Sel/Resel Timeout, 1: 400 ms, 0: 1.6 ms */
1553 #define CFRM_ID         0x0020  /* SCAM id sel. confirm., 1: fast, 0: 6.4 ms */
1554 #define OUR_ID_EN       0x0010  /* Enable OUR_ID bits */
1555 #define OUR_ID          0x000F  /* SCSI ID */
1556
1557 /*
1558  * SCSI_CFG1 Register bit definitions
1559  */
1560 #define BIG_ENDIAN      0x8000  /* Enable Big Endian Mode MIO:15, EEP:15 */
1561 #define TERM_POL        0x2000  /* Terminator Polarity Ctrl. MIO:13, EEP:13 */
1562 #define SLEW_RATE       0x1000  /* SCSI output buffer slew rate */
1563 #define FILTER_SEL      0x0C00  /* Filter Period Selection */
1564 #define  FLTR_DISABLE    0x0000 /* Input Filtering Disabled */
1565 #define  FLTR_11_TO_20NS 0x0800 /* Input Filtering 11ns to 20ns */
1566 #define  FLTR_21_TO_39NS 0x0C00 /* Input Filtering 21ns to 39ns */
1567 #define ACTIVE_DBL      0x0200  /* Disable Active Negation */
1568 #define DIFF_MODE       0x0100  /* SCSI differential Mode (Read-Only) */
1569 #define DIFF_SENSE      0x0080  /* 1: No SE cables, 0: SE cable (Read-Only) */
1570 #define TERM_CTL_SEL    0x0040  /* Enable TERM_CTL_H and TERM_CTL_L */
1571 #define TERM_CTL        0x0030  /* External SCSI Termination Bits */
1572 #define  TERM_CTL_H      0x0020 /* Enable External SCSI Upper Termination */
1573 #define  TERM_CTL_L      0x0010 /* Enable External SCSI Lower Termination */
1574 #define CABLE_DETECT    0x000F  /* External SCSI Cable Connection Status */
1575
1576 /*
1577  * Addendum for ASC-38C0800 Chip
1578  *
1579  * The ASC-38C1600 Chip uses the same definitions except that the
1580  * bus mode override bits [12:10] have been moved to byte register
1581  * offset 0xE (IOPB_SOFT_OVER_WR) bits [12:10]. The [12:10] bits in
1582  * SCSI_CFG1 are read-only and always available. Bit 14 (DIS_TERM_DRV)
1583  * is not needed. The [12:10] bits in IOPB_SOFT_OVER_WR are write-only.
1584  * Also each ASC-38C1600 function or channel uses only cable bits [5:4]
1585  * and [1:0]. Bits [14], [7:6], [3:2] are unused.
1586  */
1587 #define DIS_TERM_DRV    0x4000  /* 1: Read c_det[3:0], 0: cannot read */
1588 #define HVD_LVD_SE      0x1C00  /* Device Detect Bits */
1589 #define  HVD             0x1000 /* HVD Device Detect */
1590 #define  LVD             0x0800 /* LVD Device Detect */
1591 #define  SE              0x0400 /* SE Device Detect */
1592 #define TERM_LVD        0x00C0  /* LVD Termination Bits */
1593 #define  TERM_LVD_HI     0x0080 /* Enable LVD Upper Termination */
1594 #define  TERM_LVD_LO     0x0040 /* Enable LVD Lower Termination */
1595 #define TERM_SE         0x0030  /* SE Termination Bits */
1596 #define  TERM_SE_HI      0x0020 /* Enable SE Upper Termination */
1597 #define  TERM_SE_LO      0x0010 /* Enable SE Lower Termination */
1598 #define C_DET_LVD       0x000C  /* LVD Cable Detect Bits */
1599 #define  C_DET3          0x0008 /* Cable Detect for LVD External Wide */
1600 #define  C_DET2          0x0004 /* Cable Detect for LVD Internal Wide */
1601 #define C_DET_SE        0x0003  /* SE Cable Detect Bits */
1602 #define  C_DET1          0x0002 /* Cable Detect for SE Internal Wide */
1603 #define  C_DET0          0x0001 /* Cable Detect for SE Internal Narrow */
1604
1605 #define CABLE_ILLEGAL_A 0x7
1606     /* x 0 0 0  | on  on | Illegal (all 3 connectors are used) */
1607
1608 #define CABLE_ILLEGAL_B 0xB
1609     /* 0 x 0 0  | on  on | Illegal (all 3 connectors are used) */
1610
1611 /*
1612  * MEM_CFG Register bit definitions
1613  */
1614 #define BIOS_EN         0x40    /* BIOS Enable MIO:14,EEP:14 */
1615 #define FAST_EE_CLK     0x20    /* Diagnostic Bit */
1616 #define RAM_SZ          0x1C    /* Specify size of RAM to RISC */
1617 #define  RAM_SZ_2KB      0x00   /* 2 KB */
1618 #define  RAM_SZ_4KB      0x04   /* 4 KB */
1619 #define  RAM_SZ_8KB      0x08   /* 8 KB */
1620 #define  RAM_SZ_16KB     0x0C   /* 16 KB */
1621 #define  RAM_SZ_32KB     0x10   /* 32 KB */
1622 #define  RAM_SZ_64KB     0x14   /* 64 KB */
1623
1624 /*
1625  * DMA_CFG0 Register bit definitions
1626  *
1627  * This register is only accessible to the host.
1628  */
1629 #define BC_THRESH_ENB   0x80    /* PCI DMA Start Conditions */
1630 #define FIFO_THRESH     0x70    /* PCI DMA FIFO Threshold */
1631 #define  FIFO_THRESH_16B  0x00  /* 16 bytes */
1632 #define  FIFO_THRESH_32B  0x20  /* 32 bytes */
1633 #define  FIFO_THRESH_48B  0x30  /* 48 bytes */
1634 #define  FIFO_THRESH_64B  0x40  /* 64 bytes */
1635 #define  FIFO_THRESH_80B  0x50  /* 80 bytes (default) */
1636 #define  FIFO_THRESH_96B  0x60  /* 96 bytes */
1637 #define  FIFO_THRESH_112B 0x70  /* 112 bytes */
1638 #define START_CTL       0x0C    /* DMA start conditions */
1639 #define  START_CTL_TH    0x00   /* Wait threshold level (default) */
1640 #define  START_CTL_ID    0x04   /* Wait SDMA/SBUS idle */
1641 #define  START_CTL_THID  0x08   /* Wait threshold and SDMA/SBUS idle */
1642 #define  START_CTL_EMFU  0x0C   /* Wait SDMA FIFO empty/full */
1643 #define READ_CMD        0x03    /* Memory Read Method */
1644 #define  READ_CMD_MR     0x00   /* Memory Read */
1645 #define  READ_CMD_MRL    0x02   /* Memory Read Long */
1646 #define  READ_CMD_MRM    0x03   /* Memory Read Multiple (default) */
1647
1648 /*
1649  * ASC-38C0800 RAM BIST Register bit definitions
1650  */
1651 #define RAM_TEST_MODE         0x80
1652 #define PRE_TEST_MODE         0x40
1653 #define NORMAL_MODE           0x00
1654 #define RAM_TEST_DONE         0x10
1655 #define RAM_TEST_STATUS       0x0F
1656 #define  RAM_TEST_HOST_ERROR   0x08
1657 #define  RAM_TEST_INTRAM_ERROR 0x04
1658 #define  RAM_TEST_RISC_ERROR   0x02
1659 #define  RAM_TEST_SCSI_ERROR   0x01
1660 #define  RAM_TEST_SUCCESS      0x00
1661 #define PRE_TEST_VALUE        0x05
1662 #define NORMAL_VALUE          0x00
1663
1664 /*
1665  * ASC38C1600 Definitions
1666  *
1667  * IOPB_PCI_INT_CFG Bit Field Definitions
1668  */
1669
1670 #define INTAB_LD        0x80    /* Value loaded from EEPROM Bit 11. */
1671
1672 /*
1673  * Bit 1 can be set to change the interrupt for the Function to operate in
1674  * Totem Pole mode. By default Bit 1 is 0 and the interrupt operates in
1675  * Open Drain mode. Both functions of the ASC38C1600 must be set to the same
1676  * mode, otherwise the operating mode is undefined.
1677  */
1678 #define TOTEMPOLE       0x02
1679
1680 /*
1681  * Bit 0 can be used to change the Int Pin for the Function. The value is
1682  * 0 by default for both Functions with Function 0 using INT A and Function
1683  * B using INT B. For Function 0 if set, INT B is used. For Function 1 if set,
1684  * INT A is used.
1685  *
1686  * EEPROM Word 0 Bit 11 for each Function may change the initial Int Pin
1687  * value specified in the PCI Configuration Space.
1688  */
1689 #define INTAB           0x01
1690
1691 /*
1692  * Adv Library Status Definitions
1693  */
1694 #define ADV_TRUE        1
1695 #define ADV_FALSE       0
1696 #define ADV_SUCCESS     1
1697 #define ADV_BUSY        0
1698 #define ADV_ERROR       (-1)
1699
1700 /*
1701  * ADV_DVC_VAR 'warn_code' values
1702  */
1703 #define ASC_WARN_BUSRESET_ERROR         0x0001  /* SCSI Bus Reset error */
1704 #define ASC_WARN_EEPROM_CHKSUM          0x0002  /* EEP check sum error */
1705 #define ASC_WARN_EEPROM_TERMINATION     0x0004  /* EEP termination bad field */
1706 #define ASC_WARN_ERROR                  0xFFFF  /* ADV_ERROR return */
1707
1708 #define ADV_MAX_TID                     15      /* max. target identifier */
1709 #define ADV_MAX_LUN                     7       /* max. logical unit number */
1710
1711 /*
1712  * Error code values are set in ADV_DVC_VAR 'err_code'.
1713  */
1714 #define ASC_IERR_WRITE_EEPROM       0x0001      /* write EEPROM error */
1715 #define ASC_IERR_MCODE_CHKSUM       0x0002      /* micro code check sum error */
1716 #define ASC_IERR_NO_CARRIER         0x0004      /* No more carrier memory. */
1717 #define ASC_IERR_START_STOP_CHIP    0x0008      /* start/stop chip failed */
1718 #define ASC_IERR_CHIP_VERSION       0x0040      /* wrong chip version */
1719 #define ASC_IERR_SET_SCSI_ID        0x0080      /* set SCSI ID failed */
1720 #define ASC_IERR_HVD_DEVICE         0x0100      /* HVD attached to LVD connector. */
1721 #define ASC_IERR_BAD_SIGNATURE      0x0200      /* signature not found */
1722 #define ASC_IERR_ILLEGAL_CONNECTION 0x0400      /* Illegal cable connection */
1723 #define ASC_IERR_SINGLE_END_DEVICE  0x0800      /* Single-end used w/differential */
1724 #define ASC_IERR_REVERSED_CABLE     0x1000      /* Narrow flat cable reversed */
1725 #define ASC_IERR_BIST_PRE_TEST      0x2000      /* BIST pre-test error */
1726 #define ASC_IERR_BIST_RAM_TEST      0x4000      /* BIST RAM test error */
1727 #define ASC_IERR_BAD_CHIPTYPE       0x8000      /* Invalid 'chip_type' setting. */
1728
1729 /*
1730  * Fixed locations of microcode operating variables.
1731  */
1732 #define ASC_MC_CODE_BEGIN_ADDR          0x0028  /* microcode start address */
1733 #define ASC_MC_CODE_END_ADDR            0x002A  /* microcode end address */
1734 #define ASC_MC_CODE_CHK_SUM             0x002C  /* microcode code checksum */
1735 #define ASC_MC_VERSION_DATE             0x0038  /* microcode version */
1736 #define ASC_MC_VERSION_NUM              0x003A  /* microcode number */
1737 #define ASC_MC_BIOSMEM                  0x0040  /* BIOS RISC Memory Start */
1738 #define ASC_MC_BIOSLEN                  0x0050  /* BIOS RISC Memory Length */
1739 #define ASC_MC_BIOS_SIGNATURE           0x0058  /* BIOS Signature 0x55AA */
1740 #define ASC_MC_BIOS_VERSION             0x005A  /* BIOS Version (2 bytes) */
1741 #define ASC_MC_SDTR_SPEED1              0x0090  /* SDTR Speed for TID 0-3 */
1742 #define ASC_MC_SDTR_SPEED2              0x0092  /* SDTR Speed for TID 4-7 */
1743 #define ASC_MC_SDTR_SPEED3              0x0094  /* SDTR Speed for TID 8-11 */
1744 #define ASC_MC_SDTR_SPEED4              0x0096  /* SDTR Speed for TID 12-15 */
1745 #define ASC_MC_CHIP_TYPE                0x009A
1746 #define ASC_MC_INTRB_CODE               0x009B
1747 #define ASC_MC_WDTR_ABLE                0x009C
1748 #define ASC_MC_SDTR_ABLE                0x009E
1749 #define ASC_MC_TAGQNG_ABLE              0x00A0
1750 #define ASC_MC_DISC_ENABLE              0x00A2
1751 #define ASC_MC_IDLE_CMD_STATUS          0x00A4
1752 #define ASC_MC_IDLE_CMD                 0x00A6
1753 #define ASC_MC_IDLE_CMD_PARAMETER       0x00A8
1754 #define ASC_MC_DEFAULT_SCSI_CFG0        0x00AC
1755 #define ASC_MC_DEFAULT_SCSI_CFG1        0x00AE
1756 #define ASC_MC_DEFAULT_MEM_CFG          0x00B0
1757 #define ASC_MC_DEFAULT_SEL_MASK         0x00B2
1758 #define ASC_MC_SDTR_DONE                0x00B6
1759 #define ASC_MC_NUMBER_OF_QUEUED_CMD     0x00C0
1760 #define ASC_MC_NUMBER_OF_MAX_CMD        0x00D0
1761 #define ASC_MC_DEVICE_HSHK_CFG_TABLE    0x0100
1762 #define ASC_MC_CONTROL_FLAG             0x0122  /* Microcode control flag. */
1763 #define ASC_MC_WDTR_DONE                0x0124
1764 #define ASC_MC_CAM_MODE_MASK            0x015E  /* CAM mode TID bitmask. */
1765 #define ASC_MC_ICQ                      0x0160
1766 #define ASC_MC_IRQ                      0x0164
1767 #define ASC_MC_PPR_ABLE                 0x017A
1768
1769 /*
1770  * BIOS LRAM variable absolute offsets.
1771  */
1772 #define BIOS_CODESEG    0x54
1773 #define BIOS_CODELEN    0x56
1774 #define BIOS_SIGNATURE  0x58
1775 #define BIOS_VERSION    0x5A
1776
1777 /*
1778  * Microcode Control Flags
1779  *
1780  * Flags set by the Adv Library in RISC variable 'control_flag' (0x122)
1781  * and handled by the microcode.
1782  */
1783 #define CONTROL_FLAG_IGNORE_PERR        0x0001  /* Ignore DMA Parity Errors */
1784 #define CONTROL_FLAG_ENABLE_AIPP        0x0002  /* Enabled AIPP checking. */
1785
1786 /*
1787  * ASC_MC_DEVICE_HSHK_CFG_TABLE microcode table or HSHK_CFG register format
1788  */
1789 #define HSHK_CFG_WIDE_XFR       0x8000
1790 #define HSHK_CFG_RATE           0x0F00
1791 #define HSHK_CFG_OFFSET         0x001F
1792
1793 #define ASC_DEF_MAX_HOST_QNG    0xFD    /* Max. number of host commands (253) */
1794 #define ASC_DEF_MIN_HOST_QNG    0x10    /* Min. number of host commands (16) */
1795 #define ASC_DEF_MAX_DVC_QNG     0x3F    /* Max. number commands per device (63) */
1796 #define ASC_DEF_MIN_DVC_QNG     0x04    /* Min. number commands per device (4) */
1797
1798 #define ASC_QC_DATA_CHECK  0x01 /* Require ASC_QC_DATA_OUT set or clear. */
1799 #define ASC_QC_DATA_OUT    0x02 /* Data out DMA transfer. */
1800 #define ASC_QC_START_MOTOR 0x04 /* Send auto-start motor before request. */
1801 #define ASC_QC_NO_OVERRUN  0x08 /* Don't report overrun. */
1802 #define ASC_QC_FREEZE_TIDQ 0x10 /* Freeze TID queue after request. XXX TBD */
1803
1804 #define ASC_QSC_NO_DISC     0x01        /* Don't allow disconnect for request. */
1805 #define ASC_QSC_NO_TAGMSG   0x02        /* Don't allow tag queuing for request. */
1806 #define ASC_QSC_NO_SYNC     0x04        /* Don't use Synch. transfer on request. */
1807 #define ASC_QSC_NO_WIDE     0x08        /* Don't use Wide transfer on request. */
1808 #define ASC_QSC_REDO_DTR    0x10        /* Renegotiate WDTR/SDTR before request. */
1809 /*
1810  * Note: If a Tag Message is to be sent and neither ASC_QSC_HEAD_TAG or
1811  * ASC_QSC_ORDERED_TAG is set, then a Simple Tag Message (0x20) is used.
1812  */
1813 #define ASC_QSC_HEAD_TAG    0x40        /* Use Head Tag Message (0x21). */
1814 #define ASC_QSC_ORDERED_TAG 0x80        /* Use Ordered Tag Message (0x22). */
1815
1816 /*
1817  * All fields here are accessed by the board microcode and need to be
1818  * little-endian.
1819  */
1820 typedef struct adv_carr_t {
1821         ADV_VADDR carr_va;      /* Carrier Virtual Address */
1822         ADV_PADDR carr_pa;      /* Carrier Physical Address */
1823         ADV_VADDR areq_vpa;     /* ASC_SCSI_REQ_Q Virtual or Physical Address */
1824         /*
1825          * next_vpa [31:4]            Carrier Virtual or Physical Next Pointer
1826          *
1827          * next_vpa [3:1]             Reserved Bits
1828          * next_vpa [0]               Done Flag set in Response Queue.
1829          */
1830         ADV_VADDR next_vpa;
1831 } ADV_CARR_T;
1832
1833 /*
1834  * Mask used to eliminate low 4 bits of carrier 'next_vpa' field.
1835  */
1836 #define ASC_NEXT_VPA_MASK       0xFFFFFFF0
1837
1838 #define ASC_RQ_DONE             0x00000001
1839 #define ASC_RQ_GOOD             0x00000002
1840 #define ASC_CQ_STOPPER          0x00000000
1841
1842 #define ASC_GET_CARRP(carrp) ((carrp) & ASC_NEXT_VPA_MASK)
1843
1844 #define ADV_CARRIER_NUM_PAGE_CROSSING \
1845     (((ADV_CARRIER_COUNT * sizeof(ADV_CARR_T)) + \
1846         (ADV_PAGE_SIZE - 1))/ADV_PAGE_SIZE)
1847
1848 #define ADV_CARRIER_BUFSIZE \
1849     ((ADV_CARRIER_COUNT + ADV_CARRIER_NUM_PAGE_CROSSING) * sizeof(ADV_CARR_T))
1850
1851 /*
1852  * ASC_SCSI_REQ_Q 'a_flag' definitions
1853  *
1854  * The Adv Library should limit use to the lower nibble (4 bits) of
1855  * a_flag. Drivers are free to use the upper nibble (4 bits) of a_flag.
1856  */
1857 #define ADV_POLL_REQUEST                0x01    /* poll for request completion */
1858 #define ADV_SCSIQ_DONE                  0x02    /* request done */
1859 #define ADV_DONT_RETRY                  0x08    /* don't do retry */
1860
1861 #define ADV_CHIP_ASC3550          0x01  /* Ultra-Wide IC */
1862 #define ADV_CHIP_ASC38C0800       0x02  /* Ultra2-Wide/LVD IC */
1863 #define ADV_CHIP_ASC38C1600       0x03  /* Ultra3-Wide/LVD2 IC */
1864
1865 /*
1866  * Adapter temporary configuration structure
1867  *
1868  * This structure can be discarded after initialization. Don't add
1869  * fields here needed after initialization.
1870  *
1871  * Field naming convention:
1872  *
1873  *  *_enable indicates the field enables or disables a feature. The
1874  *  value of the field is never reset.
1875  */
1876 typedef struct adv_dvc_cfg {
1877         ushort disc_enable;     /* enable disconnection */
1878         uchar chip_version;     /* chip version */
1879         uchar termination;      /* Term. Ctrl. bits 6-5 of SCSI_CFG1 register */
1880         ushort lib_version;     /* Adv Library version number */
1881         ushort control_flag;    /* Microcode Control Flag */
1882         ushort mcode_date;      /* Microcode date */
1883         ushort mcode_version;   /* Microcode version */
1884         ushort serial1;         /* EEPROM serial number word 1 */
1885         ushort serial2;         /* EEPROM serial number word 2 */
1886         ushort serial3;         /* EEPROM serial number word 3 */
1887 } ADV_DVC_CFG;
1888
1889 struct adv_dvc_var;
1890 struct adv_scsi_req_q;
1891
1892 /*
1893  * Adapter operation variable structure.
1894  *
1895  * One structure is required per host adapter.
1896  *
1897  * Field naming convention:
1898  *
1899  *  *_able indicates both whether a feature should be enabled or disabled
1900  *  and whether a device isi capable of the feature. At initialization
1901  *  this field may be set, but later if a device is found to be incapable
1902  *  of the feature, the field is cleared.
1903  */
1904 typedef struct adv_dvc_var {
1905         AdvPortAddr iop_base;   /* I/O port address */
1906         ushort err_code;        /* fatal error code */
1907         ushort bios_ctrl;       /* BIOS control word, EEPROM word 12 */
1908         ushort wdtr_able;       /* try WDTR for a device */
1909         ushort sdtr_able;       /* try SDTR for a device */
1910         ushort ultra_able;      /* try SDTR Ultra speed for a device */
1911         ushort sdtr_speed1;     /* EEPROM SDTR Speed for TID 0-3   */
1912         ushort sdtr_speed2;     /* EEPROM SDTR Speed for TID 4-7   */
1913         ushort sdtr_speed3;     /* EEPROM SDTR Speed for TID 8-11  */
1914         ushort sdtr_speed4;     /* EEPROM SDTR Speed for TID 12-15 */
1915         ushort tagqng_able;     /* try tagged queuing with a device */
1916         ushort ppr_able;        /* PPR message capable per TID bitmask. */
1917         uchar max_dvc_qng;      /* maximum number of tagged commands per device */
1918         ushort start_motor;     /* start motor command allowed */
1919         uchar scsi_reset_wait;  /* delay in seconds after scsi bus reset */
1920         uchar chip_no;          /* should be assigned by caller */
1921         uchar max_host_qng;     /* maximum number of Q'ed command allowed */
1922         uchar irq_no;           /* IRQ number */
1923         ushort no_scam;         /* scam_tolerant of EEPROM */
1924         struct asc_board *drv_ptr;      /* driver pointer to private structure */
1925         uchar chip_scsi_id;     /* chip SCSI target ID */
1926         uchar chip_type;
1927         uchar bist_err_code;
1928         ADV_CARR_T *carrier_buf;
1929         ADV_CARR_T *carr_freelist;      /* Carrier free list. */
1930         ADV_CARR_T *icq_sp;     /* Initiator command queue stopper pointer. */
1931         ADV_CARR_T *irq_sp;     /* Initiator response queue stopper pointer. */
1932         ushort carr_pending_cnt;        /* Count of pending carriers. */
1933         /*
1934          * Note: The following fields will not be used after initialization. The
1935          * driver may discard the buffer after initialization is done.
1936          */
1937         ADV_DVC_CFG *cfg;       /* temporary configuration structure  */
1938 } ADV_DVC_VAR;
1939
1940 #define NO_OF_SG_PER_BLOCK              15
1941
1942 typedef struct asc_sg_block {
1943         uchar reserved1;
1944         uchar reserved2;
1945         uchar reserved3;
1946         uchar sg_cnt;           /* Valid entries in block. */
1947         ADV_PADDR sg_ptr;       /* Pointer to next sg block. */
1948         struct {
1949                 ADV_PADDR sg_addr;      /* SG element address. */
1950                 ADV_DCNT sg_count;      /* SG element count. */
1951         } sg_list[NO_OF_SG_PER_BLOCK];
1952 } ADV_SG_BLOCK;
1953
1954 /*
1955  * ADV_SCSI_REQ_Q - microcode request structure
1956  *
1957  * All fields in this structure up to byte 60 are used by the microcode.
1958  * The microcode makes assumptions about the size and ordering of fields
1959  * in this structure. Do not change the structure definition here without
1960  * coordinating the change with the microcode.
1961  *
1962  * All fields accessed by microcode must be maintained in little_endian
1963  * order.
1964  */
1965 typedef struct adv_scsi_req_q {
1966         uchar cntl;             /* Ucode flags and state (ASC_MC_QC_*). */
1967         uchar target_cmd;
1968         uchar target_id;        /* Device target identifier. */
1969         uchar target_lun;       /* Device target logical unit number. */
1970         ADV_PADDR data_addr;    /* Data buffer physical address. */
1971         ADV_DCNT data_cnt;      /* Data count. Ucode sets to residual. */
1972         ADV_PADDR sense_addr;
1973         ADV_PADDR carr_pa;
1974         uchar mflag;
1975         uchar sense_len;
1976         uchar cdb_len;          /* SCSI CDB length. Must <= 16 bytes. */
1977         uchar scsi_cntl;
1978         uchar done_status;      /* Completion status. */
1979         uchar scsi_status;      /* SCSI status byte. */
1980         uchar host_status;      /* Ucode host status. */
1981         uchar sg_working_ix;
1982         uchar cdb[12];          /* SCSI CDB bytes 0-11. */
1983         ADV_PADDR sg_real_addr; /* SG list physical address. */
1984         ADV_PADDR scsiq_rptr;
1985         uchar cdb16[4];         /* SCSI CDB bytes 12-15. */
1986         ADV_VADDR scsiq_ptr;
1987         ADV_VADDR carr_va;
1988         /*
1989          * End of microcode structure - 60 bytes. The rest of the structure
1990          * is used by the Adv Library and ignored by the microcode.
1991          */
1992         ADV_VADDR srb_ptr;
1993         ADV_SG_BLOCK *sg_list_ptr;      /* SG list virtual address. */
1994         char *vdata_addr;       /* Data buffer virtual address. */
1995         uchar a_flag;
1996         uchar pad[2];           /* Pad out to a word boundary. */
1997 } ADV_SCSI_REQ_Q;
1998
1999 /*
2000  * Microcode idle loop commands
2001  */
2002 #define IDLE_CMD_COMPLETED           0
2003 #define IDLE_CMD_STOP_CHIP           0x0001
2004 #define IDLE_CMD_STOP_CHIP_SEND_INT  0x0002
2005 #define IDLE_CMD_SEND_INT            0x0004
2006 #define IDLE_CMD_ABORT               0x0008
2007 #define IDLE_CMD_DEVICE_RESET        0x0010
2008 #define IDLE_CMD_SCSI_RESET_START    0x0020     /* Assert SCSI Bus Reset */
2009 #define IDLE_CMD_SCSI_RESET_END      0x0040     /* Deassert SCSI Bus Reset */
2010 #define IDLE_CMD_SCSIREQ             0x0080
2011
2012 #define IDLE_CMD_STATUS_SUCCESS      0x0001
2013 #define IDLE_CMD_STATUS_FAILURE      0x0002
2014
2015 /*
2016  * AdvSendIdleCmd() flag definitions.
2017  */
2018 #define ADV_NOWAIT     0x01
2019
2020 /*
2021  * Wait loop time out values.
2022  */
2023 #define SCSI_WAIT_100_MSEC           100UL      /* 100 milliseconds */
2024 #define SCSI_US_PER_MSEC             1000       /* microseconds per millisecond */
2025 #define SCSI_MAX_RETRY               10 /* retry count */
2026
2027 #define ADV_ASYNC_RDMA_FAILURE          0x01    /* Fatal RDMA failure. */
2028 #define ADV_ASYNC_SCSI_BUS_RESET_DET    0x02    /* Detected SCSI Bus Reset. */
2029 #define ADV_ASYNC_CARRIER_READY_FAILURE 0x03    /* Carrier Ready failure. */
2030 #define ADV_RDMA_IN_CARR_AND_Q_INVALID  0x04    /* RDMAed-in data invalid. */
2031
2032 #define ADV_HOST_SCSI_BUS_RESET      0x80       /* Host Initiated SCSI Bus Reset. */
2033
2034 /* Read byte from a register. */
2035 #define AdvReadByteRegister(iop_base, reg_off) \
2036      (ADV_MEM_READB((iop_base) + (reg_off)))
2037
2038 /* Write byte to a register. */
2039 #define AdvWriteByteRegister(iop_base, reg_off, byte) \
2040      (ADV_MEM_WRITEB((iop_base) + (reg_off), (byte)))
2041
2042 /* Read word (2 bytes) from a register. */
2043 #define AdvReadWordRegister(iop_base, reg_off) \
2044      (ADV_MEM_READW((iop_base) + (reg_off)))
2045
2046 /* Write word (2 bytes) to a register. */
2047 #define AdvWriteWordRegister(iop_base, reg_off, word) \
2048      (ADV_MEM_WRITEW((iop_base) + (reg_off), (word)))
2049
2050 /* Write dword (4 bytes) to a register. */
2051 #define AdvWriteDWordRegister(iop_base, reg_off, dword) \
2052      (ADV_MEM_WRITEDW((iop_base) + (reg_off), (dword)))
2053
2054 /* Read byte from LRAM. */
2055 #define AdvReadByteLram(iop_base, addr, byte) \
2056 do { \
2057     ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)); \
2058     (byte) = ADV_MEM_READB((iop_base) + IOPB_RAM_DATA); \
2059 } while (0)
2060
2061 /* Write byte to LRAM. */
2062 #define AdvWriteByteLram(iop_base, addr, byte) \
2063     (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
2064      ADV_MEM_WRITEB((iop_base) + IOPB_RAM_DATA, (byte)))
2065
2066 /* Read word (2 bytes) from LRAM. */
2067 #define AdvReadWordLram(iop_base, addr, word) \
2068 do { \
2069     ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)); \
2070     (word) = (ADV_MEM_READW((iop_base) + IOPW_RAM_DATA)); \
2071 } while (0)
2072
2073 /* Write word (2 bytes) to LRAM. */
2074 #define AdvWriteWordLram(iop_base, addr, word) \
2075     (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
2076      ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, (word)))
2077
2078 /* Write little-endian double word (4 bytes) to LRAM */
2079 /* Because of unspecified C language ordering don't use auto-increment. */
2080 #define AdvWriteDWordLramNoSwap(iop_base, addr, dword) \
2081     ((ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr)), \
2082       ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, \
2083                      cpu_to_le16((ushort) ((dword) & 0xFFFF)))), \
2084      (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_ADDR, (addr) + 2), \
2085       ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, \
2086                      cpu_to_le16((ushort) ((dword >> 16) & 0xFFFF)))))
2087
2088 /* Read word (2 bytes) from LRAM assuming that the address is already set. */
2089 #define AdvReadWordAutoIncLram(iop_base) \
2090      (ADV_MEM_READW((iop_base) + IOPW_RAM_DATA))
2091
2092 /* Write word (2 bytes) to LRAM assuming that the address is already set. */
2093 #define AdvWriteWordAutoIncLram(iop_base, word) \
2094      (ADV_MEM_WRITEW((iop_base) + IOPW_RAM_DATA, (word)))
2095
2096 /*
2097  * Define macro to check for Condor signature.
2098  *
2099  * Evaluate to ADV_TRUE if a Condor chip is found the specified port
2100  * address 'iop_base'. Otherwise evalue to ADV_FALSE.
2101  */
2102 #define AdvFindSignature(iop_base) \
2103     (((AdvReadByteRegister((iop_base), IOPB_CHIP_ID_1) == \
2104     ADV_CHIP_ID_BYTE) && \
2105      (AdvReadWordRegister((iop_base), IOPW_CHIP_ID_0) == \
2106     ADV_CHIP_ID_WORD)) ?  ADV_TRUE : ADV_FALSE)
2107
2108 /*
2109  * Define macro to Return the version number of the chip at 'iop_base'.
2110  *
2111  * The second parameter 'bus_type' is currently unused.
2112  */
2113 #define AdvGetChipVersion(iop_base, bus_type) \
2114     AdvReadByteRegister((iop_base), IOPB_CHIP_TYPE_REV)
2115
2116 /*
2117  * Abort an SRB in the chip's RISC Memory. The 'srb_ptr' argument must
2118  * match the ASC_SCSI_REQ_Q 'srb_ptr' field.
2119  *
2120  * If the request has not yet been sent to the device it will simply be
2121  * aborted from RISC memory. If the request is disconnected it will be
2122  * aborted on reselection by sending an Abort Message to the target ID.
2123  *
2124  * Return value:
2125  *      ADV_TRUE(1) - Queue was successfully aborted.
2126  *      ADV_FALSE(0) - Queue was not found on the active queue list.
2127  */
2128 #define AdvAbortQueue(asc_dvc, scsiq) \
2129         AdvSendIdleCmd((asc_dvc), (ushort) IDLE_CMD_ABORT, \
2130                        (ADV_DCNT) (scsiq))
2131
2132 /*
2133  * Send a Bus Device Reset Message to the specified target ID.
2134  *
2135  * All outstanding commands will be purged if sending the
2136  * Bus Device Reset Message is successful.
2137  *
2138  * Return Value:
2139  *      ADV_TRUE(1) - All requests on the target are purged.
2140  *      ADV_FALSE(0) - Couldn't issue Bus Device Reset Message; Requests
2141  *                     are not purged.
2142  */
2143 #define AdvResetDevice(asc_dvc, target_id) \
2144         AdvSendIdleCmd((asc_dvc), (ushort) IDLE_CMD_DEVICE_RESET, \
2145                     (ADV_DCNT) (target_id))
2146
2147 /*
2148  * SCSI Wide Type definition.
2149  */
2150 #define ADV_SCSI_BIT_ID_TYPE   ushort
2151
2152 /*
2153  * AdvInitScsiTarget() 'cntl_flag' options.
2154  */
2155 #define ADV_SCAN_LUN           0x01
2156 #define ADV_CAPINFO_NOLUN      0x02
2157
2158 /*
2159  * Convert target id to target id bit mask.
2160  */
2161 #define ADV_TID_TO_TIDMASK(tid)   (0x01 << ((tid) & ADV_MAX_TID))
2162
2163 /*
2164  * ASC_SCSI_REQ_Q 'done_status' and 'host_status' return values.
2165  */
2166
2167 #define QD_NO_STATUS         0x00       /* Request not completed yet. */
2168 #define QD_NO_ERROR          0x01
2169 #define QD_ABORTED_BY_HOST   0x02
2170 #define QD_WITH_ERROR        0x04
2171
2172 #define QHSTA_NO_ERROR              0x00
2173 #define QHSTA_M_SEL_TIMEOUT         0x11
2174 #define QHSTA_M_DATA_OVER_RUN       0x12
2175 #define QHSTA_M_UNEXPECTED_BUS_FREE 0x13
2176 #define QHSTA_M_QUEUE_ABORTED       0x15
2177 #define QHSTA_M_SXFR_SDMA_ERR       0x16        /* SXFR_STATUS SCSI DMA Error */
2178 #define QHSTA_M_SXFR_SXFR_PERR      0x17        /* SXFR_STATUS SCSI Bus Parity Error */
2179 #define QHSTA_M_RDMA_PERR           0x18        /* RISC PCI DMA parity error */
2180 #define QHSTA_M_SXFR_OFF_UFLW       0x19        /* SXFR_STATUS Offset Underflow */
2181 #define QHSTA_M_SXFR_OFF_OFLW       0x20        /* SXFR_STATUS Offset Overflow */
2182 #define QHSTA_M_SXFR_WD_TMO         0x21        /* SXFR_STATUS Watchdog Timeout */
2183 #define QHSTA_M_SXFR_DESELECTED     0x22        /* SXFR_STATUS Deselected */
2184 /* Note: QHSTA_M_SXFR_XFR_OFLW is identical to QHSTA_M_DATA_OVER_RUN. */
2185 #define QHSTA_M_SXFR_XFR_OFLW       0x12        /* SXFR_STATUS Transfer Overflow */
2186 #define QHSTA_M_SXFR_XFR_PH_ERR     0x24        /* SXFR_STATUS Transfer Phase Error */
2187 #define QHSTA_M_SXFR_UNKNOWN_ERROR  0x25        /* SXFR_STATUS Unknown Error */
2188 #define QHSTA_M_SCSI_BUS_RESET      0x30        /* Request aborted from SBR */
2189 #define QHSTA_M_SCSI_BUS_RESET_UNSOL 0x31       /* Request aborted from unsol. SBR */
2190 #define QHSTA_M_BUS_DEVICE_RESET    0x32        /* Request aborted from BDR */
2191 #define QHSTA_M_DIRECTION_ERR       0x35        /* Data Phase mismatch */
2192 #define QHSTA_M_DIRECTION_ERR_HUNG  0x36        /* Data Phase mismatch and bus hang */
2193 #define QHSTA_M_WTM_TIMEOUT         0x41
2194 #define QHSTA_M_BAD_CMPL_STATUS_IN  0x42
2195 #define QHSTA_M_NO_AUTO_REQ_SENSE   0x43
2196 #define QHSTA_M_AUTO_REQ_SENSE_FAIL 0x44
2197 #define QHSTA_M_INVALID_DEVICE      0x45        /* Bad target ID */
2198 #define QHSTA_M_FROZEN_TIDQ         0x46        /* TID Queue frozen. */
2199 #define QHSTA_M_SGBACKUP_ERROR      0x47        /* Scatter-Gather backup error */
2200
2201 /*
2202  * DvcGetPhyAddr() flag arguments
2203  */
2204 #define ADV_IS_SCSIQ_FLAG       0x01    /* 'addr' is ASC_SCSI_REQ_Q pointer */
2205 #define ADV_ASCGETSGLIST_VADDR  0x02    /* 'addr' is AscGetSGList() virtual addr */
2206 #define ADV_IS_SENSE_FLAG       0x04    /* 'addr' is sense virtual pointer */
2207 #define ADV_IS_DATA_FLAG        0x08    /* 'addr' is data virtual pointer */
2208 #define ADV_IS_SGLIST_FLAG      0x10    /* 'addr' is sglist virtual pointer */
2209 #define ADV_IS_CARRIER_FLAG     0x20    /* 'addr' is ADV_CARR_T pointer */
2210
2211 /* Return the address that is aligned at the next doubleword >= to 'addr'. */
2212 #define ADV_8BALIGN(addr)      (((ulong) (addr) + 0x7) & ~0x7)
2213 #define ADV_16BALIGN(addr)     (((ulong) (addr) + 0xF) & ~0xF)
2214 #define ADV_32BALIGN(addr)     (((ulong) (addr) + 0x1F) & ~0x1F)
2215
2216 /*
2217  * Total contiguous memory needed for driver SG blocks.
2218  *
2219  * ADV_MAX_SG_LIST must be defined by a driver. It is the maximum
2220  * number of scatter-gather elements the driver supports in a
2221  * single request.
2222  */
2223
2224 #define ADV_SG_LIST_MAX_BYTE_SIZE \
2225          (sizeof(ADV_SG_BLOCK) * \
2226           ((ADV_MAX_SG_LIST + (NO_OF_SG_PER_BLOCK - 1))/NO_OF_SG_PER_BLOCK))
2227
2228 /* Reference Scsi_Host hostdata */
2229 #define ASC_BOARDP(host) ((asc_board_t *) &((host)->hostdata))
2230
2231 /* asc_board_t flags */
2232 #define ASC_HOST_IN_RESET       0x01
2233 #define ASC_IS_WIDE_BOARD       0x04    /* AdvanSys Wide Board */
2234 #define ASC_SELECT_QUEUE_DEPTHS 0x08
2235
2236 #define ASC_NARROW_BOARD(boardp) (((boardp)->flags & ASC_IS_WIDE_BOARD) == 0)
2237 #define ASC_WIDE_BOARD(boardp)   ((boardp)->flags & ASC_IS_WIDE_BOARD)
2238
2239 #define NO_ISA_DMA              0xff    /* No ISA DMA Channel Used */
2240
2241 #define ASC_INFO_SIZE           128     /* advansys_info() line size */
2242
2243 #ifdef CONFIG_PROC_FS
2244 /* /proc/scsi/advansys/[0...] related definitions */
2245 #define ASC_PRTBUF_SIZE         2048
2246 #define ASC_PRTLINE_SIZE        160
2247
2248 #define ASC_PRT_NEXT() \
2249     if (cp) { \
2250         totlen += len; \
2251         leftlen -= len; \
2252         if (leftlen == 0) { \
2253             return totlen; \
2254         } \
2255         cp += len; \
2256     }
2257 #endif /* CONFIG_PROC_FS */
2258
2259 /* Asc Library return codes */
2260 #define ASC_TRUE        1
2261 #define ASC_FALSE       0
2262 #define ASC_NOERROR     1
2263 #define ASC_BUSY        0
2264 #define ASC_ERROR       (-1)
2265
2266 /* struct scsi_cmnd function return codes */
2267 #define STATUS_BYTE(byte)   (byte)
2268 #define MSG_BYTE(byte)      ((byte) << 8)
2269 #define HOST_BYTE(byte)     ((byte) << 16)
2270 #define DRIVER_BYTE(byte)   ((byte) << 24)
2271
2272 #ifndef ADVANSYS_STATS
2273 #define ASC_STATS(shost, counter)
2274 #define ASC_STATS_ADD(shost, counter, count)
2275 #else /* ADVANSYS_STATS */
2276 #define ASC_STATS(shost, counter) \
2277     (ASC_BOARDP(shost)->asc_stats.counter++)
2278
2279 #define ASC_STATS_ADD(shost, counter, count) \
2280     (ASC_BOARDP(shost)->asc_stats.counter += (count))
2281 #endif /* ADVANSYS_STATS */
2282
2283 #define ASC_CEILING(val, unit) (((val) + ((unit) - 1))/(unit))
2284
2285 /* If the result wraps when calculating tenths, return 0. */
2286 #define ASC_TENTHS(num, den) \
2287     (((10 * ((num)/(den))) > (((num) * 10)/(den))) ? \
2288     0 : ((((num) * 10)/(den)) - (10 * ((num)/(den)))))
2289
2290 /*
2291  * Display a message to the console.
2292  */
2293 #define ASC_PRINT(s) \
2294     { \
2295         printk("advansys: "); \
2296         printk(s); \
2297     }
2298
2299 #define ASC_PRINT1(s, a1) \
2300     { \
2301         printk("advansys: "); \
2302         printk((s), (a1)); \
2303     }
2304
2305 #define ASC_PRINT2(s, a1, a2) \
2306     { \
2307         printk("advansys: "); \
2308         printk((s), (a1), (a2)); \
2309     }
2310
2311 #define ASC_PRINT3(s, a1, a2, a3) \
2312     { \
2313         printk("advansys: "); \
2314         printk((s), (a1), (a2), (a3)); \
2315     }
2316
2317 #define ASC_PRINT4(s, a1, a2, a3, a4) \
2318     { \
2319         printk("advansys: "); \
2320         printk((s), (a1), (a2), (a3), (a4)); \
2321     }
2322
2323 #ifndef ADVANSYS_DEBUG
2324
2325 #define ASC_DBG(lvl, s)
2326 #define ASC_DBG1(lvl, s, a1)
2327 #define ASC_DBG2(lvl, s, a1, a2)
2328 #define ASC_DBG3(lvl, s, a1, a2, a3)
2329 #define ASC_DBG4(lvl, s, a1, a2, a3, a4)
2330 #define ASC_DBG_PRT_SCSI_HOST(lvl, s)
2331 #define ASC_DBG_PRT_SCSI_CMND(lvl, s)
2332 #define ASC_DBG_PRT_ASC_SCSI_Q(lvl, scsiqp)
2333 #define ASC_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp)
2334 #define ASC_DBG_PRT_ASC_QDONE_INFO(lvl, qdone)
2335 #define ADV_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp)
2336 #define ASC_DBG_PRT_HEX(lvl, name, start, length)
2337 #define ASC_DBG_PRT_CDB(lvl, cdb, len)
2338 #define ASC_DBG_PRT_SENSE(lvl, sense, len)
2339 #define ASC_DBG_PRT_INQUIRY(lvl, inq, len)
2340
2341 #else /* ADVANSYS_DEBUG */
2342
2343 /*
2344  * Debugging Message Levels:
2345  * 0: Errors Only
2346  * 1: High-Level Tracing
2347  * 2-N: Verbose Tracing
2348  */
2349
2350 #define ASC_DBG(lvl, s) \
2351     { \
2352         if (asc_dbglvl >= (lvl)) { \
2353             printk(s); \
2354         } \
2355     }
2356
2357 #define ASC_DBG1(lvl, s, a1) \
2358     { \
2359         if (asc_dbglvl >= (lvl)) { \
2360             printk((s), (a1)); \
2361         } \
2362     }
2363
2364 #define ASC_DBG2(lvl, s, a1, a2) \
2365     { \
2366         if (asc_dbglvl >= (lvl)) { \
2367             printk((s), (a1), (a2)); \
2368         } \
2369     }
2370
2371 #define ASC_DBG3(lvl, s, a1, a2, a3) \
2372     { \
2373         if (asc_dbglvl >= (lvl)) { \
2374             printk((s), (a1), (a2), (a3)); \
2375         } \
2376     }
2377
2378 #define ASC_DBG4(lvl, s, a1, a2, a3, a4) \
2379     { \
2380         if (asc_dbglvl >= (lvl)) { \
2381             printk((s), (a1), (a2), (a3), (a4)); \
2382         } \
2383     }
2384
2385 #define ASC_DBG_PRT_SCSI_HOST(lvl, s) \
2386     { \
2387         if (asc_dbglvl >= (lvl)) { \
2388             asc_prt_scsi_host(s); \
2389         } \
2390     }
2391
2392 #define ASC_DBG_PRT_SCSI_CMND(lvl, s) \
2393     { \
2394         if (asc_dbglvl >= (lvl)) { \
2395             asc_prt_scsi_cmnd(s); \
2396         } \
2397     }
2398
2399 #define ASC_DBG_PRT_ASC_SCSI_Q(lvl, scsiqp) \
2400     { \
2401         if (asc_dbglvl >= (lvl)) { \
2402             asc_prt_asc_scsi_q(scsiqp); \
2403         } \
2404     }
2405
2406 #define ASC_DBG_PRT_ASC_QDONE_INFO(lvl, qdone) \
2407     { \
2408         if (asc_dbglvl >= (lvl)) { \
2409             asc_prt_asc_qdone_info(qdone); \
2410         } \
2411     }
2412
2413 #define ASC_DBG_PRT_ADV_SCSI_REQ_Q(lvl, scsiqp) \
2414     { \
2415         if (asc_dbglvl >= (lvl)) { \
2416             asc_prt_adv_scsi_req_q(scsiqp); \
2417         } \
2418     }
2419
2420 #define ASC_DBG_PRT_HEX(lvl, name, start, length) \
2421     { \
2422         if (asc_dbglvl >= (lvl)) { \
2423             asc_prt_hex((name), (start), (length)); \
2424         } \
2425     }
2426
2427 #define ASC_DBG_PRT_CDB(lvl, cdb, len) \
2428         ASC_DBG_PRT_HEX((lvl), "CDB", (uchar *) (cdb), (len));
2429
2430 #define ASC_DBG_PRT_SENSE(lvl, sense, len) \
2431         ASC_DBG_PRT_HEX((lvl), "SENSE", (uchar *) (sense), (len));
2432
2433 #define ASC_DBG_PRT_INQUIRY(lvl, inq, len) \
2434         ASC_DBG_PRT_HEX((lvl), "INQUIRY", (uchar *) (inq), (len));
2435 #endif /* ADVANSYS_DEBUG */
2436
2437 #ifdef ADVANSYS_STATS
2438
2439 /* Per board statistics structure */
2440 struct asc_stats {
2441         /* Driver Entrypoint Statistics */
2442         ADV_DCNT queuecommand;  /* # calls to advansys_queuecommand() */
2443         ADV_DCNT reset;         /* # calls to advansys_eh_bus_reset() */
2444         ADV_DCNT biosparam;     /* # calls to advansys_biosparam() */
2445         ADV_DCNT interrupt;     /* # advansys_interrupt() calls */
2446         ADV_DCNT callback;      /* # calls to asc/adv_isr_callback() */
2447         ADV_DCNT done;          /* # calls to request's scsi_done function */
2448         ADV_DCNT build_error;   /* # asc/adv_build_req() ASC_ERROR returns. */
2449         ADV_DCNT adv_build_noreq;       /* # adv_build_req() adv_req_t alloc. fail. */
2450         ADV_DCNT adv_build_nosg;        /* # adv_build_req() adv_sgblk_t alloc. fail. */
2451         /* AscExeScsiQueue()/AdvExeScsiQueue() Statistics */
2452         ADV_DCNT exe_noerror;   /* # ASC_NOERROR returns. */
2453         ADV_DCNT exe_busy;      /* # ASC_BUSY returns. */
2454         ADV_DCNT exe_error;     /* # ASC_ERROR returns. */
2455         ADV_DCNT exe_unknown;   /* # unknown returns. */
2456         /* Data Transfer Statistics */
2457         ADV_DCNT cont_cnt;      /* # non-scatter-gather I/O requests received */
2458         ADV_DCNT cont_xfer;     /* # contiguous transfer 512-bytes */
2459         ADV_DCNT sg_cnt;        /* # scatter-gather I/O requests received */
2460         ADV_DCNT sg_elem;       /* # scatter-gather elements */
2461         ADV_DCNT sg_xfer;       /* # scatter-gather transfer 512-bytes */
2462 };
2463 #endif /* ADVANSYS_STATS */
2464
2465 /*
2466  * Adv Library Request Structures
2467  *
2468  * The following two structures are used to process Wide Board requests.
2469  *
2470  * The ADV_SCSI_REQ_Q structure in adv_req_t is passed to the Adv Library
2471  * and microcode with the ADV_SCSI_REQ_Q field 'srb_ptr' pointing to the
2472  * adv_req_t. The adv_req_t structure 'cmndp' field in turn points to the
2473  * Mid-Level SCSI request structure.
2474  *
2475  * Zero or more ADV_SG_BLOCK are used with each ADV_SCSI_REQ_Q. Each
2476  * ADV_SG_BLOCK structure holds 15 scatter-gather elements. Under Linux
2477  * up to 255 scatter-gather elements may be used per request or
2478  * ADV_SCSI_REQ_Q.
2479  *
2480  * Both structures must be 32 byte aligned.
2481  */
2482 typedef struct adv_sgblk {
2483         ADV_SG_BLOCK sg_block;  /* Sgblock structure. */
2484         uchar align[32];        /* Sgblock structure padding. */
2485         struct adv_sgblk *next_sgblkp;  /* Next scatter-gather structure. */
2486 } adv_sgblk_t;
2487
2488 typedef struct adv_req {
2489         ADV_SCSI_REQ_Q scsi_req_q;      /* Adv Library request structure. */
2490         uchar align[32];        /* Request structure padding. */
2491         struct scsi_cmnd *cmndp;        /* Mid-Level SCSI command pointer. */
2492         adv_sgblk_t *sgblkp;    /* Adv Library scatter-gather pointer. */
2493         struct adv_req *next_reqp;      /* Next Request Structure. */
2494 } adv_req_t;
2495
2496 /*
2497  * Structure allocated for each board.
2498  *
2499  * This structure is allocated by scsi_host_alloc() at the end
2500  * of the 'Scsi_Host' structure starting at the 'hostdata'
2501  * field. It is guaranteed to be allocated from DMA-able memory.
2502  */
2503 typedef struct asc_board {
2504         struct device *dev;
2505         int id;                 /* Board Id */
2506         uint flags;             /* Board flags */
2507         union {
2508                 ASC_DVC_VAR asc_dvc_var;        /* Narrow board */
2509                 ADV_DVC_VAR adv_dvc_var;        /* Wide board */
2510         } dvc_var;
2511         union {
2512                 ASC_DVC_CFG asc_dvc_cfg;        /* Narrow board */
2513                 ADV_DVC_CFG adv_dvc_cfg;        /* Wide board */
2514         } dvc_cfg;
2515         ushort asc_n_io_port;   /* Number I/O ports. */
2516         ADV_SCSI_BIT_ID_TYPE init_tidmask;      /* Target init./valid mask */
2517         ushort reqcnt[ADV_MAX_TID + 1]; /* Starvation request count */
2518         ADV_SCSI_BIT_ID_TYPE queue_full;        /* Queue full mask */
2519         ushort queue_full_cnt[ADV_MAX_TID + 1]; /* Queue full count */
2520         union {
2521                 ASCEEP_CONFIG asc_eep;  /* Narrow EEPROM config. */
2522                 ADVEEP_3550_CONFIG adv_3550_eep;        /* 3550 EEPROM config. */
2523                 ADVEEP_38C0800_CONFIG adv_38C0800_eep;  /* 38C0800 EEPROM config. */
2524                 ADVEEP_38C1600_CONFIG adv_38C1600_eep;  /* 38C1600 EEPROM config. */
2525         } eep_config;
2526         ulong last_reset;       /* Saved last reset time */
2527         spinlock_t lock;        /* Board spinlock */
2528         /* /proc/scsi/advansys/[0...] */
2529         char *prtbuf;           /* /proc print buffer */
2530 #ifdef ADVANSYS_STATS
2531         struct asc_stats asc_stats;     /* Board statistics */
2532 #endif                          /* ADVANSYS_STATS */
2533         /*
2534          * The following fields are used only for Narrow Boards.
2535          */
2536         uchar sdtr_data[ASC_MAX_TID + 1];       /* SDTR information */
2537         /*
2538          * The following fields are used only for Wide Boards.
2539          */
2540         void __iomem *ioremap_addr;     /* I/O Memory remap address. */
2541         ushort ioport;          /* I/O Port address. */
2542         ADV_CARR_T *carrp;      /* ADV_CARR_T memory block. */
2543         adv_req_t *orig_reqp;   /* adv_req_t memory block. */
2544         adv_req_t *adv_reqp;    /* Request structures. */
2545         adv_sgblk_t *adv_sgblkp;        /* Scatter-gather structures. */
2546         ushort bios_signature;  /* BIOS Signature. */
2547         ushort bios_version;    /* BIOS Version. */
2548         ushort bios_codeseg;    /* BIOS Code Segment. */
2549         ushort bios_codelen;    /* BIOS Code Segment Length. */
2550 } asc_board_t;
2551
2552 #define adv_dvc_to_board(adv_dvc) container_of(adv_dvc, struct asc_board, \
2553                                                         dvc_var.adv_dvc_var)
2554 #define adv_dvc_to_pdev(adv_dvc) to_pci_dev(adv_dvc_to_board(adv_dvc)->dev)
2555
2556 /* Number of boards detected in system. */
2557 static int asc_board_count;
2558
2559 /* Overrun buffer used by all narrow boards. */
2560 static uchar overrun_buf[ASC_OVERRUN_BSIZE] = { 0 };
2561
2562 /*
2563  * Global structures required to issue a command.
2564  */
2565 static ASC_SCSI_Q asc_scsi_q = { {0} };
2566 static ASC_SG_HEAD asc_sg_head = { 0 };
2567
2568 #ifdef ADVANSYS_DEBUG
2569 static int asc_dbglvl = 3;
2570
2571 /*
2572  * asc_prt_scsi_host()
2573  */
2574 static void asc_prt_scsi_host(struct Scsi_Host *s)
2575 {
2576         asc_board_t *boardp;
2577
2578         boardp = ASC_BOARDP(s);
2579
2580         printk("Scsi_Host at addr 0x%lx\n", (ulong)s);
2581         printk(" host_busy %u, host_no %d, last_reset %d,\n",
2582                s->host_busy, s->host_no, (unsigned)s->last_reset);
2583
2584         printk(" base 0x%lx, io_port 0x%lx, irq 0x%x,\n",
2585                (ulong)s->base, (ulong)s->io_port, s->irq);
2586
2587         printk(" dma_channel %d, this_id %d, can_queue %d,\n",
2588                s->dma_channel, s->this_id, s->can_queue);
2589
2590         printk(" cmd_per_lun %d, sg_tablesize %d, unchecked_isa_dma %d\n",
2591                s->cmd_per_lun, s->sg_tablesize, s->unchecked_isa_dma);
2592
2593         if (ASC_NARROW_BOARD(boardp)) {
2594                 asc_prt_asc_dvc_var(&ASC_BOARDP(s)->dvc_var.asc_dvc_var);
2595                 asc_prt_asc_dvc_cfg(&ASC_BOARDP(s)->dvc_cfg.asc_dvc_cfg);
2596         } else {
2597                 asc_prt_adv_dvc_var(&ASC_BOARDP(s)->dvc_var.adv_dvc_var);
2598                 asc_prt_adv_dvc_cfg(&ASC_BOARDP(s)->dvc_cfg.adv_dvc_cfg);
2599         }
2600 }
2601
2602 /*
2603  * asc_prt_scsi_cmnd()
2604  */
2605 static void asc_prt_scsi_cmnd(struct scsi_cmnd *s)
2606 {
2607         printk("struct scsi_cmnd at addr 0x%lx\n", (ulong)s);
2608
2609         printk(" host 0x%lx, device 0x%lx, target %u, lun %u, channel %u,\n",
2610                (ulong)s->device->host, (ulong)s->device, s->device->id,
2611                s->device->lun, s->device->channel);
2612
2613         asc_prt_hex(" CDB", s->cmnd, s->cmd_len);
2614
2615         printk("sc_data_direction %u, resid %d\n",
2616                s->sc_data_direction, s->resid);
2617
2618         printk(" use_sg %u, sglist_len %u\n", s->use_sg, s->sglist_len);
2619
2620         printk(" serial_number 0x%x, retries %d, allowed %d\n",
2621                (unsigned)s->serial_number, s->retries, s->allowed);
2622
2623         printk(" timeout_per_command %d\n", s->timeout_per_command);
2624
2625         printk(" scsi_done 0x%p, done 0x%p, host_scribble 0x%p, result 0x%x\n",
2626                 s->scsi_done, s->done, s->host_scribble, s->result);
2627
2628         printk(" tag %u, pid %u\n", (unsigned)s->tag, (unsigned)s->pid);
2629 }
2630
2631 /*
2632  * asc_prt_asc_dvc_var()
2633  */
2634 static void asc_prt_asc_dvc_var(ASC_DVC_VAR *h)
2635 {
2636         printk("ASC_DVC_VAR at addr 0x%lx\n", (ulong)h);
2637
2638         printk(" iop_base 0x%x, err_code 0x%x, dvc_cntl 0x%x, bug_fix_cntl "
2639                "%d,\n", h->iop_base, h->err_code, h->dvc_cntl, h->bug_fix_cntl);
2640
2641         printk(" bus_type %d, init_sdtr 0x%x,\n", h->bus_type,
2642                 (unsigned)h->init_sdtr);
2643
2644         printk(" sdtr_done 0x%x, use_tagged_qng 0x%x, unit_not_ready 0x%x, "
2645                "chip_no 0x%x,\n", (unsigned)h->sdtr_done,
2646                (unsigned)h->use_tagged_qng, (unsigned)h->unit_not_ready,
2647                (unsigned)h->chip_no);
2648
2649         printk(" queue_full_or_busy 0x%x, start_motor 0x%x, scsi_reset_wait "
2650                "%u,\n", (unsigned)h->queue_full_or_busy,
2651                (unsigned)h->start_motor, (unsigned)h->scsi_reset_wait);
2652
2653         printk(" is_in_int %u, max_total_qng %u, cur_total_qng %u, "
2654                "in_critical_cnt %u,\n", (unsigned)h->is_in_int,
2655                (unsigned)h->max_total_qng, (unsigned)h->cur_total_qng,
2656                (unsigned)h->in_critical_cnt);
2657
2658         printk(" last_q_shortage %u, init_state 0x%x, no_scam 0x%x, "
2659                "pci_fix_asyn_xfer 0x%x,\n", (unsigned)h->last_q_shortage,
2660                (unsigned)h->init_state, (unsigned)h->no_scam,
2661                (unsigned)h->pci_fix_asyn_xfer);
2662
2663         printk(" cfg 0x%lx, irq_no 0x%x\n", (ulong)h->cfg, (unsigned)h->irq_no);
2664 }
2665
2666 /*
2667  * asc_prt_asc_dvc_cfg()
2668  */
2669 static void asc_prt_asc_dvc_cfg(ASC_DVC_CFG *h)
2670 {
2671         printk("ASC_DVC_CFG at addr 0x%lx\n", (ulong)h);
2672
2673         printk(" can_tagged_qng 0x%x, cmd_qng_enabled 0x%x,\n",
2674                h->can_tagged_qng, h->cmd_qng_enabled);
2675         printk(" disc_enable 0x%x, sdtr_enable 0x%x,\n",
2676                h->disc_enable, h->sdtr_enable);
2677
2678         printk
2679             (" chip_scsi_id %d, isa_dma_speed %d, isa_dma_channel %d, chip_version %d,\n",
2680              h->chip_scsi_id, h->isa_dma_speed, h->isa_dma_channel,
2681              h->chip_version);
2682
2683         printk
2684             (" pci_device_id %d, lib_serial_no %u, lib_version %u, mcode_date 0x%x,\n",
2685              to_pci_dev(h->dev)->device, h->lib_serial_no, h->lib_version,
2686              h->mcode_date);
2687
2688         printk(" mcode_version %d, overrun_buf 0x%lx\n",
2689                h->mcode_version, (ulong)h->overrun_buf);
2690 }
2691
2692 /*
2693  * asc_prt_asc_scsi_q()
2694  */
2695 static void asc_prt_asc_scsi_q(ASC_SCSI_Q *q)
2696 {
2697         ASC_SG_HEAD *sgp;
2698         int i;
2699
2700         printk("ASC_SCSI_Q at addr 0x%lx\n", (ulong)q);
2701
2702         printk
2703             (" target_ix 0x%x, target_lun %u, srb_ptr 0x%lx, tag_code 0x%x,\n",
2704              q->q2.target_ix, q->q1.target_lun, (ulong)q->q2.srb_ptr,
2705              q->q2.tag_code);
2706
2707         printk
2708             (" data_addr 0x%lx, data_cnt %lu, sense_addr 0x%lx, sense_len %u,\n",
2709              (ulong)le32_to_cpu(q->q1.data_addr),
2710              (ulong)le32_to_cpu(q->q1.data_cnt),
2711              (ulong)le32_to_cpu(q->q1.sense_addr), q->q1.sense_len);
2712
2713         printk(" cdbptr 0x%lx, cdb_len %u, sg_head 0x%lx, sg_queue_cnt %u\n",
2714                (ulong)q->cdbptr, q->q2.cdb_len,
2715                (ulong)q->sg_head, q->q1.sg_queue_cnt);
2716
2717         if (q->sg_head) {
2718                 sgp = q->sg_head;
2719                 printk("ASC_SG_HEAD at addr 0x%lx\n", (ulong)sgp);
2720                 printk(" entry_cnt %u, queue_cnt %u\n", sgp->entry_cnt,
2721                        sgp->queue_cnt);
2722                 for (i = 0; i < sgp->entry_cnt; i++) {
2723                         printk(" [%u]: addr 0x%lx, bytes %lu\n",
2724                                i, (ulong)le32_to_cpu(sgp->sg_list[i].addr),
2725                                (ulong)le32_to_cpu(sgp->sg_list[i].bytes));
2726                 }
2727
2728         }
2729 }
2730
2731 /*
2732  * asc_prt_asc_qdone_info()
2733  */
2734 static void asc_prt_asc_qdone_info(ASC_QDONE_INFO *q)
2735 {
2736         printk("ASC_QDONE_INFO at addr 0x%lx\n", (ulong)q);
2737         printk(" srb_ptr 0x%lx, target_ix %u, cdb_len %u, tag_code %u,\n",
2738                (ulong)q->d2.srb_ptr, q->d2.target_ix, q->d2.cdb_len,
2739                q->d2.tag_code);
2740         printk
2741             (" done_stat 0x%x, host_stat 0x%x, scsi_stat 0x%x, scsi_msg 0x%x\n",
2742              q->d3.done_stat, q->d3.host_stat, q->d3.scsi_stat, q->d3.scsi_msg);
2743 }
2744
2745 /*
2746  * asc_prt_adv_dvc_var()
2747  *
2748  * Display an ADV_DVC_VAR structure.
2749  */
2750 static void asc_prt_adv_dvc_var(ADV_DVC_VAR *h)
2751 {
2752         printk(" ADV_DVC_VAR at addr 0x%lx\n", (ulong)h);
2753
2754         printk("  iop_base 0x%lx, err_code 0x%x, ultra_able 0x%x\n",
2755                (ulong)h->iop_base, h->err_code, (unsigned)h->ultra_able);
2756
2757         printk("  isr_callback 0x%lx, sdtr_able 0x%x, wdtr_able 0x%x\n",
2758                (ulong)h->isr_callback, (unsigned)h->sdtr_able,
2759                (unsigned)h->wdtr_able);
2760
2761         printk("  start_motor 0x%x, scsi_reset_wait 0x%x, irq_no 0x%x,\n",
2762                (unsigned)h->start_motor,
2763                (unsigned)h->scsi_reset_wait, (unsigned)h->irq_no);
2764
2765         printk("  max_host_qng %u, max_dvc_qng %u, carr_freelist 0x%lxn\n",
2766                (unsigned)h->max_host_qng, (unsigned)h->max_dvc_qng,
2767                (ulong)h->carr_freelist);
2768
2769         printk("  icq_sp 0x%lx, irq_sp 0x%lx\n",
2770                (ulong)h->icq_sp, (ulong)h->irq_sp);
2771
2772         printk("  no_scam 0x%x, tagqng_able 0x%x\n",
2773                (unsigned)h->no_scam, (unsigned)h->tagqng_able);
2774
2775         printk("  chip_scsi_id 0x%x, cfg 0x%lx\n",
2776                (unsigned)h->chip_scsi_id, (ulong)h->cfg);
2777 }
2778
2779 /*
2780  * asc_prt_adv_dvc_cfg()
2781  *
2782  * Display an ADV_DVC_CFG structure.
2783  */
2784 static void asc_prt_adv_dvc_cfg(ADV_DVC_CFG *h)
2785 {
2786         printk(" ADV_DVC_CFG at addr 0x%lx\n", (ulong)h);
2787
2788         printk("  disc_enable 0x%x, termination 0x%x\n",
2789                h->disc_enable, h->termination);
2790
2791         printk("  chip_version 0x%x, mcode_date 0x%x\n",
2792                h->chip_version, h->mcode_date);
2793
2794         printk("  mcode_version 0x%x, pci_device_id 0x%x, lib_version %u\n",
2795                h->mcode_version, to_pci_dev(h->dev)->device, h->lib_version);
2796
2797         printk("  control_flag 0x%x\n", h->control_flag);
2798 }
2799
2800 /*
2801  * asc_prt_adv_scsi_req_q()
2802  *
2803  * Display an ADV_SCSI_REQ_Q structure.
2804  */
2805 static void asc_prt_adv_scsi_req_q(ADV_SCSI_REQ_Q *q)
2806 {
2807         int sg_blk_cnt;
2808         struct asc_sg_block *sg_ptr;
2809
2810         printk("ADV_SCSI_REQ_Q at addr 0x%lx\n", (ulong)q);
2811
2812         printk("  target_id %u, target_lun %u, srb_ptr 0x%lx, a_flag 0x%x\n",
2813                q->target_id, q->target_lun, (ulong)q->srb_ptr, q->a_flag);
2814
2815         printk("  cntl 0x%x, data_addr 0x%lx, vdata_addr 0x%lx\n",
2816                q->cntl, (ulong)le32_to_cpu(q->data_addr), (ulong)q->vdata_addr);
2817
2818         printk("  data_cnt %lu, sense_addr 0x%lx, sense_len %u,\n",
2819                (ulong)le32_to_cpu(q->data_cnt),
2820                (ulong)le32_to_cpu(q->sense_addr), q->sense_len);
2821
2822         printk
2823             ("  cdb_len %u, done_status 0x%x, host_status 0x%x, scsi_status 0x%x\n",
2824              q->cdb_len, q->done_status, q->host_status, q->scsi_status);
2825
2826         printk("  sg_working_ix 0x%x, target_cmd %u\n",
2827                q->sg_working_ix, q->target_cmd);
2828
2829         printk("  scsiq_rptr 0x%lx, sg_real_addr 0x%lx, sg_list_ptr 0x%lx\n",
2830                (ulong)le32_to_cpu(q->scsiq_rptr),
2831                (ulong)le32_to_cpu(q->sg_real_addr), (ulong)q->sg_list_ptr);
2832
2833         /* Display the request's ADV_SG_BLOCK structures. */
2834         if (q->sg_list_ptr != NULL) {
2835                 sg_blk_cnt = 0;
2836                 while (1) {
2837                         /*
2838                          * 'sg_ptr' is a physical address. Convert it to a virtual
2839                          * address by indexing 'sg_blk_cnt' into the virtual address
2840                          * array 'sg_list_ptr'.
2841                          *
2842                          * XXX - Assumes all SG physical blocks are virtually contiguous.
2843                          */
2844                         sg_ptr =
2845                             &(((ADV_SG_BLOCK *)(q->sg_list_ptr))[sg_blk_cnt]);
2846                         asc_prt_adv_sgblock(sg_blk_cnt, sg_ptr);
2847                         if (sg_ptr->sg_ptr == 0) {
2848                                 break;
2849                         }
2850                         sg_blk_cnt++;
2851                 }
2852         }
2853 }
2854
2855 /*
2856  * asc_prt_adv_sgblock()
2857  *
2858  * Display an ADV_SG_BLOCK structure.
2859  */
2860 static void asc_prt_adv_sgblock(int sgblockno, ADV_SG_BLOCK *b)
2861 {
2862         int i;
2863
2864         printk(" ASC_SG_BLOCK at addr 0x%lx (sgblockno %d)\n",
2865                (ulong)b, sgblockno);
2866         printk("  sg_cnt %u, sg_ptr 0x%lx\n",
2867                b->sg_cnt, (ulong)le32_to_cpu(b->sg_ptr));
2868         BUG_ON(b->sg_cnt > NO_OF_SG_PER_BLOCK);
2869         if (b->sg_ptr != 0)
2870                 BUG_ON(b->sg_cnt != NO_OF_SG_PER_BLOCK);
2871         for (i = 0; i < b->sg_cnt; i++) {
2872                 printk("  [%u]: sg_addr 0x%lx, sg_count 0x%lx\n",
2873                        i, (ulong)b->sg_list[i].sg_addr,
2874                        (ulong)b->sg_list[i].sg_count);
2875         }
2876 }
2877
2878 /*
2879  * asc_prt_hex()
2880  *
2881  * Print hexadecimal output in 4 byte groupings 32 bytes
2882  * or 8 double-words per line.
2883  */
2884 static void asc_prt_hex(char *f, uchar *s, int l)
2885 {
2886         int i;
2887         int j;
2888         int k;
2889         int m;
2890
2891         printk("%s: (%d bytes)\n", f, l);
2892
2893         for (i = 0; i < l; i += 32) {
2894
2895                 /* Display a maximum of 8 double-words per line. */
2896                 if ((k = (l - i) / 4) >= 8) {
2897                         k = 8;
2898                         m = 0;
2899                 } else {
2900                         m = (l - i) % 4;
2901                 }
2902
2903                 for (j = 0; j < k; j++) {
2904                         printk(" %2.2X%2.2X%2.2X%2.2X",
2905                                (unsigned)s[i + (j * 4)],
2906                                (unsigned)s[i + (j * 4) + 1],
2907                                (unsigned)s[i + (j * 4) + 2],
2908                                (unsigned)s[i + (j * 4) + 3]);
2909                 }
2910
2911                 switch (m) {
2912                 case 0:
2913                 default:
2914                         break;
2915                 case 1:
2916                         printk(" %2.2X", (unsigned)s[i + (j * 4)]);
2917                         break;
2918                 case 2:
2919                         printk(" %2.2X%2.2X",
2920                                (unsigned)s[i + (j * 4)],
2921                                (unsigned)s[i + (j * 4) + 1]);
2922                         break;
2923                 case 3:
2924                         printk(" %2.2X%2.2X%2.2X",
2925                                (unsigned)s[i + (j * 4) + 1],
2926                                (unsigned)s[i + (j * 4) + 2],
2927                                (unsigned)s[i + (j * 4) + 3]);
2928                         break;
2929                 }
2930
2931                 printk("\n");
2932         }
2933 }
2934 #endif /* ADVANSYS_DEBUG */
2935
2936 /*
2937  * advansys_info()
2938  *
2939  * Return suitable for printing on the console with the argument
2940  * adapter's configuration information.
2941  *
2942  * Note: The information line should not exceed ASC_INFO_SIZE bytes,
2943  * otherwise the static 'info' array will be overrun.
2944  */
2945 static const char *advansys_info(struct Scsi_Host *shost)
2946 {
2947         static char info[ASC_INFO_SIZE];
2948         asc_board_t *boardp;
2949         ASC_DVC_VAR *asc_dvc_varp;
2950         ADV_DVC_VAR *adv_dvc_varp;
2951         char *busname;
2952         char *widename = NULL;
2953
2954         boardp = ASC_BOARDP(shost);
2955         if (ASC_NARROW_BOARD(boardp)) {
2956                 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
2957                 ASC_DBG(1, "advansys_info: begin\n");
2958                 if (asc_dvc_varp->bus_type & ASC_IS_ISA) {
2959                         if ((asc_dvc_varp->bus_type & ASC_IS_ISAPNP) ==
2960                             ASC_IS_ISAPNP) {
2961                                 busname = "ISA PnP";
2962                         } else {
2963                                 busname = "ISA";
2964                         }
2965                         sprintf(info,
2966                                 "AdvanSys SCSI %s: %s: IO 0x%lX-0x%lX, IRQ 0x%X, DMA 0x%X",
2967                                 ASC_VERSION, busname,
2968                                 (ulong)shost->io_port,
2969                                 (ulong)shost->io_port + ASC_IOADR_GAP - 1,
2970                                 shost->irq, shost->dma_channel);
2971                 } else {
2972                         if (asc_dvc_varp->bus_type & ASC_IS_VL) {
2973                                 busname = "VL";
2974                         } else if (asc_dvc_varp->bus_type & ASC_IS_EISA) {
2975                                 busname = "EISA";
2976                         } else if (asc_dvc_varp->bus_type & ASC_IS_PCI) {
2977                                 if ((asc_dvc_varp->bus_type & ASC_IS_PCI_ULTRA)
2978                                     == ASC_IS_PCI_ULTRA) {
2979                                         busname = "PCI Ultra";
2980                                 } else {
2981                                         busname = "PCI";
2982                                 }
2983                         } else {
2984                                 busname = "?";
2985                                 ASC_PRINT2("advansys_info: board %d: unknown "
2986                                            "bus type %d\n", boardp->id,
2987                                            asc_dvc_varp->bus_type);
2988                         }
2989                         sprintf(info,
2990                                 "AdvanSys SCSI %s: %s: IO 0x%lX-0x%lX, IRQ 0x%X",
2991                                 ASC_VERSION, busname, (ulong)shost->io_port,
2992                                 (ulong)shost->io_port + ASC_IOADR_GAP - 1,
2993                                 shost->irq);
2994                 }
2995         } else {
2996                 /*
2997                  * Wide Adapter Information
2998                  *
2999                  * Memory-mapped I/O is used instead of I/O space to access
3000                  * the adapter, but display the I/O Port range. The Memory
3001                  * I/O address is displayed through the driver /proc file.
3002                  */
3003                 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
3004                 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3005                         widename = "Ultra-Wide";
3006                 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3007                         widename = "Ultra2-Wide";
3008                 } else {
3009                         widename = "Ultra3-Wide";
3010                 }
3011                 sprintf(info,
3012                         "AdvanSys SCSI %s: PCI %s: PCIMEM 0x%lX-0x%lX, IRQ 0x%X",
3013                         ASC_VERSION, widename, (ulong)adv_dvc_varp->iop_base,
3014                         (ulong)adv_dvc_varp->iop_base + boardp->asc_n_io_port - 1, shost->irq);
3015         }
3016         BUG_ON(strlen(info) >= ASC_INFO_SIZE);
3017         ASC_DBG(1, "advansys_info: end\n");
3018         return info;
3019 }
3020
3021 #ifdef CONFIG_PROC_FS
3022 /*
3023  * asc_prt_line()
3024  *
3025  * If 'cp' is NULL print to the console, otherwise print to a buffer.
3026  *
3027  * Return 0 if printing to the console, otherwise return the number of
3028  * bytes written to the buffer.
3029  *
3030  * Note: If any single line is greater than ASC_PRTLINE_SIZE bytes the stack
3031  * will be corrupted. 's[]' is defined to be ASC_PRTLINE_SIZE bytes.
3032  */
3033 static int asc_prt_line(char *buf, int buflen, char *fmt, ...)
3034 {
3035         va_list args;
3036         int ret;
3037         char s[ASC_PRTLINE_SIZE];
3038
3039         va_start(args, fmt);
3040         ret = vsprintf(s, fmt, args);
3041         BUG_ON(ret >= ASC_PRTLINE_SIZE);
3042         if (buf == NULL) {
3043                 (void)printk(s);
3044                 ret = 0;
3045         } else {
3046                 ret = min(buflen, ret);
3047                 memcpy(buf, s, ret);
3048         }
3049         va_end(args);
3050         return ret;
3051 }
3052
3053 /*
3054  * asc_prt_board_devices()
3055  *
3056  * Print driver information for devices attached to the board.
3057  *
3058  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
3059  * cf. asc_prt_line().
3060  *
3061  * Return the number of characters copied into 'cp'. No more than
3062  * 'cplen' characters will be copied to 'cp'.
3063  */
3064 static int asc_prt_board_devices(struct Scsi_Host *shost, char *cp, int cplen)
3065 {
3066         asc_board_t *boardp;
3067         int leftlen;
3068         int totlen;
3069         int len;
3070         int chip_scsi_id;
3071         int i;
3072
3073         boardp = ASC_BOARDP(shost);
3074         leftlen = cplen;
3075         totlen = len = 0;
3076
3077         len = asc_prt_line(cp, leftlen,
3078                            "\nDevice Information for AdvanSys SCSI Host %d:\n",
3079                            shost->host_no);
3080         ASC_PRT_NEXT();
3081
3082         if (ASC_NARROW_BOARD(boardp)) {
3083                 chip_scsi_id = boardp->dvc_cfg.asc_dvc_cfg.chip_scsi_id;
3084         } else {
3085                 chip_scsi_id = boardp->dvc_var.adv_dvc_var.chip_scsi_id;
3086         }
3087
3088         len = asc_prt_line(cp, leftlen, "Target IDs Detected:");
3089         ASC_PRT_NEXT();
3090         for (i = 0; i <= ADV_MAX_TID; i++) {
3091                 if (boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) {
3092                         len = asc_prt_line(cp, leftlen, " %X,", i);
3093                         ASC_PRT_NEXT();
3094                 }
3095         }
3096         len = asc_prt_line(cp, leftlen, " (%X=Host Adapter)\n", chip_scsi_id);
3097         ASC_PRT_NEXT();
3098
3099         return totlen;
3100 }
3101
3102 /*
3103  * Display Wide Board BIOS Information.
3104  */
3105 static int asc_prt_adv_bios(struct Scsi_Host *shost, char *cp, int cplen)
3106 {
3107         asc_board_t *boardp;
3108         int leftlen;
3109         int totlen;
3110         int len;
3111         ushort major, minor, letter;
3112
3113         boardp = ASC_BOARDP(shost);
3114         leftlen = cplen;
3115         totlen = len = 0;
3116
3117         len = asc_prt_line(cp, leftlen, "\nROM BIOS Version: ");
3118         ASC_PRT_NEXT();
3119
3120         /*
3121          * If the BIOS saved a valid signature, then fill in
3122          * the BIOS code segment base address.
3123          */
3124         if (boardp->bios_signature != 0x55AA) {
3125                 len = asc_prt_line(cp, leftlen, "Disabled or Pre-3.1\n");
3126                 ASC_PRT_NEXT();
3127                 len = asc_prt_line(cp, leftlen,
3128                                    "BIOS either disabled or Pre-3.1. If it is pre-3.1, then a newer version\n");
3129                 ASC_PRT_NEXT();
3130                 len = asc_prt_line(cp, leftlen,
3131                                    "can be found at the ConnectCom FTP site: ftp://ftp.connectcom.net/pub\n");
3132                 ASC_PRT_NEXT();
3133         } else {
3134                 major = (boardp->bios_version >> 12) & 0xF;
3135                 minor = (boardp->bios_version >> 8) & 0xF;
3136                 letter = (boardp->bios_version & 0xFF);
3137
3138                 len = asc_prt_line(cp, leftlen, "%d.%d%c\n",
3139                                    major, minor,
3140                                    letter >= 26 ? '?' : letter + 'A');
3141                 ASC_PRT_NEXT();
3142
3143                 /*
3144                  * Current available ROM BIOS release is 3.1I for UW
3145                  * and 3.2I for U2W. This code doesn't differentiate
3146                  * UW and U2W boards.
3147                  */
3148                 if (major < 3 || (major <= 3 && minor < 1) ||
3149                     (major <= 3 && minor <= 1 && letter < ('I' - 'A'))) {
3150                         len = asc_prt_line(cp, leftlen,
3151                                            "Newer version of ROM BIOS is available at the ConnectCom FTP site:\n");
3152                         ASC_PRT_NEXT();
3153                         len = asc_prt_line(cp, leftlen,
3154                                            "ftp://ftp.connectcom.net/pub\n");
3155                         ASC_PRT_NEXT();
3156                 }
3157         }
3158
3159         return totlen;
3160 }
3161
3162 /*
3163  * Add serial number to information bar if signature AAh
3164  * is found in at bit 15-9 (7 bits) of word 1.
3165  *
3166  * Serial Number consists fo 12 alpha-numeric digits.
3167  *
3168  *       1 - Product type (A,B,C,D..)  Word0: 15-13 (3 bits)
3169  *       2 - MFG Location (A,B,C,D..)  Word0: 12-10 (3 bits)
3170  *     3-4 - Product ID (0-99)         Word0: 9-0 (10 bits)
3171  *       5 - Product revision (A-J)    Word0:  "         "
3172  *
3173  *           Signature                 Word1: 15-9 (7 bits)
3174  *       6 - Year (0-9)                Word1: 8-6 (3 bits) & Word2: 15 (1 bit)
3175  *     7-8 - Week of the year (1-52)   Word1: 5-0 (6 bits)
3176  *
3177  *    9-12 - Serial Number (A001-Z999) Word2: 14-0 (15 bits)
3178  *
3179  * Note 1: Only production cards will have a serial number.
3180  *
3181  * Note 2: Signature is most significant 7 bits (0xFE).
3182  *
3183  * Returns ASC_TRUE if serial number found, otherwise returns ASC_FALSE.
3184  */
3185 static int asc_get_eeprom_string(ushort *serialnum, uchar *cp)
3186 {
3187         ushort w, num;
3188
3189         if ((serialnum[1] & 0xFE00) != ((ushort)0xAA << 8)) {
3190                 return ASC_FALSE;
3191         } else {
3192                 /*
3193                  * First word - 6 digits.
3194                  */
3195                 w = serialnum[0];
3196
3197                 /* Product type - 1st digit. */
3198                 if ((*cp = 'A' + ((w & 0xE000) >> 13)) == 'H') {
3199                         /* Product type is P=Prototype */
3200                         *cp += 0x8;
3201                 }
3202                 cp++;
3203
3204                 /* Manufacturing location - 2nd digit. */
3205                 *cp++ = 'A' + ((w & 0x1C00) >> 10);
3206
3207                 /* Product ID - 3rd, 4th digits. */
3208                 num = w & 0x3FF;
3209                 *cp++ = '0' + (num / 100);
3210                 num %= 100;
3211                 *cp++ = '0' + (num / 10);
3212
3213                 /* Product revision - 5th digit. */
3214                 *cp++ = 'A' + (num % 10);
3215
3216                 /*
3217                  * Second word
3218                  */
3219                 w = serialnum[1];
3220
3221                 /*
3222                  * Year - 6th digit.
3223                  *
3224                  * If bit 15 of third word is set, then the
3225                  * last digit of the year is greater than 7.
3226                  */
3227                 if (serialnum[2] & 0x8000) {
3228                         *cp++ = '8' + ((w & 0x1C0) >> 6);
3229                 } else {
3230                         *cp++ = '0' + ((w & 0x1C0) >> 6);
3231                 }
3232
3233                 /* Week of year - 7th, 8th digits. */
3234                 num = w & 0x003F;
3235                 *cp++ = '0' + num / 10;
3236                 num %= 10;
3237                 *cp++ = '0' + num;
3238
3239                 /*
3240                  * Third word
3241                  */
3242                 w = serialnum[2] & 0x7FFF;
3243
3244                 /* Serial number - 9th digit. */
3245                 *cp++ = 'A' + (w / 1000);
3246
3247                 /* 10th, 11th, 12th digits. */
3248                 num = w % 1000;
3249                 *cp++ = '0' + num / 100;
3250                 num %= 100;
3251                 *cp++ = '0' + num / 10;
3252                 num %= 10;
3253                 *cp++ = '0' + num;
3254
3255                 *cp = '\0';     /* Null Terminate the string. */
3256                 return ASC_TRUE;
3257         }
3258 }
3259
3260 /*
3261  * asc_prt_asc_board_eeprom()
3262  *
3263  * Print board EEPROM configuration.
3264  *
3265  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
3266  * cf. asc_prt_line().
3267  *
3268  * Return the number of characters copied into 'cp'. No more than
3269  * 'cplen' characters will be copied to 'cp'.
3270  */
3271 static int asc_prt_asc_board_eeprom(struct Scsi_Host *shost, char *cp, int cplen)
3272 {
3273         asc_board_t *boardp;
3274         ASC_DVC_VAR *asc_dvc_varp;
3275         int leftlen;
3276         int totlen;
3277         int len;
3278         ASCEEP_CONFIG *ep;
3279         int i;
3280 #ifdef CONFIG_ISA
3281         int isa_dma_speed[] = { 10, 8, 7, 6, 5, 4, 3, 2 };
3282 #endif /* CONFIG_ISA */
3283         uchar serialstr[13];
3284
3285         boardp = ASC_BOARDP(shost);
3286         asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
3287         ep = &boardp->eep_config.asc_eep;
3288
3289         leftlen = cplen;
3290         totlen = len = 0;
3291
3292         len = asc_prt_line(cp, leftlen,
3293                            "\nEEPROM Settings for AdvanSys SCSI Host %d:\n",
3294                            shost->host_no);
3295         ASC_PRT_NEXT();
3296
3297         if (asc_get_eeprom_string((ushort *)&ep->adapter_info[0], serialstr)
3298             == ASC_TRUE) {
3299                 len =
3300                     asc_prt_line(cp, leftlen, " Serial Number: %s\n",
3301                                  serialstr);
3302                 ASC_PRT_NEXT();
3303         } else {
3304                 if (ep->adapter_info[5] == 0xBB) {
3305                         len = asc_prt_line(cp, leftlen,
3306                                            " Default Settings Used for EEPROM-less Adapter.\n");
3307                         ASC_PRT_NEXT();
3308                 } else {
3309                         len = asc_prt_line(cp, leftlen,
3310                                            " Serial Number Signature Not Present.\n");
3311                         ASC_PRT_NEXT();
3312                 }
3313         }
3314
3315         len = asc_prt_line(cp, leftlen,
3316                            " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3317                            ASC_EEP_GET_CHIP_ID(ep), ep->max_total_qng,
3318                            ep->max_tag_qng);
3319         ASC_PRT_NEXT();
3320
3321         len = asc_prt_line(cp, leftlen,
3322                            " cntl 0x%x, no_scam 0x%x\n", ep->cntl, ep->no_scam);
3323         ASC_PRT_NEXT();
3324
3325         len = asc_prt_line(cp, leftlen, " Target ID:           ");
3326         ASC_PRT_NEXT();
3327         for (i = 0; i <= ASC_MAX_TID; i++) {
3328                 len = asc_prt_line(cp, leftlen, " %d", i);
3329                 ASC_PRT_NEXT();
3330         }
3331         len = asc_prt_line(cp, leftlen, "\n");
3332         ASC_PRT_NEXT();
3333
3334         len = asc_prt_line(cp, leftlen, " Disconnects:         ");
3335         ASC_PRT_NEXT();
3336         for (i = 0; i <= ASC_MAX_TID; i++) {
3337                 len = asc_prt_line(cp, leftlen, " %c",
3338                                    (ep->
3339                                     disc_enable & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
3340                                    'N');
3341                 ASC_PRT_NEXT();
3342         }
3343         len = asc_prt_line(cp, leftlen, "\n");
3344         ASC_PRT_NEXT();
3345
3346         len = asc_prt_line(cp, leftlen, " Command Queuing:     ");
3347         ASC_PRT_NEXT();
3348         for (i = 0; i <= ASC_MAX_TID; i++) {
3349                 len = asc_prt_line(cp, leftlen, " %c",
3350                                    (ep->
3351                                     use_cmd_qng & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
3352                                    'N');
3353                 ASC_PRT_NEXT();
3354         }
3355         len = asc_prt_line(cp, leftlen, "\n");
3356         ASC_PRT_NEXT();
3357
3358         len = asc_prt_line(cp, leftlen, " Start Motor:         ");
3359         ASC_PRT_NEXT();
3360         for (i = 0; i <= ASC_MAX_TID; i++) {
3361                 len = asc_prt_line(cp, leftlen, " %c",
3362                                    (ep->
3363                                     start_motor & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
3364                                    'N');
3365                 ASC_PRT_NEXT();
3366         }
3367         len = asc_prt_line(cp, leftlen, "\n");
3368         ASC_PRT_NEXT();
3369
3370         len = asc_prt_line(cp, leftlen, " Synchronous Transfer:");
3371         ASC_PRT_NEXT();
3372         for (i = 0; i <= ASC_MAX_TID; i++) {
3373                 len = asc_prt_line(cp, leftlen, " %c",
3374                                    (ep->
3375                                     init_sdtr & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
3376                                    'N');
3377                 ASC_PRT_NEXT();
3378         }
3379         len = asc_prt_line(cp, leftlen, "\n");
3380         ASC_PRT_NEXT();
3381
3382 #ifdef CONFIG_ISA
3383         if (asc_dvc_varp->bus_type & ASC_IS_ISA) {
3384                 len = asc_prt_line(cp, leftlen,
3385                                    " Host ISA DMA speed:   %d MB/S\n",
3386                                    isa_dma_speed[ASC_EEP_GET_DMA_SPD(ep)]);
3387                 ASC_PRT_NEXT();
3388         }
3389 #endif /* CONFIG_ISA */
3390
3391         return totlen;
3392 }
3393
3394 /*
3395  * asc_prt_adv_board_eeprom()
3396  *
3397  * Print board EEPROM configuration.
3398  *
3399  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
3400  * cf. asc_prt_line().
3401  *
3402  * Return the number of characters copied into 'cp'. No more than
3403  * 'cplen' characters will be copied to 'cp'.
3404  */
3405 static int asc_prt_adv_board_eeprom(struct Scsi_Host *shost, char *cp, int cplen)
3406 {
3407         asc_board_t *boardp;
3408         ADV_DVC_VAR *adv_dvc_varp;
3409         int leftlen;
3410         int totlen;
3411         int len;
3412         int i;
3413         char *termstr;
3414         uchar serialstr[13];
3415         ADVEEP_3550_CONFIG *ep_3550 = NULL;
3416         ADVEEP_38C0800_CONFIG *ep_38C0800 = NULL;
3417         ADVEEP_38C1600_CONFIG *ep_38C1600 = NULL;
3418         ushort word;
3419         ushort *wordp;
3420         ushort sdtr_speed = 0;
3421
3422         boardp = ASC_BOARDP(shost);
3423         adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
3424         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3425                 ep_3550 = &boardp->eep_config.adv_3550_eep;
3426         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3427                 ep_38C0800 = &boardp->eep_config.adv_38C0800_eep;
3428         } else {
3429                 ep_38C1600 = &boardp->eep_config.adv_38C1600_eep;
3430         }
3431
3432         leftlen = cplen;
3433         totlen = len = 0;
3434
3435         len = asc_prt_line(cp, leftlen,
3436                            "\nEEPROM Settings for AdvanSys SCSI Host %d:\n",
3437                            shost->host_no);
3438         ASC_PRT_NEXT();
3439
3440         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3441                 wordp = &ep_3550->serial_number_word1;
3442         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3443                 wordp = &ep_38C0800->serial_number_word1;
3444         } else {
3445                 wordp = &ep_38C1600->serial_number_word1;
3446         }
3447
3448         if (asc_get_eeprom_string(wordp, serialstr) == ASC_TRUE) {
3449                 len =
3450                     asc_prt_line(cp, leftlen, " Serial Number: %s\n",
3451                                  serialstr);
3452                 ASC_PRT_NEXT();
3453         } else {
3454                 len = asc_prt_line(cp, leftlen,
3455                                    " Serial Number Signature Not Present.\n");
3456                 ASC_PRT_NEXT();
3457         }
3458
3459         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3460                 len = asc_prt_line(cp, leftlen,
3461                                    " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3462                                    ep_3550->adapter_scsi_id,
3463                                    ep_3550->max_host_qng, ep_3550->max_dvc_qng);
3464                 ASC_PRT_NEXT();
3465         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3466                 len = asc_prt_line(cp, leftlen,
3467                                    " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3468                                    ep_38C0800->adapter_scsi_id,
3469                                    ep_38C0800->max_host_qng,
3470                                    ep_38C0800->max_dvc_qng);
3471                 ASC_PRT_NEXT();
3472         } else {
3473                 len = asc_prt_line(cp, leftlen,
3474                                    " Host SCSI ID: %u, Host Queue Size: %u, Device Queue Size: %u\n",
3475                                    ep_38C1600->adapter_scsi_id,
3476                                    ep_38C1600->max_host_qng,
3477                                    ep_38C1600->max_dvc_qng);
3478                 ASC_PRT_NEXT();
3479         }
3480         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3481                 word = ep_3550->termination;
3482         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3483                 word = ep_38C0800->termination_lvd;
3484         } else {
3485                 word = ep_38C1600->termination_lvd;
3486         }
3487         switch (word) {
3488         case 1:
3489                 termstr = "Low Off/High Off";
3490                 break;
3491         case 2:
3492                 termstr = "Low Off/High On";
3493                 break;
3494         case 3:
3495                 termstr = "Low On/High On";
3496                 break;
3497         default:
3498         case 0:
3499                 termstr = "Automatic";
3500                 break;
3501         }
3502
3503         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3504                 len = asc_prt_line(cp, leftlen,
3505                                    " termination: %u (%s), bios_ctrl: 0x%x\n",
3506                                    ep_3550->termination, termstr,
3507                                    ep_3550->bios_ctrl);
3508                 ASC_PRT_NEXT();
3509         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3510                 len = asc_prt_line(cp, leftlen,
3511                                    " termination: %u (%s), bios_ctrl: 0x%x\n",
3512                                    ep_38C0800->termination_lvd, termstr,
3513                                    ep_38C0800->bios_ctrl);
3514                 ASC_PRT_NEXT();
3515         } else {
3516                 len = asc_prt_line(cp, leftlen,
3517                                    " termination: %u (%s), bios_ctrl: 0x%x\n",
3518                                    ep_38C1600->termination_lvd, termstr,
3519                                    ep_38C1600->bios_ctrl);
3520                 ASC_PRT_NEXT();
3521         }
3522
3523         len = asc_prt_line(cp, leftlen, " Target ID:           ");
3524         ASC_PRT_NEXT();
3525         for (i = 0; i <= ADV_MAX_TID; i++) {
3526                 len = asc_prt_line(cp, leftlen, " %X", i);
3527                 ASC_PRT_NEXT();
3528         }
3529         len = asc_prt_line(cp, leftlen, "\n");
3530         ASC_PRT_NEXT();
3531
3532         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3533                 word = ep_3550->disc_enable;
3534         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3535                 word = ep_38C0800->disc_enable;
3536         } else {
3537                 word = ep_38C1600->disc_enable;
3538         }
3539         len = asc_prt_line(cp, leftlen, " Disconnects:         ");
3540         ASC_PRT_NEXT();
3541         for (i = 0; i <= ADV_MAX_TID; i++) {
3542                 len = asc_prt_line(cp, leftlen, " %c",
3543                                    (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
3544                 ASC_PRT_NEXT();
3545         }
3546         len = asc_prt_line(cp, leftlen, "\n");
3547         ASC_PRT_NEXT();
3548
3549         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3550                 word = ep_3550->tagqng_able;
3551         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3552                 word = ep_38C0800->tagqng_able;
3553         } else {
3554                 word = ep_38C1600->tagqng_able;
3555         }
3556         len = asc_prt_line(cp, leftlen, " Command Queuing:     ");
3557         ASC_PRT_NEXT();
3558         for (i = 0; i <= ADV_MAX_TID; i++) {
3559                 len = asc_prt_line(cp, leftlen, " %c",
3560                                    (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
3561                 ASC_PRT_NEXT();
3562         }
3563         len = asc_prt_line(cp, leftlen, "\n");
3564         ASC_PRT_NEXT();
3565
3566         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3567                 word = ep_3550->start_motor;
3568         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3569                 word = ep_38C0800->start_motor;
3570         } else {
3571                 word = ep_38C1600->start_motor;
3572         }
3573         len = asc_prt_line(cp, leftlen, " Start Motor:         ");
3574         ASC_PRT_NEXT();
3575         for (i = 0; i <= ADV_MAX_TID; i++) {
3576                 len = asc_prt_line(cp, leftlen, " %c",
3577                                    (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
3578                 ASC_PRT_NEXT();
3579         }
3580         len = asc_prt_line(cp, leftlen, "\n");
3581         ASC_PRT_NEXT();
3582
3583         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3584                 len = asc_prt_line(cp, leftlen, " Synchronous Transfer:");
3585                 ASC_PRT_NEXT();
3586                 for (i = 0; i <= ADV_MAX_TID; i++) {
3587                         len = asc_prt_line(cp, leftlen, " %c",
3588                                            (ep_3550->
3589                                             sdtr_able & ADV_TID_TO_TIDMASK(i)) ?
3590                                            'Y' : 'N');
3591                         ASC_PRT_NEXT();
3592                 }
3593                 len = asc_prt_line(cp, leftlen, "\n");
3594                 ASC_PRT_NEXT();
3595         }
3596
3597         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3598                 len = asc_prt_line(cp, leftlen, " Ultra Transfer:      ");
3599                 ASC_PRT_NEXT();
3600                 for (i = 0; i <= ADV_MAX_TID; i++) {
3601                         len = asc_prt_line(cp, leftlen, " %c",
3602                                            (ep_3550->
3603                                             ultra_able & ADV_TID_TO_TIDMASK(i))
3604                                            ? 'Y' : 'N');
3605                         ASC_PRT_NEXT();
3606                 }
3607                 len = asc_prt_line(cp, leftlen, "\n");
3608                 ASC_PRT_NEXT();
3609         }
3610
3611         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
3612                 word = ep_3550->wdtr_able;
3613         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
3614                 word = ep_38C0800->wdtr_able;
3615         } else {
3616                 word = ep_38C1600->wdtr_able;
3617         }
3618         len = asc_prt_line(cp, leftlen, " Wide Transfer:       ");
3619         ASC_PRT_NEXT();
3620         for (i = 0; i <= ADV_MAX_TID; i++) {
3621                 len = asc_prt_line(cp, leftlen, " %c",
3622                                    (word & ADV_TID_TO_TIDMASK(i)) ? 'Y' : 'N');
3623                 ASC_PRT_NEXT();
3624         }
3625         len = asc_prt_line(cp, leftlen, "\n");
3626         ASC_PRT_NEXT();
3627
3628         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800 ||
3629             adv_dvc_varp->chip_type == ADV_CHIP_ASC38C1600) {
3630                 len = asc_prt_line(cp, leftlen,
3631                                    " Synchronous Transfer Speed (Mhz):\n  ");
3632                 ASC_PRT_NEXT();
3633                 for (i = 0; i <= ADV_MAX_TID; i++) {
3634                         char *speed_str;
3635
3636                         if (i == 0) {
3637                                 sdtr_speed = adv_dvc_varp->sdtr_speed1;
3638                         } else if (i == 4) {
3639                                 sdtr_speed = adv_dvc_varp->sdtr_speed2;
3640                         } else if (i == 8) {
3641                                 sdtr_speed = adv_dvc_varp->sdtr_speed3;
3642                         } else if (i == 12) {
3643                                 sdtr_speed = adv_dvc_varp->sdtr_speed4;
3644                         }
3645                         switch (sdtr_speed & ADV_MAX_TID) {
3646                         case 0:
3647                                 speed_str = "Off";
3648                                 break;
3649                         case 1:
3650                                 speed_str = "  5";
3651                                 break;
3652                         case 2:
3653                                 speed_str = " 10";
3654                                 break;
3655                         case 3:
3656                                 speed_str = " 20";
3657                                 break;
3658                         case 4:
3659                                 speed_str = " 40";
3660                                 break;
3661                         case 5:
3662                                 speed_str = " 80";
3663                                 break;
3664                         default:
3665                                 speed_str = "Unk";
3666                                 break;
3667                         }
3668                         len = asc_prt_line(cp, leftlen, "%X:%s ", i, speed_str);
3669                         ASC_PRT_NEXT();
3670                         if (i == 7) {
3671                                 len = asc_prt_line(cp, leftlen, "\n  ");
3672                                 ASC_PRT_NEXT();
3673                         }
3674                         sdtr_speed >>= 4;
3675                 }
3676                 len = asc_prt_line(cp, leftlen, "\n");
3677                 ASC_PRT_NEXT();
3678         }
3679
3680         return totlen;
3681 }
3682
3683 /*
3684  * asc_prt_driver_conf()
3685  *
3686  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
3687  * cf. asc_prt_line().
3688  *
3689  * Return the number of characters copied into 'cp'. No more than
3690  * 'cplen' characters will be copied to 'cp'.
3691  */
3692 static int asc_prt_driver_conf(struct Scsi_Host *shost, char *cp, int cplen)
3693 {
3694         asc_board_t *boardp;
3695         int leftlen;
3696         int totlen;
3697         int len;
3698         int chip_scsi_id;
3699
3700         boardp = ASC_BOARDP(shost);
3701
3702         leftlen = cplen;
3703         totlen = len = 0;
3704
3705         len = asc_prt_line(cp, leftlen,
3706                            "\nLinux Driver Configuration and Information for AdvanSys SCSI Host %d:\n",
3707                            shost->host_no);
3708         ASC_PRT_NEXT();
3709
3710         len = asc_prt_line(cp, leftlen,
3711                            " host_busy %u, last_reset %u, max_id %u, max_lun %u, max_channel %u\n",
3712                            shost->host_busy, shost->last_reset, shost->max_id,
3713                            shost->max_lun, shost->max_channel);
3714         ASC_PRT_NEXT();
3715
3716         len = asc_prt_line(cp, leftlen,
3717                            " unique_id %d, can_queue %d, this_id %d, sg_tablesize %u, cmd_per_lun %u\n",
3718                            shost->unique_id, shost->can_queue, shost->this_id,
3719                            shost->sg_tablesize, shost->cmd_per_lun);
3720         ASC_PRT_NEXT();
3721
3722         len = asc_prt_line(cp, leftlen,
3723                            " unchecked_isa_dma %d, use_clustering %d\n",
3724                            shost->unchecked_isa_dma, shost->use_clustering);
3725         ASC_PRT_NEXT();
3726
3727         len = asc_prt_line(cp, leftlen,
3728                            " flags 0x%x, last_reset 0x%x, jiffies 0x%x, asc_n_io_port 0x%x\n",
3729                            boardp->flags, boardp->last_reset, jiffies,
3730                            boardp->asc_n_io_port);
3731         ASC_PRT_NEXT();
3732
3733         len = asc_prt_line(cp, leftlen, " io_port 0x%x\n", shost->io_port);
3734         ASC_PRT_NEXT();
3735
3736         if (ASC_NARROW_BOARD(boardp)) {
3737                 chip_scsi_id = boardp->dvc_cfg.asc_dvc_cfg.chip_scsi_id;
3738         } else {
3739                 chip_scsi_id = boardp->dvc_var.adv_dvc_var.chip_scsi_id;
3740         }
3741
3742         return totlen;
3743 }
3744
3745 /*
3746  * asc_prt_asc_board_info()
3747  *
3748  * Print dynamic board configuration information.
3749  *
3750  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
3751  * cf. asc_prt_line().
3752  *
3753  * Return the number of characters copied into 'cp'. No more than
3754  * 'cplen' characters will be copied to 'cp'.
3755  */
3756 static int asc_prt_asc_board_info(struct Scsi_Host *shost, char *cp, int cplen)
3757 {
3758         asc_board_t *boardp;
3759         int chip_scsi_id;
3760         int leftlen;
3761         int totlen;
3762         int len;
3763         ASC_DVC_VAR *v;
3764         ASC_DVC_CFG *c;
3765         int i;
3766         int renegotiate = 0;
3767
3768         boardp = ASC_BOARDP(shost);
3769         v = &boardp->dvc_var.asc_dvc_var;
3770         c = &boardp->dvc_cfg.asc_dvc_cfg;
3771         chip_scsi_id = c->chip_scsi_id;
3772
3773         leftlen = cplen;
3774         totlen = len = 0;
3775
3776         len = asc_prt_line(cp, leftlen,
3777                            "\nAsc Library Configuration and Statistics for AdvanSys SCSI Host %d:\n",
3778                            shost->host_no);
3779         ASC_PRT_NEXT();
3780
3781         len = asc_prt_line(cp, leftlen,
3782                            " chip_version %u, lib_version 0x%x, lib_serial_no %u, mcode_date 0x%x\n",
3783                            c->chip_version, c->lib_version, c->lib_serial_no,
3784                            c->mcode_date);
3785         ASC_PRT_NEXT();
3786
3787         len = asc_prt_line(cp, leftlen,
3788                            " mcode_version 0x%x, err_code %u\n",
3789                            c->mcode_version, v->err_code);
3790         ASC_PRT_NEXT();
3791
3792         /* Current number of commands waiting for the host. */
3793         len = asc_prt_line(cp, leftlen,
3794                            " Total Command Pending: %d\n", v->cur_total_qng);
3795         ASC_PRT_NEXT();
3796
3797         len = asc_prt_line(cp, leftlen, " Command Queuing:");
3798         ASC_PRT_NEXT();
3799         for (i = 0; i <= ASC_MAX_TID; i++) {
3800                 if ((chip_scsi_id == i) ||
3801                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3802                         continue;
3803                 }
3804                 len = asc_prt_line(cp, leftlen, " %X:%c",
3805                                    i,
3806                                    (v->
3807                                     use_tagged_qng & ADV_TID_TO_TIDMASK(i)) ?
3808                                    'Y' : 'N');
3809                 ASC_PRT_NEXT();
3810         }
3811         len = asc_prt_line(cp, leftlen, "\n");
3812         ASC_PRT_NEXT();
3813
3814         /* Current number of commands waiting for a device. */
3815         len = asc_prt_line(cp, leftlen, " Command Queue Pending:");
3816         ASC_PRT_NEXT();
3817         for (i = 0; i <= ASC_MAX_TID; i++) {
3818                 if ((chip_scsi_id == i) ||
3819                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3820                         continue;
3821                 }
3822                 len = asc_prt_line(cp, leftlen, " %X:%u", i, v->cur_dvc_qng[i]);
3823                 ASC_PRT_NEXT();
3824         }
3825         len = asc_prt_line(cp, leftlen, "\n");
3826         ASC_PRT_NEXT();
3827
3828         /* Current limit on number of commands that can be sent to a device. */
3829         len = asc_prt_line(cp, leftlen, " Command Queue Limit:");
3830         ASC_PRT_NEXT();
3831         for (i = 0; i <= ASC_MAX_TID; i++) {
3832                 if ((chip_scsi_id == i) ||
3833                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3834                         continue;
3835                 }
3836                 len = asc_prt_line(cp, leftlen, " %X:%u", i, v->max_dvc_qng[i]);
3837                 ASC_PRT_NEXT();
3838         }
3839         len = asc_prt_line(cp, leftlen, "\n");
3840         ASC_PRT_NEXT();
3841
3842         /* Indicate whether the device has returned queue full status. */
3843         len = asc_prt_line(cp, leftlen, " Command Queue Full:");
3844         ASC_PRT_NEXT();
3845         for (i = 0; i <= ASC_MAX_TID; i++) {
3846                 if ((chip_scsi_id == i) ||
3847                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3848                         continue;
3849                 }
3850                 if (boardp->queue_full & ADV_TID_TO_TIDMASK(i)) {
3851                         len = asc_prt_line(cp, leftlen, " %X:Y-%d",
3852                                            i, boardp->queue_full_cnt[i]);
3853                 } else {
3854                         len = asc_prt_line(cp, leftlen, " %X:N", i);
3855                 }
3856                 ASC_PRT_NEXT();
3857         }
3858         len = asc_prt_line(cp, leftlen, "\n");
3859         ASC_PRT_NEXT();
3860
3861         len = asc_prt_line(cp, leftlen, " Synchronous Transfer:");
3862         ASC_PRT_NEXT();
3863         for (i = 0; i <= ASC_MAX_TID; i++) {
3864                 if ((chip_scsi_id == i) ||
3865                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3866                         continue;
3867                 }
3868                 len = asc_prt_line(cp, leftlen, " %X:%c",
3869                                    i,
3870                                    (v->
3871                                     sdtr_done & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
3872                                    'N');
3873                 ASC_PRT_NEXT();
3874         }
3875         len = asc_prt_line(cp, leftlen, "\n");
3876         ASC_PRT_NEXT();
3877
3878         for (i = 0; i <= ASC_MAX_TID; i++) {
3879                 uchar syn_period_ix;
3880
3881                 if ((chip_scsi_id == i) ||
3882                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0) ||
3883                     ((v->init_sdtr & ADV_TID_TO_TIDMASK(i)) == 0)) {
3884                         continue;
3885                 }
3886
3887                 len = asc_prt_line(cp, leftlen, "  %X:", i);
3888                 ASC_PRT_NEXT();
3889
3890                 if ((boardp->sdtr_data[i] & ASC_SYN_MAX_OFFSET) == 0) {
3891                         len = asc_prt_line(cp, leftlen, " Asynchronous");
3892                         ASC_PRT_NEXT();
3893                 } else {
3894                         syn_period_ix =
3895                             (boardp->sdtr_data[i] >> 4) & (v->max_sdtr_index -
3896                                                            1);
3897
3898                         len = asc_prt_line(cp, leftlen,
3899                                            " Transfer Period Factor: %d (%d.%d Mhz),",
3900                                            v->sdtr_period_tbl[syn_period_ix],
3901                                            250 /
3902                                            v->sdtr_period_tbl[syn_period_ix],
3903                                            ASC_TENTHS(250,
3904                                                       v->
3905                                                       sdtr_period_tbl
3906                                                       [syn_period_ix]));
3907                         ASC_PRT_NEXT();
3908
3909                         len = asc_prt_line(cp, leftlen, " REQ/ACK Offset: %d",
3910                                            boardp->
3911                                            sdtr_data[i] & ASC_SYN_MAX_OFFSET);
3912                         ASC_PRT_NEXT();
3913                 }
3914
3915                 if ((v->sdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
3916                         len = asc_prt_line(cp, leftlen, "*\n");
3917                         renegotiate = 1;
3918                 } else {
3919                         len = asc_prt_line(cp, leftlen, "\n");
3920                 }
3921                 ASC_PRT_NEXT();
3922         }
3923
3924         if (renegotiate) {
3925                 len = asc_prt_line(cp, leftlen,
3926                                    " * = Re-negotiation pending before next command.\n");
3927                 ASC_PRT_NEXT();
3928         }
3929
3930         return totlen;
3931 }
3932
3933 /*
3934  * asc_prt_adv_board_info()
3935  *
3936  * Print dynamic board configuration information.
3937  *
3938  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
3939  * cf. asc_prt_line().
3940  *
3941  * Return the number of characters copied into 'cp'. No more than
3942  * 'cplen' characters will be copied to 'cp'.
3943  */
3944 static int asc_prt_adv_board_info(struct Scsi_Host *shost, char *cp, int cplen)
3945 {
3946         asc_board_t *boardp;
3947         int leftlen;
3948         int totlen;
3949         int len;
3950         int i;
3951         ADV_DVC_VAR *v;
3952         ADV_DVC_CFG *c;
3953         AdvPortAddr iop_base;
3954         ushort chip_scsi_id;
3955         ushort lramword;
3956         uchar lrambyte;
3957         ushort tagqng_able;
3958         ushort sdtr_able, wdtr_able;
3959         ushort wdtr_done, sdtr_done;
3960         ushort period = 0;
3961         int renegotiate = 0;
3962
3963         boardp = ASC_BOARDP(shost);
3964         v = &boardp->dvc_var.adv_dvc_var;
3965         c = &boardp->dvc_cfg.adv_dvc_cfg;
3966         iop_base = v->iop_base;
3967         chip_scsi_id = v->chip_scsi_id;
3968
3969         leftlen = cplen;
3970         totlen = len = 0;
3971
3972         len = asc_prt_line(cp, leftlen,
3973                            "\nAdv Library Configuration and Statistics for AdvanSys SCSI Host %d:\n",
3974                            shost->host_no);
3975         ASC_PRT_NEXT();
3976
3977         len = asc_prt_line(cp, leftlen,
3978                            " iop_base 0x%lx, cable_detect: %X, err_code %u\n",
3979                            v->iop_base,
3980                            AdvReadWordRegister(iop_base,
3981                                                IOPW_SCSI_CFG1) & CABLE_DETECT,
3982                            v->err_code);
3983         ASC_PRT_NEXT();
3984
3985         len = asc_prt_line(cp, leftlen,
3986                            " chip_version %u, lib_version 0x%x, mcode_date 0x%x, mcode_version 0x%x\n",
3987                            c->chip_version, c->lib_version, c->mcode_date,
3988                            c->mcode_version);
3989         ASC_PRT_NEXT();
3990
3991         AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
3992         len = asc_prt_line(cp, leftlen, " Queuing Enabled:");
3993         ASC_PRT_NEXT();
3994         for (i = 0; i <= ADV_MAX_TID; i++) {
3995                 if ((chip_scsi_id == i) ||
3996                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
3997                         continue;
3998                 }
3999
4000                 len = asc_prt_line(cp, leftlen, " %X:%c",
4001                                    i,
4002                                    (tagqng_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
4003                                    'N');
4004                 ASC_PRT_NEXT();
4005         }
4006         len = asc_prt_line(cp, leftlen, "\n");
4007         ASC_PRT_NEXT();
4008
4009         len = asc_prt_line(cp, leftlen, " Queue Limit:");
4010         ASC_PRT_NEXT();
4011         for (i = 0; i <= ADV_MAX_TID; i++) {
4012                 if ((chip_scsi_id == i) ||
4013                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
4014                         continue;
4015                 }
4016
4017                 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + i,
4018                                 lrambyte);
4019
4020                 len = asc_prt_line(cp, leftlen, " %X:%d", i, lrambyte);
4021                 ASC_PRT_NEXT();
4022         }
4023         len = asc_prt_line(cp, leftlen, "\n");
4024         ASC_PRT_NEXT();
4025
4026         len = asc_prt_line(cp, leftlen, " Command Pending:");
4027         ASC_PRT_NEXT();
4028         for (i = 0; i <= ADV_MAX_TID; i++) {
4029                 if ((chip_scsi_id == i) ||
4030                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
4031                         continue;
4032                 }
4033
4034                 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_QUEUED_CMD + i,
4035                                 lrambyte);
4036
4037                 len = asc_prt_line(cp, leftlen, " %X:%d", i, lrambyte);
4038                 ASC_PRT_NEXT();
4039         }
4040         len = asc_prt_line(cp, leftlen, "\n");
4041         ASC_PRT_NEXT();
4042
4043         AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
4044         len = asc_prt_line(cp, leftlen, " Wide Enabled:");
4045         ASC_PRT_NEXT();
4046         for (i = 0; i <= ADV_MAX_TID; i++) {
4047                 if ((chip_scsi_id == i) ||
4048                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
4049                         continue;
4050                 }
4051
4052                 len = asc_prt_line(cp, leftlen, " %X:%c",
4053                                    i,
4054                                    (wdtr_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
4055                                    'N');
4056                 ASC_PRT_NEXT();
4057         }
4058         len = asc_prt_line(cp, leftlen, "\n");
4059         ASC_PRT_NEXT();
4060
4061         AdvReadWordLram(iop_base, ASC_MC_WDTR_DONE, wdtr_done);
4062         len = asc_prt_line(cp, leftlen, " Transfer Bit Width:");
4063         ASC_PRT_NEXT();
4064         for (i = 0; i <= ADV_MAX_TID; i++) {
4065                 if ((chip_scsi_id == i) ||
4066                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
4067                         continue;
4068                 }
4069
4070                 AdvReadWordLram(iop_base,
4071                                 ASC_MC_DEVICE_HSHK_CFG_TABLE + (2 * i),
4072                                 lramword);
4073
4074                 len = asc_prt_line(cp, leftlen, " %X:%d",
4075                                    i, (lramword & 0x8000) ? 16 : 8);
4076                 ASC_PRT_NEXT();
4077
4078                 if ((wdtr_able & ADV_TID_TO_TIDMASK(i)) &&
4079                     (wdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
4080                         len = asc_prt_line(cp, leftlen, "*");
4081                         ASC_PRT_NEXT();
4082                         renegotiate = 1;
4083                 }
4084         }
4085         len = asc_prt_line(cp, leftlen, "\n");
4086         ASC_PRT_NEXT();
4087
4088         AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
4089         len = asc_prt_line(cp, leftlen, " Synchronous Enabled:");
4090         ASC_PRT_NEXT();
4091         for (i = 0; i <= ADV_MAX_TID; i++) {
4092                 if ((chip_scsi_id == i) ||
4093                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0)) {
4094                         continue;
4095                 }
4096
4097                 len = asc_prt_line(cp, leftlen, " %X:%c",
4098                                    i,
4099                                    (sdtr_able & ADV_TID_TO_TIDMASK(i)) ? 'Y' :
4100                                    'N');
4101                 ASC_PRT_NEXT();
4102         }
4103         len = asc_prt_line(cp, leftlen, "\n");
4104         ASC_PRT_NEXT();
4105
4106         AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, sdtr_done);
4107         for (i = 0; i <= ADV_MAX_TID; i++) {
4108
4109                 AdvReadWordLram(iop_base,
4110                                 ASC_MC_DEVICE_HSHK_CFG_TABLE + (2 * i),
4111                                 lramword);
4112                 lramword &= ~0x8000;
4113
4114                 if ((chip_scsi_id == i) ||
4115                     ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(i)) == 0) ||
4116                     ((sdtr_able & ADV_TID_TO_TIDMASK(i)) == 0)) {
4117                         continue;
4118                 }
4119
4120                 len = asc_prt_line(cp, leftlen, "  %X:", i);
4121                 ASC_PRT_NEXT();
4122
4123                 if ((lramword & 0x1F) == 0) {   /* Check for REQ/ACK Offset 0. */
4124                         len = asc_prt_line(cp, leftlen, " Asynchronous");
4125                         ASC_PRT_NEXT();
4126                 } else {
4127                         len =
4128                             asc_prt_line(cp, leftlen,
4129                                          " Transfer Period Factor: ");
4130                         ASC_PRT_NEXT();
4131
4132                         if ((lramword & 0x1F00) == 0x1100) {    /* 80 Mhz */
4133                                 len =
4134                                     asc_prt_line(cp, leftlen, "9 (80.0 Mhz),");
4135                                 ASC_PRT_NEXT();
4136                         } else if ((lramword & 0x1F00) == 0x1000) {     /* 40 Mhz */
4137                                 len =
4138                                     asc_prt_line(cp, leftlen, "10 (40.0 Mhz),");
4139                                 ASC_PRT_NEXT();
4140                         } else {        /* 20 Mhz or below. */
4141
4142                                 period = (((lramword >> 8) * 25) + 50) / 4;
4143
4144                                 if (period == 0) {      /* Should never happen. */
4145                                         len =
4146                                             asc_prt_line(cp, leftlen,
4147                                                          "%d (? Mhz), ");
4148                                         ASC_PRT_NEXT();
4149                                 } else {
4150                                         len = asc_prt_line(cp, leftlen,
4151                                                            "%d (%d.%d Mhz),",
4152                                                            period, 250 / period,
4153                                                            ASC_TENTHS(250,
4154                                                                       period));
4155                                         ASC_PRT_NEXT();
4156                                 }
4157                         }
4158
4159                         len = asc_prt_line(cp, leftlen, " REQ/ACK Offset: %d",
4160                                            lramword & 0x1F);
4161                         ASC_PRT_NEXT();
4162                 }
4163
4164                 if ((sdtr_done & ADV_TID_TO_TIDMASK(i)) == 0) {
4165                         len = asc_prt_line(cp, leftlen, "*\n");
4166                         renegotiate = 1;
4167                 } else {
4168                         len = asc_prt_line(cp, leftlen, "\n");
4169                 }
4170                 ASC_PRT_NEXT();
4171         }
4172
4173         if (renegotiate) {
4174                 len = asc_prt_line(cp, leftlen,
4175                                    " * = Re-negotiation pending before next command.\n");
4176                 ASC_PRT_NEXT();
4177         }
4178
4179         return totlen;
4180 }
4181
4182 /*
4183  * asc_proc_copy()
4184  *
4185  * Copy proc information to a read buffer taking into account the current
4186  * read offset in the file and the remaining space in the read buffer.
4187  */
4188 static int
4189 asc_proc_copy(off_t advoffset, off_t offset, char *curbuf, int leftlen,
4190               char *cp, int cplen)
4191 {
4192         int cnt = 0;
4193
4194         ASC_DBG3(2, "asc_proc_copy: offset %d, advoffset %d, cplen %d\n",
4195                  (unsigned)offset, (unsigned)advoffset, cplen);
4196         if (offset <= advoffset) {
4197                 /* Read offset below current offset, copy everything. */
4198                 cnt = min(cplen, leftlen);
4199                 ASC_DBG3(2, "asc_proc_copy: curbuf 0x%lx, cp 0x%lx, cnt %d\n",
4200                          (ulong)curbuf, (ulong)cp, cnt);
4201                 memcpy(curbuf, cp, cnt);
4202         } else if (offset < advoffset + cplen) {
4203                 /* Read offset within current range, partial copy. */
4204                 cnt = (advoffset + cplen) - offset;
4205                 cp = (cp + cplen) - cnt;
4206                 cnt = min(cnt, leftlen);
4207                 ASC_DBG3(2, "asc_proc_copy: curbuf 0x%lx, cp 0x%lx, cnt %d\n",
4208                          (ulong)curbuf, (ulong)cp, cnt);
4209                 memcpy(curbuf, cp, cnt);
4210         }
4211         return cnt;
4212 }
4213
4214 #ifdef ADVANSYS_STATS
4215 /*
4216  * asc_prt_board_stats()
4217  *
4218  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
4219  * cf. asc_prt_line().
4220  *
4221  * Return the number of characters copied into 'cp'. No more than
4222  * 'cplen' characters will be copied to 'cp'.
4223  */
4224 static int asc_prt_board_stats(struct Scsi_Host *shost, char *cp, int cplen)
4225 {
4226         int leftlen;
4227         int totlen;
4228         int len;
4229         struct asc_stats *s;
4230         asc_board_t *boardp;
4231
4232         leftlen = cplen;
4233         totlen = len = 0;
4234
4235         boardp = ASC_BOARDP(shost);
4236         s = &boardp->asc_stats;
4237
4238         len = asc_prt_line(cp, leftlen,
4239                            "\nLinux Driver Statistics for AdvanSys SCSI Host %d:\n",
4240                            shost->host_no);
4241         ASC_PRT_NEXT();
4242
4243         len = asc_prt_line(cp, leftlen,
4244                            " queuecommand %lu, reset %lu, biosparam %lu, interrupt %lu\n",
4245                            s->queuecommand, s->reset, s->biosparam,
4246                            s->interrupt);
4247         ASC_PRT_NEXT();
4248
4249         len = asc_prt_line(cp, leftlen,
4250                            " callback %lu, done %lu, build_error %lu, build_noreq %lu, build_nosg %lu\n",
4251                            s->callback, s->done, s->build_error,
4252                            s->adv_build_noreq, s->adv_build_nosg);
4253         ASC_PRT_NEXT();
4254
4255         len = asc_prt_line(cp, leftlen,
4256                            " exe_noerror %lu, exe_busy %lu, exe_error %lu, exe_unknown %lu\n",
4257                            s->exe_noerror, s->exe_busy, s->exe_error,
4258                            s->exe_unknown);
4259         ASC_PRT_NEXT();
4260
4261         /*
4262          * Display data transfer statistics.
4263          */
4264         if (s->cont_cnt > 0) {
4265                 len = asc_prt_line(cp, leftlen, " cont_cnt %lu, ", s->cont_cnt);
4266                 ASC_PRT_NEXT();
4267
4268                 len = asc_prt_line(cp, leftlen, "cont_xfer %lu.%01lu kb ",
4269                                    s->cont_xfer / 2,
4270                                    ASC_TENTHS(s->cont_xfer, 2));
4271                 ASC_PRT_NEXT();
4272
4273                 /* Contiguous transfer average size */
4274                 len = asc_prt_line(cp, leftlen, "avg_xfer %lu.%01lu kb\n",
4275                                    (s->cont_xfer / 2) / s->cont_cnt,
4276                                    ASC_TENTHS((s->cont_xfer / 2), s->cont_cnt));
4277                 ASC_PRT_NEXT();
4278         }
4279
4280         if (s->sg_cnt > 0) {
4281
4282                 len = asc_prt_line(cp, leftlen, " sg_cnt %lu, sg_elem %lu, ",
4283                                    s->sg_cnt, s->sg_elem);
4284                 ASC_PRT_NEXT();
4285
4286                 len = asc_prt_line(cp, leftlen, "sg_xfer %lu.%01lu kb\n",
4287                                    s->sg_xfer / 2, ASC_TENTHS(s->sg_xfer, 2));
4288                 ASC_PRT_NEXT();
4289
4290                 /* Scatter gather transfer statistics */
4291                 len = asc_prt_line(cp, leftlen, " avg_num_elem %lu.%01lu, ",
4292                                    s->sg_elem / s->sg_cnt,
4293                                    ASC_TENTHS(s->sg_elem, s->sg_cnt));
4294                 ASC_PRT_NEXT();
4295
4296                 len = asc_prt_line(cp, leftlen, "avg_elem_size %lu.%01lu kb, ",
4297                                    (s->sg_xfer / 2) / s->sg_elem,
4298                                    ASC_TENTHS((s->sg_xfer / 2), s->sg_elem));
4299                 ASC_PRT_NEXT();
4300
4301                 len = asc_prt_line(cp, leftlen, "avg_xfer_size %lu.%01lu kb\n",
4302                                    (s->sg_xfer / 2) / s->sg_cnt,
4303                                    ASC_TENTHS((s->sg_xfer / 2), s->sg_cnt));
4304                 ASC_PRT_NEXT();
4305         }
4306
4307         /*
4308          * Display request queuing statistics.
4309          */
4310         len = asc_prt_line(cp, leftlen,
4311                            " Active and Waiting Request Queues (Time Unit: %d HZ):\n",
4312                            HZ);
4313         ASC_PRT_NEXT();
4314
4315         return totlen;
4316 }
4317 #endif /* ADVANSYS_STATS */
4318
4319 /*
4320  * advansys_proc_info() - /proc/scsi/advansys/{0,1,2,3,...}
4321  *
4322  * *buffer: I/O buffer
4323  * **start: if inout == FALSE pointer into buffer where user read should start
4324  * offset: current offset into a /proc/scsi/advansys/[0...] file
4325  * length: length of buffer
4326  * hostno: Scsi_Host host_no
4327  * inout: TRUE - user is writing; FALSE - user is reading
4328  *
4329  * Return the number of bytes read from or written to a
4330  * /proc/scsi/advansys/[0...] file.
4331  *
4332  * Note: This function uses the per board buffer 'prtbuf' which is
4333  * allocated when the board is initialized in advansys_detect(). The
4334  * buffer is ASC_PRTBUF_SIZE bytes. The function asc_proc_copy() is
4335  * used to write to the buffer. The way asc_proc_copy() is written
4336  * if 'prtbuf' is too small it will not be overwritten. Instead the
4337  * user just won't get all the available statistics.
4338  */
4339 static int
4340 advansys_proc_info(struct Scsi_Host *shost, char *buffer, char **start,
4341                    off_t offset, int length, int inout)
4342 {
4343         asc_board_t *boardp;
4344         char *cp;
4345         int cplen;
4346         int cnt;
4347         int totcnt;
4348         int leftlen;
4349         char *curbuf;
4350         off_t advoffset;
4351
4352         ASC_DBG(1, "advansys_proc_info: begin\n");
4353
4354         /*
4355          * User write not supported.
4356          */
4357         if (inout == TRUE) {
4358                 return (-ENOSYS);
4359         }
4360
4361         /*
4362          * User read of /proc/scsi/advansys/[0...] file.
4363          */
4364
4365         boardp = ASC_BOARDP(shost);
4366
4367         /* Copy read data starting at the beginning of the buffer. */
4368         *start = buffer;
4369         curbuf = buffer;
4370         advoffset = 0;
4371         totcnt = 0;
4372         leftlen = length;
4373
4374         /*
4375          * Get board configuration information.
4376          *
4377          * advansys_info() returns the board string from its own static buffer.
4378          */
4379         cp = (char *)advansys_info(shost);
4380         strcat(cp, "\n");
4381         cplen = strlen(cp);
4382         /* Copy board information. */
4383         cnt = asc_proc_copy(advoffset, offset, curbuf, leftlen, cp, cplen);
4384         totcnt += cnt;
4385         leftlen -= cnt;
4386         if (leftlen == 0) {
4387                 ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4388                 return totcnt;
4389         }
4390         advoffset += cplen;
4391         curbuf += cnt;
4392
4393         /*
4394          * Display Wide Board BIOS Information.
4395          */
4396         if (ASC_WIDE_BOARD(boardp)) {
4397                 cp = boardp->prtbuf;
4398                 cplen = asc_prt_adv_bios(shost, cp, ASC_PRTBUF_SIZE);
4399                 BUG_ON(cplen >= ASC_PRTBUF_SIZE);
4400                 cnt = asc_proc_copy(advoffset, offset, curbuf, leftlen, cp,
4401                                   cplen);
4402                 totcnt += cnt;
4403                 leftlen -= cnt;
4404                 if (leftlen == 0) {
4405                         ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4406                         return totcnt;
4407                 }
4408                 advoffset += cplen;
4409                 curbuf += cnt;
4410         }
4411
4412         /*
4413          * Display driver information for each device attached to the board.
4414          */
4415         cp = boardp->prtbuf;
4416         cplen = asc_prt_board_devices(shost, cp, ASC_PRTBUF_SIZE);
4417         BUG_ON(cplen >= ASC_PRTBUF_SIZE);
4418         cnt = asc_proc_copy(advoffset, offset, curbuf, leftlen, cp, cplen);
4419         totcnt += cnt;
4420         leftlen -= cnt;
4421         if (leftlen == 0) {
4422                 ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4423                 return totcnt;
4424         }
4425         advoffset += cplen;
4426         curbuf += cnt;
4427
4428         /*
4429          * Display EEPROM configuration for the board.
4430          */
4431         cp = boardp->prtbuf;
4432         if (ASC_NARROW_BOARD(boardp)) {
4433                 cplen = asc_prt_asc_board_eeprom(shost, cp, ASC_PRTBUF_SIZE);
4434         } else {
4435                 cplen = asc_prt_adv_board_eeprom(shost, cp, ASC_PRTBUF_SIZE);
4436         }
4437         BUG_ON(cplen >= ASC_PRTBUF_SIZE);
4438         cnt = asc_proc_copy(advoffset, offset, curbuf, leftlen, cp, cplen);
4439         totcnt += cnt;
4440         leftlen -= cnt;
4441         if (leftlen == 0) {
4442                 ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4443                 return totcnt;
4444         }
4445         advoffset += cplen;
4446         curbuf += cnt;
4447
4448         /*
4449          * Display driver configuration and information for the board.
4450          */
4451         cp = boardp->prtbuf;
4452         cplen = asc_prt_driver_conf(shost, cp, ASC_PRTBUF_SIZE);
4453         BUG_ON(cplen >= ASC_PRTBUF_SIZE);
4454         cnt = asc_proc_copy(advoffset, offset, curbuf, leftlen, cp, cplen);
4455         totcnt += cnt;
4456         leftlen -= cnt;
4457         if (leftlen == 0) {
4458                 ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4459                 return totcnt;
4460         }
4461         advoffset += cplen;
4462         curbuf += cnt;
4463
4464 #ifdef ADVANSYS_STATS
4465         /*
4466          * Display driver statistics for the board.
4467          */
4468         cp = boardp->prtbuf;
4469         cplen = asc_prt_board_stats(shost, cp, ASC_PRTBUF_SIZE);
4470         BUG_ON(cplen >= ASC_PRTBUF_SIZE);
4471         cnt = asc_proc_copy(advoffset, offset, curbuf, leftlen, cp, cplen);
4472         totcnt += cnt;
4473         leftlen -= cnt;
4474         if (leftlen == 0) {
4475                 ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4476                 return totcnt;
4477         }
4478         advoffset += cplen;
4479         curbuf += cnt;
4480 #endif /* ADVANSYS_STATS */
4481
4482         /*
4483          * Display Asc Library dynamic configuration information
4484          * for the board.
4485          */
4486         cp = boardp->prtbuf;
4487         if (ASC_NARROW_BOARD(boardp)) {
4488                 cplen = asc_prt_asc_board_info(shost, cp, ASC_PRTBUF_SIZE);
4489         } else {
4490                 cplen = asc_prt_adv_board_info(shost, cp, ASC_PRTBUF_SIZE);
4491         }
4492         BUG_ON(cplen >= ASC_PRTBUF_SIZE);
4493         cnt = asc_proc_copy(advoffset, offset, curbuf, leftlen, cp, cplen);
4494         totcnt += cnt;
4495         leftlen -= cnt;
4496         if (leftlen == 0) {
4497                 ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4498                 return totcnt;
4499         }
4500         advoffset += cplen;
4501         curbuf += cnt;
4502
4503         ASC_DBG1(1, "advansys_proc_info: totcnt %d\n", totcnt);
4504
4505         return totcnt;
4506 }
4507 #endif /* CONFIG_PROC_FS */
4508
4509 static void asc_scsi_done(struct scsi_cmnd *scp)
4510 {
4511         struct asc_board *boardp = ASC_BOARDP(scp->device->host);
4512
4513         if (scp->use_sg)
4514                 dma_unmap_sg(boardp->dev,
4515                              (struct scatterlist *)scp->request_buffer,
4516                              scp->use_sg, scp->sc_data_direction);
4517         else if (scp->request_bufflen)
4518                 dma_unmap_single(boardp->dev, scp->SCp.dma_handle,
4519                                  scp->request_bufflen, scp->sc_data_direction);
4520
4521         ASC_STATS(scp->device->host, done);
4522
4523         scp->scsi_done(scp);
4524 }
4525
4526 static void AscSetBank(PortAddr iop_base, uchar bank)
4527 {
4528         uchar val;
4529
4530         val = AscGetChipControl(iop_base) &
4531             (~
4532              (CC_SINGLE_STEP | CC_TEST | CC_DIAG | CC_SCSI_RESET |
4533               CC_CHIP_RESET));
4534         if (bank == 1) {
4535                 val |= CC_BANK_ONE;
4536         } else if (bank == 2) {
4537                 val |= CC_DIAG | CC_BANK_ONE;
4538         } else {
4539                 val &= ~CC_BANK_ONE;
4540         }
4541         AscSetChipControl(iop_base, val);
4542         return;
4543 }
4544
4545 static void AscSetChipIH(PortAddr iop_base, ushort ins_code)
4546 {
4547         AscSetBank(iop_base, 1);
4548         AscWriteChipIH(iop_base, ins_code);
4549         AscSetBank(iop_base, 0);
4550         return;
4551 }
4552
4553 static int AscStartChip(PortAddr iop_base)
4554 {
4555         AscSetChipControl(iop_base, 0);
4556         if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
4557                 return (0);
4558         }
4559         return (1);
4560 }
4561
4562 static int AscStopChip(PortAddr iop_base)
4563 {
4564         uchar cc_val;
4565
4566         cc_val =
4567             AscGetChipControl(iop_base) &
4568             (~(CC_SINGLE_STEP | CC_TEST | CC_DIAG));
4569         AscSetChipControl(iop_base, (uchar)(cc_val | CC_HALT));
4570         AscSetChipIH(iop_base, INS_HALT);
4571         AscSetChipIH(iop_base, INS_RFLAG_WTM);
4572         if ((AscGetChipStatus(iop_base) & CSW_HALTED) == 0) {
4573                 return (0);
4574         }
4575         return (1);
4576 }
4577
4578 static int AscIsChipHalted(PortAddr iop_base)
4579 {
4580         if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
4581                 if ((AscGetChipControl(iop_base) & CC_HALT) != 0) {
4582                         return (1);
4583                 }
4584         }
4585         return (0);
4586 }
4587
4588 static int AscResetChipAndScsiBus(ASC_DVC_VAR *asc_dvc)
4589 {
4590         PortAddr iop_base;
4591         int i = 10;
4592
4593         iop_base = asc_dvc->iop_base;
4594         while ((AscGetChipStatus(iop_base) & CSW_SCSI_RESET_ACTIVE)
4595                && (i-- > 0)) {
4596                 mdelay(100);
4597         }
4598         AscStopChip(iop_base);
4599         AscSetChipControl(iop_base, CC_CHIP_RESET | CC_SCSI_RESET | CC_HALT);
4600         udelay(60);
4601         AscSetChipIH(iop_base, INS_RFLAG_WTM);
4602         AscSetChipIH(iop_base, INS_HALT);
4603         AscSetChipControl(iop_base, CC_CHIP_RESET | CC_HALT);
4604         AscSetChipControl(iop_base, CC_HALT);
4605         mdelay(200);
4606         AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
4607         AscSetChipStatus(iop_base, 0);
4608         return (AscIsChipHalted(iop_base));
4609 }
4610
4611 static int AscFindSignature(PortAddr iop_base)
4612 {
4613         ushort sig_word;
4614
4615         ASC_DBG2(1, "AscFindSignature: AscGetChipSignatureByte(0x%x) 0x%x\n",
4616                  iop_base, AscGetChipSignatureByte(iop_base));
4617         if (AscGetChipSignatureByte(iop_base) == (uchar)ASC_1000_ID1B) {
4618                 ASC_DBG2(1,
4619                          "AscFindSignature: AscGetChipSignatureWord(0x%x) 0x%x\n",
4620                          iop_base, AscGetChipSignatureWord(iop_base));
4621                 sig_word = AscGetChipSignatureWord(iop_base);
4622                 if ((sig_word == (ushort)ASC_1000_ID0W) ||
4623                     (sig_word == (ushort)ASC_1000_ID0W_FIX)) {
4624                         return (1);
4625                 }
4626         }
4627         return (0);
4628 }
4629
4630 static void AscEnableInterrupt(PortAddr iop_base)
4631 {
4632         ushort cfg;
4633
4634         cfg = AscGetChipCfgLsw(iop_base);
4635         AscSetChipCfgLsw(iop_base, cfg | ASC_CFG0_HOST_INT_ON);
4636         return;
4637 }
4638
4639 static void AscDisableInterrupt(PortAddr iop_base)
4640 {
4641         ushort cfg;
4642
4643         cfg = AscGetChipCfgLsw(iop_base);
4644         AscSetChipCfgLsw(iop_base, cfg & (~ASC_CFG0_HOST_INT_ON));
4645         return;
4646 }
4647
4648 static uchar AscReadLramByte(PortAddr iop_base, ushort addr)
4649 {
4650         unsigned char byte_data;
4651         unsigned short word_data;
4652
4653         if (isodd_word(addr)) {
4654                 AscSetChipLramAddr(iop_base, addr - 1);
4655                 word_data = AscGetChipLramData(iop_base);
4656                 byte_data = (word_data >> 8) & 0xFF;
4657         } else {
4658                 AscSetChipLramAddr(iop_base, addr);
4659                 word_data = AscGetChipLramData(iop_base);
4660                 byte_data = word_data & 0xFF;
4661         }
4662         return byte_data;
4663 }
4664
4665 static ushort AscReadLramWord(PortAddr iop_base, ushort addr)
4666 {
4667         ushort word_data;
4668
4669         AscSetChipLramAddr(iop_base, addr);
4670         word_data = AscGetChipLramData(iop_base);
4671         return (word_data);
4672 }
4673
4674 #if CC_VERY_LONG_SG_LIST
4675 static ASC_DCNT AscReadLramDWord(PortAddr iop_base, ushort addr)
4676 {
4677         ushort val_low, val_high;
4678         ASC_DCNT dword_data;
4679
4680         AscSetChipLramAddr(iop_base, addr);
4681         val_low = AscGetChipLramData(iop_base);
4682         val_high = AscGetChipLramData(iop_base);
4683         dword_data = ((ASC_DCNT) val_high << 16) | (ASC_DCNT) val_low;
4684         return (dword_data);
4685 }
4686 #endif /* CC_VERY_LONG_SG_LIST */
4687
4688 static void
4689 AscMemWordSetLram(PortAddr iop_base, ushort s_addr, ushort set_wval, int words)
4690 {
4691         int i;
4692
4693         AscSetChipLramAddr(iop_base, s_addr);
4694         for (i = 0; i < words; i++) {
4695                 AscSetChipLramData(iop_base, set_wval);
4696         }
4697 }
4698
4699 static void AscWriteLramWord(PortAddr iop_base, ushort addr, ushort word_val)
4700 {
4701         AscSetChipLramAddr(iop_base, addr);
4702         AscSetChipLramData(iop_base, word_val);
4703         return;
4704 }
4705
4706 static void AscWriteLramByte(PortAddr iop_base, ushort addr, uchar byte_val)
4707 {
4708         ushort word_data;
4709
4710         if (isodd_word(addr)) {
4711                 addr--;
4712                 word_data = AscReadLramWord(iop_base, addr);
4713                 word_data &= 0x00FF;
4714                 word_data |= (((ushort)byte_val << 8) & 0xFF00);
4715         } else {
4716                 word_data = AscReadLramWord(iop_base, addr);
4717                 word_data &= 0xFF00;
4718                 word_data |= ((ushort)byte_val & 0x00FF);
4719         }
4720         AscWriteLramWord(iop_base, addr, word_data);
4721         return;
4722 }
4723
4724 /*
4725  * Copy 2 bytes to LRAM.
4726  *
4727  * The source data is assumed to be in little-endian order in memory
4728  * and is maintained in little-endian order when written to LRAM.
4729  */
4730 static void
4731 AscMemWordCopyPtrToLram(PortAddr iop_base,
4732                         ushort s_addr, uchar *s_buffer, int words)
4733 {
4734         int i;
4735
4736         AscSetChipLramAddr(iop_base, s_addr);
4737         for (i = 0; i < 2 * words; i += 2) {
4738                 /*
4739                  * On a little-endian system the second argument below
4740                  * produces a little-endian ushort which is written to
4741                  * LRAM in little-endian order. On a big-endian system
4742                  * the second argument produces a big-endian ushort which
4743                  * is "transparently" byte-swapped by outpw() and written
4744                  * in little-endian order to LRAM.
4745                  */
4746                 outpw(iop_base + IOP_RAM_DATA,
4747                       ((ushort)s_buffer[i + 1] << 8) | s_buffer[i]);
4748         }
4749         return;
4750 }
4751
4752 /*
4753  * Copy 4 bytes to LRAM.
4754  *
4755  * The source data is assumed to be in little-endian order in memory
4756  * and is maintained in little-endian order when writen to LRAM.
4757  */
4758 static void
4759 AscMemDWordCopyPtrToLram(PortAddr iop_base,
4760                          ushort s_addr, uchar *s_buffer, int dwords)
4761 {
4762         int i;
4763
4764         AscSetChipLramAddr(iop_base, s_addr);
4765         for (i = 0; i < 4 * dwords; i += 4) {
4766                 outpw(iop_base + IOP_RAM_DATA, ((ushort)s_buffer[i + 1] << 8) | s_buffer[i]);   /* LSW */
4767                 outpw(iop_base + IOP_RAM_DATA, ((ushort)s_buffer[i + 3] << 8) | s_buffer[i + 2]);       /* MSW */
4768         }
4769         return;
4770 }
4771
4772 /*
4773  * Copy 2 bytes from LRAM.
4774  *
4775  * The source data is assumed to be in little-endian order in LRAM
4776  * and is maintained in little-endian order when written to memory.
4777  */
4778 static void
4779 AscMemWordCopyPtrFromLram(PortAddr iop_base,
4780                           ushort s_addr, uchar *d_buffer, int words)
4781 {
4782         int i;
4783         ushort word;
4784
4785         AscSetChipLramAddr(iop_base, s_addr);
4786         for (i = 0; i < 2 * words; i += 2) {
4787                 word = inpw(iop_base + IOP_RAM_DATA);
4788                 d_buffer[i] = word & 0xff;
4789                 d_buffer[i + 1] = (word >> 8) & 0xff;
4790         }
4791         return;
4792 }
4793
4794 static ASC_DCNT AscMemSumLramWord(PortAddr iop_base, ushort s_addr, int words)
4795 {
4796         ASC_DCNT sum;
4797         int i;
4798
4799         sum = 0L;
4800         for (i = 0; i < words; i++, s_addr += 2) {
4801                 sum += AscReadLramWord(iop_base, s_addr);
4802         }
4803         return (sum);
4804 }
4805
4806 static ushort AscInitLram(ASC_DVC_VAR *asc_dvc)
4807 {
4808         uchar i;
4809         ushort s_addr;
4810         PortAddr iop_base;
4811         ushort warn_code;
4812
4813         iop_base = asc_dvc->iop_base;
4814         warn_code = 0;
4815         AscMemWordSetLram(iop_base, ASC_QADR_BEG, 0,
4816                           (ushort)(((int)(asc_dvc->max_total_qng + 2 + 1) *
4817                                     64) >> 1));
4818         i = ASC_MIN_ACTIVE_QNO;
4819         s_addr = ASC_QADR_BEG + ASC_QBLK_SIZE;
4820         AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
4821                          (uchar)(i + 1));
4822         AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
4823                          (uchar)(asc_dvc->max_total_qng));
4824         AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
4825                          (uchar)i);
4826         i++;
4827         s_addr += ASC_QBLK_SIZE;
4828         for (; i < asc_dvc->max_total_qng; i++, s_addr += ASC_QBLK_SIZE) {
4829                 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
4830                                  (uchar)(i + 1));
4831                 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
4832                                  (uchar)(i - 1));
4833                 AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
4834                                  (uchar)i);
4835         }
4836         AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_FWD),
4837                          (uchar)ASC_QLINK_END);
4838         AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_BWD),
4839                          (uchar)(asc_dvc->max_total_qng - 1));
4840         AscWriteLramByte(iop_base, (ushort)(s_addr + ASC_SCSIQ_B_QNO),
4841                          (uchar)asc_dvc->max_total_qng);
4842         i++;
4843         s_addr += ASC_QBLK_SIZE;
4844         for (; i <= (uchar)(asc_dvc->max_total_qng + 3);
4845              i++, s_addr += ASC_QBLK_SIZE) {
4846                 AscWriteLramByte(iop_base,
4847                                  (ushort)(s_addr + (ushort)ASC_SCSIQ_B_FWD), i);
4848                 AscWriteLramByte(iop_base,
4849                                  (ushort)(s_addr + (ushort)ASC_SCSIQ_B_BWD), i);
4850                 AscWriteLramByte(iop_base,
4851                                  (ushort)(s_addr + (ushort)ASC_SCSIQ_B_QNO), i);
4852         }
4853         return warn_code;
4854 }
4855
4856 static ASC_DCNT
4857 AscLoadMicroCode(PortAddr iop_base,
4858                  ushort s_addr, uchar *mcode_buf, ushort mcode_size)
4859 {
4860         ASC_DCNT chksum;
4861         ushort mcode_word_size;
4862         ushort mcode_chksum;
4863
4864         /* Write the microcode buffer starting at LRAM address 0. */
4865         mcode_word_size = (ushort)(mcode_size >> 1);
4866         AscMemWordSetLram(iop_base, s_addr, 0, mcode_word_size);
4867         AscMemWordCopyPtrToLram(iop_base, s_addr, mcode_buf, mcode_word_size);
4868
4869         chksum = AscMemSumLramWord(iop_base, s_addr, mcode_word_size);
4870         ASC_DBG1(1, "AscLoadMicroCode: chksum 0x%lx\n", (ulong)chksum);
4871         mcode_chksum = (ushort)AscMemSumLramWord(iop_base,
4872                                                  (ushort)ASC_CODE_SEC_BEG,
4873                                                  (ushort)((mcode_size -
4874                                                            s_addr - (ushort)
4875                                                            ASC_CODE_SEC_BEG) /
4876                                                           2));
4877         ASC_DBG1(1, "AscLoadMicroCode: mcode_chksum 0x%lx\n",
4878                  (ulong)mcode_chksum);
4879         AscWriteLramWord(iop_base, ASCV_MCODE_CHKSUM_W, mcode_chksum);
4880         AscWriteLramWord(iop_base, ASCV_MCODE_SIZE_W, mcode_size);
4881         return (chksum);
4882 }
4883
4884 /* Microcode buffer is kept after initialization for error recovery. */
4885 static uchar _asc_mcode_buf[] = {
4886         0x01, 0x03, 0x01, 0x19, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4887         0x00, 0x00, 0x00, 0x00, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, 0x0F,
4888         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4889         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4890         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4891         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC3, 0x12, 0x0D, 0x05,
4892         0x01, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4893         0xFF, 0x80, 0xFF, 0xFF, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4894         0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0xFF,
4895         0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00,
4896         0x00, 0x00, 0xE4, 0x88, 0x00, 0x00, 0x00, 0x00, 0x80, 0x73, 0x48, 0x04,
4897         0x36, 0x00, 0x00, 0xA2, 0xC2, 0x00, 0x80, 0x73, 0x03, 0x23, 0x36, 0x40,
4898         0xB6, 0x00, 0x36, 0x00, 0x05, 0xD6, 0x0C, 0xD2, 0x12, 0xDA, 0x00, 0xA2,
4899         0xC2, 0x00, 0x92, 0x80, 0x1E, 0x98, 0x50, 0x00, 0xF5, 0x00, 0x48, 0x98,
4900         0xDF, 0x23, 0x36, 0x60, 0xB6, 0x00, 0x92, 0x80, 0x4F, 0x00, 0xF5, 0x00,
4901         0x48, 0x98, 0xEF, 0x23, 0x36, 0x60, 0xB6, 0x00, 0x92, 0x80, 0x80, 0x62,
4902         0x92, 0x80, 0x00, 0x46, 0x15, 0xEE, 0x13, 0xEA, 0x02, 0x01, 0x09, 0xD8,
4903         0xCD, 0x04, 0x4D, 0x00, 0x00, 0xA3, 0xD6, 0x00, 0xA6, 0x97, 0x7F, 0x23,
4904         0x04, 0x61, 0x84, 0x01, 0xE6, 0x84, 0xD2, 0xC1, 0x80, 0x73, 0xCD, 0x04,
4905         0x4D, 0x00, 0x00, 0xA3, 0xDA, 0x01, 0xA6, 0x97, 0xC6, 0x81, 0xC2, 0x88,
4906         0x80, 0x73, 0x80, 0x77, 0x00, 0x01, 0x01, 0xA1, 0xFE, 0x00, 0x4F, 0x00,
4907         0x84, 0x97, 0x07, 0xA6, 0x08, 0x01, 0x00, 0x33, 0x03, 0x00, 0xC2, 0x88,
4908         0x03, 0x03, 0x01, 0xDE, 0xC2, 0x88, 0xCE, 0x00, 0x69, 0x60, 0xCE, 0x00,
4909         0x02, 0x03, 0x4A, 0x60, 0x00, 0xA2, 0x78, 0x01, 0x80, 0x63, 0x07, 0xA6,
4910         0x24, 0x01, 0x78, 0x81, 0x03, 0x03, 0x80, 0x63, 0xE2, 0x00, 0x07, 0xA6,
4911         0x34, 0x01, 0x00, 0x33, 0x04, 0x00, 0xC2, 0x88, 0x03, 0x07, 0x02, 0x01,
4912         0x04, 0xCA, 0x0D, 0x23, 0x68, 0x98, 0x4D, 0x04, 0x04, 0x85, 0x05, 0xD8,
4913         0x0D, 0x23, 0x68, 0x98, 0xCD, 0x04, 0x15, 0x23, 0xF8, 0x88, 0xFB, 0x23,
4914         0x02, 0x61, 0x82, 0x01, 0x80, 0x63, 0x02, 0x03, 0x06, 0xA3, 0x62, 0x01,
4915         0x00, 0x33, 0x0A, 0x00, 0xC2, 0x88, 0x4E, 0x00, 0x07, 0xA3, 0x6E, 0x01,
4916         0x00, 0x33, 0x0B, 0x00, 0xC2, 0x88, 0xCD, 0x04, 0x36, 0x2D, 0x00, 0x33,
4917         0x1A, 0x00, 0xC2, 0x88, 0x50, 0x04, 0x88, 0x81, 0x06, 0xAB, 0x82, 0x01,
4918         0x88, 0x81, 0x4E, 0x00, 0x07, 0xA3, 0x92, 0x01, 0x50, 0x00, 0x00, 0xA3,
4919         0x3C, 0x01, 0x00, 0x05, 0x7C, 0x81, 0x46, 0x97, 0x02, 0x01, 0x05, 0xC6,
4920         0x04, 0x23, 0xA0, 0x01, 0x15, 0x23, 0xA1, 0x01, 0xBE, 0x81, 0xFD, 0x23,
4921         0x02, 0x61, 0x82, 0x01, 0x0A, 0xDA, 0x4A, 0x00, 0x06, 0x61, 0x00, 0xA0,
4922         0xB4, 0x01, 0x80, 0x63, 0xCD, 0x04, 0x36, 0x2D, 0x00, 0x33, 0x1B, 0x00,
4923         0xC2, 0x88, 0x06, 0x23, 0x68, 0x98, 0xCD, 0x04, 0xE6, 0x84, 0x06, 0x01,
4924         0x00, 0xA2, 0xD4, 0x01, 0x57, 0x60, 0x00, 0xA0, 0xDA, 0x01, 0xE6, 0x84,
4925         0x80, 0x23, 0xA0, 0x01, 0xE6, 0x84, 0x80, 0x73, 0x4B, 0x00, 0x06, 0x61,
4926         0x00, 0xA2, 0x00, 0x02, 0x04, 0x01, 0x0C, 0xDE, 0x02, 0x01, 0x03, 0xCC,
4927         0x4F, 0x00, 0x84, 0x97, 0xFC, 0x81, 0x08, 0x23, 0x02, 0x41, 0x82, 0x01,
4928         0x4F, 0x00, 0x62, 0x97, 0x48, 0x04, 0x84, 0x80, 0xF0, 0x97, 0x00, 0x46,
4929         0x56, 0x00, 0x03, 0xC0, 0x01, 0x23, 0xE8, 0x00, 0x81, 0x73, 0x06, 0x29,
4930         0x03, 0x42, 0x06, 0xE2, 0x03, 0xEE, 0x6B, 0xEB, 0x11, 0x23, 0xF8, 0x88,
4931         0x04, 0x98, 0xF0, 0x80, 0x80, 0x73, 0x80, 0x77, 0x07, 0xA4, 0x2A, 0x02,
4932         0x7C, 0x95, 0x06, 0xA6, 0x34, 0x02, 0x03, 0xA6, 0x4C, 0x04, 0x46, 0x82,
4933         0x04, 0x01, 0x03, 0xD8, 0xB4, 0x98, 0x6A, 0x96, 0x46, 0x82, 0xFE, 0x95,
4934         0x80, 0x67, 0x83, 0x03, 0x80, 0x63, 0xB6, 0x2D, 0x02, 0xA6, 0x6C, 0x02,
4935         0x07, 0xA6, 0x5A, 0x02, 0x06, 0xA6, 0x5E, 0x02, 0x03, 0xA6, 0x62, 0x02,
4936         0xC2, 0x88, 0x7C, 0x95, 0x48, 0x82, 0x60, 0x96, 0x48, 0x82, 0x04, 0x23,
4937         0xA0, 0x01, 0x14, 0x23, 0xA1, 0x01, 0x3C, 0x84, 0x04, 0x01, 0x0C, 0xDC,
4938         0xE0, 0x23, 0x25, 0x61, 0xEF, 0x00, 0x14, 0x01, 0x4F, 0x04, 0xA8, 0x01,
4939         0x6F, 0x00, 0xA5, 0x01, 0x03, 0x23, 0xA4, 0x01, 0x06, 0x23, 0x9C, 0x01,
4940         0x24, 0x2B, 0x1C, 0x01, 0x02, 0xA6, 0xAA, 0x02, 0x07, 0xA6, 0x5A, 0x02,
4941         0x06, 0xA6, 0x5E, 0x02, 0x03, 0xA6, 0x20, 0x04, 0x01, 0xA6, 0xB4, 0x02,
4942         0x00, 0xA6, 0xB4, 0x02, 0x00, 0x33, 0x12, 0x00, 0xC2, 0x88, 0x00, 0x0E,
4943         0x80, 0x63, 0x00, 0x43, 0x00, 0xA0, 0x8C, 0x02, 0x4D, 0x04, 0x04, 0x01,
4944         0x0B, 0xDC, 0xE7, 0x23, 0x04, 0x61, 0x84, 0x01, 0x10, 0x31, 0x12, 0x35,
4945         0x14, 0x01, 0xEC, 0x00, 0x6C, 0x38, 0x00, 0x3F, 0x00, 0x00, 0xEA, 0x82,
4946         0x18, 0x23, 0x04, 0x61, 0x18, 0xA0, 0xE2, 0x02, 0x04, 0x01, 0xA2, 0xC8,
4947         0x00, 0x33, 0x1F, 0x00, 0xC2, 0x88, 0x08, 0x31, 0x0A, 0x35, 0x0C, 0x39,
4948         0x0E, 0x3D, 0x7E, 0x98, 0xB6, 0x2D, 0x01, 0xA6, 0x14, 0x03, 0x00, 0xA6,
4949         0x14, 0x03, 0x07, 0xA6, 0x0C, 0x03, 0x06, 0xA6, 0x10, 0x03, 0x03, 0xA6,
4950         0x20, 0x04, 0x02, 0xA6, 0x6C, 0x02, 0x00, 0x33, 0x33, 0x00, 0xC2, 0x88,
4951         0x7C, 0x95, 0xEE, 0x82, 0x60, 0x96, 0xEE, 0x82, 0x82, 0x98, 0x80, 0x42,
4952         0x7E, 0x98, 0x64, 0xE4, 0x04, 0x01, 0x2D, 0xC8, 0x31, 0x05, 0x07, 0x01,
4953         0x00, 0xA2, 0x54, 0x03, 0x00, 0x43, 0x87, 0x01, 0x05, 0x05, 0x86, 0x98,
4954         0x7E, 0x98, 0x00, 0xA6, 0x16, 0x03, 0x07, 0xA6, 0x4C, 0x03, 0x03, 0xA6,
4955         0x3C, 0x04, 0x06, 0xA6, 0x50, 0x03, 0x01, 0xA6, 0x16, 0x03, 0x00, 0x33,
4956         0x25, 0x00, 0xC2, 0x88, 0x7C, 0x95, 0x32, 0x83, 0x60, 0x96, 0x32, 0x83,
4957         0x04, 0x01, 0x10, 0xCE, 0x07, 0xC8, 0x05, 0x05, 0xEB, 0x04, 0x00, 0x33,
4958         0x00, 0x20, 0xC0, 0x20, 0x81, 0x62, 0x72, 0x83, 0x00, 0x01, 0x05, 0x05,
4959         0xFF, 0xA2, 0x7A, 0x03, 0xB1, 0x01, 0x08, 0x23, 0xB2, 0x01, 0x2E, 0x83,
4960         0x05, 0x05, 0x15, 0x01, 0x00, 0xA2, 0x9A, 0x03, 0xEC, 0x00, 0x6E, 0x00,
4961         0x95, 0x01, 0x6C, 0x38, 0x00, 0x3F, 0x00, 0x00, 0x01, 0xA6, 0x96, 0x03,
4962         0x00, 0xA6, 0x96, 0x03, 0x10, 0x84, 0x80, 0x42, 0x7E, 0x98, 0x01, 0xA6,
4963         0xA4, 0x03, 0x00, 0xA6, 0xBC, 0x03, 0x10, 0x84, 0xA8, 0x98, 0x80, 0x42,
4964         0x01, 0xA6, 0xA4, 0x03, 0x07, 0xA6, 0xB2, 0x03, 0xD4, 0x83, 0x7C, 0x95,
4965         0xA8, 0x83, 0x00, 0x33, 0x2F, 0x00, 0xC2, 0x88, 0xA8, 0x98, 0x80, 0x42,
4966         0x00, 0xA6, 0xBC, 0x03, 0x07, 0xA6, 0xCA, 0x03, 0xD4, 0x83, 0x7C, 0x95,
4967         0xC0, 0x83, 0x00, 0x33, 0x26, 0x00, 0xC2, 0x88, 0x38, 0x2B, 0x80, 0x32,
4968         0x80, 0x36, 0x04, 0x23, 0xA0, 0x01, 0x12, 0x23, 0xA1, 0x01, 0x10, 0x84,
4969         0x07, 0xF0, 0x06, 0xA4, 0xF4, 0x03, 0x80, 0x6B, 0x80, 0x67, 0x05, 0x23,
4970         0x83, 0x03, 0x80, 0x63, 0x03, 0xA6, 0x0E, 0x04, 0x07, 0xA6, 0x06, 0x04,
4971         0x06, 0xA6, 0x0A, 0x04, 0x00, 0x33, 0x17, 0x00, 0xC2, 0x88, 0x7C, 0x95,
4972         0xF4, 0x83, 0x60, 0x96, 0xF4, 0x83, 0x20, 0x84, 0x07, 0xF0, 0x06, 0xA4,
4973         0x20, 0x04, 0x80, 0x6B, 0x80, 0x67, 0x05, 0x23, 0x83, 0x03, 0x80, 0x63,
4974         0xB6, 0x2D, 0x03, 0xA6, 0x3C, 0x04, 0x07, 0xA6, 0x34, 0x04, 0x06, 0xA6,
4975         0x38, 0x04, 0x00, 0x33, 0x30, 0x00, 0xC2, 0x88, 0x7C, 0x95, 0x20, 0x84,
4976         0x60, 0x96, 0x20, 0x84, 0x1D, 0x01, 0x06, 0xCC, 0x00, 0x33, 0x00, 0x84,
4977         0xC0, 0x20, 0x00, 0x23, 0xEA, 0x00, 0x81, 0x62, 0xA2, 0x0D, 0x80, 0x63,
4978         0x07, 0xA6, 0x5A, 0x04, 0x00, 0x33, 0x18, 0x00, 0xC2, 0x88, 0x03, 0x03,
4979         0x80, 0x63, 0xA3, 0x01, 0x07, 0xA4, 0x64, 0x04, 0x23, 0x01, 0x00, 0xA2,
4980         0x86, 0x04, 0x0A, 0xA0, 0x76, 0x04, 0xE0, 0x00, 0x00, 0x33, 0x1D, 0x00,
4981         0xC2, 0x88, 0x0B, 0xA0, 0x82, 0x04, 0xE0, 0x00, 0x00, 0x33, 0x1E, 0x00,
4982         0xC2, 0x88, 0x42, 0x23, 0xF8, 0x88, 0x00, 0x23, 0x22, 0xA3, 0xE6, 0x04,
4983         0x08, 0x23, 0x22, 0xA3, 0xA2, 0x04, 0x28, 0x23, 0x22, 0xA3, 0xAE, 0x04,
4984         0x02, 0x23, 0x22, 0xA3, 0xC4, 0x04, 0x42, 0x23, 0xF8, 0x88, 0x4A, 0x00,
4985         0x06, 0x61, 0x00, 0xA0, 0xAE, 0x04, 0x45, 0x23, 0xF8, 0x88, 0x04, 0x98,
4986         0x00, 0xA2, 0xC0, 0x04, 0xB4, 0x98, 0x00, 0x33, 0x00, 0x82, 0xC0, 0x20,
4987         0x81, 0x62, 0xE8, 0x81, 0x47, 0x23, 0xF8, 0x88, 0x04, 0x01, 0x0B, 0xDE,
4988         0x04, 0x98, 0xB4, 0x98, 0x00, 0x33, 0x00, 0x81, 0xC0, 0x20, 0x81, 0x62,
4989         0x14, 0x01, 0x00, 0xA0, 0x00, 0x02, 0x43, 0x23, 0xF8, 0x88, 0x04, 0x23,
4990         0xA0, 0x01, 0x44, 0x23, 0xA1, 0x01, 0x80, 0x73, 0x4D, 0x00, 0x03, 0xA3,
4991         0xF4, 0x04, 0x00, 0x33, 0x27, 0x00, 0xC2, 0x88, 0x04, 0x01, 0x04, 0xDC,
4992         0x02, 0x23, 0xA2, 0x01, 0x04, 0x23, 0xA0, 0x01, 0x04, 0x98, 0x26, 0x95,
4993         0x4B, 0x00, 0xF6, 0x00, 0x4F, 0x04, 0x4F, 0x00, 0x00, 0xA3, 0x22, 0x05,
4994         0x00, 0x05, 0x76, 0x00, 0x06, 0x61, 0x00, 0xA2, 0x1C, 0x05, 0x0A, 0x85,
4995         0x46, 0x97, 0xCD, 0x04, 0x24, 0x85, 0x48, 0x04, 0x84, 0x80, 0x02, 0x01,
4996         0x03, 0xDA, 0x80, 0x23, 0x82, 0x01, 0x34, 0x85, 0x02, 0x23, 0xA0, 0x01,
4997         0x4A, 0x00, 0x06, 0x61, 0x00, 0xA2, 0x40, 0x05, 0x1D, 0x01, 0x04, 0xD6,
4998         0xFF, 0x23, 0x86, 0x41, 0x4B, 0x60, 0xCB, 0x00, 0xFF, 0x23, 0x80, 0x01,
4999         0x49, 0x00, 0x81, 0x01, 0x04, 0x01, 0x02, 0xC8, 0x30, 0x01, 0x80, 0x01,
5000         0xF7, 0x04, 0x03, 0x01, 0x49, 0x04, 0x80, 0x01, 0xC9, 0x00, 0x00, 0x05,
5001         0x00, 0x01, 0xFF, 0xA0, 0x60, 0x05, 0x77, 0x04, 0x01, 0x23, 0xEA, 0x00,
5002         0x5D, 0x00, 0xFE, 0xC7, 0x00, 0x62, 0x00, 0x23, 0xEA, 0x00, 0x00, 0x63,
5003         0x07, 0xA4, 0xF8, 0x05, 0x03, 0x03, 0x02, 0xA0, 0x8E, 0x05, 0xF4, 0x85,
5004         0x00, 0x33, 0x2D, 0x00, 0xC2, 0x88, 0x04, 0xA0, 0xB8, 0x05, 0x80, 0x63,
5005         0x00, 0x23, 0xDF, 0x00, 0x4A, 0x00, 0x06, 0x61, 0x00, 0xA2, 0xA4, 0x05,
5006         0x1D, 0x01, 0x06, 0xD6, 0x02, 0x23, 0x02, 0x41, 0x82, 0x01, 0x50, 0x00,
5007         0x62, 0x97, 0x04, 0x85, 0x04, 0x23, 0x02, 0x41, 0x82, 0x01, 0x04, 0x85,
5008         0x08, 0xA0, 0xBE, 0x05, 0xF4, 0x85, 0x03, 0xA0, 0xC4, 0x05, 0xF4, 0x85,
5009         0x01, 0xA0, 0xCE, 0x05, 0x88, 0x00, 0x80, 0x63, 0xCC, 0x86, 0x07, 0xA0,
5010         0xEE, 0x05, 0x5F, 0x00, 0x00, 0x2B, 0xDF, 0x08, 0x00, 0xA2, 0xE6, 0x05,
5011         0x80, 0x67, 0x80, 0x63, 0x01, 0xA2, 0x7A, 0x06, 0x7C, 0x85, 0x06, 0x23,
5012         0x68, 0x98, 0x48, 0x23, 0xF8, 0x88, 0x07, 0x23, 0x80, 0x00, 0x06, 0x87,
5013         0x80, 0x63, 0x7C, 0x85, 0x00, 0x23, 0xDF, 0x00, 0x00, 0x63, 0x4A, 0x00,
5014         0x06, 0x61, 0x00, 0xA2, 0x36, 0x06, 0x1D, 0x01, 0x16, 0xD4, 0xC0, 0x23,
5015         0x07, 0x41, 0x83, 0x03, 0x80, 0x63, 0x06, 0xA6, 0x1C, 0x06, 0x00, 0x33,
5016         0x37, 0x00, 0xC2, 0x88, 0x1D, 0x01, 0x01, 0xD6, 0x20, 0x23, 0x63, 0x60,
5017         0x83, 0x03, 0x80, 0x63, 0x02, 0x23, 0xDF, 0x00, 0x07, 0xA6, 0x7C, 0x05,
5018         0xEF, 0x04, 0x6F, 0x00, 0x00, 0x63, 0x4B, 0x00, 0x06, 0x41, 0xCB, 0x00,
5019         0x52, 0x00, 0x06, 0x61, 0x00, 0xA2, 0x4E, 0x06, 0x1D, 0x01, 0x03, 0xCA,
5020         0xC0, 0x23, 0x07, 0x41, 0x00, 0x63, 0x1D, 0x01, 0x04, 0xCC, 0x00, 0x33,
5021         0x00, 0x83, 0xC0, 0x20, 0x81, 0x62, 0x80, 0x23, 0x07, 0x41, 0x00, 0x63,
5022         0x80, 0x67, 0x08, 0x23, 0x83, 0x03, 0x80, 0x63, 0x00, 0x63, 0x01, 0x23,
5023         0xDF, 0x00, 0x06, 0xA6, 0x84, 0x06, 0x07, 0xA6, 0x7C, 0x05, 0x80, 0x67,
5024         0x80, 0x63, 0x00, 0x33, 0x00, 0x40, 0xC0, 0x20, 0x81, 0x62, 0x00, 0x63,
5025         0x00, 0x00, 0xFE, 0x95, 0x83, 0x03, 0x80, 0x63, 0x06, 0xA6, 0x94, 0x06,
5026         0x07, 0xA6, 0x7C, 0x05, 0x00, 0x00, 0x01, 0xA0, 0x14, 0x07, 0x00, 0x2B,
5027         0x40, 0x0E, 0x80, 0x63, 0x01, 0x00, 0x06, 0xA6, 0xAA, 0x06, 0x07, 0xA6,
5028         0x7C, 0x05, 0x40, 0x0E, 0x80, 0x63, 0x00, 0x43, 0x00, 0xA0, 0xA2, 0x06,
5029         0x06, 0xA6, 0xBC, 0x06, 0x07, 0xA6, 0x7C, 0x05, 0x80, 0x67, 0x40, 0x0E,
5030         0x80, 0x63, 0x07, 0xA6, 0x7C, 0x05, 0x00, 0x23, 0xDF, 0x00, 0x00, 0x63,
5031         0x07, 0xA6, 0xD6, 0x06, 0x00, 0x33, 0x2A, 0x00, 0xC2, 0x88, 0x03, 0x03,
5032         0x80, 0x63, 0x89, 0x00, 0x0A, 0x2B, 0x07, 0xA6, 0xE8, 0x06, 0x00, 0x33,
5033         0x29, 0x00, 0xC2, 0x88, 0x00, 0x43, 0x00, 0xA2, 0xF4, 0x06, 0xC0, 0x0E,
5034         0x80, 0x63, 0xDE, 0x86, 0xC0, 0x0E, 0x00, 0x33, 0x00, 0x80, 0xC0, 0x20,
5035         0x81, 0x62, 0x04, 0x01, 0x02, 0xDA, 0x80, 0x63, 0x7C, 0x85, 0x80, 0x7B,
5036         0x80, 0x63, 0x06, 0xA6, 0x8C, 0x06, 0x00, 0x33, 0x2C, 0x00, 0xC2, 0x88,
5037         0x0C, 0xA2, 0x2E, 0x07, 0xFE, 0x95, 0x83, 0x03, 0x80, 0x63, 0x06, 0xA6,
5038         0x2C, 0x07, 0x07, 0xA6, 0x7C, 0x05, 0x00, 0x33, 0x3D, 0x00, 0xC2, 0x88,
5039         0x00, 0x00, 0x80, 0x67, 0x83, 0x03, 0x80, 0x63, 0x0C, 0xA0, 0x44, 0x07,
5040         0x07, 0xA6, 0x7C, 0x05, 0xBF, 0x23, 0x04, 0x61, 0x84, 0x01, 0xE6, 0x84,
5041         0x00, 0x63, 0xF0, 0x04, 0x01, 0x01, 0xF1, 0x00, 0x00, 0x01, 0xF2, 0x00,
5042         0x01, 0x05, 0x80, 0x01, 0x72, 0x04, 0x71, 0x00, 0x81, 0x01, 0x70, 0x04,
5043         0x80, 0x05, 0x81, 0x05, 0x00, 0x63, 0xF0, 0x04, 0xF2, 0x00, 0x72, 0x04,
5044         0x01, 0x01, 0xF1, 0x00, 0x70, 0x00, 0x81, 0x01, 0x70, 0x04, 0x71, 0x00,
5045         0x81, 0x01, 0x72, 0x00, 0x80, 0x01, 0x71, 0x04, 0x70, 0x00, 0x80, 0x01,
5046         0x70, 0x04, 0x00, 0x63, 0xF0, 0x04, 0xF2, 0x00, 0x72, 0x04, 0x00, 0x01,
5047         0xF1, 0x00, 0x70, 0x00, 0x80, 0x01, 0x70, 0x04, 0x71, 0x00, 0x80, 0x01,
5048         0x72, 0x00, 0x81, 0x01, 0x71, 0x04, 0x70, 0x00, 0x81, 0x01, 0x70, 0x04,
5049         0x00, 0x63, 0x00, 0x23, 0xB3, 0x01, 0x83, 0x05, 0xA3, 0x01, 0xA2, 0x01,
5050         0xA1, 0x01, 0x01, 0x23, 0xA0, 0x01, 0x00, 0x01, 0xC8, 0x00, 0x03, 0xA1,
5051         0xC4, 0x07, 0x00, 0x33, 0x07, 0x00, 0xC2, 0x88, 0x80, 0x05, 0x81, 0x05,
5052         0x04, 0x01, 0x11, 0xC8, 0x48, 0x00, 0xB0, 0x01, 0xB1, 0x01, 0x08, 0x23,
5053         0xB2, 0x01, 0x05, 0x01, 0x48, 0x04, 0x00, 0x43, 0x00, 0xA2, 0xE4, 0x07,
5054         0x00, 0x05, 0xDA, 0x87, 0x00, 0x01, 0xC8, 0x00, 0xFF, 0x23, 0x80, 0x01,
5055         0x05, 0x05, 0x00, 0x63, 0xF7, 0x04, 0x1A, 0x09, 0xF6, 0x08, 0x6E, 0x04,
5056         0x00, 0x02, 0x80, 0x43, 0x76, 0x08, 0x80, 0x02, 0x77, 0x04, 0x00, 0x63,
5057         0xF7, 0x04, 0x1A, 0x09, 0xF6, 0x08, 0x6E, 0x04, 0x00, 0x02, 0x00, 0xA0,
5058         0x14, 0x08, 0x16, 0x88, 0x00, 0x43, 0x76, 0x08, 0x80, 0x02, 0x77, 0x04,
5059         0x00, 0x63, 0xF3, 0x04, 0x00, 0x23, 0xF4, 0x00, 0x74, 0x00, 0x80, 0x43,
5060         0xF4, 0x00, 0xCF, 0x40, 0x00, 0xA2, 0x44, 0x08, 0x74, 0x04, 0x02, 0x01,
5061         0xF7, 0xC9, 0xF6, 0xD9, 0x00, 0x01, 0x01, 0xA1, 0x24, 0x08, 0x04, 0x98,
5062         0x26, 0x95, 0x24, 0x88, 0x73, 0x04, 0x00, 0x63, 0xF3, 0x04, 0x75, 0x04,
5063         0x5A, 0x88, 0x02, 0x01, 0x04, 0xD8, 0x46, 0x97, 0x04, 0x98, 0x26, 0x95,
5064         0x4A, 0x88, 0x75, 0x00, 0x00, 0xA3, 0x64, 0x08, 0x00, 0x05, 0x4E, 0x88,
5065         0x73, 0x04, 0x00, 0x63, 0x80, 0x7B, 0x80, 0x63, 0x06, 0xA6, 0x76, 0x08,
5066         0x00, 0x33, 0x3E, 0x00, 0xC2, 0x88, 0x80, 0x67, 0x83, 0x03, 0x80, 0x63,
5067         0x00, 0x63, 0x38, 0x2B, 0x9C, 0x88, 0x38, 0x2B, 0x92, 0x88, 0x32, 0x09,
5068         0x31, 0x05, 0x92, 0x98, 0x05, 0x05, 0xB2, 0x09, 0x00, 0x63, 0x00, 0x32,
5069         0x00, 0x36, 0x00, 0x3A, 0x00, 0x3E, 0x00, 0x63, 0x80, 0x32, 0x80, 0x36,
5070         0x80, 0x3A, 0x80, 0x3E, 0xB4, 0x3D, 0x00, 0x63, 0x38, 0x2B, 0x40, 0x32,
5071         0x40, 0x36, 0x40, 0x3A, 0x40, 0x3E, 0x00, 0x63, 0x5A, 0x20, 0xC9, 0x40,
5072         0x00, 0xA0, 0xB4, 0x08, 0x5D, 0x00, 0xFE, 0xC3, 0x00, 0x63, 0x80, 0x73,
5073         0xE6, 0x20, 0x02, 0x23, 0xE8, 0x00, 0x82, 0x73, 0xFF, 0xFD, 0x80, 0x73,
5074         0x13, 0x23, 0xF8, 0x88, 0x66, 0x20, 0xC0, 0x20, 0x04, 0x23, 0xA0, 0x01,
5075         0xA1, 0x23, 0xA1, 0x01, 0x81, 0x62, 0xE2, 0x88, 0x80, 0x73, 0x80, 0x77,
5076         0x68, 0x00, 0x00, 0xA2, 0x80, 0x00, 0x03, 0xC2, 0xF1, 0xC7, 0x41, 0x23,
5077         0xF8, 0x88, 0x11, 0x23, 0xA1, 0x01, 0x04, 0x23, 0xA0, 0x01, 0xE6, 0x84,
5078 };
5079
5080 static unsigned short _asc_mcode_size = sizeof(_asc_mcode_buf);
5081 static ADV_DCNT _asc_mcode_chksum = 0x012C453FUL;
5082
5083 /* Microcode buffer is kept after initialization for error recovery. */
5084 static unsigned char _adv_asc3550_buf[] = {
5085         0x00, 0x00, 0x00, 0xf2, 0x00, 0xf0, 0x00, 0x16, 0x18, 0xe4, 0x00, 0xfc,
5086         0x01, 0x00, 0x48, 0xe4, 0xbe, 0x18, 0x18, 0x80, 0x03, 0xf6, 0x02, 0x00,
5087         0x00, 0xfa, 0xff, 0xff, 0x28, 0x0e, 0x9e, 0xe7, 0xff, 0x00, 0x82, 0xe7,
5088         0x00, 0xea, 0x00, 0xf6, 0x01, 0xe6, 0x09, 0xe7, 0x55, 0xf0, 0x01, 0xf6,
5089         0x01, 0xfa, 0x08, 0x00, 0x03, 0x00, 0x04, 0x00, 0x18, 0xf4, 0x10, 0x00,
5090         0x00, 0xec, 0x85, 0xf0, 0xbc, 0x00, 0xd5, 0xf0, 0x8e, 0x0c, 0x38, 0x54,
5091         0x00, 0xe6, 0x1e, 0xf0, 0x86, 0xf0, 0xb4, 0x00, 0x98, 0x57, 0xd0, 0x01,
5092         0x0c, 0x1c, 0x3e, 0x1c, 0x0c, 0x00, 0xbb, 0x00, 0xaa, 0x18, 0x02, 0x80,
5093         0x32, 0xf0, 0x01, 0xfc, 0x88, 0x0c, 0xc6, 0x12, 0x02, 0x13, 0x18, 0x40,
5094         0x00, 0x57, 0x01, 0xea, 0x3c, 0x00, 0x6c, 0x01, 0x6e, 0x01, 0x04, 0x12,
5095         0x3e, 0x57, 0x00, 0x80, 0x03, 0xe6, 0xb6, 0x00, 0xc0, 0x00, 0x01, 0x01,
5096         0x3e, 0x01, 0xda, 0x0f, 0x22, 0x10, 0x08, 0x12, 0x02, 0x4a, 0xb9, 0x54,
5097         0x03, 0x58, 0x1b, 0x80, 0x30, 0xe4, 0x4b, 0xe4, 0x20, 0x00, 0x32, 0x00,
5098         0x3e, 0x00, 0x80, 0x00, 0x24, 0x01, 0x3c, 0x01, 0x68, 0x01, 0x6a, 0x01,
5099         0x70, 0x01, 0x72, 0x01, 0x74, 0x01, 0x76, 0x01, 0x78, 0x01, 0x62, 0x0a,
5100         0x92, 0x0c, 0x2c, 0x10, 0x2e, 0x10, 0x06, 0x13, 0x4c, 0x1c, 0xbb, 0x55,
5101         0x3c, 0x56, 0x04, 0x80, 0x4a, 0xe4, 0x02, 0xee, 0x5b, 0xf0, 0xb1, 0xf0,
5102         0x03, 0xf7, 0x06, 0xf7, 0x03, 0xfc, 0x0f, 0x00, 0x40, 0x00, 0xbe, 0x00,
5103         0x00, 0x01, 0xb0, 0x08, 0x30, 0x13, 0x64, 0x15, 0x32, 0x1c, 0x38, 0x1c,
5104         0x4e, 0x1c, 0x10, 0x44, 0x02, 0x48, 0x00, 0x4c, 0x04, 0xea, 0x5d, 0xf0,
5105         0x04, 0xf6, 0x02, 0xfc, 0x05, 0x00, 0x34, 0x00, 0x36, 0x00, 0x98, 0x00,
5106         0xcc, 0x00, 0x20, 0x01, 0x4e, 0x01, 0x4e, 0x0b, 0x1e, 0x0e, 0x0c, 0x10,
5107         0x0a, 0x12, 0x04, 0x13, 0x40, 0x13, 0x30, 0x1c, 0x00, 0x4e, 0xbd, 0x56,
5108         0x06, 0x83, 0x00, 0xdc, 0x05, 0xf0, 0x09, 0xf0, 0x59, 0xf0, 0xa7, 0xf0,
5109         0xb8, 0xf0, 0x0e, 0xf7, 0x06, 0x00, 0x19, 0x00, 0x33, 0x00, 0x9b, 0x00,
5110         0xa4, 0x00, 0xb5, 0x00, 0xba, 0x00, 0xd0, 0x00, 0xe1, 0x00, 0xe7, 0x00,
5111         0xde, 0x03, 0x56, 0x0a, 0x14, 0x0e, 0x02, 0x10, 0x04, 0x10, 0x0a, 0x10,
5112         0x36, 0x10, 0x0a, 0x13, 0x12, 0x13, 0x52, 0x13, 0x10, 0x15, 0x14, 0x15,
5113         0xac, 0x16, 0x20, 0x1c, 0x34, 0x1c, 0x36, 0x1c, 0x08, 0x44, 0x38, 0x44,
5114         0x91, 0x44, 0x0a, 0x45, 0x48, 0x46, 0x01, 0x48, 0x68, 0x54, 0x83, 0x55,
5115         0xb0, 0x57, 0x01, 0x58, 0x83, 0x59, 0x05, 0xe6, 0x0b, 0xf0, 0x0c, 0xf0,
5116         0x5c, 0xf0, 0x4b, 0xf4, 0x04, 0xf8, 0x05, 0xf8, 0x02, 0xfa, 0x03, 0xfa,
5117         0x04, 0xfc, 0x05, 0xfc, 0x07, 0x00, 0x0a, 0x00, 0x0d, 0x00, 0x1c, 0x00,
5118         0x9e, 0x00, 0xa8, 0x00, 0xaa, 0x00, 0xb9, 0x00, 0xe0, 0x00, 0x22, 0x01,
5119         0x26, 0x01, 0x79, 0x01, 0x7a, 0x01, 0xc0, 0x01, 0xc2, 0x01, 0x7c, 0x02,
5120         0x5a, 0x03, 0xea, 0x04, 0xe8, 0x07, 0x68, 0x08, 0x69, 0x08, 0xba, 0x08,
5121         0xe9, 0x09, 0x06, 0x0b, 0x3a, 0x0e, 0x00, 0x10, 0x1a, 0x10, 0xed, 0x10,
5122         0xf1, 0x10, 0x06, 0x12, 0x0c, 0x13, 0x16, 0x13, 0x1e, 0x13, 0x82, 0x13,
5123         0x42, 0x14, 0xd6, 0x14, 0x8a, 0x15, 0xc6, 0x17, 0xd2, 0x17, 0x6b, 0x18,
5124         0x12, 0x1c, 0x46, 0x1c, 0x9c, 0x32, 0x00, 0x40, 0x0e, 0x47, 0x48, 0x47,
5125         0x41, 0x48, 0x89, 0x48, 0x80, 0x4c, 0x00, 0x54, 0x44, 0x55, 0xe5, 0x55,
5126         0x14, 0x56, 0x77, 0x57, 0xbf, 0x57, 0x40, 0x5c, 0x06, 0x80, 0x08, 0x90,
5127         0x03, 0xa1, 0xfe, 0x9c, 0xf0, 0x29, 0x02, 0xfe, 0xb8, 0x0c, 0xff, 0x10,
5128         0x00, 0x00, 0xd0, 0xfe, 0xcc, 0x18, 0x00, 0xcf, 0xfe, 0x80, 0x01, 0xff,
5129         0x03, 0x00, 0x00, 0xfe, 0x93, 0x15, 0xfe, 0x0f, 0x05, 0xff, 0x38, 0x00,
5130         0x00, 0xfe, 0x57, 0x24, 0x00, 0xfe, 0x48, 0x00, 0x4f, 0xff, 0x04, 0x00,
5131         0x00, 0x10, 0xff, 0x09, 0x00, 0x00, 0xff, 0x08, 0x01, 0x01, 0xff, 0x08,
5132         0xff, 0xff, 0xff, 0x27, 0x00, 0x00, 0xff, 0x10, 0xff, 0xff, 0xff, 0x0f,
5133         0x00, 0x00, 0xfe, 0x78, 0x56, 0xfe, 0x34, 0x12, 0xff, 0x21, 0x00, 0x00,
5134         0xfe, 0x04, 0xf7, 0xcf, 0x2a, 0x67, 0x0b, 0x01, 0xfe, 0xce, 0x0e, 0xfe,
5135         0x04, 0xf7, 0xcf, 0x67, 0x0b, 0x3c, 0x2a, 0xfe, 0x3d, 0xf0, 0xfe, 0x02,
5136         0x02, 0xfe, 0x20, 0xf0, 0x9c, 0xfe, 0x91, 0xf0, 0xfe, 0xf0, 0x01, 0xfe,
5137         0x90, 0xf0, 0xfe, 0xf0, 0x01, 0xfe, 0x8f, 0xf0, 0x9c, 0x05, 0x51, 0x3b,
5138         0x02, 0xfe, 0xd4, 0x0c, 0x01, 0xfe, 0x44, 0x0d, 0xfe, 0xdd, 0x12, 0xfe,
5139         0xfc, 0x10, 0xfe, 0x28, 0x1c, 0x05, 0xfe, 0xa6, 0x00, 0xfe, 0xd3, 0x12,
5140         0x47, 0x18, 0xfe, 0xa6, 0x00, 0xb5, 0xfe, 0x48, 0xf0, 0xfe, 0x86, 0x02,
5141         0xfe, 0x49, 0xf0, 0xfe, 0xa0, 0x02, 0xfe, 0x4a, 0xf0, 0xfe, 0xbe, 0x02,
5142         0xfe, 0x46, 0xf0, 0xfe, 0x50, 0x02, 0xfe, 0x47, 0xf0, 0xfe, 0x56, 0x02,
5143         0xfe, 0x43, 0xf0, 0xfe, 0x44, 0x02, 0xfe, 0x44, 0xf0, 0xfe, 0x48, 0x02,
5144         0xfe, 0x45, 0xf0, 0xfe, 0x4c, 0x02, 0x17, 0x0b, 0xa0, 0x17, 0x06, 0x18,
5145         0x96, 0x02, 0x29, 0xfe, 0x00, 0x1c, 0xde, 0xfe, 0x02, 0x1c, 0xdd, 0xfe,
5146         0x1e, 0x1c, 0xfe, 0xe9, 0x10, 0x01, 0xfe, 0x20, 0x17, 0xfe, 0xe7, 0x10,
5147         0xfe, 0x06, 0xfc, 0xc7, 0x0a, 0x6b, 0x01, 0x9e, 0x02, 0x29, 0x14, 0x4d,
5148         0x37, 0x97, 0x01, 0xfe, 0x64, 0x0f, 0x0a, 0x6b, 0x01, 0x82, 0xfe, 0xbd,
5149         0x10, 0x0a, 0x6b, 0x01, 0x82, 0xfe, 0xad, 0x10, 0xfe, 0x16, 0x1c, 0xfe,
5150         0x58, 0x1c, 0x17, 0x06, 0x18, 0x96, 0x2a, 0x25, 0x29, 0xfe, 0x3d, 0xf0,
5151         0xfe, 0x02, 0x02, 0x21, 0xfe, 0x94, 0x02, 0xfe, 0x5a, 0x1c, 0xea, 0xfe,
5152         0x14, 0x1c, 0x14, 0xfe, 0x30, 0x00, 0x37, 0x97, 0x01, 0xfe, 0x54, 0x0f,
5153         0x17, 0x06, 0x18, 0x96, 0x02, 0xd0, 0x1e, 0x20, 0x07, 0x10, 0x34, 0xfe,
5154         0x69, 0x10, 0x17, 0x06, 0x18, 0x96, 0xfe, 0x04, 0xec, 0x20, 0x46, 0x3d,
5155         0x12, 0x20, 0xfe, 0x05, 0xf6, 0xc7, 0x01, 0xfe, 0x52, 0x16, 0x09, 0x4a,
5156         0x4c, 0x35, 0x11, 0x2d, 0x3c, 0x8a, 0x01, 0xe6, 0x02, 0x29, 0x0a, 0x40,
5157         0x01, 0x0e, 0x07, 0x00, 0x5d, 0x01, 0x6f, 0xfe, 0x18, 0x10, 0xfe, 0x41,
5158         0x58, 0x0a, 0x99, 0x01, 0x0e, 0xfe, 0xc8, 0x54, 0x64, 0xfe, 0x0c, 0x03,
5159         0x01, 0xe6, 0x02, 0x29, 0x2a, 0x46, 0xfe, 0x02, 0xe8, 0x27, 0xf8, 0xfe,
5160         0x9e, 0x43, 0xf7, 0xfe, 0x27, 0xf0, 0xfe, 0xdc, 0x01, 0xfe, 0x07, 0x4b,
5161         0xfe, 0x20, 0xf0, 0x9c, 0xfe, 0x40, 0x1c, 0x25, 0xd2, 0xfe, 0x26, 0xf0,
5162         0xfe, 0x56, 0x03, 0xfe, 0xa0, 0xf0, 0xfe, 0x44, 0x03, 0xfe, 0x11, 0xf0,
5163         0x9c, 0xfe, 0xef, 0x10, 0xfe, 0x9f, 0xf0, 0xfe, 0x64, 0x03, 0xeb, 0x0f,
5164         0xfe, 0x11, 0x00, 0x02, 0x5a, 0x2a, 0xfe, 0x48, 0x1c, 0xeb, 0x09, 0x04,
5165         0x1d, 0xfe, 0x18, 0x13, 0x23, 0x1e, 0x98, 0xac, 0x12, 0x98, 0x0a, 0x40,
5166         0x01, 0x0e, 0xac, 0x75, 0x01, 0xfe, 0xbc, 0x15, 0x11, 0xca, 0x25, 0xd2,
5167         0xfe, 0x01, 0xf0, 0xd2, 0xfe, 0x82, 0xf0, 0xfe, 0x92, 0x03, 0xec, 0x11,
5168         0xfe, 0xe4, 0x00, 0x65, 0xfe, 0xa4, 0x03, 0x25, 0x32, 0x1f, 0xfe, 0xb4,
5169         0x03, 0x01, 0x43, 0xfe, 0x06, 0xf0, 0xfe, 0xc4, 0x03, 0x8d, 0x81, 0xfe,
5170         0x0a, 0xf0, 0xfe, 0x7a, 0x06, 0x02, 0x22, 0x05, 0x6b, 0x28, 0x16, 0xfe,
5171         0xf6, 0x04, 0x14, 0x2c, 0x01, 0x33, 0x8f, 0xfe, 0x66, 0x02, 0x02, 0xd1,
5172         0xeb, 0x2a, 0x67, 0x1a, 0xfe, 0x67, 0x1b, 0xf8, 0xf7, 0xfe, 0x48, 0x1c,
5173         0x70, 0x01, 0x6e, 0x87, 0x0a, 0x40, 0x01, 0x0e, 0x07, 0x00, 0x16, 0xd3,
5174         0x0a, 0xca, 0x01, 0x0e, 0x74, 0x60, 0x59, 0x76, 0x27, 0x05, 0x6b, 0x28,
5175         0xfe, 0x10, 0x12, 0x14, 0x2c, 0x01, 0x33, 0x8f, 0xfe, 0x66, 0x02, 0x02,
5176         0xd1, 0xbc, 0x7d, 0xbd, 0x7f, 0x25, 0x22, 0x65, 0xfe, 0x3c, 0x04, 0x1f,
5177         0xfe, 0x38, 0x04, 0x68, 0xfe, 0xa0, 0x00, 0xfe, 0x9b, 0x57, 0xfe, 0x4e,
5178         0x12, 0x2b, 0xff, 0x02, 0x00, 0x10, 0x01, 0x08, 0x1f, 0xfe, 0xe0, 0x04,
5179         0x2b, 0x01, 0x08, 0x1f, 0x22, 0x30, 0x2e, 0xd5, 0xfe, 0x4c, 0x44, 0xfe,
5180         0x4c, 0x12, 0x60, 0xfe, 0x44, 0x48, 0x13, 0x2c, 0xfe, 0x4c, 0x54, 0x64,
5181         0xd3, 0x46, 0x76, 0x27, 0xfa, 0xef, 0xfe, 0x62, 0x13, 0x09, 0x04, 0x1d,
5182         0xfe, 0x2a, 0x13, 0x2f, 0x07, 0x7e, 0xa5, 0xfe, 0x20, 0x10, 0x13, 0x2c,
5183         0xfe, 0x4c, 0x54, 0x64, 0xd3, 0xfa, 0xef, 0x86, 0x09, 0x04, 0x1d, 0xfe,
5184         0x08, 0x13, 0x2f, 0x07, 0x7e, 0x6e, 0x09, 0x04, 0x1d, 0xfe, 0x1c, 0x12,
5185         0x14, 0x92, 0x09, 0x04, 0x06, 0x3b, 0x14, 0xc4, 0x01, 0x33, 0x8f, 0xfe,
5186         0x70, 0x0c, 0x02, 0x22, 0x2b, 0x11, 0xfe, 0xe6, 0x00, 0xfe, 0x1c, 0x90,
5187         0xf9, 0x03, 0x14, 0x92, 0x01, 0x33, 0x02, 0x29, 0xfe, 0x42, 0x5b, 0x67,
5188         0x1a, 0xfe, 0x46, 0x59, 0xf8, 0xf7, 0xfe, 0x87, 0x80, 0xfe, 0x31, 0xe4,
5189         0x4f, 0x09, 0x04, 0x0b, 0xfe, 0x78, 0x13, 0xfe, 0x20, 0x80, 0x07, 0x1a,
5190         0xfe, 0x70, 0x12, 0x49, 0x04, 0x06, 0xfe, 0x60, 0x13, 0x05, 0xfe, 0xa2,
5191         0x00, 0x28, 0x16, 0xfe, 0x80, 0x05, 0xfe, 0x31, 0xe4, 0x6a, 0x49, 0x04,
5192         0x0b, 0xfe, 0x4a, 0x13, 0x05, 0xfe, 0xa0, 0x00, 0x28, 0xfe, 0x42, 0x12,
5193         0x5e, 0x01, 0x08, 0x25, 0x32, 0xf1, 0x01, 0x08, 0x26, 0xfe, 0x98, 0x05,
5194         0x11, 0xfe, 0xe3, 0x00, 0x23, 0x49, 0xfe, 0x4a, 0xf0, 0xfe, 0x6a, 0x05,
5195         0xfe, 0x49, 0xf0, 0xfe, 0x64, 0x05, 0x83, 0x24, 0xfe, 0x21, 0x00, 0xa1,
5196         0x24, 0xfe, 0x22, 0x00, 0xa0, 0x24, 0x4c, 0xfe, 0x09, 0x48, 0x01, 0x08,
5197         0x26, 0xfe, 0x98, 0x05, 0xfe, 0xe2, 0x08, 0x49, 0x04, 0xc5, 0x3b, 0x01,
5198         0x86, 0x24, 0x06, 0x12, 0xcc, 0x37, 0xfe, 0x27, 0x01, 0x09, 0x04, 0x1d,
5199         0xfe, 0x22, 0x12, 0x47, 0x01, 0xa7, 0x14, 0x92, 0x09, 0x04, 0x06, 0x3b,
5200         0x14, 0xc4, 0x01, 0x33, 0x8f, 0xfe, 0x70, 0x0c, 0x02, 0x22, 0x05, 0xfe,
5201         0x9c, 0x00, 0x28, 0xfe, 0x3e, 0x12, 0x05, 0x50, 0x28, 0xfe, 0x36, 0x13,
5202         0x47, 0x01, 0xa7, 0x26, 0xfe, 0x08, 0x06, 0x0a, 0x06, 0x49, 0x04, 0x19,
5203         0xfe, 0x02, 0x12, 0x5f, 0x01, 0xfe, 0xaa, 0x14, 0x1f, 0xfe, 0xfe, 0x05,
5204         0x11, 0x9a, 0x01, 0x43, 0x11, 0xfe, 0xe5, 0x00, 0x05, 0x50, 0xb4, 0x0c,
5205         0x50, 0x05, 0xc6, 0x28, 0xfe, 0x62, 0x12, 0x05, 0x3f, 0x28, 0xfe, 0x5a,
5206         0x13, 0x01, 0xfe, 0x14, 0x18, 0x01, 0xfe, 0x66, 0x18, 0xfe, 0x43, 0x48,
5207         0xb7, 0x19, 0x13, 0x6c, 0xff, 0x02, 0x00, 0x57, 0x48, 0x8b, 0x1c, 0x3d,
5208         0x85, 0xb7, 0x69, 0x47, 0x01, 0xa7, 0x26, 0xfe, 0x72, 0x06, 0x49, 0x04,
5209         0x1b, 0xdf, 0x89, 0x0a, 0x4d, 0x01, 0xfe, 0xd8, 0x14, 0x1f, 0xfe, 0x68,
5210         0x06, 0x11, 0x9a, 0x01, 0x43, 0x11, 0xfe, 0xe5, 0x00, 0x05, 0x3f, 0xb4,
5211         0x0c, 0x3f, 0x17, 0x06, 0x01, 0xa7, 0xec, 0x72, 0x70, 0x01, 0x6e, 0x87,
5212         0x11, 0xfe, 0xe2, 0x00, 0x01, 0x08, 0x25, 0x32, 0xfe, 0x0a, 0xf0, 0xfe,
5213         0xa6, 0x06, 0x8c, 0xfe, 0x5c, 0x07, 0xfe, 0x06, 0xf0, 0xfe, 0x64, 0x07,
5214         0x8d, 0x81, 0x02, 0x22, 0x09, 0x04, 0x0b, 0xfe, 0x2e, 0x12, 0x15, 0x1a,
5215         0x01, 0x08, 0x15, 0x00, 0x01, 0x08, 0x15, 0x00, 0x01, 0x08, 0x15, 0x00,
5216         0x01, 0x08, 0xfe, 0x99, 0xa4, 0x01, 0x08, 0x15, 0x00, 0x02, 0xfe, 0x32,
5217         0x08, 0x61, 0x04, 0x1b, 0xfe, 0x38, 0x12, 0x09, 0x04, 0x1b, 0x6e, 0x15,
5218         0xfe, 0x1b, 0x00, 0x01, 0x08, 0x15, 0x00, 0x01, 0x08, 0x15, 0x00, 0x01,
5219         0x08, 0x15, 0x00, 0x01, 0x08, 0x15, 0x06, 0x01, 0x08, 0x15, 0x00, 0x02,
5220         0xd9, 0x66, 0x4c, 0xfe, 0x3a, 0x55, 0x5f, 0xfe, 0x9a, 0x81, 0x4b, 0x1d,
5221         0xba, 0xfe, 0x32, 0x07, 0x0a, 0x1d, 0xfe, 0x09, 0x6f, 0xaf, 0xfe, 0xca,
5222         0x45, 0xfe, 0x32, 0x12, 0x62, 0x2c, 0x85, 0x66, 0x7b, 0x01, 0x08, 0x25,
5223         0x32, 0xfe, 0x0a, 0xf0, 0xfe, 0x32, 0x07, 0x8d, 0x81, 0x8c, 0xfe, 0x5c,
5224         0x07, 0x02, 0x22, 0x01, 0x43, 0x02, 0xfe, 0x8a, 0x06, 0x15, 0x19, 0x02,
5225         0xfe, 0x8a, 0x06, 0xfe, 0x9c, 0xf7, 0xd4, 0xfe, 0x2c, 0x90, 0xfe, 0xae,
5226         0x90, 0x77, 0xfe, 0xca, 0x07, 0x0c, 0x54, 0x18, 0x55, 0x09, 0x4a, 0x6a,
5227         0x35, 0x1e, 0x20, 0x07, 0x10, 0xfe, 0x0e, 0x12, 0x74, 0xfe, 0x80, 0x80,
5228         0x37, 0x20, 0x63, 0x27, 0xfe, 0x06, 0x10, 0xfe, 0x83, 0xe7, 0xc4, 0xa1,
5229         0xfe, 0x03, 0x40, 0x09, 0x4a, 0x4f, 0x35, 0x01, 0xa8, 0xad, 0xfe, 0x1f,
5230         0x40, 0x12, 0x58, 0x01, 0xa5, 0xfe, 0x08, 0x50, 0xfe, 0x8a, 0x50, 0xfe,
5231         0x44, 0x51, 0xfe, 0xc6, 0x51, 0x83, 0xfb, 0xfe, 0x8a, 0x90, 0x0c, 0x52,
5232         0x18, 0x53, 0xfe, 0x0c, 0x90, 0xfe, 0x8e, 0x90, 0xfe, 0x40, 0x50, 0xfe,
5233         0xc2, 0x50, 0x0c, 0x39, 0x18, 0x3a, 0xfe, 0x4a, 0x10, 0x09, 0x04, 0x6a,
5234         0xfe, 0x2a, 0x12, 0xfe, 0x2c, 0x90, 0xfe, 0xae, 0x90, 0x0c, 0x54, 0x18,
5235         0x55, 0x09, 0x04, 0x4f, 0x85, 0x01, 0xa8, 0xfe, 0x1f, 0x80, 0x12, 0x58,
5236         0xfe, 0x44, 0x90, 0xfe, 0xc6, 0x90, 0x0c, 0x56, 0x18, 0x57, 0xfb, 0xfe,
5237         0x8a, 0x90, 0x0c, 0x52, 0x18, 0x53, 0xfe, 0x40, 0x90, 0xfe, 0xc2, 0x90,
5238         0x0c, 0x39, 0x18, 0x3a, 0x0c, 0x38, 0x18, 0x4e, 0x09, 0x4a, 0x19, 0x35,
5239         0x2a, 0x13, 0xfe, 0x4e, 0x11, 0x65, 0xfe, 0x48, 0x08, 0xfe, 0x9e, 0xf0,
5240         0xfe, 0x5c, 0x08, 0xb1, 0x16, 0x32, 0x2a, 0x73, 0xdd, 0xb8, 0xfe, 0x80,
5241         0x08, 0xb9, 0xfe, 0x9e, 0x08, 0x8c, 0xfe, 0x74, 0x08, 0xfe, 0x06, 0xf0,
5242         0xfe, 0x7a, 0x08, 0x8d, 0x81, 0x02, 0x22, 0x01, 0x43, 0xfe, 0xc9, 0x10,
5243         0x15, 0x19, 0xfe, 0xc9, 0x10, 0x61, 0x04, 0x06, 0xfe, 0x10, 0x12, 0x61,
5244         0x04, 0x0b, 0x45, 0x09, 0x04, 0x0b, 0xfe, 0x68, 0x12, 0xfe, 0x2e, 0x1c,
5245         0x02, 0xfe, 0x24, 0x0a, 0x61, 0x04, 0x06, 0x45, 0x61, 0x04, 0x0b, 0xfe,
5246         0x52, 0x12, 0xfe, 0x2c, 0x1c, 0xfe, 0xaa, 0xf0, 0xfe, 0x1e, 0x09, 0xfe,
5247         0xac, 0xf0, 0xfe, 0xbe, 0x08, 0xfe, 0x8a, 0x10, 0xaa, 0xfe, 0xf3, 0x10,
5248         0xfe, 0xad, 0xf0, 0xfe, 0xca, 0x08, 0x02, 0xfe, 0x24, 0x0a, 0xab, 0xfe,
5249         0xe7, 0x10, 0xfe, 0x2b, 0xf0, 0x9d, 0xe9, 0x1c, 0xfe, 0x00, 0xfe, 0xfe,
5250         0x1c, 0x12, 0xb5, 0xfe, 0xd2, 0xf0, 0x9d, 0xfe, 0x76, 0x18, 0x1c, 0x1a,
5251         0x16, 0x9d, 0x05, 0xcb, 0x1c, 0x06, 0x16, 0x9d, 0xb8, 0x6d, 0xb9, 0x6d,
5252         0xaa, 0xab, 0xfe, 0xb1, 0x10, 0x70, 0x5e, 0x2b, 0x14, 0x92, 0x01, 0x33,
5253         0x0f, 0xfe, 0x35, 0x00, 0xfe, 0x01, 0xf0, 0x5a, 0x0f, 0x7c, 0x02, 0x5a,
5254         0xfe, 0x74, 0x18, 0x1c, 0xfe, 0x00, 0xf8, 0x16, 0x6d, 0x67, 0x1b, 0x01,
5255         0xfe, 0x44, 0x0d, 0x3b, 0x01, 0xe6, 0x1e, 0x27, 0x74, 0x67, 0x1a, 0x02,
5256         0x6d, 0x09, 0x04, 0x0b, 0x21, 0xfe, 0x06, 0x0a, 0x09, 0x04, 0x6a, 0xfe,
5257         0x82, 0x12, 0x09, 0x04, 0x19, 0xfe, 0x66, 0x13, 0x1e, 0x58, 0xac, 0xfc,
5258         0xfe, 0x83, 0x80, 0xfe, 0xc8, 0x44, 0xfe, 0x2e, 0x13, 0xfe, 0x04, 0x91,
5259         0xfe, 0x86, 0x91, 0x63, 0x27, 0xfe, 0x40, 0x59, 0xfe, 0xc1, 0x59, 0x77,
5260         0xd7, 0x05, 0x54, 0x31, 0x55, 0x0c, 0x7b, 0x18, 0x7c, 0xbe, 0x54, 0xbf,
5261         0x55, 0x01, 0xa8, 0xad, 0x63, 0x27, 0x12, 0x58, 0xc0, 0x38, 0xc1, 0x4e,
5262         0x79, 0x56, 0x68, 0x57, 0xf4, 0xf5, 0xfe, 0x04, 0xfa, 0x38, 0xfe, 0x05,
5263         0xfa, 0x4e, 0x01, 0xa5, 0xa2, 0x23, 0x0c, 0x7b, 0x0c, 0x7c, 0x79, 0x56,
5264         0x68, 0x57, 0xfe, 0x12, 0x10, 0x09, 0x04, 0x19, 0x16, 0xd7, 0x79, 0x39,
5265         0x68, 0x3a, 0x09, 0x04, 0xfe, 0xf7, 0x00, 0x35, 0x05, 0x52, 0x31, 0x53,
5266         0xfe, 0x10, 0x58, 0xfe, 0x91, 0x58, 0xfe, 0x14, 0x59, 0xfe, 0x95, 0x59,
5267         0x02, 0x6d, 0x09, 0x04, 0x19, 0x16, 0xd7, 0x09, 0x04, 0xfe, 0xf7, 0x00,
5268         0x35, 0xfe, 0x3a, 0x55, 0xfe, 0x19, 0x81, 0x5f, 0xfe, 0x10, 0x90, 0xfe,
5269         0x92, 0x90, 0xfe, 0xd7, 0x10, 0x2f, 0x07, 0x9b, 0x16, 0xfe, 0xc6, 0x08,
5270         0x11, 0x9b, 0x09, 0x04, 0x0b, 0xfe, 0x14, 0x13, 0x05, 0x39, 0x31, 0x3a,
5271         0x77, 0xfe, 0xc6, 0x08, 0xfe, 0x0c, 0x58, 0xfe, 0x8d, 0x58, 0x02, 0x6d,
5272         0x23, 0x47, 0xfe, 0x19, 0x80, 0xde, 0x09, 0x04, 0x0b, 0xfe, 0x1a, 0x12,
5273         0xfe, 0x6c, 0x19, 0xfe, 0x19, 0x41, 0xe9, 0xb5, 0xfe, 0xd1, 0xf0, 0xd9,
5274         0x14, 0x7a, 0x01, 0x33, 0x0f, 0xfe, 0x44, 0x00, 0xfe, 0x8e, 0x10, 0xfe,
5275         0x6c, 0x19, 0xbe, 0x39, 0xfe, 0xed, 0x19, 0xbf, 0x3a, 0xfe, 0x0c, 0x51,
5276         0xfe, 0x8e, 0x51, 0xe9, 0x1c, 0xfe, 0x00, 0xff, 0x34, 0xfe, 0x74, 0x10,
5277         0xb5, 0xfe, 0xd2, 0xf0, 0xfe, 0xb2, 0x0a, 0xfe, 0x76, 0x18, 0x1c, 0x1a,
5278         0x84, 0x05, 0xcb, 0x1c, 0x06, 0xfe, 0x08, 0x13, 0x0f, 0xfe, 0x16, 0x00,
5279         0x02, 0x5a, 0xfe, 0xd1, 0xf0, 0xfe, 0xc4, 0x0a, 0x14, 0x7a, 0x01, 0x33,
5280         0x0f, 0xfe, 0x17, 0x00, 0xfe, 0x42, 0x10, 0xfe, 0xce, 0xf0, 0xfe, 0xca,
5281         0x0a, 0xfe, 0x3c, 0x10, 0xfe, 0xcd, 0xf0, 0xfe, 0xd6, 0x0a, 0x0f, 0xfe,
5282         0x22, 0x00, 0x02, 0x5a, 0xfe, 0xcb, 0xf0, 0xfe, 0xe2, 0x0a, 0x0f, 0xfe,
5283         0x24, 0x00, 0x02, 0x5a, 0xfe, 0xd0, 0xf0, 0xfe, 0xec, 0x0a, 0x0f, 0x93,
5284         0xdc, 0xfe, 0xcf, 0xf0, 0xfe, 0xf6, 0x0a, 0x0f, 0x4c, 0xfe, 0x10, 0x10,
5285         0xfe, 0xcc, 0xf0, 0xd9, 0x61, 0x04, 0x19, 0x3b, 0x0f, 0xfe, 0x12, 0x00,
5286         0x2a, 0x13, 0xfe, 0x4e, 0x11, 0x65, 0xfe, 0x0c, 0x0b, 0xfe, 0x9e, 0xf0,
5287         0xfe, 0x20, 0x0b, 0xb1, 0x16, 0x32, 0x2a, 0x73, 0xdd, 0xb8, 0x22, 0xb9,
5288         0x22, 0x2a, 0xec, 0x65, 0xfe, 0x2c, 0x0b, 0x25, 0x32, 0x8c, 0xfe, 0x48,
5289         0x0b, 0x8d, 0x81, 0xb8, 0xd4, 0xb9, 0xd4, 0x02, 0x22, 0x01, 0x43, 0xfe,
5290         0xdb, 0x10, 0x11, 0xfe, 0xe8, 0x00, 0xaa, 0xab, 0x70, 0xbc, 0x7d, 0xbd,
5291         0x7f, 0xfe, 0x89, 0xf0, 0x22, 0x30, 0x2e, 0xd8, 0xbc, 0x7d, 0xbd, 0x7f,
5292         0x01, 0x08, 0x1f, 0x22, 0x30, 0x2e, 0xd6, 0xb1, 0x45, 0x0f, 0xfe, 0x42,
5293         0x00, 0x02, 0x5a, 0x78, 0x06, 0xfe, 0x81, 0x49, 0x16, 0xfe, 0x38, 0x0c,
5294         0x09, 0x04, 0x0b, 0xfe, 0x44, 0x13, 0x0f, 0x00, 0x4b, 0x0b, 0xfe, 0x54,
5295         0x12, 0x4b, 0xfe, 0x28, 0x00, 0x21, 0xfe, 0xa6, 0x0c, 0x0a, 0x40, 0x01,
5296         0x0e, 0x07, 0x00, 0x5d, 0x3e, 0xfe, 0x28, 0x00, 0xfe, 0xe2, 0x10, 0x01,
5297         0xe7, 0x01, 0xe8, 0x0a, 0x99, 0x01, 0xfe, 0x32, 0x0e, 0x59, 0x11, 0x2d,
5298         0x01, 0x6f, 0x02, 0x29, 0x0f, 0xfe, 0x44, 0x00, 0x4b, 0x0b, 0xdf, 0x3e,
5299         0x0b, 0xfe, 0xb4, 0x10, 0x01, 0x86, 0x3e, 0x0b, 0xfe, 0xaa, 0x10, 0x01,
5300         0x86, 0xfe, 0x19, 0x82, 0xfe, 0x34, 0x46, 0xa3, 0x3e, 0x0b, 0x0f, 0xfe,
5301         0x43, 0x00, 0xfe, 0x96, 0x10, 0x09, 0x4a, 0x0b, 0x35, 0x01, 0xe7, 0x01,
5302         0xe8, 0x59, 0x11, 0x2d, 0x01, 0x6f, 0x67, 0x0b, 0x59, 0x3c, 0x8a, 0x02,
5303         0xfe, 0x2a, 0x03, 0x09, 0x04, 0x0b, 0x84, 0x3e, 0x0b, 0x0f, 0x00, 0xfe,
5304         0x5c, 0x10, 0x61, 0x04, 0x1b, 0xfe, 0x58, 0x12, 0x09, 0x04, 0x1b, 0xfe,
5305         0x50, 0x13, 0xfe, 0x1c, 0x1c, 0xfe, 0x9d, 0xf0, 0xfe, 0x5c, 0x0c, 0xfe,
5306         0x1c, 0x1c, 0xfe, 0x9d, 0xf0, 0xfe, 0x62, 0x0c, 0x09, 0x4a, 0x1b, 0x35,
5307         0xfe, 0xa9, 0x10, 0x0f, 0xfe, 0x15, 0x00, 0xfe, 0x04, 0xe6, 0x0b, 0x5f,
5308         0x5c, 0x0f, 0xfe, 0x13, 0x00, 0xfe, 0x10, 0x10, 0x0f, 0xfe, 0x47, 0x00,
5309         0xa1, 0x0f, 0xfe, 0x41, 0x00, 0xa0, 0x0f, 0xfe, 0x24, 0x00, 0x87, 0xaa,
5310         0xab, 0x70, 0x05, 0x6b, 0x28, 0x21, 0xd1, 0x5f, 0xfe, 0x04, 0xe6, 0x1b,
5311         0xfe, 0x9d, 0x41, 0xfe, 0x1c, 0x42, 0x59, 0x01, 0xda, 0x02, 0x29, 0xea,
5312         0x14, 0x0b, 0x37, 0x95, 0xa9, 0x14, 0xfe, 0x31, 0x00, 0x37, 0x97, 0x01,
5313         0xfe, 0x54, 0x0f, 0x02, 0xd0, 0x3c, 0xfe, 0x06, 0xec, 0xc9, 0xee, 0x3e,
5314         0x1d, 0xfe, 0xce, 0x45, 0x34, 0x3c, 0xfe, 0x06, 0xea, 0xc9, 0xfe, 0x47,
5315         0x4b, 0x89, 0xfe, 0x75, 0x57, 0x05, 0x51, 0xfe, 0x98, 0x56, 0xfe, 0x38,
5316         0x12, 0x0a, 0x42, 0x01, 0x0e, 0xfe, 0x44, 0x48, 0x46, 0x09, 0x04, 0x1d,
5317         0xfe, 0x1a, 0x13, 0x0a, 0x40, 0x01, 0x0e, 0x47, 0xfe, 0x41, 0x58, 0x0a,
5318         0x99, 0x01, 0x0e, 0xfe, 0x49, 0x54, 0x8e, 0xfe, 0x2a, 0x0d, 0x02, 0xfe,
5319         0x2a, 0x03, 0x0a, 0x51, 0xfe, 0xee, 0x14, 0xee, 0x3e, 0x1d, 0xfe, 0xce,
5320         0x45, 0x34, 0x3c, 0xfe, 0xce, 0x47, 0xfe, 0xad, 0x13, 0x02, 0x29, 0x1e,
5321         0x20, 0x07, 0x10, 0xfe, 0x9e, 0x12, 0x23, 0x12, 0x4d, 0x12, 0x94, 0x12,
5322         0xce, 0x1e, 0x2d, 0x47, 0x37, 0x2d, 0xb1, 0xe0, 0xfe, 0xbc, 0xf0, 0xfe,
5323         0xec, 0x0d, 0x13, 0x06, 0x12, 0x4d, 0x01, 0xfe, 0xe2, 0x15, 0x05, 0xfe,
5324         0x38, 0x01, 0x31, 0xfe, 0x3a, 0x01, 0x77, 0xfe, 0xf0, 0x0d, 0xfe, 0x02,
5325         0xec, 0xce, 0x62, 0x00, 0x5d, 0xfe, 0x04, 0xec, 0x20, 0x46, 0xfe, 0x05,
5326         0xf6, 0xfe, 0x34, 0x01, 0x01, 0xfe, 0x52, 0x16, 0xfb, 0xfe, 0x48, 0xf4,
5327         0x0d, 0xfe, 0x18, 0x13, 0xaf, 0xfe, 0x02, 0xea, 0xce, 0x62, 0x7a, 0xfe,
5328         0xc5, 0x13, 0x14, 0x1b, 0x37, 0x95, 0xa9, 0x5c, 0x05, 0xfe, 0x38, 0x01,
5329         0x1c, 0xfe, 0xf0, 0xff, 0x0c, 0xfe, 0x60, 0x01, 0x05, 0xfe, 0x3a, 0x01,
5330         0x0c, 0xfe, 0x62, 0x01, 0x3d, 0x12, 0x20, 0x24, 0x06, 0x12, 0x2d, 0x11,
5331         0x2d, 0x8a, 0x13, 0x06, 0x03, 0x23, 0x03, 0x1e, 0x4d, 0xfe, 0xf7, 0x12,
5332         0x1e, 0x94, 0xac, 0x12, 0x94, 0x07, 0x7a, 0xfe, 0x71, 0x13, 0xfe, 0x24,
5333         0x1c, 0x14, 0x1a, 0x37, 0x95, 0xa9, 0xfe, 0xd9, 0x10, 0xb6, 0xfe, 0x03,
5334         0xdc, 0xfe, 0x73, 0x57, 0xfe, 0x80, 0x5d, 0x03, 0xb6, 0xfe, 0x03, 0xdc,
5335         0xfe, 0x5b, 0x57, 0xfe, 0x80, 0x5d, 0x03, 0xfe, 0x03, 0x57, 0xb6, 0x23,
5336         0xfe, 0x00, 0xcc, 0x03, 0xfe, 0x03, 0x57, 0xb6, 0x75, 0x03, 0x09, 0x04,
5337         0x4c, 0xfe, 0x22, 0x13, 0xfe, 0x1c, 0x80, 0x07, 0x06, 0xfe, 0x1a, 0x13,
5338         0xfe, 0x1e, 0x80, 0xe1, 0xfe, 0x1d, 0x80, 0xa4, 0xfe, 0x0c, 0x90, 0xfe,
5339         0x0e, 0x13, 0xfe, 0x0e, 0x90, 0xa3, 0xfe, 0x3c, 0x90, 0xfe, 0x30, 0xf4,
5340         0x0b, 0xfe, 0x3c, 0x50, 0xa0, 0x01, 0xfe, 0x82, 0x16, 0x2f, 0x07, 0x2d,
5341         0xe0, 0x01, 0xfe, 0xbc, 0x15, 0x09, 0x04, 0x1d, 0x45, 0x01, 0xe7, 0x01,
5342         0xe8, 0x11, 0xfe, 0xe9, 0x00, 0x09, 0x04, 0x4c, 0xfe, 0x2c, 0x13, 0x01,
5343         0xfe, 0x14, 0x16, 0xfe, 0x1e, 0x1c, 0xfe, 0x14, 0x90, 0xfe, 0x96, 0x90,
5344         0x0c, 0xfe, 0x64, 0x01, 0x18, 0xfe, 0x66, 0x01, 0x09, 0x04, 0x4f, 0xfe,
5345         0x12, 0x12, 0xfe, 0x03, 0x80, 0x74, 0xfe, 0x01, 0xec, 0x20, 0xfe, 0x80,
5346         0x40, 0x12, 0x20, 0x63, 0x27, 0x11, 0xc8, 0x59, 0x1e, 0x20, 0xed, 0x76,
5347         0x20, 0x03, 0xfe, 0x08, 0x1c, 0x05, 0xfe, 0xac, 0x00, 0xfe, 0x06, 0x58,
5348         0x05, 0xfe, 0xae, 0x00, 0xfe, 0x07, 0x58, 0x05, 0xfe, 0xb0, 0x00, 0xfe,
5349         0x08, 0x58, 0x05, 0xfe, 0xb2, 0x00, 0xfe, 0x09, 0x58, 0xfe, 0x0a, 0x1c,
5350         0x24, 0x69, 0x12, 0xc9, 0x23, 0x0c, 0x50, 0x0c, 0x3f, 0x13, 0x40, 0x48,
5351         0x5f, 0x17, 0x1d, 0xfe, 0x90, 0x4d, 0xfe, 0x91, 0x54, 0x21, 0xfe, 0x08,
5352         0x0f, 0x3e, 0x10, 0x13, 0x42, 0x48, 0x17, 0x4c, 0xfe, 0x90, 0x4d, 0xfe,
5353         0x91, 0x54, 0x21, 0xfe, 0x1e, 0x0f, 0x24, 0x10, 0x12, 0x20, 0x78, 0x2c,
5354         0x46, 0x1e, 0x20, 0xed, 0x76, 0x20, 0x11, 0xc8, 0xf6, 0xfe, 0xd6, 0xf0,
5355         0xfe, 0x32, 0x0f, 0xea, 0x70, 0xfe, 0x14, 0x1c, 0xfe, 0x10, 0x1c, 0xfe,
5356         0x18, 0x1c, 0x03, 0x3c, 0xfe, 0x0c, 0x14, 0xee, 0xfe, 0x07, 0xe6, 0x1d,
5357         0xfe, 0xce, 0x47, 0xfe, 0xf5, 0x13, 0x03, 0x01, 0x86, 0x78, 0x2c, 0x46,
5358         0xfa, 0xef, 0xfe, 0x42, 0x13, 0x2f, 0x07, 0x2d, 0xfe, 0x34, 0x13, 0x0a,
5359         0x42, 0x01, 0x0e, 0xb0, 0xfe, 0x36, 0x12, 0xf0, 0xfe, 0x45, 0x48, 0x01,
5360         0xe3, 0xfe, 0x00, 0xcc, 0xb0, 0xfe, 0xf3, 0x13, 0x3d, 0x75, 0x07, 0x10,
5361         0xa3, 0x0a, 0x80, 0x01, 0x0e, 0xfe, 0x80, 0x5c, 0x01, 0x6f, 0xfe, 0x0e,
5362         0x10, 0x07, 0x7e, 0x45, 0xf6, 0xfe, 0xd6, 0xf0, 0xfe, 0x6c, 0x0f, 0x03,
5363         0xfe, 0x44, 0x58, 0x74, 0xfe, 0x01, 0xec, 0x97, 0xfe, 0x9e, 0x40, 0xfe,
5364         0x9d, 0xe7, 0x00, 0xfe, 0x9c, 0xe7, 0x1b, 0x76, 0x27, 0x01, 0xda, 0xfe,
5365         0xdd, 0x10, 0x2a, 0xbc, 0x7d, 0xbd, 0x7f, 0x30, 0x2e, 0xd5, 0x07, 0x1b,
5366         0xfe, 0x48, 0x12, 0x07, 0x0b, 0xfe, 0x56, 0x12, 0x07, 0x1a, 0xfe, 0x30,
5367         0x12, 0x07, 0xc2, 0x16, 0xfe, 0x3e, 0x11, 0x07, 0xfe, 0x23, 0x00, 0x16,
5368         0xfe, 0x4a, 0x11, 0x07, 0x06, 0x16, 0xfe, 0xa8, 0x11, 0x07, 0x19, 0xfe,
5369         0x12, 0x12, 0x07, 0x00, 0x16, 0x22, 0x14, 0xc2, 0x01, 0x33, 0x9f, 0x2b,
5370         0x01, 0x08, 0x8c, 0x43, 0x03, 0x2b, 0xfe, 0x62, 0x08, 0x0a, 0xca, 0x01,
5371         0xfe, 0x32, 0x0e, 0x11, 0x7e, 0x02, 0x29, 0x2b, 0x2f, 0x07, 0x9b, 0xfe,
5372         0xd9, 0x13, 0x79, 0x39, 0x68, 0x3a, 0x77, 0xfe, 0xfc, 0x10, 0x09, 0x04,
5373         0x6a, 0xfe, 0x72, 0x12, 0xc0, 0x38, 0xc1, 0x4e, 0xf4, 0xf5, 0x8e, 0xfe,
5374         0xc6, 0x10, 0x1e, 0x58, 0xfe, 0x26, 0x13, 0x05, 0x7b, 0x31, 0x7c, 0x77,
5375         0xfe, 0x82, 0x0c, 0x0c, 0x54, 0x18, 0x55, 0x23, 0x0c, 0x7b, 0x0c, 0x7c,
5376         0x01, 0xa8, 0x24, 0x69, 0x73, 0x12, 0x58, 0x01, 0xa5, 0xc0, 0x38, 0xc1,
5377         0x4e, 0xfe, 0x04, 0x55, 0xfe, 0xa5, 0x55, 0xfe, 0x04, 0xfa, 0x38, 0xfe,
5378         0x05, 0xfa, 0x4e, 0xfe, 0x91, 0x10, 0x05, 0x56, 0x31, 0x57, 0xfe, 0x40,
5379         0x56, 0xfe, 0xe1, 0x56, 0x0c, 0x56, 0x18, 0x57, 0x83, 0xc0, 0x38, 0xc1,
5380         0x4e, 0xf4, 0xf5, 0x05, 0x52, 0x31, 0x53, 0xfe, 0x00, 0x56, 0xfe, 0xa1,
5381         0x56, 0x0c, 0x52, 0x18, 0x53, 0x09, 0x04, 0x6a, 0xfe, 0x1e, 0x12, 0x1e,
5382         0x58, 0xfe, 0x1f, 0x40, 0x05, 0x54, 0x31, 0x55, 0xfe, 0x2c, 0x50, 0xfe,
5383         0xae, 0x50, 0x05, 0x56, 0x31, 0x57, 0xfe, 0x44, 0x50, 0xfe, 0xc6, 0x50,
5384         0x05, 0x52, 0x31, 0x53, 0xfe, 0x08, 0x50, 0xfe, 0x8a, 0x50, 0x05, 0x39,
5385         0x31, 0x3a, 0xfe, 0x40, 0x50, 0xfe, 0xc2, 0x50, 0x02, 0x5c, 0x24, 0x06,
5386         0x12, 0xcd, 0x02, 0x5b, 0x2b, 0x01, 0x08, 0x1f, 0x44, 0x30, 0x2e, 0xd5,
5387         0x07, 0x06, 0x21, 0x44, 0x2f, 0x07, 0x9b, 0x21, 0x5b, 0x01, 0x6e, 0x1c,
5388         0x3d, 0x16, 0x44, 0x09, 0x04, 0x0b, 0xe2, 0x79, 0x39, 0x68, 0x3a, 0xfe,
5389         0x0a, 0x55, 0x34, 0xfe, 0x8b, 0x55, 0xbe, 0x39, 0xbf, 0x3a, 0xfe, 0x0c,
5390         0x51, 0xfe, 0x8e, 0x51, 0x02, 0x5b, 0xfe, 0x19, 0x81, 0xaf, 0xfe, 0x19,
5391         0x41, 0x02, 0x5b, 0x2b, 0x01, 0x08, 0x25, 0x32, 0x1f, 0xa2, 0x30, 0x2e,
5392         0xd8, 0x4b, 0x1a, 0xfe, 0xa6, 0x12, 0x4b, 0x0b, 0x3b, 0x02, 0x44, 0x01,
5393         0x08, 0x25, 0x32, 0x1f, 0xa2, 0x30, 0x2e, 0xd6, 0x07, 0x1a, 0x21, 0x44,
5394         0x01, 0x08, 0x1f, 0xa2, 0x30, 0x2e, 0xfe, 0xe8, 0x09, 0xfe, 0xc2, 0x49,
5395         0x60, 0x05, 0xfe, 0x9c, 0x00, 0x28, 0x84, 0x49, 0x04, 0x19, 0x34, 0x9f,
5396         0xfe, 0xbb, 0x45, 0x4b, 0x00, 0x45, 0x3e, 0x06, 0x78, 0x3d, 0xfe, 0xda,
5397         0x14, 0x01, 0x6e, 0x87, 0xfe, 0x4b, 0x45, 0xe2, 0x2f, 0x07, 0x9a, 0xe1,
5398         0x05, 0xc6, 0x28, 0x84, 0x05, 0x3f, 0x28, 0x34, 0x5e, 0x02, 0x5b, 0xfe,
5399         0xc0, 0x5d, 0xfe, 0xf8, 0x14, 0xfe, 0x03, 0x17, 0x05, 0x50, 0xb4, 0x0c,
5400         0x50, 0x5e, 0x2b, 0x01, 0x08, 0x26, 0x5c, 0x01, 0xfe, 0xaa, 0x14, 0x02,
5401         0x5c, 0x01, 0x08, 0x25, 0x32, 0x1f, 0x44, 0x30, 0x2e, 0xd6, 0x07, 0x06,
5402         0x21, 0x44, 0x01, 0xfe, 0x8e, 0x13, 0xfe, 0x42, 0x58, 0xfe, 0x82, 0x14,
5403         0xfe, 0xa4, 0x14, 0x87, 0xfe, 0x4a, 0xf4, 0x0b, 0x16, 0x44, 0xfe, 0x4a,
5404         0xf4, 0x06, 0xfe, 0x0c, 0x12, 0x2f, 0x07, 0x9a, 0x85, 0x02, 0x5b, 0x05,
5405         0x3f, 0xb4, 0x0c, 0x3f, 0x5e, 0x2b, 0x01, 0x08, 0x26, 0x5c, 0x01, 0xfe,
5406         0xd8, 0x14, 0x02, 0x5c, 0x13, 0x06, 0x65, 0xfe, 0xca, 0x12, 0x26, 0xfe,
5407         0xe0, 0x12, 0x72, 0xf1, 0x01, 0x08, 0x23, 0x72, 0x03, 0x8f, 0xfe, 0xdc,
5408         0x12, 0x25, 0xfe, 0xdc, 0x12, 0x1f, 0xfe, 0xca, 0x12, 0x5e, 0x2b, 0x01,
5409         0x08, 0xfe, 0xd5, 0x10, 0x13, 0x6c, 0xff, 0x02, 0x00, 0x57, 0x48, 0x8b,
5410         0x1c, 0xfe, 0xff, 0x7f, 0xfe, 0x30, 0x56, 0xfe, 0x00, 0x5c, 0x03, 0x13,
5411         0x6c, 0xff, 0x02, 0x00, 0x57, 0x48, 0x8b, 0x1c, 0x3d, 0xfe, 0x30, 0x56,
5412         0xfe, 0x00, 0x5c, 0x03, 0x13, 0x6c, 0xff, 0x02, 0x00, 0x57, 0x48, 0x8b,
5413         0x03, 0x13, 0x6c, 0xff, 0x02, 0x00, 0x57, 0x48, 0x8b, 0xfe, 0x0b, 0x58,
5414         0x03, 0x0a, 0x50, 0x01, 0x82, 0x0a, 0x3f, 0x01, 0x82, 0x03, 0xfc, 0x1c,
5415         0x10, 0xff, 0x03, 0x00, 0x54, 0xfe, 0x00, 0xf4, 0x19, 0x48, 0xfe, 0x00,
5416         0x7d, 0xfe, 0x01, 0x7d, 0xfe, 0x02, 0x7d, 0xfe, 0x03, 0x7c, 0x63, 0x27,
5417         0x0c, 0x52, 0x18, 0x53, 0xbe, 0x56, 0xbf, 0x57, 0x03, 0xfe, 0x62, 0x08,
5418         0xfe, 0x82, 0x4a, 0xfe, 0xe1, 0x1a, 0xfe, 0x83, 0x5a, 0x74, 0x03, 0x01,
5419         0xfe, 0x14, 0x18, 0xfe, 0x42, 0x48, 0x5f, 0x60, 0x89, 0x01, 0x08, 0x1f,
5420         0xfe, 0xa2, 0x14, 0x30, 0x2e, 0xd8, 0x01, 0x08, 0x1f, 0xfe, 0xa2, 0x14,
5421         0x30, 0x2e, 0xfe, 0xe8, 0x0a, 0xfe, 0xc1, 0x59, 0x05, 0xc6, 0x28, 0xfe,
5422         0xcc, 0x12, 0x49, 0x04, 0x1b, 0xfe, 0xc4, 0x13, 0x23, 0x62, 0x1b, 0xe2,
5423         0x4b, 0xc3, 0x64, 0xfe, 0xe8, 0x13, 0x3b, 0x13, 0x06, 0x17, 0xc3, 0x78,
5424         0xdb, 0xfe, 0x78, 0x10, 0xff, 0x02, 0x83, 0x55, 0xa1, 0xff, 0x02, 0x83,
5425         0x55, 0x62, 0x1a, 0xa4, 0xbb, 0xfe, 0x30, 0x00, 0x8e, 0xe4, 0x17, 0x2c,
5426         0x13, 0x06, 0xfe, 0x56, 0x10, 0x62, 0x0b, 0xe1, 0xbb, 0xfe, 0x64, 0x00,
5427         0x8e, 0xe4, 0x0a, 0xfe, 0x64, 0x00, 0x17, 0x93, 0x13, 0x06, 0xfe, 0x28,
5428         0x10, 0x62, 0x06, 0xfe, 0x60, 0x13, 0xbb, 0xfe, 0xc8, 0x00, 0x8e, 0xe4,
5429         0x0a, 0xfe, 0xc8, 0x00, 0x17, 0x4d, 0x13, 0x06, 0x83, 0xbb, 0xfe, 0x90,
5430         0x01, 0xba, 0xfe, 0x4e, 0x14, 0x89, 0xfe, 0x12, 0x10, 0xfe, 0x43, 0xf4,
5431         0x94, 0xfe, 0x56, 0xf0, 0xfe, 0x60, 0x14, 0xfe, 0x04, 0xf4, 0x6c, 0xfe,
5432         0x43, 0xf4, 0x93, 0xfe, 0xf3, 0x10, 0xf9, 0x01, 0xfe, 0x22, 0x13, 0x1c,
5433         0x3d, 0xfe, 0x10, 0x13, 0xfe, 0x00, 0x17, 0xfe, 0x4d, 0xe4, 0x69, 0xba,
5434         0xfe, 0x9c, 0x14, 0xb7, 0x69, 0xfe, 0x1c, 0x10, 0xfe, 0x00, 0x17, 0xfe,
5435         0x4d, 0xe4, 0x19, 0xba, 0xfe, 0x9c, 0x14, 0xb7, 0x19, 0x83, 0x60, 0x23,
5436         0xfe, 0x4d, 0xf4, 0x00, 0xdf, 0x89, 0x13, 0x06, 0xfe, 0xb4, 0x56, 0xfe,
5437         0xc3, 0x58, 0x03, 0x60, 0x13, 0x0b, 0x03, 0x15, 0x06, 0x01, 0x08, 0x26,
5438         0xe5, 0x15, 0x0b, 0x01, 0x08, 0x26, 0xe5, 0x15, 0x1a, 0x01, 0x08, 0x26,
5439         0xe5, 0x72, 0xfe, 0x89, 0x49, 0x01, 0x08, 0x03, 0x15, 0x06, 0x01, 0x08,
5440         0x26, 0xa6, 0x15, 0x1a, 0x01, 0x08, 0x26, 0xa6, 0x15, 0x06, 0x01, 0x08,
5441         0x26, 0xa6, 0xfe, 0x89, 0x49, 0x01, 0x08, 0x26, 0xa6, 0x72, 0xfe, 0x89,
5442         0x4a, 0x01, 0x08, 0x03, 0x60, 0x03, 0x1e, 0xcc, 0x07, 0x06, 0xfe, 0x44,
5443         0x13, 0xad, 0x12, 0xcc, 0xfe, 0x49, 0xf4, 0x00, 0x3b, 0x72, 0x9f, 0x5e,
5444         0xfe, 0x01, 0xec, 0xfe, 0x27, 0x01, 0xf1, 0x01, 0x08, 0x2f, 0x07, 0xfe,
5445         0xe3, 0x00, 0xfe, 0x20, 0x13, 0x1f, 0xfe, 0x5a, 0x15, 0x23, 0x12, 0xcd,
5446         0x01, 0x43, 0x1e, 0xcd, 0x07, 0x06, 0x45, 0x09, 0x4a, 0x06, 0x35, 0x03,
5447         0x0a, 0x42, 0x01, 0x0e, 0xed, 0x88, 0x07, 0x10, 0xa4, 0x0a, 0x80, 0x01,
5448         0x0e, 0x88, 0x0a, 0x51, 0x01, 0x9e, 0x03, 0x0a, 0x80, 0x01, 0x0e, 0x88,
5449         0xfe, 0x80, 0xe7, 0x10, 0x07, 0x10, 0x84, 0xfe, 0x45, 0x58, 0x01, 0xe3,
5450         0x88, 0x03, 0x0a, 0x42, 0x01, 0x0e, 0x88, 0x0a, 0x51, 0x01, 0x9e, 0x03,
5451         0x0a, 0x42, 0x01, 0x0e, 0xfe, 0x80, 0x80, 0xf2, 0xfe, 0x49, 0xe4, 0x10,
5452         0xa4, 0x0a, 0x80, 0x01, 0x0e, 0xf2, 0x0a, 0x51, 0x01, 0x82, 0x03, 0x17,
5453         0x10, 0x71, 0x66, 0xfe, 0x60, 0x01, 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xde,
5454         0xfe, 0x24, 0x1c, 0xfe, 0x1d, 0xf7, 0x1d, 0x90, 0xfe, 0xf6, 0x15, 0x01,
5455         0xfe, 0xfc, 0x16, 0xe0, 0x91, 0x1d, 0x66, 0xfe, 0x2c, 0x01, 0xfe, 0x2f,
5456         0x19, 0x03, 0xae, 0x21, 0xfe, 0xe6, 0x15, 0xfe, 0xda, 0x10, 0x17, 0x10,
5457         0x71, 0x05, 0xfe, 0x64, 0x01, 0xfe, 0x00, 0xf4, 0x19, 0xfe, 0x18, 0x58,
5458         0x05, 0xfe, 0x66, 0x01, 0xfe, 0x19, 0x58, 0x91, 0x19, 0xfe, 0x3c, 0x90,
5459         0xfe, 0x30, 0xf4, 0x06, 0xfe, 0x3c, 0x50, 0x66, 0xfe, 0x38, 0x00, 0xfe,
5460         0x0f, 0x79, 0xfe, 0x1c, 0xf7, 0x19, 0x90, 0xfe, 0x40, 0x16, 0xfe, 0xb6,
5461         0x14, 0x34, 0x03, 0xae, 0x21, 0xfe, 0x18, 0x16, 0xfe, 0x9c, 0x10, 0x17,
5462         0x10, 0x71, 0xfe, 0x83, 0x5a, 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xde, 0xfe,
5463         0x1d, 0xf7, 0x38, 0x90, 0xfe, 0x62, 0x16, 0xfe, 0x94, 0x14, 0xfe, 0x10,
5464         0x13, 0x91, 0x38, 0x66, 0x1b, 0xfe, 0xaf, 0x19, 0xfe, 0x98, 0xe7, 0x00,
5465         0x03, 0xae, 0x21, 0xfe, 0x56, 0x16, 0xfe, 0x6c, 0x10, 0x17, 0x10, 0x71,
5466         0xfe, 0x30, 0xbc, 0xfe, 0xb2, 0xbc, 0x91, 0xc5, 0x66, 0x1b, 0xfe, 0x0f,
5467         0x79, 0xfe, 0x1c, 0xf7, 0xc5, 0x90, 0xfe, 0x9a, 0x16, 0xfe, 0x5c, 0x14,
5468         0x34, 0x03, 0xae, 0x21, 0xfe, 0x86, 0x16, 0xfe, 0x42, 0x10, 0xfe, 0x02,
5469         0xf6, 0x10, 0x71, 0xfe, 0x18, 0xfe, 0x54, 0xfe, 0x19, 0xfe, 0x55, 0xfc,
5470         0xfe, 0x1d, 0xf7, 0x4f, 0x90, 0xfe, 0xc0, 0x16, 0xfe, 0x36, 0x14, 0xfe,
5471         0x1c, 0x13, 0x91, 0x4f, 0x47, 0xfe, 0x83, 0x58, 0xfe, 0xaf, 0x19, 0xfe,
5472         0x80, 0xe7, 0x10, 0xfe, 0x81, 0xe7, 0x10, 0x11, 0xfe, 0xdd, 0x00, 0x63,
5473         0x27, 0x03, 0x63, 0x27, 0xfe, 0x12, 0x45, 0x21, 0xfe, 0xb0, 0x16, 0x14,
5474         0x06, 0x37, 0x95, 0xa9, 0x02, 0x29, 0xfe, 0x39, 0xf0, 0xfe, 0x04, 0x17,
5475         0x23, 0x03, 0xfe, 0x7e, 0x18, 0x1c, 0x1a, 0x5d, 0x13, 0x0d, 0x03, 0x71,
5476         0x05, 0xcb, 0x1c, 0x06, 0xfe, 0xef, 0x12, 0xfe, 0xe1, 0x10, 0x78, 0x2c,
5477         0x46, 0x2f, 0x07, 0x2d, 0xfe, 0x3c, 0x13, 0xfe, 0x82, 0x14, 0xfe, 0x42,
5478         0x13, 0x3c, 0x8a, 0x0a, 0x42, 0x01, 0x0e, 0xb0, 0xfe, 0x3e, 0x12, 0xf0,
5479         0xfe, 0x45, 0x48, 0x01, 0xe3, 0xfe, 0x00, 0xcc, 0xb0, 0xfe, 0xf3, 0x13,
5480         0x3d, 0x75, 0x07, 0x10, 0xa3, 0x0a, 0x80, 0x01, 0x0e, 0xf2, 0x01, 0x6f,
5481         0xfe, 0x16, 0x10, 0x07, 0x7e, 0x85, 0xfe, 0x40, 0x14, 0xfe, 0x24, 0x12,
5482         0xf6, 0xfe, 0xd6, 0xf0, 0xfe, 0x24, 0x17, 0x17, 0x0b, 0x03, 0xfe, 0x9c,
5483         0xe7, 0x0b, 0x0f, 0xfe, 0x15, 0x00, 0x59, 0x76, 0x27, 0x01, 0xda, 0x17,
5484         0x06, 0x03, 0x3c, 0x8a, 0x09, 0x4a, 0x1d, 0x35, 0x11, 0x2d, 0x01, 0x6f,
5485         0x17, 0x06, 0x03, 0xfe, 0x38, 0x90, 0xfe, 0xba, 0x90, 0x79, 0xc7, 0x68,
5486         0xc8, 0xfe, 0x48, 0x55, 0x34, 0xfe, 0xc9, 0x55, 0x03, 0x1e, 0x98, 0x73,
5487         0x12, 0x98, 0x03, 0x0a, 0x99, 0x01, 0x0e, 0xf0, 0x0a, 0x40, 0x01, 0x0e,
5488         0xfe, 0x49, 0x44, 0x16, 0xfe, 0xf0, 0x17, 0x73, 0x75, 0x03, 0x0a, 0x42,
5489         0x01, 0x0e, 0x07, 0x10, 0x45, 0x0a, 0x51, 0x01, 0x9e, 0x0a, 0x40, 0x01,
5490         0x0e, 0x73, 0x75, 0x03, 0xfe, 0x4e, 0xe4, 0x1a, 0x64, 0xfe, 0x24, 0x18,
5491         0x05, 0xfe, 0x90, 0x00, 0xfe, 0x3a, 0x45, 0x5b, 0xfe, 0x4e, 0xe4, 0xc2,
5492         0x64, 0xfe, 0x36, 0x18, 0x05, 0xfe, 0x92, 0x00, 0xfe, 0x02, 0xe6, 0x1b,
5493         0xdc, 0xfe, 0x4e, 0xe4, 0xfe, 0x0b, 0x00, 0x64, 0xfe, 0x48, 0x18, 0x05,
5494         0xfe, 0x94, 0x00, 0xfe, 0x02, 0xe6, 0x19, 0xfe, 0x08, 0x10, 0x05, 0xfe,
5495         0x96, 0x00, 0xfe, 0x02, 0xe6, 0x2c, 0xfe, 0x4e, 0x45, 0xfe, 0x0c, 0x12,
5496         0xaf, 0xff, 0x04, 0x68, 0x54, 0xde, 0x1c, 0x69, 0x03, 0x07, 0x7a, 0xfe,
5497         0x5a, 0xf0, 0xfe, 0x74, 0x18, 0x24, 0xfe, 0x09, 0x00, 0xfe, 0x34, 0x10,
5498         0x07, 0x1b, 0xfe, 0x5a, 0xf0, 0xfe, 0x82, 0x18, 0x24, 0xc3, 0xfe, 0x26,
5499         0x10, 0x07, 0x1a, 0x5d, 0x24, 0x2c, 0xdc, 0x07, 0x0b, 0x5d, 0x24, 0x93,
5500         0xfe, 0x0e, 0x10, 0x07, 0x06, 0x5d, 0x24, 0x4d, 0x9f, 0xad, 0x03, 0x14,
5501         0xfe, 0x09, 0x00, 0x01, 0x33, 0xfe, 0x04, 0xfe, 0x7d, 0x05, 0x7f, 0xf9,
5502         0x03, 0x25, 0xfe, 0xca, 0x18, 0xfe, 0x14, 0xf0, 0x08, 0x65, 0xfe, 0xc6,
5503         0x18, 0x03, 0xff, 0x1a, 0x00, 0x00,
5504 };
5505
5506 static unsigned short _adv_asc3550_size = sizeof(_adv_asc3550_buf);     /* 0x13AD */
5507 static ADV_DCNT _adv_asc3550_chksum = 0x04D52DDDUL;     /* Expanded little-endian checksum. */
5508
5509 /* Microcode buffer is kept after initialization for error recovery. */
5510 static unsigned char _adv_asc38C0800_buf[] = {
5511         0x00, 0x00, 0x00, 0xf2, 0x00, 0xf0, 0x00, 0xfc, 0x00, 0x16, 0x18, 0xe4,
5512         0x01, 0x00, 0x48, 0xe4, 0x18, 0x80, 0x03, 0xf6, 0x02, 0x00, 0xce, 0x19,
5513         0x00, 0xfa, 0xff, 0xff, 0x1c, 0x0f, 0x00, 0xf6, 0x9e, 0xe7, 0xff, 0x00,
5514         0x82, 0xe7, 0x00, 0xea, 0x01, 0xfa, 0x01, 0xe6, 0x09, 0xe7, 0x55, 0xf0,
5515         0x01, 0xf6, 0x03, 0x00, 0x04, 0x00, 0x10, 0x00, 0x1e, 0xf0, 0x85, 0xf0,
5516         0x18, 0xf4, 0x08, 0x00, 0xbc, 0x00, 0x38, 0x54, 0x00, 0xec, 0xd5, 0xf0,
5517         0x82, 0x0d, 0x00, 0xe6, 0x86, 0xf0, 0xb1, 0xf0, 0x98, 0x57, 0x01, 0xfc,
5518         0xb4, 0x00, 0xd4, 0x01, 0x0c, 0x1c, 0x3e, 0x1c, 0x3c, 0x00, 0xbb, 0x00,
5519         0x00, 0x10, 0xba, 0x19, 0x02, 0x80, 0x32, 0xf0, 0x7c, 0x0d, 0x02, 0x13,
5520         0xba, 0x13, 0x18, 0x40, 0x00, 0x57, 0x01, 0xea, 0x02, 0xfc, 0x03, 0xfc,
5521         0x3e, 0x00, 0x6c, 0x01, 0x6e, 0x01, 0x74, 0x01, 0x76, 0x01, 0xb9, 0x54,
5522         0x3e, 0x57, 0x00, 0x80, 0x03, 0xe6, 0xb6, 0x00, 0xc0, 0x00, 0x01, 0x01,
5523         0x3e, 0x01, 0x7a, 0x01, 0xca, 0x08, 0xce, 0x10, 0x16, 0x11, 0x04, 0x12,
5524         0x08, 0x12, 0x02, 0x4a, 0xbb, 0x55, 0x3c, 0x56, 0x03, 0x58, 0x1b, 0x80,
5525         0x30, 0xe4, 0x4b, 0xe4, 0x5d, 0xf0, 0x02, 0xfa, 0x20, 0x00, 0x32, 0x00,
5526         0x40, 0x00, 0x80, 0x00, 0x24, 0x01, 0x3c, 0x01, 0x68, 0x01, 0x6a, 0x01,
5527         0x70, 0x01, 0x72, 0x01, 0x78, 0x01, 0x7c, 0x01, 0x62, 0x0a, 0x86, 0x0d,
5528         0x06, 0x13, 0x4c, 0x1c, 0x04, 0x80, 0x4a, 0xe4, 0x02, 0xee, 0x5b, 0xf0,
5529         0x03, 0xf7, 0x0c, 0x00, 0x0f, 0x00, 0x47, 0x00, 0xbe, 0x00, 0x00, 0x01,
5530         0x20, 0x11, 0x5c, 0x16, 0x32, 0x1c, 0x38, 0x1c, 0x4e, 0x1c, 0x10, 0x44,
5531         0x00, 0x4c, 0x04, 0xea, 0x5c, 0xf0, 0xa7, 0xf0, 0x04, 0xf6, 0x03, 0xfa,
5532         0x05, 0x00, 0x34, 0x00, 0x36, 0x00, 0x98, 0x00, 0xcc, 0x00, 0x20, 0x01,
5533         0x4e, 0x01, 0x4a, 0x0b, 0x42, 0x0c, 0x12, 0x0f, 0x0c, 0x10, 0x22, 0x11,
5534         0x0a, 0x12, 0x04, 0x13, 0x30, 0x1c, 0x02, 0x48, 0x00, 0x4e, 0x42, 0x54,
5535         0x44, 0x55, 0xbd, 0x56, 0x06, 0x83, 0x00, 0xdc, 0x05, 0xf0, 0x09, 0xf0,
5536         0x59, 0xf0, 0xb8, 0xf0, 0x4b, 0xf4, 0x06, 0xf7, 0x0e, 0xf7, 0x04, 0xfc,
5537         0x05, 0xfc, 0x06, 0x00, 0x19, 0x00, 0x33, 0x00, 0x9b, 0x00, 0xa4, 0x00,
5538         0xb5, 0x00, 0xba, 0x00, 0xd0, 0x00, 0xe1, 0x00, 0xe7, 0x00, 0xe2, 0x03,
5539         0x08, 0x0f, 0x02, 0x10, 0x04, 0x10, 0x0a, 0x10, 0x0a, 0x13, 0x0c, 0x13,
5540         0x12, 0x13, 0x24, 0x14, 0x34, 0x14, 0x04, 0x16, 0x08, 0x16, 0xa4, 0x17,
5541         0x20, 0x1c, 0x34, 0x1c, 0x36, 0x1c, 0x08, 0x44, 0x38, 0x44, 0x91, 0x44,
5542         0x0a, 0x45, 0x48, 0x46, 0x01, 0x48, 0x68, 0x54, 0x3a, 0x55, 0x83, 0x55,
5543         0xe5, 0x55, 0xb0, 0x57, 0x01, 0x58, 0x83, 0x59, 0x05, 0xe6, 0x0b, 0xf0,
5544         0x0c, 0xf0, 0x04, 0xf8, 0x05, 0xf8, 0x07, 0x00, 0x0a, 0x00, 0x1c, 0x00,
5545         0x1e, 0x00, 0x9e, 0x00, 0xa8, 0x00, 0xaa, 0x00, 0xb9, 0x00, 0xe0, 0x00,
5546         0x22, 0x01, 0x26, 0x01, 0x79, 0x01, 0x7e, 0x01, 0xc4, 0x01, 0xc6, 0x01,
5547         0x80, 0x02, 0x5e, 0x03, 0xee, 0x04, 0x9a, 0x06, 0xf8, 0x07, 0x62, 0x08,
5548         0x68, 0x08, 0x69, 0x08, 0xd6, 0x08, 0xe9, 0x09, 0xfa, 0x0b, 0x2e, 0x0f,
5549         0x12, 0x10, 0x1a, 0x10, 0xed, 0x10, 0xf1, 0x10, 0x2a, 0x11, 0x06, 0x12,
5550         0x0c, 0x12, 0x3e, 0x12, 0x10, 0x13, 0x16, 0x13, 0x1e, 0x13, 0x46, 0x14,
5551         0x76, 0x14, 0x82, 0x14, 0x36, 0x15, 0xca, 0x15, 0x6b, 0x18, 0xbe, 0x18,
5552         0xca, 0x18, 0xe6, 0x19, 0x12, 0x1c, 0x46, 0x1c, 0x9c, 0x32, 0x00, 0x40,
5553         0x0e, 0x47, 0xfe, 0x9c, 0xf0, 0x2b, 0x02, 0xfe, 0xac, 0x0d, 0xff, 0x10,
5554         0x00, 0x00, 0xd7, 0xfe, 0xe8, 0x19, 0x00, 0xd6, 0xfe, 0x84, 0x01, 0xff,
5555         0x03, 0x00, 0x00, 0xfe, 0x93, 0x15, 0xfe, 0x0f, 0x05, 0xff, 0x38, 0x00,
5556         0x00, 0xfe, 0x57, 0x24, 0x00, 0xfe, 0x4c, 0x00, 0x5b, 0xff, 0x04, 0x00,
5557         0x00, 0x11, 0xff, 0x09, 0x00, 0x00, 0xff, 0x08, 0x01, 0x01, 0xff, 0x08,
5558         0xff, 0xff, 0xff, 0x27, 0x00, 0x00, 0xff, 0x10, 0xff, 0xff, 0xff, 0x11,
5559         0x00, 0x00, 0xfe, 0x78, 0x56, 0xfe, 0x34, 0x12, 0xff, 0x21, 0x00, 0x00,
5560         0xfe, 0x04, 0xf7, 0xd6, 0x2c, 0x99, 0x0a, 0x01, 0xfe, 0xc2, 0x0f, 0xfe,
5561         0x04, 0xf7, 0xd6, 0x99, 0x0a, 0x42, 0x2c, 0xfe, 0x3d, 0xf0, 0xfe, 0x06,
5562         0x02, 0xfe, 0x20, 0xf0, 0xa7, 0xfe, 0x91, 0xf0, 0xfe, 0xf4, 0x01, 0xfe,
5563         0x90, 0xf0, 0xfe, 0xf4, 0x01, 0xfe, 0x8f, 0xf0, 0xa7, 0x03, 0x5d, 0x4d,
5564         0x02, 0xfe, 0xc8, 0x0d, 0x01, 0xfe, 0x38, 0x0e, 0xfe, 0xdd, 0x12, 0xfe,
5565         0xfc, 0x10, 0xfe, 0x28, 0x1c, 0x03, 0xfe, 0xa6, 0x00, 0xfe, 0xd3, 0x12,
5566         0x41, 0x14, 0xfe, 0xa6, 0x00, 0xc2, 0xfe, 0x48, 0xf0, 0xfe, 0x8a, 0x02,
5567         0xfe, 0x49, 0xf0, 0xfe, 0xa4, 0x02, 0xfe, 0x4a, 0xf0, 0xfe, 0xc2, 0x02,
5568         0xfe, 0x46, 0xf0, 0xfe, 0x54, 0x02, 0xfe, 0x47, 0xf0, 0xfe, 0x5a, 0x02,
5569         0xfe, 0x43, 0xf0, 0xfe, 0x48, 0x02, 0xfe, 0x44, 0xf0, 0xfe, 0x4c, 0x02,
5570         0xfe, 0x45, 0xf0, 0xfe, 0x50, 0x02, 0x18, 0x0a, 0xaa, 0x18, 0x06, 0x14,
5571         0xa1, 0x02, 0x2b, 0xfe, 0x00, 0x1c, 0xe7, 0xfe, 0x02, 0x1c, 0xe6, 0xfe,
5572         0x1e, 0x1c, 0xfe, 0xe9, 0x10, 0x01, 0xfe, 0x18, 0x18, 0xfe, 0xe7, 0x10,
5573         0xfe, 0x06, 0xfc, 0xce, 0x09, 0x70, 0x01, 0xa8, 0x02, 0x2b, 0x15, 0x59,
5574         0x39, 0xa2, 0x01, 0xfe, 0x58, 0x10, 0x09, 0x70, 0x01, 0x87, 0xfe, 0xbd,
5575         0x10, 0x09, 0x70, 0x01, 0x87, 0xfe, 0xad, 0x10, 0xfe, 0x16, 0x1c, 0xfe,
5576         0x58, 0x1c, 0x18, 0x06, 0x14, 0xa1, 0x2c, 0x1c, 0x2b, 0xfe, 0x3d, 0xf0,
5577         0xfe, 0x06, 0x02, 0x23, 0xfe, 0x98, 0x02, 0xfe, 0x5a, 0x1c, 0xf8, 0xfe,
5578         0x14, 0x1c, 0x15, 0xfe, 0x30, 0x00, 0x39, 0xa2, 0x01, 0xfe, 0x48, 0x10,
5579         0x18, 0x06, 0x14, 0xa1, 0x02, 0xd7, 0x22, 0x20, 0x07, 0x11, 0x35, 0xfe,
5580         0x69, 0x10, 0x18, 0x06, 0x14, 0xa1, 0xfe, 0x04, 0xec, 0x20, 0x4f, 0x43,
5581         0x13, 0x20, 0xfe, 0x05, 0xf6, 0xce, 0x01, 0xfe, 0x4a, 0x17, 0x08, 0x54,
5582         0x58, 0x37, 0x12, 0x2f, 0x42, 0x92, 0x01, 0xfe, 0x82, 0x16, 0x02, 0x2b,
5583         0x09, 0x46, 0x01, 0x0e, 0x07, 0x00, 0x66, 0x01, 0x73, 0xfe, 0x18, 0x10,
5584         0xfe, 0x41, 0x58, 0x09, 0xa4, 0x01, 0x0e, 0xfe, 0xc8, 0x54, 0x6b, 0xfe,
5585         0x10, 0x03, 0x01, 0xfe, 0x82, 0x16, 0x02, 0x2b, 0x2c, 0x4f, 0xfe, 0x02,
5586         0xe8, 0x2a, 0xfe, 0xbf, 0x57, 0xfe, 0x9e, 0x43, 0xfe, 0x77, 0x57, 0xfe,
5587         0x27, 0xf0, 0xfe, 0xe0, 0x01, 0xfe, 0x07, 0x4b, 0xfe, 0x20, 0xf0, 0xa7,
5588         0xfe, 0x40, 0x1c, 0x1c, 0xd9, 0xfe, 0x26, 0xf0, 0xfe, 0x5a, 0x03, 0xfe,
5589         0xa0, 0xf0, 0xfe, 0x48, 0x03, 0xfe, 0x11, 0xf0, 0xa7, 0xfe, 0xef, 0x10,
5590         0xfe, 0x9f, 0xf0, 0xfe, 0x68, 0x03, 0xf9, 0x10, 0xfe, 0x11, 0x00, 0x02,
5591         0x65, 0x2c, 0xfe, 0x48, 0x1c, 0xf9, 0x08, 0x05, 0x1b, 0xfe, 0x18, 0x13,
5592         0x21, 0x22, 0xa3, 0xb7, 0x13, 0xa3, 0x09, 0x46, 0x01, 0x0e, 0xb7, 0x78,
5593         0x01, 0xfe, 0xb4, 0x16, 0x12, 0xd1, 0x1c, 0xd9, 0xfe, 0x01, 0xf0, 0xd9,
5594         0xfe, 0x82, 0xf0, 0xfe, 0x96, 0x03, 0xfa, 0x12, 0xfe, 0xe4, 0x00, 0x27,
5595         0xfe, 0xa8, 0x03, 0x1c, 0x34, 0x1d, 0xfe, 0xb8, 0x03, 0x01, 0x4b, 0xfe,
5596         0x06, 0xf0, 0xfe, 0xc8, 0x03, 0x95, 0x86, 0xfe, 0x0a, 0xf0, 0xfe, 0x8a,
5597         0x06, 0x02, 0x24, 0x03, 0x70, 0x28, 0x17, 0xfe, 0xfa, 0x04, 0x15, 0x6d,
5598         0x01, 0x36, 0x7b, 0xfe, 0x6a, 0x02, 0x02, 0xd8, 0xf9, 0x2c, 0x99, 0x19,
5599         0xfe, 0x67, 0x1b, 0xfe, 0xbf, 0x57, 0xfe, 0x77, 0x57, 0xfe, 0x48, 0x1c,
5600         0x74, 0x01, 0xaf, 0x8c, 0x09, 0x46, 0x01, 0x0e, 0x07, 0x00, 0x17, 0xda,
5601         0x09, 0xd1, 0x01, 0x0e, 0x8d, 0x51, 0x64, 0x79, 0x2a, 0x03, 0x70, 0x28,
5602         0xfe, 0x10, 0x12, 0x15, 0x6d, 0x01, 0x36, 0x7b, 0xfe, 0x6a, 0x02, 0x02,
5603         0xd8, 0xc7, 0x81, 0xc8, 0x83, 0x1c, 0x24, 0x27, 0xfe, 0x40, 0x04, 0x1d,
5604         0xfe, 0x3c, 0x04, 0x3b, 0xfe, 0xa0, 0x00, 0xfe, 0x9b, 0x57, 0xfe, 0x4e,
5605         0x12, 0x2d, 0xff, 0x02, 0x00, 0x10, 0x01, 0x0b, 0x1d, 0xfe, 0xe4, 0x04,
5606         0x2d, 0x01, 0x0b, 0x1d, 0x24, 0x33, 0x31, 0xde, 0xfe, 0x4c, 0x44, 0xfe,
5607         0x4c, 0x12, 0x51, 0xfe, 0x44, 0x48, 0x0f, 0x6f, 0xfe, 0x4c, 0x54, 0x6b,
5608         0xda, 0x4f, 0x79, 0x2a, 0xfe, 0x06, 0x80, 0xfe, 0x48, 0x47, 0xfe, 0x62,
5609         0x13, 0x08, 0x05, 0x1b, 0xfe, 0x2a, 0x13, 0x32, 0x07, 0x82, 0xfe, 0x52,
5610         0x13, 0xfe, 0x20, 0x10, 0x0f, 0x6f, 0xfe, 0x4c, 0x54, 0x6b, 0xda, 0xfe,
5611         0x06, 0x80, 0xfe, 0x48, 0x47, 0xfe, 0x40, 0x13, 0x08, 0x05, 0x1b, 0xfe,
5612         0x08, 0x13, 0x32, 0x07, 0x82, 0xfe, 0x30, 0x13, 0x08, 0x05, 0x1b, 0xfe,
5613         0x1c, 0x12, 0x15, 0x9d, 0x08, 0x05, 0x06, 0x4d, 0x15, 0xfe, 0x0d, 0x00,
5614         0x01, 0x36, 0x7b, 0xfe, 0x64, 0x0d, 0x02, 0x24, 0x2d, 0x12, 0xfe, 0xe6,
5615         0x00, 0xfe, 0x1c, 0x90, 0xfe, 0x40, 0x5c, 0x04, 0x15, 0x9d, 0x01, 0x36,
5616         0x02, 0x2b, 0xfe, 0x42, 0x5b, 0x99, 0x19, 0xfe, 0x46, 0x59, 0xfe, 0xbf,
5617         0x57, 0xfe, 0x77, 0x57, 0xfe, 0x87, 0x80, 0xfe, 0x31, 0xe4, 0x5b, 0x08,
5618         0x05, 0x0a, 0xfe, 0x84, 0x13, 0xfe, 0x20, 0x80, 0x07, 0x19, 0xfe, 0x7c,
5619         0x12, 0x53, 0x05, 0x06, 0xfe, 0x6c, 0x13, 0x03, 0xfe, 0xa2, 0x00, 0x28,
5620         0x17, 0xfe, 0x90, 0x05, 0xfe, 0x31, 0xe4, 0x5a, 0x53, 0x05, 0x0a, 0xfe,
5621         0x56, 0x13, 0x03, 0xfe, 0xa0, 0x00, 0x28, 0xfe, 0x4e, 0x12, 0x67, 0xff,
5622         0x02, 0x00, 0x10, 0x27, 0xfe, 0x48, 0x05, 0x1c, 0x34, 0xfe, 0x89, 0x48,
5623         0xff, 0x02, 0x00, 0x10, 0x27, 0xfe, 0x56, 0x05, 0x26, 0xfe, 0xa8, 0x05,
5624         0x12, 0xfe, 0xe3, 0x00, 0x21, 0x53, 0xfe, 0x4a, 0xf0, 0xfe, 0x76, 0x05,
5625         0xfe, 0x49, 0xf0, 0xfe, 0x70, 0x05, 0x88, 0x25, 0xfe, 0x21, 0x00, 0xab,
5626         0x25, 0xfe, 0x22, 0x00, 0xaa, 0x25, 0x58, 0xfe, 0x09, 0x48, 0xff, 0x02,
5627         0x00, 0x10, 0x27, 0xfe, 0x86, 0x05, 0x26, 0xfe, 0xa8, 0x05, 0xfe, 0xe2,
5628         0x08, 0x53, 0x05, 0xcb, 0x4d, 0x01, 0xb0, 0x25, 0x06, 0x13, 0xd3, 0x39,
5629         0xfe, 0x27, 0x01, 0x08, 0x05, 0x1b, 0xfe, 0x22, 0x12, 0x41, 0x01, 0xb2,
5630         0x15, 0x9d, 0x08, 0x05, 0x06, 0x4d, 0x15, 0xfe, 0x0d, 0x00, 0x01, 0x36,
5631         0x7b, 0xfe, 0x64, 0x0d, 0x02, 0x24, 0x03, 0xfe, 0x9c, 0x00, 0x28, 0xeb,
5632         0x03, 0x5c, 0x28, 0xfe, 0x36, 0x13, 0x41, 0x01, 0xb2, 0x26, 0xfe, 0x18,
5633         0x06, 0x09, 0x06, 0x53, 0x05, 0x1f, 0xfe, 0x02, 0x12, 0x50, 0x01, 0xfe,
5634         0x9e, 0x15, 0x1d, 0xfe, 0x0e, 0x06, 0x12, 0xa5, 0x01, 0x4b, 0x12, 0xfe,
5635         0xe5, 0x00, 0x03, 0x5c, 0xc1, 0x0c, 0x5c, 0x03, 0xcd, 0x28, 0xfe, 0x62,
5636         0x12, 0x03, 0x45, 0x28, 0xfe, 0x5a, 0x13, 0x01, 0xfe, 0x0c, 0x19, 0x01,
5637         0xfe, 0x76, 0x19, 0xfe, 0x43, 0x48, 0xc4, 0xcc, 0x0f, 0x71, 0xff, 0x02,
5638         0x00, 0x57, 0x52, 0x93, 0x1e, 0x43, 0x8b, 0xc4, 0x6e, 0x41, 0x01, 0xb2,
5639         0x26, 0xfe, 0x82, 0x06, 0x53, 0x05, 0x1a, 0xe9, 0x91, 0x09, 0x59, 0x01,
5640         0xfe, 0xcc, 0x15, 0x1d, 0xfe, 0x78, 0x06, 0x12, 0xa5, 0x01, 0x4b, 0x12,
5641         0xfe, 0xe5, 0x00, 0x03, 0x45, 0xc1, 0x0c, 0x45, 0x18, 0x06, 0x01, 0xb2,
5642         0xfa, 0x76, 0x74, 0x01, 0xaf, 0x8c, 0x12, 0xfe, 0xe2, 0x00, 0x27, 0xdb,
5643         0x1c, 0x34, 0xfe, 0x0a, 0xf0, 0xfe, 0xb6, 0x06, 0x94, 0xfe, 0x6c, 0x07,
5644         0xfe, 0x06, 0xf0, 0xfe, 0x74, 0x07, 0x95, 0x86, 0x02, 0x24, 0x08, 0x05,
5645         0x0a, 0xfe, 0x2e, 0x12, 0x16, 0x19, 0x01, 0x0b, 0x16, 0x00, 0x01, 0x0b,
5646         0x16, 0x00, 0x01, 0x0b, 0x16, 0x00, 0x01, 0x0b, 0xfe, 0x99, 0xa4, 0x01,
5647         0x0b, 0x16, 0x00, 0x02, 0xfe, 0x42, 0x08, 0x68, 0x05, 0x1a, 0xfe, 0x38,
5648         0x12, 0x08, 0x05, 0x1a, 0xfe, 0x30, 0x13, 0x16, 0xfe, 0x1b, 0x00, 0x01,
5649         0x0b, 0x16, 0x00, 0x01, 0x0b, 0x16, 0x00, 0x01, 0x0b, 0x16, 0x00, 0x01,
5650         0x0b, 0x16, 0x06, 0x01, 0x0b, 0x16, 0x00, 0x02, 0xe2, 0x6c, 0x58, 0xbe,
5651         0x50, 0xfe, 0x9a, 0x81, 0x55, 0x1b, 0x7a, 0xfe, 0x42, 0x07, 0x09, 0x1b,
5652         0xfe, 0x09, 0x6f, 0xba, 0xfe, 0xca, 0x45, 0xfe, 0x32, 0x12, 0x69, 0x6d,
5653         0x8b, 0x6c, 0x7f, 0x27, 0xfe, 0x54, 0x07, 0x1c, 0x34, 0xfe, 0x0a, 0xf0,
5654         0xfe, 0x42, 0x07, 0x95, 0x86, 0x94, 0xfe, 0x6c, 0x07, 0x02, 0x24, 0x01,
5655         0x4b, 0x02, 0xdb, 0x16, 0x1f, 0x02, 0xdb, 0xfe, 0x9c, 0xf7, 0xdc, 0xfe,
5656         0x2c, 0x90, 0xfe, 0xae, 0x90, 0x56, 0xfe, 0xda, 0x07, 0x0c, 0x60, 0x14,
5657         0x61, 0x08, 0x54, 0x5a, 0x37, 0x22, 0x20, 0x07, 0x11, 0xfe, 0x0e, 0x12,
5658         0x8d, 0xfe, 0x80, 0x80, 0x39, 0x20, 0x6a, 0x2a, 0xfe, 0x06, 0x10, 0xfe,
5659         0x83, 0xe7, 0xfe, 0x48, 0x00, 0xab, 0xfe, 0x03, 0x40, 0x08, 0x54, 0x5b,
5660         0x37, 0x01, 0xb3, 0xb8, 0xfe, 0x1f, 0x40, 0x13, 0x62, 0x01, 0xef, 0xfe,
5661         0x08, 0x50, 0xfe, 0x8a, 0x50, 0xfe, 0x44, 0x51, 0xfe, 0xc6, 0x51, 0x88,
5662         0xfe, 0x08, 0x90, 0xfe, 0x8a, 0x90, 0x0c, 0x5e, 0x14, 0x5f, 0xfe, 0x0c,
5663         0x90, 0xfe, 0x8e, 0x90, 0xfe, 0x40, 0x50, 0xfe, 0xc2, 0x50, 0x0c, 0x3d,
5664         0x14, 0x3e, 0xfe, 0x4a, 0x10, 0x08, 0x05, 0x5a, 0xfe, 0x2a, 0x12, 0xfe,
5665         0x2c, 0x90, 0xfe, 0xae, 0x90, 0x0c, 0x60, 0x14, 0x61, 0x08, 0x05, 0x5b,
5666         0x8b, 0x01, 0xb3, 0xfe, 0x1f, 0x80, 0x13, 0x62, 0xfe, 0x44, 0x90, 0xfe,
5667         0xc6, 0x90, 0x0c, 0x3f, 0x14, 0x40, 0xfe, 0x08, 0x90, 0xfe, 0x8a, 0x90,
5668         0x0c, 0x5e, 0x14, 0x5f, 0xfe, 0x40, 0x90, 0xfe, 0xc2, 0x90, 0x0c, 0x3d,
5669         0x14, 0x3e, 0x0c, 0x2e, 0x14, 0x3c, 0x21, 0x0c, 0x49, 0x0c, 0x63, 0x08,
5670         0x54, 0x1f, 0x37, 0x2c, 0x0f, 0xfe, 0x4e, 0x11, 0x27, 0xdd, 0xfe, 0x9e,
5671         0xf0, 0xfe, 0x76, 0x08, 0xbc, 0x17, 0x34, 0x2c, 0x77, 0xe6, 0xc5, 0xfe,
5672         0x9a, 0x08, 0xc6, 0xfe, 0xb8, 0x08, 0x94, 0xfe, 0x8e, 0x08, 0xfe, 0x06,
5673         0xf0, 0xfe, 0x94, 0x08, 0x95, 0x86, 0x02, 0x24, 0x01, 0x4b, 0xfe, 0xc9,
5674         0x10, 0x16, 0x1f, 0xfe, 0xc9, 0x10, 0x68, 0x05, 0x06, 0xfe, 0x10, 0x12,
5675         0x68, 0x05, 0x0a, 0x4e, 0x08, 0x05, 0x0a, 0xfe, 0x90, 0x12, 0xfe, 0x2e,
5676         0x1c, 0x02, 0xfe, 0x18, 0x0b, 0x68, 0x05, 0x06, 0x4e, 0x68, 0x05, 0x0a,
5677         0xfe, 0x7a, 0x12, 0xfe, 0x2c, 0x1c, 0xfe, 0xaa, 0xf0, 0xfe, 0xd2, 0x09,
5678         0xfe, 0xac, 0xf0, 0xfe, 0x00, 0x09, 0x02, 0xfe, 0xde, 0x09, 0xfe, 0xb7,
5679         0xf0, 0xfe, 0xfc, 0x08, 0xfe, 0x02, 0xf6, 0x1a, 0x50, 0xfe, 0x70, 0x18,
5680         0xfe, 0xf1, 0x18, 0xfe, 0x40, 0x55, 0xfe, 0xe1, 0x55, 0xfe, 0x10, 0x58,
5681         0xfe, 0x91, 0x58, 0xfe, 0x14, 0x59, 0xfe, 0x95, 0x59, 0x1c, 0x85, 0xfe,
5682         0x8c, 0xf0, 0xfe, 0xfc, 0x08, 0xfe, 0xac, 0xf0, 0xfe, 0xf0, 0x08, 0xb5,
5683         0xfe, 0xcb, 0x10, 0xfe, 0xad, 0xf0, 0xfe, 0x0c, 0x09, 0x02, 0xfe, 0x18,
5684         0x0b, 0xb6, 0xfe, 0xbf, 0x10, 0xfe, 0x2b, 0xf0, 0x85, 0xf4, 0x1e, 0xfe,
5685         0x00, 0xfe, 0xfe, 0x1c, 0x12, 0xc2, 0xfe, 0xd2, 0xf0, 0x85, 0xfe, 0x76,
5686         0x18, 0x1e, 0x19, 0x17, 0x85, 0x03, 0xd2, 0x1e, 0x06, 0x17, 0x85, 0xc5,
5687         0x4a, 0xc6, 0x4a, 0xb5, 0xb6, 0xfe, 0x89, 0x10, 0x74, 0x67, 0x2d, 0x15,
5688         0x9d, 0x01, 0x36, 0x10, 0xfe, 0x35, 0x00, 0xfe, 0x01, 0xf0, 0x65, 0x10,
5689         0x80, 0x02, 0x65, 0xfe, 0x98, 0x80, 0xfe, 0x19, 0xe4, 0x0a, 0xfe, 0x1a,
5690         0x12, 0x51, 0xfe, 0x19, 0x82, 0xfe, 0x6c, 0x18, 0xfe, 0x44, 0x54, 0xbe,
5691         0xfe, 0x19, 0x81, 0xfe, 0x74, 0x18, 0x8f, 0x90, 0x17, 0xfe, 0xce, 0x08,
5692         0x02, 0x4a, 0x08, 0x05, 0x5a, 0xec, 0x03, 0x2e, 0x29, 0x3c, 0x0c, 0x3f,
5693         0x14, 0x40, 0x9b, 0x2e, 0x9c, 0x3c, 0xfe, 0x6c, 0x18, 0xfe, 0xed, 0x18,
5694         0xfe, 0x44, 0x54, 0xfe, 0xe5, 0x54, 0x3a, 0x3f, 0x3b, 0x40, 0x03, 0x49,
5695         0x29, 0x63, 0x8f, 0xfe, 0xe3, 0x54, 0xfe, 0x74, 0x18, 0xfe, 0xf5, 0x18,
5696         0x8f, 0xfe, 0xe3, 0x54, 0x90, 0xc0, 0x56, 0xfe, 0xce, 0x08, 0x02, 0x4a,
5697         0xfe, 0x37, 0xf0, 0xfe, 0xda, 0x09, 0xfe, 0x8b, 0xf0, 0xfe, 0x60, 0x09,
5698         0x02, 0x4a, 0x08, 0x05, 0x0a, 0x23, 0xfe, 0xfa, 0x0a, 0x3a, 0x49, 0x3b,
5699         0x63, 0x56, 0xfe, 0x3e, 0x0a, 0x0f, 0xfe, 0xc0, 0x07, 0x41, 0x98, 0x00,
5700         0xad, 0xfe, 0x01, 0x59, 0xfe, 0x52, 0xf0, 0xfe, 0x0c, 0x0a, 0x8f, 0x7a,
5701         0xfe, 0x24, 0x0a, 0x3a, 0x49, 0x8f, 0xfe, 0xe3, 0x54, 0x57, 0x49, 0x7d,
5702         0x63, 0xfe, 0x14, 0x58, 0xfe, 0x95, 0x58, 0x02, 0x4a, 0x3a, 0x49, 0x3b,
5703         0x63, 0xfe, 0x14, 0x59, 0xfe, 0x95, 0x59, 0xbe, 0x57, 0x49, 0x57, 0x63,
5704         0x02, 0x4a, 0x08, 0x05, 0x5a, 0xfe, 0x82, 0x12, 0x08, 0x05, 0x1f, 0xfe,
5705         0x66, 0x13, 0x22, 0x62, 0xb7, 0xfe, 0x03, 0xa1, 0xfe, 0x83, 0x80, 0xfe,
5706         0xc8, 0x44, 0xfe, 0x2e, 0x13, 0xfe, 0x04, 0x91, 0xfe, 0x86, 0x91, 0x6a,
5707         0x2a, 0xfe, 0x40, 0x59, 0xfe, 0xc1, 0x59, 0x56, 0xe0, 0x03, 0x60, 0x29,
5708         0x61, 0x0c, 0x7f, 0x14, 0x80, 0x57, 0x60, 0x7d, 0x61, 0x01, 0xb3, 0xb8,
5709         0x6a, 0x2a, 0x13, 0x62, 0x9b, 0x2e, 0x9c, 0x3c, 0x3a, 0x3f, 0x3b, 0x40,
5710         0x90, 0xc0, 0xfe, 0x04, 0xfa, 0x2e, 0xfe, 0x05, 0xfa, 0x3c, 0x01, 0xef,
5711         0xfe, 0x36, 0x10, 0x21, 0x0c, 0x7f, 0x0c, 0x80, 0x3a, 0x3f, 0x3b, 0x40,
5712         0xe4, 0x08, 0x05, 0x1f, 0x17, 0xe0, 0x3a, 0x3d, 0x3b, 0x3e, 0x08, 0x05,
5713         0xfe, 0xf7, 0x00, 0x37, 0x03, 0x5e, 0x29, 0x5f, 0xfe, 0x10, 0x58, 0xfe,
5714         0x91, 0x58, 0x57, 0x49, 0x7d, 0x63, 0x02, 0xfe, 0xf4, 0x09, 0x08, 0x05,
5715         0x1f, 0x17, 0xe0, 0x08, 0x05, 0xfe, 0xf7, 0x00, 0x37, 0xbe, 0xfe, 0x19,
5716         0x81, 0x50, 0xfe, 0x10, 0x90, 0xfe, 0x92, 0x90, 0xfe, 0xd3, 0x10, 0x32,
5717         0x07, 0xa6, 0x17, 0xfe, 0x08, 0x09, 0x12, 0xa6, 0x08, 0x05, 0x0a, 0xfe,
5718         0x14, 0x13, 0x03, 0x3d, 0x29, 0x3e, 0x56, 0xfe, 0x08, 0x09, 0xfe, 0x0c,
5719         0x58, 0xfe, 0x8d, 0x58, 0x02, 0x4a, 0x21, 0x41, 0xfe, 0x19, 0x80, 0xe7,
5720         0x08, 0x05, 0x0a, 0xfe, 0x1a, 0x12, 0xfe, 0x6c, 0x19, 0xfe, 0x19, 0x41,
5721         0xf4, 0xc2, 0xfe, 0xd1, 0xf0, 0xe2, 0x15, 0x7e, 0x01, 0x36, 0x10, 0xfe,
5722         0x44, 0x00, 0xfe, 0x8e, 0x10, 0xfe, 0x6c, 0x19, 0x57, 0x3d, 0xfe, 0xed,
5723         0x19, 0x7d, 0x3e, 0xfe, 0x0c, 0x51, 0xfe, 0x8e, 0x51, 0xf4, 0x1e, 0xfe,
5724         0x00, 0xff, 0x35, 0xfe, 0x74, 0x10, 0xc2, 0xfe, 0xd2, 0xf0, 0xfe, 0xa6,
5725         0x0b, 0xfe, 0x76, 0x18, 0x1e, 0x19, 0x8a, 0x03, 0xd2, 0x1e, 0x06, 0xfe,
5726         0x08, 0x13, 0x10, 0xfe, 0x16, 0x00, 0x02, 0x65, 0xfe, 0xd1, 0xf0, 0xfe,
5727         0xb8, 0x0b, 0x15, 0x7e, 0x01, 0x36, 0x10, 0xfe, 0x17, 0x00, 0xfe, 0x42,
5728         0x10, 0xfe, 0xce, 0xf0, 0xfe, 0xbe, 0x0b, 0xfe, 0x3c, 0x10, 0xfe, 0xcd,
5729         0xf0, 0xfe, 0xca, 0x0b, 0x10, 0xfe, 0x22, 0x00, 0x02, 0x65, 0xfe, 0xcb,
5730         0xf0, 0xfe, 0xd6, 0x0b, 0x10, 0xfe, 0x24, 0x00, 0x02, 0x65, 0xfe, 0xd0,
5731         0xf0, 0xfe, 0xe0, 0x0b, 0x10, 0x9e, 0xe5, 0xfe, 0xcf, 0xf0, 0xfe, 0xea,
5732         0x0b, 0x10, 0x58, 0xfe, 0x10, 0x10, 0xfe, 0xcc, 0xf0, 0xe2, 0x68, 0x05,
5733         0x1f, 0x4d, 0x10, 0xfe, 0x12, 0x00, 0x2c, 0x0f, 0xfe, 0x4e, 0x11, 0x27,
5734         0xfe, 0x00, 0x0c, 0xfe, 0x9e, 0xf0, 0xfe, 0x14, 0x0c, 0xbc, 0x17, 0x34,
5735         0x2c, 0x77, 0xe6, 0xc5, 0x24, 0xc6, 0x24, 0x2c, 0xfa, 0x27, 0xfe, 0x20,
5736         0x0c, 0x1c, 0x34, 0x94, 0xfe, 0x3c, 0x0c, 0x95, 0x86, 0xc5, 0xdc, 0xc6,
5737         0xdc, 0x02, 0x24, 0x01, 0x4b, 0xfe, 0xdb, 0x10, 0x12, 0xfe, 0xe8, 0x00,
5738         0xb5, 0xb6, 0x74, 0xc7, 0x81, 0xc8, 0x83, 0xfe, 0x89, 0xf0, 0x24, 0x33,
5739         0x31, 0xe1, 0xc7, 0x81, 0xc8, 0x83, 0x27, 0xfe, 0x66, 0x0c, 0x1d, 0x24,
5740         0x33, 0x31, 0xdf, 0xbc, 0x4e, 0x10, 0xfe, 0x42, 0x00, 0x02, 0x65, 0x7c,
5741         0x06, 0xfe, 0x81, 0x49, 0x17, 0xfe, 0x2c, 0x0d, 0x08, 0x05, 0x0a, 0xfe,
5742         0x44, 0x13, 0x10, 0x00, 0x55, 0x0a, 0xfe, 0x54, 0x12, 0x55, 0xfe, 0x28,
5743         0x00, 0x23, 0xfe, 0x9a, 0x0d, 0x09, 0x46, 0x01, 0x0e, 0x07, 0x00, 0x66,
5744         0x44, 0xfe, 0x28, 0x00, 0xfe, 0xe2, 0x10, 0x01, 0xf5, 0x01, 0xf6, 0x09,
5745         0xa4, 0x01, 0xfe, 0x26, 0x0f, 0x64, 0x12, 0x2f, 0x01, 0x73, 0x02, 0x2b,
5746         0x10, 0xfe, 0x44, 0x00, 0x55, 0x0a, 0xe9, 0x44, 0x0a, 0xfe, 0xb4, 0x10,
5747         0x01, 0xb0, 0x44, 0x0a, 0xfe, 0xaa, 0x10, 0x01, 0xb0, 0xfe, 0x19, 0x82,
5748         0xfe, 0x34, 0x46, 0xac, 0x44, 0x0a, 0x10, 0xfe, 0x43, 0x00, 0xfe, 0x96,
5749         0x10, 0x08, 0x54, 0x0a, 0x37, 0x01, 0xf5, 0x01, 0xf6, 0x64, 0x12, 0x2f,
5750         0x01, 0x73, 0x99, 0x0a, 0x64, 0x42, 0x92, 0x02, 0xfe, 0x2e, 0x03, 0x08,
5751         0x05, 0x0a, 0x8a, 0x44, 0x0a, 0x10, 0x00, 0xfe, 0x5c, 0x10, 0x68, 0x05,
5752         0x1a, 0xfe, 0x58, 0x12, 0x08, 0x05, 0x1a, 0xfe, 0x50, 0x13, 0xfe, 0x1c,
5753         0x1c, 0xfe, 0x9d, 0xf0, 0xfe, 0x50, 0x0d, 0xfe, 0x1c, 0x1c, 0xfe, 0x9d,
5754         0xf0, 0xfe, 0x56, 0x0d, 0x08, 0x54, 0x1a, 0x37, 0xfe, 0xa9, 0x10, 0x10,
5755         0xfe, 0x15, 0x00, 0xfe, 0x04, 0xe6, 0x0a, 0x50, 0xfe, 0x2e, 0x10, 0x10,
5756         0xfe, 0x13, 0x00, 0xfe, 0x10, 0x10, 0x10, 0x6f, 0xab, 0x10, 0xfe, 0x41,
5757         0x00, 0xaa, 0x10, 0xfe, 0x24, 0x00, 0x8c, 0xb5, 0xb6, 0x74, 0x03, 0x70,
5758         0x28, 0x23, 0xd8, 0x50, 0xfe, 0x04, 0xe6, 0x1a, 0xfe, 0x9d, 0x41, 0xfe,
5759         0x1c, 0x42, 0x64, 0x01, 0xe3, 0x02, 0x2b, 0xf8, 0x15, 0x0a, 0x39, 0xa0,
5760         0xb4, 0x15, 0xfe, 0x31, 0x00, 0x39, 0xa2, 0x01, 0xfe, 0x48, 0x10, 0x02,
5761         0xd7, 0x42, 0xfe, 0x06, 0xec, 0xd0, 0xfc, 0x44, 0x1b, 0xfe, 0xce, 0x45,
5762         0x35, 0x42, 0xfe, 0x06, 0xea, 0xd0, 0xfe, 0x47, 0x4b, 0x91, 0xfe, 0x75,
5763         0x57, 0x03, 0x5d, 0xfe, 0x98, 0x56, 0xfe, 0x38, 0x12, 0x09, 0x48, 0x01,
5764         0x0e, 0xfe, 0x44, 0x48, 0x4f, 0x08, 0x05, 0x1b, 0xfe, 0x1a, 0x13, 0x09,
5765         0x46, 0x01, 0x0e, 0x41, 0xfe, 0x41, 0x58, 0x09, 0xa4, 0x01, 0x0e, 0xfe,
5766         0x49, 0x54, 0x96, 0xfe, 0x1e, 0x0e, 0x02, 0xfe, 0x2e, 0x03, 0x09, 0x5d,
5767         0xfe, 0xee, 0x14, 0xfc, 0x44, 0x1b, 0xfe, 0xce, 0x45, 0x35, 0x42, 0xfe,
5768         0xce, 0x47, 0xfe, 0xad, 0x13, 0x02, 0x2b, 0x22, 0x20, 0x07, 0x11, 0xfe,
5769         0x9e, 0x12, 0x21, 0x13, 0x59, 0x13, 0x9f, 0x13, 0xd5, 0x22, 0x2f, 0x41,
5770         0x39, 0x2f, 0xbc, 0xad, 0xfe, 0xbc, 0xf0, 0xfe, 0xe0, 0x0e, 0x0f, 0x06,
5771         0x13, 0x59, 0x01, 0xfe, 0xda, 0x16, 0x03, 0xfe, 0x38, 0x01, 0x29, 0xfe,
5772         0x3a, 0x01, 0x56, 0xfe, 0xe4, 0x0e, 0xfe, 0x02, 0xec, 0xd5, 0x69, 0x00,
5773         0x66, 0xfe, 0x04, 0xec, 0x20, 0x4f, 0xfe, 0x05, 0xf6, 0xfe, 0x34, 0x01,
5774         0x01, 0xfe, 0x4a, 0x17, 0xfe, 0x08, 0x90, 0xfe, 0x48, 0xf4, 0x0d, 0xfe,
5775         0x18, 0x13, 0xba, 0xfe, 0x02, 0xea, 0xd5, 0x69, 0x7e, 0xfe, 0xc5, 0x13,
5776         0x15, 0x1a, 0x39, 0xa0, 0xb4, 0xfe, 0x2e, 0x10, 0x03, 0xfe, 0x38, 0x01,
5777         0x1e, 0xfe, 0xf0, 0xff, 0x0c, 0xfe, 0x60, 0x01, 0x03, 0xfe, 0x3a, 0x01,
5778         0x0c, 0xfe, 0x62, 0x01, 0x43, 0x13, 0x20, 0x25, 0x06, 0x13, 0x2f, 0x12,
5779         0x2f, 0x92, 0x0f, 0x06, 0x04, 0x21, 0x04, 0x22, 0x59, 0xfe, 0xf7, 0x12,
5780         0x22, 0x9f, 0xb7, 0x13, 0x9f, 0x07, 0x7e, 0xfe, 0x71, 0x13, 0xfe, 0x24,
5781         0x1c, 0x15, 0x19, 0x39, 0xa0, 0xb4, 0xfe, 0xd9, 0x10, 0xc3, 0xfe, 0x03,
5782         0xdc, 0xfe, 0x73, 0x57, 0xfe, 0x80, 0x5d, 0x04, 0xc3, 0xfe, 0x03, 0xdc,
5783         0xfe, 0x5b, 0x57, 0xfe, 0x80, 0x5d, 0x04, 0xfe, 0x03, 0x57, 0xc3, 0x21,
5784         0xfe, 0x00, 0xcc, 0x04, 0xfe, 0x03, 0x57, 0xc3, 0x78, 0x04, 0x08, 0x05,
5785         0x58, 0xfe, 0x22, 0x13, 0xfe, 0x1c, 0x80, 0x07, 0x06, 0xfe, 0x1a, 0x13,
5786         0xfe, 0x1e, 0x80, 0xed, 0xfe, 0x1d, 0x80, 0xae, 0xfe, 0x0c, 0x90, 0xfe,
5787         0x0e, 0x13, 0xfe, 0x0e, 0x90, 0xac, 0xfe, 0x3c, 0x90, 0xfe, 0x30, 0xf4,
5788         0x0a, 0xfe, 0x3c, 0x50, 0xaa, 0x01, 0xfe, 0x7a, 0x17, 0x32, 0x07, 0x2f,
5789         0xad, 0x01, 0xfe, 0xb4, 0x16, 0x08, 0x05, 0x1b, 0x4e, 0x01, 0xf5, 0x01,
5790         0xf6, 0x12, 0xfe, 0xe9, 0x00, 0x08, 0x05, 0x58, 0xfe, 0x2c, 0x13, 0x01,
5791         0xfe, 0x0c, 0x17, 0xfe, 0x1e, 0x1c, 0xfe, 0x14, 0x90, 0xfe, 0x96, 0x90,
5792         0x0c, 0xfe, 0x64, 0x01, 0x14, 0xfe, 0x66, 0x01, 0x08, 0x05, 0x5b, 0xfe,
5793         0x12, 0x12, 0xfe, 0x03, 0x80, 0x8d, 0xfe, 0x01, 0xec, 0x20, 0xfe, 0x80,
5794         0x40, 0x13, 0x20, 0x6a, 0x2a, 0x12, 0xcf, 0x64, 0x22, 0x20, 0xfb, 0x79,
5795         0x20, 0x04, 0xfe, 0x08, 0x1c, 0x03, 0xfe, 0xac, 0x00, 0xfe, 0x06, 0x58,
5796         0x03, 0xfe, 0xae, 0x00, 0xfe, 0x07, 0x58, 0x03, 0xfe, 0xb0, 0x00, 0xfe,
5797         0x08, 0x58, 0x03, 0xfe, 0xb2, 0x00, 0xfe, 0x09, 0x58, 0xfe, 0x0a, 0x1c,
5798         0x25, 0x6e, 0x13, 0xd0, 0x21, 0x0c, 0x5c, 0x0c, 0x45, 0x0f, 0x46, 0x52,
5799         0x50, 0x18, 0x1b, 0xfe, 0x90, 0x4d, 0xfe, 0x91, 0x54, 0x23, 0xfe, 0xfc,
5800         0x0f, 0x44, 0x11, 0x0f, 0x48, 0x52, 0x18, 0x58, 0xfe, 0x90, 0x4d, 0xfe,
5801         0x91, 0x54, 0x23, 0xe4, 0x25, 0x11, 0x13, 0x20, 0x7c, 0x6f, 0x4f, 0x22,
5802         0x20, 0xfb, 0x79, 0x20, 0x12, 0xcf, 0xfe, 0x14, 0x56, 0xfe, 0xd6, 0xf0,
5803         0xfe, 0x26, 0x10, 0xf8, 0x74, 0xfe, 0x14, 0x1c, 0xfe, 0x10, 0x1c, 0xfe,
5804         0x18, 0x1c, 0x04, 0x42, 0xfe, 0x0c, 0x14, 0xfc, 0xfe, 0x07, 0xe6, 0x1b,
5805         0xfe, 0xce, 0x47, 0xfe, 0xf5, 0x13, 0x04, 0x01, 0xb0, 0x7c, 0x6f, 0x4f,
5806         0xfe, 0x06, 0x80, 0xfe, 0x48, 0x47, 0xfe, 0x42, 0x13, 0x32, 0x07, 0x2f,
5807         0xfe, 0x34, 0x13, 0x09, 0x48, 0x01, 0x0e, 0xbb, 0xfe, 0x36, 0x12, 0xfe,
5808         0x41, 0x48, 0xfe, 0x45, 0x48, 0x01, 0xf0, 0xfe, 0x00, 0xcc, 0xbb, 0xfe,
5809         0xf3, 0x13, 0x43, 0x78, 0x07, 0x11, 0xac, 0x09, 0x84, 0x01, 0x0e, 0xfe,
5810         0x80, 0x5c, 0x01, 0x73, 0xfe, 0x0e, 0x10, 0x07, 0x82, 0x4e, 0xfe, 0x14,
5811         0x56, 0xfe, 0xd6, 0xf0, 0xfe, 0x60, 0x10, 0x04, 0xfe, 0x44, 0x58, 0x8d,
5812         0xfe, 0x01, 0xec, 0xa2, 0xfe, 0x9e, 0x40, 0xfe, 0x9d, 0xe7, 0x00, 0xfe,
5813         0x9c, 0xe7, 0x1a, 0x79, 0x2a, 0x01, 0xe3, 0xfe, 0xdd, 0x10, 0x2c, 0xc7,
5814         0x81, 0xc8, 0x83, 0x33, 0x31, 0xde, 0x07, 0x1a, 0xfe, 0x48, 0x12, 0x07,
5815         0x0a, 0xfe, 0x56, 0x12, 0x07, 0x19, 0xfe, 0x30, 0x12, 0x07, 0xc9, 0x17,
5816         0xfe, 0x32, 0x12, 0x07, 0xfe, 0x23, 0x00, 0x17, 0xeb, 0x07, 0x06, 0x17,
5817         0xfe, 0x9c, 0x12, 0x07, 0x1f, 0xfe, 0x12, 0x12, 0x07, 0x00, 0x17, 0x24,
5818         0x15, 0xc9, 0x01, 0x36, 0xa9, 0x2d, 0x01, 0x0b, 0x94, 0x4b, 0x04, 0x2d,
5819         0xdd, 0x09, 0xd1, 0x01, 0xfe, 0x26, 0x0f, 0x12, 0x82, 0x02, 0x2b, 0x2d,
5820         0x32, 0x07, 0xa6, 0xfe, 0xd9, 0x13, 0x3a, 0x3d, 0x3b, 0x3e, 0x56, 0xfe,
5821         0xf0, 0x11, 0x08, 0x05, 0x5a, 0xfe, 0x72, 0x12, 0x9b, 0x2e, 0x9c, 0x3c,
5822         0x90, 0xc0, 0x96, 0xfe, 0xba, 0x11, 0x22, 0x62, 0xfe, 0x26, 0x13, 0x03,
5823         0x7f, 0x29, 0x80, 0x56, 0xfe, 0x76, 0x0d, 0x0c, 0x60, 0x14, 0x61, 0x21,
5824         0x0c, 0x7f, 0x0c, 0x80, 0x01, 0xb3, 0x25, 0x6e, 0x77, 0x13, 0x62, 0x01,
5825         0xef, 0x9b, 0x2e, 0x9c, 0x3c, 0xfe, 0x04, 0x55, 0xfe, 0xa5, 0x55, 0xfe,
5826         0x04, 0xfa, 0x2e, 0xfe, 0x05, 0xfa, 0x3c, 0xfe, 0x91, 0x10, 0x03, 0x3f,
5827         0x29, 0x40, 0xfe, 0x40, 0x56, 0xfe, 0xe1, 0x56, 0x0c, 0x3f, 0x14, 0x40,
5828         0x88, 0x9b, 0x2e, 0x9c, 0x3c, 0x90, 0xc0, 0x03, 0x5e, 0x29, 0x5f, 0xfe,
5829         0x00, 0x56, 0xfe, 0xa1, 0x56, 0x0c, 0x5e, 0x14, 0x5f, 0x08, 0x05, 0x5a,
5830         0xfe, 0x1e, 0x12, 0x22, 0x62, 0xfe, 0x1f, 0x40, 0x03, 0x60, 0x29, 0x61,
5831         0xfe, 0x2c, 0x50, 0xfe, 0xae, 0x50, 0x03, 0x3f, 0x29, 0x40, 0xfe, 0x44,
5832         0x50, 0xfe, 0xc6, 0x50, 0x03, 0x5e, 0x29, 0x5f, 0xfe, 0x08, 0x50, 0xfe,
5833         0x8a, 0x50, 0x03, 0x3d, 0x29, 0x3e, 0xfe, 0x40, 0x50, 0xfe, 0xc2, 0x50,
5834         0x02, 0x89, 0x25, 0x06, 0x13, 0xd4, 0x02, 0x72, 0x2d, 0x01, 0x0b, 0x1d,
5835         0x4c, 0x33, 0x31, 0xde, 0x07, 0x06, 0x23, 0x4c, 0x32, 0x07, 0xa6, 0x23,
5836         0x72, 0x01, 0xaf, 0x1e, 0x43, 0x17, 0x4c, 0x08, 0x05, 0x0a, 0xee, 0x3a,
5837         0x3d, 0x3b, 0x3e, 0xfe, 0x0a, 0x55, 0x35, 0xfe, 0x8b, 0x55, 0x57, 0x3d,
5838         0x7d, 0x3e, 0xfe, 0x0c, 0x51, 0xfe, 0x8e, 0x51, 0x02, 0x72, 0xfe, 0x19,
5839         0x81, 0xba, 0xfe, 0x19, 0x41, 0x02, 0x72, 0x2d, 0x01, 0x0b, 0x1c, 0x34,
5840         0x1d, 0xe8, 0x33, 0x31, 0xe1, 0x55, 0x19, 0xfe, 0xa6, 0x12, 0x55, 0x0a,
5841         0x4d, 0x02, 0x4c, 0x01, 0x0b, 0x1c, 0x34, 0x1d, 0xe8, 0x33, 0x31, 0xdf,
5842         0x07, 0x19, 0x23, 0x4c, 0x01, 0x0b, 0x1d, 0xe8, 0x33, 0x31, 0xfe, 0xe8,
5843         0x09, 0xfe, 0xc2, 0x49, 0x51, 0x03, 0xfe, 0x9c, 0x00, 0x28, 0x8a, 0x53,
5844         0x05, 0x1f, 0x35, 0xa9, 0xfe, 0xbb, 0x45, 0x55, 0x00, 0x4e, 0x44, 0x06,
5845         0x7c, 0x43, 0xfe, 0xda, 0x14, 0x01, 0xaf, 0x8c, 0xfe, 0x4b, 0x45, 0xee,
5846         0x32, 0x07, 0xa5, 0xed, 0x03, 0xcd, 0x28, 0x8a, 0x03, 0x45, 0x28, 0x35,
5847         0x67, 0x02, 0x72, 0xfe, 0xc0, 0x5d, 0xfe, 0xf8, 0x14, 0xfe, 0x03, 0x17,
5848         0x03, 0x5c, 0xc1, 0x0c, 0x5c, 0x67, 0x2d, 0x01, 0x0b, 0x26, 0x89, 0x01,
5849         0xfe, 0x9e, 0x15, 0x02, 0x89, 0x01, 0x0b, 0x1c, 0x34, 0x1d, 0x4c, 0x33,
5850         0x31, 0xdf, 0x07, 0x06, 0x23, 0x4c, 0x01, 0xf1, 0xfe, 0x42, 0x58, 0xf1,
5851         0xfe, 0xa4, 0x14, 0x8c, 0xfe, 0x4a, 0xf4, 0x0a, 0x17, 0x4c, 0xfe, 0x4a,
5852         0xf4, 0x06, 0xea, 0x32, 0x07, 0xa5, 0x8b, 0x02, 0x72, 0x03, 0x45, 0xc1,
5853         0x0c, 0x45, 0x67, 0x2d, 0x01, 0x0b, 0x26, 0x89, 0x01, 0xfe, 0xcc, 0x15,
5854         0x02, 0x89, 0x0f, 0x06, 0x27, 0xfe, 0xbe, 0x13, 0x26, 0xfe, 0xd4, 0x13,
5855         0x76, 0xfe, 0x89, 0x48, 0x01, 0x0b, 0x21, 0x76, 0x04, 0x7b, 0xfe, 0xd0,
5856         0x13, 0x1c, 0xfe, 0xd0, 0x13, 0x1d, 0xfe, 0xbe, 0x13, 0x67, 0x2d, 0x01,
5857         0x0b, 0xfe, 0xd5, 0x10, 0x0f, 0x71, 0xff, 0x02, 0x00, 0x57, 0x52, 0x93,
5858         0x1e, 0xfe, 0xff, 0x7f, 0xfe, 0x30, 0x56, 0xfe, 0x00, 0x5c, 0x04, 0x0f,
5859         0x71, 0xff, 0x02, 0x00, 0x57, 0x52, 0x93, 0x1e, 0x43, 0xfe, 0x30, 0x56,
5860         0xfe, 0x00, 0x5c, 0x04, 0x0f, 0x71, 0xff, 0x02, 0x00, 0x57, 0x52, 0x93,
5861         0x04, 0x0f, 0x71, 0xff, 0x02, 0x00, 0x57, 0x52, 0x93, 0xfe, 0x0b, 0x58,
5862         0x04, 0x09, 0x5c, 0x01, 0x87, 0x09, 0x45, 0x01, 0x87, 0x04, 0xfe, 0x03,
5863         0xa1, 0x1e, 0x11, 0xff, 0x03, 0x00, 0x54, 0xfe, 0x00, 0xf4, 0x1f, 0x52,
5864         0xfe, 0x00, 0x7d, 0xfe, 0x01, 0x7d, 0xfe, 0x02, 0x7d, 0xfe, 0x03, 0x7c,
5865         0x6a, 0x2a, 0x0c, 0x5e, 0x14, 0x5f, 0x57, 0x3f, 0x7d, 0x40, 0x04, 0xdd,
5866         0xfe, 0x82, 0x4a, 0xfe, 0xe1, 0x1a, 0xfe, 0x83, 0x5a, 0x8d, 0x04, 0x01,
5867         0xfe, 0x0c, 0x19, 0xfe, 0x42, 0x48, 0x50, 0x51, 0x91, 0x01, 0x0b, 0x1d,
5868         0xfe, 0x96, 0x15, 0x33, 0x31, 0xe1, 0x01, 0x0b, 0x1d, 0xfe, 0x96, 0x15,
5869         0x33, 0x31, 0xfe, 0xe8, 0x0a, 0xfe, 0xc1, 0x59, 0x03, 0xcd, 0x28, 0xfe,
5870         0xcc, 0x12, 0x53, 0x05, 0x1a, 0xfe, 0xc4, 0x13, 0x21, 0x69, 0x1a, 0xee,
5871         0x55, 0xca, 0x6b, 0xfe, 0xdc, 0x14, 0x4d, 0x0f, 0x06, 0x18, 0xca, 0x7c,
5872         0x30, 0xfe, 0x78, 0x10, 0xff, 0x02, 0x83, 0x55, 0xab, 0xff, 0x02, 0x83,
5873         0x55, 0x69, 0x19, 0xae, 0x98, 0xfe, 0x30, 0x00, 0x96, 0xf2, 0x18, 0x6d,
5874         0x0f, 0x06, 0xfe, 0x56, 0x10, 0x69, 0x0a, 0xed, 0x98, 0xfe, 0x64, 0x00,
5875         0x96, 0xf2, 0x09, 0xfe, 0x64, 0x00, 0x18, 0x9e, 0x0f, 0x06, 0xfe, 0x28,
5876         0x10, 0x69, 0x06, 0xfe, 0x60, 0x13, 0x98, 0xfe, 0xc8, 0x00, 0x96, 0xf2,
5877         0x09, 0xfe, 0xc8, 0x00, 0x18, 0x59, 0x0f, 0x06, 0x88, 0x98, 0xfe, 0x90,
5878         0x01, 0x7a, 0xfe, 0x42, 0x15, 0x91, 0xe4, 0xfe, 0x43, 0xf4, 0x9f, 0xfe,
5879         0x56, 0xf0, 0xfe, 0x54, 0x15, 0xfe, 0x04, 0xf4, 0x71, 0xfe, 0x43, 0xf4,
5880         0x9e, 0xfe, 0xf3, 0x10, 0xfe, 0x40, 0x5c, 0x01, 0xfe, 0x16, 0x14, 0x1e,
5881         0x43, 0xec, 0xfe, 0x00, 0x17, 0xfe, 0x4d, 0xe4, 0x6e, 0x7a, 0xfe, 0x90,
5882         0x15, 0xc4, 0x6e, 0xfe, 0x1c, 0x10, 0xfe, 0x00, 0x17, 0xfe, 0x4d, 0xe4,
5883         0xcc, 0x7a, 0xfe, 0x90, 0x15, 0xc4, 0xcc, 0x88, 0x51, 0x21, 0xfe, 0x4d,
5884         0xf4, 0x00, 0xe9, 0x91, 0x0f, 0x06, 0xfe, 0xb4, 0x56, 0xfe, 0xc3, 0x58,
5885         0x04, 0x51, 0x0f, 0x0a, 0x04, 0x16, 0x06, 0x01, 0x0b, 0x26, 0xf3, 0x16,
5886         0x0a, 0x01, 0x0b, 0x26, 0xf3, 0x16, 0x19, 0x01, 0x0b, 0x26, 0xf3, 0x76,
5887         0xfe, 0x89, 0x49, 0x01, 0x0b, 0x04, 0x16, 0x06, 0x01, 0x0b, 0x26, 0xb1,
5888         0x16, 0x19, 0x01, 0x0b, 0x26, 0xb1, 0x16, 0x06, 0x01, 0x0b, 0x26, 0xb1,
5889         0xfe, 0x89, 0x49, 0x01, 0x0b, 0x26, 0xb1, 0x76, 0xfe, 0x89, 0x4a, 0x01,
5890         0x0b, 0x04, 0x51, 0x04, 0x22, 0xd3, 0x07, 0x06, 0xfe, 0x48, 0x13, 0xb8,
5891         0x13, 0xd3, 0xfe, 0x49, 0xf4, 0x00, 0x4d, 0x76, 0xa9, 0x67, 0xfe, 0x01,
5892         0xec, 0xfe, 0x27, 0x01, 0xfe, 0x89, 0x48, 0xff, 0x02, 0x00, 0x10, 0x27,
5893         0xfe, 0x2e, 0x16, 0x32, 0x07, 0xfe, 0xe3, 0x00, 0xfe, 0x20, 0x13, 0x1d,
5894         0xfe, 0x52, 0x16, 0x21, 0x13, 0xd4, 0x01, 0x4b, 0x22, 0xd4, 0x07, 0x06,
5895         0x4e, 0x08, 0x54, 0x06, 0x37, 0x04, 0x09, 0x48, 0x01, 0x0e, 0xfb, 0x8e,
5896         0x07, 0x11, 0xae, 0x09, 0x84, 0x01, 0x0e, 0x8e, 0x09, 0x5d, 0x01, 0xa8,
5897         0x04, 0x09, 0x84, 0x01, 0x0e, 0x8e, 0xfe, 0x80, 0xe7, 0x11, 0x07, 0x11,
5898         0x8a, 0xfe, 0x45, 0x58, 0x01, 0xf0, 0x8e, 0x04, 0x09, 0x48, 0x01, 0x0e,
5899         0x8e, 0x09, 0x5d, 0x01, 0xa8, 0x04, 0x09, 0x48, 0x01, 0x0e, 0xfe, 0x80,
5900         0x80, 0xfe, 0x80, 0x4c, 0xfe, 0x49, 0xe4, 0x11, 0xae, 0x09, 0x84, 0x01,
5901         0x0e, 0xfe, 0x80, 0x4c, 0x09, 0x5d, 0x01, 0x87, 0x04, 0x18, 0x11, 0x75,
5902         0x6c, 0xfe, 0x60, 0x01, 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xde, 0xfe, 0x24,
5903         0x1c, 0xfe, 0x1d, 0xf7, 0x1b, 0x97, 0xfe, 0xee, 0x16, 0x01, 0xfe, 0xf4,
5904         0x17, 0xad, 0x9a, 0x1b, 0x6c, 0xfe, 0x2c, 0x01, 0xfe, 0x2f, 0x19, 0x04,
5905         0xb9, 0x23, 0xfe, 0xde, 0x16, 0xfe, 0xda, 0x10, 0x18, 0x11, 0x75, 0x03,
5906         0xfe, 0x64, 0x01, 0xfe, 0x00, 0xf4, 0x1f, 0xfe, 0x18, 0x58, 0x03, 0xfe,
5907         0x66, 0x01, 0xfe, 0x19, 0x58, 0x9a, 0x1f, 0xfe, 0x3c, 0x90, 0xfe, 0x30,
5908         0xf4, 0x06, 0xfe, 0x3c, 0x50, 0x6c, 0xfe, 0x38, 0x00, 0xfe, 0x0f, 0x79,
5909         0xfe, 0x1c, 0xf7, 0x1f, 0x97, 0xfe, 0x38, 0x17, 0xfe, 0xb6, 0x14, 0x35,
5910         0x04, 0xb9, 0x23, 0xfe, 0x10, 0x17, 0xfe, 0x9c, 0x10, 0x18, 0x11, 0x75,
5911         0xfe, 0x83, 0x5a, 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xde, 0xfe, 0x1d, 0xf7,
5912         0x2e, 0x97, 0xfe, 0x5a, 0x17, 0xfe, 0x94, 0x14, 0xec, 0x9a, 0x2e, 0x6c,
5913         0x1a, 0xfe, 0xaf, 0x19, 0xfe, 0x98, 0xe7, 0x00, 0x04, 0xb9, 0x23, 0xfe,
5914         0x4e, 0x17, 0xfe, 0x6c, 0x10, 0x18, 0x11, 0x75, 0xfe, 0x30, 0xbc, 0xfe,
5915         0xb2, 0xbc, 0x9a, 0xcb, 0x6c, 0x1a, 0xfe, 0x0f, 0x79, 0xfe, 0x1c, 0xf7,
5916         0xcb, 0x97, 0xfe, 0x92, 0x17, 0xfe, 0x5c, 0x14, 0x35, 0x04, 0xb9, 0x23,
5917         0xfe, 0x7e, 0x17, 0xfe, 0x42, 0x10, 0xfe, 0x02, 0xf6, 0x11, 0x75, 0xfe,
5918         0x18, 0xfe, 0x60, 0xfe, 0x19, 0xfe, 0x61, 0xfe, 0x03, 0xa1, 0xfe, 0x1d,
5919         0xf7, 0x5b, 0x97, 0xfe, 0xb8, 0x17, 0xfe, 0x36, 0x14, 0xfe, 0x1c, 0x13,
5920         0x9a, 0x5b, 0x41, 0xfe, 0x83, 0x58, 0xfe, 0xaf, 0x19, 0xfe, 0x80, 0xe7,
5921         0x11, 0xfe, 0x81, 0xe7, 0x11, 0x12, 0xfe, 0xdd, 0x00, 0x6a, 0x2a, 0x04,
5922         0x6a, 0x2a, 0xfe, 0x12, 0x45, 0x23, 0xfe, 0xa8, 0x17, 0x15, 0x06, 0x39,
5923         0xa0, 0xb4, 0x02, 0x2b, 0xfe, 0x39, 0xf0, 0xfe, 0xfc, 0x17, 0x21, 0x04,
5924         0xfe, 0x7e, 0x18, 0x1e, 0x19, 0x66, 0x0f, 0x0d, 0x04, 0x75, 0x03, 0xd2,
5925         0x1e, 0x06, 0xfe, 0xef, 0x12, 0xfe, 0xe1, 0x10, 0x7c, 0x6f, 0x4f, 0x32,
5926         0x07, 0x2f, 0xfe, 0x3c, 0x13, 0xf1, 0xfe, 0x42, 0x13, 0x42, 0x92, 0x09,
5927         0x48, 0x01, 0x0e, 0xbb, 0xeb, 0xfe, 0x41, 0x48, 0xfe, 0x45, 0x48, 0x01,
5928         0xf0, 0xfe, 0x00, 0xcc, 0xbb, 0xfe, 0xf3, 0x13, 0x43, 0x78, 0x07, 0x11,
5929         0xac, 0x09, 0x84, 0x01, 0x0e, 0xfe, 0x80, 0x4c, 0x01, 0x73, 0xfe, 0x16,
5930         0x10, 0x07, 0x82, 0x8b, 0xfe, 0x40, 0x14, 0xfe, 0x24, 0x12, 0xfe, 0x14,
5931         0x56, 0xfe, 0xd6, 0xf0, 0xfe, 0x1c, 0x18, 0x18, 0x0a, 0x04, 0xfe, 0x9c,
5932         0xe7, 0x0a, 0x10, 0xfe, 0x15, 0x00, 0x64, 0x79, 0x2a, 0x01, 0xe3, 0x18,
5933         0x06, 0x04, 0x42, 0x92, 0x08, 0x54, 0x1b, 0x37, 0x12, 0x2f, 0x01, 0x73,
5934         0x18, 0x06, 0x04, 0xfe, 0x38, 0x90, 0xfe, 0xba, 0x90, 0x3a, 0xce, 0x3b,
5935         0xcf, 0xfe, 0x48, 0x55, 0x35, 0xfe, 0xc9, 0x55, 0x04, 0x22, 0xa3, 0x77,
5936         0x13, 0xa3, 0x04, 0x09, 0xa4, 0x01, 0x0e, 0xfe, 0x41, 0x48, 0x09, 0x46,
5937         0x01, 0x0e, 0xfe, 0x49, 0x44, 0x17, 0xfe, 0xe8, 0x18, 0x77, 0x78, 0x04,
5938         0x09, 0x48, 0x01, 0x0e, 0x07, 0x11, 0x4e, 0x09, 0x5d, 0x01, 0xa8, 0x09,
5939         0x46, 0x01, 0x0e, 0x77, 0x78, 0x04, 0xfe, 0x4e, 0xe4, 0x19, 0x6b, 0xfe,
5940         0x1c, 0x19, 0x03, 0xfe, 0x90, 0x00, 0xfe, 0x3a, 0x45, 0xfe, 0x2c, 0x10,
5941         0xfe, 0x4e, 0xe4, 0xc9, 0x6b, 0xfe, 0x2e, 0x19, 0x03, 0xfe, 0x92, 0x00,
5942         0xfe, 0x02, 0xe6, 0x1a, 0xe5, 0xfe, 0x4e, 0xe4, 0xfe, 0x0b, 0x00, 0x6b,
5943         0xfe, 0x40, 0x19, 0x03, 0xfe, 0x94, 0x00, 0xfe, 0x02, 0xe6, 0x1f, 0xfe,
5944         0x08, 0x10, 0x03, 0xfe, 0x96, 0x00, 0xfe, 0x02, 0xe6, 0x6d, 0xfe, 0x4e,
5945         0x45, 0xea, 0xba, 0xff, 0x04, 0x68, 0x54, 0xe7, 0x1e, 0x6e, 0xfe, 0x08,
5946         0x1c, 0xfe, 0x67, 0x19, 0xfe, 0x0a, 0x1c, 0xfe, 0x1a, 0xf4, 0xfe, 0x00,
5947         0x04, 0xea, 0xfe, 0x48, 0xf4, 0x19, 0x7a, 0xfe, 0x74, 0x19, 0x0f, 0x19,
5948         0x04, 0x07, 0x7e, 0xfe, 0x5a, 0xf0, 0xfe, 0x84, 0x19, 0x25, 0xfe, 0x09,
5949         0x00, 0xfe, 0x34, 0x10, 0x07, 0x1a, 0xfe, 0x5a, 0xf0, 0xfe, 0x92, 0x19,
5950         0x25, 0xca, 0xfe, 0x26, 0x10, 0x07, 0x19, 0x66, 0x25, 0x6d, 0xe5, 0x07,
5951         0x0a, 0x66, 0x25, 0x9e, 0xfe, 0x0e, 0x10, 0x07, 0x06, 0x66, 0x25, 0x59,
5952         0xa9, 0xb8, 0x04, 0x15, 0xfe, 0x09, 0x00, 0x01, 0x36, 0xfe, 0x04, 0xfe,
5953         0x81, 0x03, 0x83, 0xfe, 0x40, 0x5c, 0x04, 0x1c, 0xf7, 0xfe, 0x14, 0xf0,
5954         0x0b, 0x27, 0xfe, 0xd6, 0x19, 0x1c, 0xf7, 0x7b, 0xf7, 0xfe, 0x82, 0xf0,
5955         0xfe, 0xda, 0x19, 0x04, 0xff, 0xcc, 0x00, 0x00,
5956 };
5957
5958 static unsigned short _adv_asc38C0800_size = sizeof(_adv_asc38C0800_buf);       /* 0x14E1 */
5959 static ADV_DCNT _adv_asc38C0800_chksum = 0x050D3FD8UL;  /* Expanded little-endian checksum. */
5960
5961 /* Microcode buffer is kept after initialization for error recovery. */
5962 static unsigned char _adv_asc38C1600_buf[] = {
5963         0x00, 0x00, 0x00, 0xf2, 0x00, 0x16, 0x00, 0xfc, 0x00, 0x10, 0x00, 0xf0,
5964         0x18, 0xe4, 0x01, 0x00, 0x04, 0x1e, 0x48, 0xe4, 0x03, 0xf6, 0xf7, 0x13,
5965         0x2e, 0x1e, 0x02, 0x00, 0x07, 0x17, 0xc0, 0x5f, 0x00, 0xfa, 0xff, 0xff,
5966         0x04, 0x00, 0x00, 0xf6, 0x09, 0xe7, 0x82, 0xe7, 0x85, 0xf0, 0x86, 0xf0,
5967         0x4e, 0x10, 0x9e, 0xe7, 0xff, 0x00, 0x55, 0xf0, 0x01, 0xf6, 0x03, 0x00,
5968         0x98, 0x57, 0x01, 0xe6, 0x00, 0xea, 0x00, 0xec, 0x01, 0xfa, 0x18, 0xf4,
5969         0x08, 0x00, 0xf0, 0x1d, 0x38, 0x54, 0x32, 0xf0, 0x10, 0x00, 0xc2, 0x0e,
5970         0x1e, 0xf0, 0xd5, 0xf0, 0xbc, 0x00, 0x4b, 0xe4, 0x00, 0xe6, 0xb1, 0xf0,
5971         0xb4, 0x00, 0x02, 0x13, 0x3e, 0x1c, 0xc8, 0x47, 0x3e, 0x00, 0xd8, 0x01,
5972         0x06, 0x13, 0x0c, 0x1c, 0x5e, 0x1e, 0x00, 0x57, 0xc8, 0x57, 0x01, 0xfc,
5973         0xbc, 0x0e, 0xa2, 0x12, 0xb9, 0x54, 0x00, 0x80, 0x62, 0x0a, 0x5a, 0x12,
5974         0xc8, 0x15, 0x3e, 0x1e, 0x18, 0x40, 0xbd, 0x56, 0x03, 0xe6, 0x01, 0xea,
5975         0x5c, 0xf0, 0x0f, 0x00, 0x20, 0x00, 0x6c, 0x01, 0x6e, 0x01, 0x04, 0x12,
5976         0x04, 0x13, 0xbb, 0x55, 0x3c, 0x56, 0x3e, 0x57, 0x03, 0x58, 0x4a, 0xe4,
5977         0x40, 0x00, 0xb6, 0x00, 0xbb, 0x00, 0xc0, 0x00, 0x00, 0x01, 0x01, 0x01,
5978         0x3e, 0x01, 0x58, 0x0a, 0x44, 0x10, 0x0a, 0x12, 0x4c, 0x1c, 0x4e, 0x1c,
5979         0x02, 0x4a, 0x30, 0xe4, 0x05, 0xe6, 0x0c, 0x00, 0x3c, 0x00, 0x80, 0x00,
5980         0x24, 0x01, 0x3c, 0x01, 0x68, 0x01, 0x6a, 0x01, 0x70, 0x01, 0x72, 0x01,
5981         0x74, 0x01, 0x76, 0x01, 0x78, 0x01, 0x7c, 0x01, 0xc6, 0x0e, 0x0c, 0x10,
5982         0xac, 0x12, 0xae, 0x12, 0x16, 0x1a, 0x32, 0x1c, 0x6e, 0x1e, 0x02, 0x48,
5983         0x3a, 0x55, 0xc9, 0x57, 0x02, 0xee, 0x5b, 0xf0, 0x03, 0xf7, 0x06, 0xf7,
5984         0x03, 0xfc, 0x06, 0x00, 0x1e, 0x00, 0xbe, 0x00, 0xe1, 0x00, 0x0c, 0x12,
5985         0x18, 0x1a, 0x70, 0x1a, 0x30, 0x1c, 0x38, 0x1c, 0x10, 0x44, 0x00, 0x4c,
5986         0xb0, 0x57, 0x40, 0x5c, 0x4d, 0xe4, 0x04, 0xea, 0x5d, 0xf0, 0xa7, 0xf0,
5987         0x04, 0xf6, 0x02, 0xfc, 0x05, 0x00, 0x09, 0x00, 0x19, 0x00, 0x32, 0x00,
5988         0x33, 0x00, 0x34, 0x00, 0x36, 0x00, 0x98, 0x00, 0x9e, 0x00, 0xcc, 0x00,
5989         0x20, 0x01, 0x4e, 0x01, 0x79, 0x01, 0x3c, 0x09, 0x68, 0x0d, 0x02, 0x10,
5990         0x04, 0x10, 0x3a, 0x10, 0x08, 0x12, 0x0a, 0x13, 0x40, 0x16, 0x50, 0x16,
5991         0x00, 0x17, 0x4a, 0x19, 0x00, 0x4e, 0x00, 0x54, 0x01, 0x58, 0x00, 0xdc,
5992         0x05, 0xf0, 0x09, 0xf0, 0x59, 0xf0, 0xb8, 0xf0, 0x48, 0xf4, 0x0e, 0xf7,
5993         0x0a, 0x00, 0x9b, 0x00, 0x9c, 0x00, 0xa4, 0x00, 0xb5, 0x00, 0xba, 0x00,
5994         0xd0, 0x00, 0xe7, 0x00, 0xf0, 0x03, 0x69, 0x08, 0xe9, 0x09, 0x5c, 0x0c,
5995         0xb6, 0x12, 0xbc, 0x19, 0xd8, 0x1b, 0x20, 0x1c, 0x34, 0x1c, 0x36, 0x1c,
5996         0x42, 0x1d, 0x08, 0x44, 0x38, 0x44, 0x91, 0x44, 0x0a, 0x45, 0x48, 0x46,
5997         0x89, 0x48, 0x68, 0x54, 0x83, 0x55, 0x83, 0x59, 0x31, 0xe4, 0x02, 0xe6,
5998         0x07, 0xf0, 0x08, 0xf0, 0x0b, 0xf0, 0x0c, 0xf0, 0x4b, 0xf4, 0x04, 0xf8,
5999         0x05, 0xf8, 0x02, 0xfa, 0x03, 0xfa, 0x04, 0xfc, 0x05, 0xfc, 0x07, 0x00,
6000         0xa8, 0x00, 0xaa, 0x00, 0xb9, 0x00, 0xe0, 0x00, 0xe5, 0x00, 0x22, 0x01,
6001         0x26, 0x01, 0x60, 0x01, 0x7a, 0x01, 0x82, 0x01, 0xc8, 0x01, 0xca, 0x01,
6002         0x86, 0x02, 0x6a, 0x03, 0x18, 0x05, 0xb2, 0x07, 0x68, 0x08, 0x10, 0x0d,
6003         0x06, 0x10, 0x0a, 0x10, 0x0e, 0x10, 0x12, 0x10, 0x60, 0x10, 0xed, 0x10,
6004         0xf3, 0x10, 0x06, 0x12, 0x10, 0x12, 0x1e, 0x12, 0x0c, 0x13, 0x0e, 0x13,
6005         0x10, 0x13, 0xfe, 0x9c, 0xf0, 0x35, 0x05, 0xfe, 0xec, 0x0e, 0xff, 0x10,
6006         0x00, 0x00, 0xe9, 0xfe, 0x34, 0x1f, 0x00, 0xe8, 0xfe, 0x88, 0x01, 0xff,
6007         0x03, 0x00, 0x00, 0xfe, 0x93, 0x15, 0xfe, 0x0f, 0x05, 0xff, 0x38, 0x00,
6008         0x00, 0xfe, 0x57, 0x24, 0x00, 0xfe, 0x4c, 0x00, 0x65, 0xff, 0x04, 0x00,
6009         0x00, 0x1a, 0xff, 0x09, 0x00, 0x00, 0xff, 0x08, 0x01, 0x01, 0xff, 0x08,
6010         0xff, 0xff, 0xff, 0x27, 0x00, 0x00, 0xff, 0x10, 0xff, 0xff, 0xff, 0x13,
6011         0x00, 0x00, 0xfe, 0x78, 0x56, 0xfe, 0x34, 0x12, 0xff, 0x21, 0x00, 0x00,
6012         0xfe, 0x04, 0xf7, 0xe8, 0x37, 0x7d, 0x0d, 0x01, 0xfe, 0x4a, 0x11, 0xfe,
6013         0x04, 0xf7, 0xe8, 0x7d, 0x0d, 0x51, 0x37, 0xfe, 0x3d, 0xf0, 0xfe, 0x0c,
6014         0x02, 0xfe, 0x20, 0xf0, 0xbc, 0xfe, 0x91, 0xf0, 0xfe, 0xf8, 0x01, 0xfe,
6015         0x90, 0xf0, 0xfe, 0xf8, 0x01, 0xfe, 0x8f, 0xf0, 0xbc, 0x03, 0x67, 0x4d,
6016         0x05, 0xfe, 0x08, 0x0f, 0x01, 0xfe, 0x78, 0x0f, 0xfe, 0xdd, 0x12, 0x05,
6017         0xfe, 0x0e, 0x03, 0xfe, 0x28, 0x1c, 0x03, 0xfe, 0xa6, 0x00, 0xfe, 0xd1,
6018         0x12, 0x3e, 0x22, 0xfe, 0xa6, 0x00, 0xac, 0xfe, 0x48, 0xf0, 0xfe, 0x90,
6019         0x02, 0xfe, 0x49, 0xf0, 0xfe, 0xaa, 0x02, 0xfe, 0x4a, 0xf0, 0xfe, 0xc8,
6020         0x02, 0xfe, 0x46, 0xf0, 0xfe, 0x5a, 0x02, 0xfe, 0x47, 0xf0, 0xfe, 0x60,
6021         0x02, 0xfe, 0x43, 0xf0, 0xfe, 0x4e, 0x02, 0xfe, 0x44, 0xf0, 0xfe, 0x52,
6022         0x02, 0xfe, 0x45, 0xf0, 0xfe, 0x56, 0x02, 0x1c, 0x0d, 0xa2, 0x1c, 0x07,
6023         0x22, 0xb7, 0x05, 0x35, 0xfe, 0x00, 0x1c, 0xfe, 0xf1, 0x10, 0xfe, 0x02,
6024         0x1c, 0xf5, 0xfe, 0x1e, 0x1c, 0xfe, 0xe9, 0x10, 0x01, 0x5f, 0xfe, 0xe7,
6025         0x10, 0xfe, 0x06, 0xfc, 0xde, 0x0a, 0x81, 0x01, 0xa3, 0x05, 0x35, 0x1f,
6026         0x95, 0x47, 0xb8, 0x01, 0xfe, 0xe4, 0x11, 0x0a, 0x81, 0x01, 0x5c, 0xfe,
6027         0xbd, 0x10, 0x0a, 0x81, 0x01, 0x5c, 0xfe, 0xad, 0x10, 0xfe, 0x16, 0x1c,
6028         0xfe, 0x58, 0x1c, 0x1c, 0x07, 0x22, 0xb7, 0x37, 0x2a, 0x35, 0xfe, 0x3d,
6029         0xf0, 0xfe, 0x0c, 0x02, 0x2b, 0xfe, 0x9e, 0x02, 0xfe, 0x5a, 0x1c, 0xfe,
6030         0x12, 0x1c, 0xfe, 0x14, 0x1c, 0x1f, 0xfe, 0x30, 0x00, 0x47, 0xb8, 0x01,
6031         0xfe, 0xd4, 0x11, 0x1c, 0x07, 0x22, 0xb7, 0x05, 0xe9, 0x21, 0x2c, 0x09,
6032         0x1a, 0x31, 0xfe, 0x69, 0x10, 0x1c, 0x07, 0x22, 0xb7, 0xfe, 0x04, 0xec,
6033         0x2c, 0x60, 0x01, 0xfe, 0x1e, 0x1e, 0x20, 0x2c, 0xfe, 0x05, 0xf6, 0xde,
6034         0x01, 0xfe, 0x62, 0x1b, 0x01, 0x0c, 0x61, 0x4a, 0x44, 0x15, 0x56, 0x51,
6035         0x01, 0xfe, 0x9e, 0x1e, 0x01, 0xfe, 0x96, 0x1a, 0x05, 0x35, 0x0a, 0x57,
6036         0x01, 0x18, 0x09, 0x00, 0x36, 0x01, 0x85, 0xfe, 0x18, 0x10, 0xfe, 0x41,
6037         0x58, 0x0a, 0xba, 0x01, 0x18, 0xfe, 0xc8, 0x54, 0x7b, 0xfe, 0x1c, 0x03,
6038         0x01, 0xfe, 0x96, 0x1a, 0x05, 0x35, 0x37, 0x60, 0xfe, 0x02, 0xe8, 0x30,
6039         0xfe, 0xbf, 0x57, 0xfe, 0x9e, 0x43, 0xfe, 0x77, 0x57, 0xfe, 0x27, 0xf0,
6040         0xfe, 0xe4, 0x01, 0xfe, 0x07, 0x4b, 0xfe, 0x20, 0xf0, 0xbc, 0xfe, 0x40,
6041         0x1c, 0x2a, 0xeb, 0xfe, 0x26, 0xf0, 0xfe, 0x66, 0x03, 0xfe, 0xa0, 0xf0,
6042         0xfe, 0x54, 0x03, 0xfe, 0x11, 0xf0, 0xbc, 0xfe, 0xef, 0x10, 0xfe, 0x9f,
6043         0xf0, 0xfe, 0x74, 0x03, 0xfe, 0x46, 0x1c, 0x19, 0xfe, 0x11, 0x00, 0x05,
6044         0x70, 0x37, 0xfe, 0x48, 0x1c, 0xfe, 0x46, 0x1c, 0x01, 0x0c, 0x06, 0x28,
6045         0xfe, 0x18, 0x13, 0x26, 0x21, 0xb9, 0xc7, 0x20, 0xb9, 0x0a, 0x57, 0x01,
6046         0x18, 0xc7, 0x89, 0x01, 0xfe, 0xc8, 0x1a, 0x15, 0xe1, 0x2a, 0xeb, 0xfe,
6047         0x01, 0xf0, 0xeb, 0xfe, 0x82, 0xf0, 0xfe, 0xa4, 0x03, 0xfe, 0x9c, 0x32,
6048         0x15, 0xfe, 0xe4, 0x00, 0x2f, 0xfe, 0xb6, 0x03, 0x2a, 0x3c, 0x16, 0xfe,
6049         0xc6, 0x03, 0x01, 0x41, 0xfe, 0x06, 0xf0, 0xfe, 0xd6, 0x03, 0xaf, 0xa0,
6050         0xfe, 0x0a, 0xf0, 0xfe, 0xa2, 0x07, 0x05, 0x29, 0x03, 0x81, 0x1e, 0x1b,
6051         0xfe, 0x24, 0x05, 0x1f, 0x63, 0x01, 0x42, 0x8f, 0xfe, 0x70, 0x02, 0x05,
6052         0xea, 0xfe, 0x46, 0x1c, 0x37, 0x7d, 0x1d, 0xfe, 0x67, 0x1b, 0xfe, 0xbf,
6053         0x57, 0xfe, 0x77, 0x57, 0xfe, 0x48, 0x1c, 0x75, 0x01, 0xa6, 0x86, 0x0a,
6054         0x57, 0x01, 0x18, 0x09, 0x00, 0x1b, 0xec, 0x0a, 0xe1, 0x01, 0x18, 0x77,
6055         0x50, 0x40, 0x8d, 0x30, 0x03, 0x81, 0x1e, 0xf8, 0x1f, 0x63, 0x01, 0x42,
6056         0x8f, 0xfe, 0x70, 0x02, 0x05, 0xea, 0xd7, 0x99, 0xd8, 0x9c, 0x2a, 0x29,
6057         0x2f, 0xfe, 0x4e, 0x04, 0x16, 0xfe, 0x4a, 0x04, 0x7e, 0xfe, 0xa0, 0x00,
6058         0xfe, 0x9b, 0x57, 0xfe, 0x54, 0x12, 0x32, 0xff, 0x02, 0x00, 0x10, 0x01,
6059         0x08, 0x16, 0xfe, 0x02, 0x05, 0x32, 0x01, 0x08, 0x16, 0x29, 0x27, 0x25,
6060         0xee, 0xfe, 0x4c, 0x44, 0xfe, 0x58, 0x12, 0x50, 0xfe, 0x44, 0x48, 0x13,
6061         0x34, 0xfe, 0x4c, 0x54, 0x7b, 0xec, 0x60, 0x8d, 0x30, 0x01, 0xfe, 0x4e,
6062         0x1e, 0xfe, 0x48, 0x47, 0xfe, 0x7c, 0x13, 0x01, 0x0c, 0x06, 0x28, 0xfe,
6063         0x32, 0x13, 0x01, 0x43, 0x09, 0x9b, 0xfe, 0x68, 0x13, 0xfe, 0x26, 0x10,
6064         0x13, 0x34, 0xfe, 0x4c, 0x54, 0x7b, 0xec, 0x01, 0xfe, 0x4e, 0x1e, 0xfe,
6065         0x48, 0x47, 0xfe, 0x54, 0x13, 0x01, 0x0c, 0x06, 0x28, 0xa5, 0x01, 0x43,
6066         0x09, 0x9b, 0xfe, 0x40, 0x13, 0x01, 0x0c, 0x06, 0x28, 0xf9, 0x1f, 0x7f,
6067         0x01, 0x0c, 0x06, 0x07, 0x4d, 0x1f, 0xfe, 0x0d, 0x00, 0x01, 0x42, 0x8f,
6068         0xfe, 0xa4, 0x0e, 0x05, 0x29, 0x32, 0x15, 0xfe, 0xe6, 0x00, 0x0f, 0xfe,
6069         0x1c, 0x90, 0x04, 0xfe, 0x9c, 0x93, 0x3a, 0x0b, 0x0e, 0x8b, 0x02, 0x1f,
6070         0x7f, 0x01, 0x42, 0x05, 0x35, 0xfe, 0x42, 0x5b, 0x7d, 0x1d, 0xfe, 0x46,
6071         0x59, 0xfe, 0xbf, 0x57, 0xfe, 0x77, 0x57, 0x0f, 0xfe, 0x87, 0x80, 0x04,
6072         0xfe, 0x87, 0x83, 0xfe, 0xc9, 0x47, 0x0b, 0x0e, 0xd0, 0x65, 0x01, 0x0c,
6073         0x06, 0x0d, 0xfe, 0x98, 0x13, 0x0f, 0xfe, 0x20, 0x80, 0x04, 0xfe, 0xa0,
6074         0x83, 0x33, 0x0b, 0x0e, 0x09, 0x1d, 0xfe, 0x84, 0x12, 0x01, 0x38, 0x06,
6075         0x07, 0xfe, 0x70, 0x13, 0x03, 0xfe, 0xa2, 0x00, 0x1e, 0x1b, 0xfe, 0xda,
6076         0x05, 0xd0, 0x54, 0x01, 0x38, 0x06, 0x0d, 0xfe, 0x58, 0x13, 0x03, 0xfe,
6077         0xa0, 0x00, 0x1e, 0xfe, 0x50, 0x12, 0x5e, 0xff, 0x02, 0x00, 0x10, 0x2f,
6078         0xfe, 0x90, 0x05, 0x2a, 0x3c, 0xcc, 0xff, 0x02, 0x00, 0x10, 0x2f, 0xfe,
6079         0x9e, 0x05, 0x17, 0xfe, 0xf4, 0x05, 0x15, 0xfe, 0xe3, 0x00, 0x26, 0x01,
6080         0x38, 0xfe, 0x4a, 0xf0, 0xfe, 0xc0, 0x05, 0xfe, 0x49, 0xf0, 0xfe, 0xba,
6081         0x05, 0x71, 0x2e, 0xfe, 0x21, 0x00, 0xf1, 0x2e, 0xfe, 0x22, 0x00, 0xa2,
6082         0x2e, 0x4a, 0xfe, 0x09, 0x48, 0xff, 0x02, 0x00, 0x10, 0x2f, 0xfe, 0xd0,
6083         0x05, 0x17, 0xfe, 0xf4, 0x05, 0xfe, 0xe2, 0x08, 0x01, 0x38, 0x06, 0xfe,
6084         0x1c, 0x00, 0x4d, 0x01, 0xa7, 0x2e, 0x07, 0x20, 0xe4, 0x47, 0xfe, 0x27,
6085         0x01, 0x01, 0x0c, 0x06, 0x28, 0xfe, 0x24, 0x12, 0x3e, 0x01, 0x84, 0x1f,
6086         0x7f, 0x01, 0x0c, 0x06, 0x07, 0x4d, 0x1f, 0xfe, 0x0d, 0x00, 0x01, 0x42,
6087         0x8f, 0xfe, 0xa4, 0x0e, 0x05, 0x29, 0x03, 0xe6, 0x1e, 0xfe, 0xca, 0x13,
6088         0x03, 0xb6, 0x1e, 0xfe, 0x40, 0x12, 0x03, 0x66, 0x1e, 0xfe, 0x38, 0x13,
6089         0x3e, 0x01, 0x84, 0x17, 0xfe, 0x72, 0x06, 0x0a, 0x07, 0x01, 0x38, 0x06,
6090         0x24, 0xfe, 0x02, 0x12, 0x4f, 0x01, 0xfe, 0x56, 0x19, 0x16, 0xfe, 0x68,
6091         0x06, 0x15, 0x82, 0x01, 0x41, 0x15, 0xe2, 0x03, 0x66, 0x8a, 0x10, 0x66,
6092         0x03, 0x9a, 0x1e, 0xfe, 0x70, 0x12, 0x03, 0x55, 0x1e, 0xfe, 0x68, 0x13,
6093         0x01, 0xc6, 0x09, 0x12, 0x48, 0xfe, 0x92, 0x06, 0x2e, 0x12, 0x01, 0xfe,
6094         0xac, 0x1d, 0xfe, 0x43, 0x48, 0x62, 0x80, 0x13, 0x58, 0xff, 0x02, 0x00,
6095         0x57, 0x52, 0xad, 0x23, 0x3f, 0x4e, 0x62, 0x49, 0x3e, 0x01, 0x84, 0x17,
6096         0xfe, 0xea, 0x06, 0x01, 0x38, 0x06, 0x12, 0xf7, 0x45, 0x0a, 0x95, 0x01,
6097         0xfe, 0x84, 0x19, 0x16, 0xfe, 0xe0, 0x06, 0x15, 0x82, 0x01, 0x41, 0x15,
6098         0xe2, 0x03, 0x55, 0x8a, 0x10, 0x55, 0x1c, 0x07, 0x01, 0x84, 0xfe, 0xae,
6099         0x10, 0x03, 0x6f, 0x1e, 0xfe, 0x9e, 0x13, 0x3e, 0x01, 0x84, 0x03, 0x9a,
6100         0x1e, 0xfe, 0x1a, 0x12, 0x01, 0x38, 0x06, 0x12, 0xfc, 0x01, 0xc6, 0x01,
6101         0xfe, 0xac, 0x1d, 0xfe, 0x43, 0x48, 0x62, 0x80, 0xf0, 0x45, 0x0a, 0x95,
6102         0x03, 0xb6, 0x1e, 0xf8, 0x01, 0x38, 0x06, 0x24, 0x36, 0xfe, 0x02, 0xf6,
6103         0x07, 0x71, 0x78, 0x8c, 0x00, 0x4d, 0x62, 0x49, 0x3e, 0x2d, 0x93, 0x4e,
6104         0xd0, 0x0d, 0x17, 0xfe, 0x9a, 0x07, 0x01, 0xfe, 0xc0, 0x19, 0x16, 0xfe,
6105         0x90, 0x07, 0x26, 0x20, 0x9e, 0x15, 0x82, 0x01, 0x41, 0x15, 0xe2, 0x21,
6106         0x9e, 0x09, 0x07, 0xfb, 0x03, 0xe6, 0xfe, 0x58, 0x57, 0x10, 0xe6, 0x05,
6107         0xfe, 0x2a, 0x06, 0x03, 0x6f, 0x8a, 0x10, 0x6f, 0x1c, 0x07, 0x01, 0x84,
6108         0xfe, 0x9c, 0x32, 0x5f, 0x75, 0x01, 0xa6, 0x86, 0x15, 0xfe, 0xe2, 0x00,
6109         0x2f, 0xed, 0x2a, 0x3c, 0xfe, 0x0a, 0xf0, 0xfe, 0xce, 0x07, 0xae, 0xfe,
6110         0x96, 0x08, 0xfe, 0x06, 0xf0, 0xfe, 0x9e, 0x08, 0xaf, 0xa0, 0x05, 0x29,
6111         0x01, 0x0c, 0x06, 0x0d, 0xfe, 0x2e, 0x12, 0x14, 0x1d, 0x01, 0x08, 0x14,
6112         0x00, 0x01, 0x08, 0x14, 0x00, 0x01, 0x08, 0x14, 0x00, 0x01, 0x08, 0xfe,
6113         0x99, 0xa4, 0x01, 0x08, 0x14, 0x00, 0x05, 0xfe, 0xc6, 0x09, 0x01, 0x76,
6114         0x06, 0x12, 0xfe, 0x3a, 0x12, 0x01, 0x0c, 0x06, 0x12, 0xfe, 0x30, 0x13,
6115         0x14, 0xfe, 0x1b, 0x00, 0x01, 0x08, 0x14, 0x00, 0x01, 0x08, 0x14, 0x00,
6116         0x01, 0x08, 0x14, 0x00, 0x01, 0x08, 0x14, 0x07, 0x01, 0x08, 0x14, 0x00,
6117         0x05, 0xef, 0x7c, 0x4a, 0x78, 0x4f, 0x0f, 0xfe, 0x9a, 0x81, 0x04, 0xfe,
6118         0x9a, 0x83, 0xfe, 0xcb, 0x47, 0x0b, 0x0e, 0x2d, 0x28, 0x48, 0xfe, 0x6c,
6119         0x08, 0x0a, 0x28, 0xfe, 0x09, 0x6f, 0xca, 0xfe, 0xca, 0x45, 0xfe, 0x32,
6120         0x12, 0x53, 0x63, 0x4e, 0x7c, 0x97, 0x2f, 0xfe, 0x7e, 0x08, 0x2a, 0x3c,
6121         0xfe, 0x0a, 0xf0, 0xfe, 0x6c, 0x08, 0xaf, 0xa0, 0xae, 0xfe, 0x96, 0x08,
6122         0x05, 0x29, 0x01, 0x41, 0x05, 0xed, 0x14, 0x24, 0x05, 0xed, 0xfe, 0x9c,
6123         0xf7, 0x9f, 0x01, 0xfe, 0xae, 0x1e, 0xfe, 0x18, 0x58, 0x01, 0xfe, 0xbe,
6124         0x1e, 0xfe, 0x99, 0x58, 0xfe, 0x78, 0x18, 0xfe, 0xf9, 0x18, 0x8e, 0xfe,
6125         0x16, 0x09, 0x10, 0x6a, 0x22, 0x6b, 0x01, 0x0c, 0x61, 0x54, 0x44, 0x21,
6126         0x2c, 0x09, 0x1a, 0xf8, 0x77, 0x01, 0xfe, 0x7e, 0x1e, 0x47, 0x2c, 0x7a,
6127         0x30, 0xf0, 0xfe, 0x83, 0xe7, 0xfe, 0x3f, 0x00, 0x71, 0xfe, 0x03, 0x40,
6128         0x01, 0x0c, 0x61, 0x65, 0x44, 0x01, 0xc2, 0xc8, 0xfe, 0x1f, 0x40, 0x20,
6129         0x6e, 0x01, 0xfe, 0x6a, 0x16, 0xfe, 0x08, 0x50, 0xfe, 0x8a, 0x50, 0xfe,
6130         0x44, 0x51, 0xfe, 0xc6, 0x51, 0xfe, 0x10, 0x10, 0x01, 0xfe, 0xce, 0x1e,
6131         0x01, 0xfe, 0xde, 0x1e, 0x10, 0x68, 0x22, 0x69, 0x01, 0xfe, 0xee, 0x1e,
6132         0x01, 0xfe, 0xfe, 0x1e, 0xfe, 0x40, 0x50, 0xfe, 0xc2, 0x50, 0x10, 0x4b,
6133         0x22, 0x4c, 0xfe, 0x8a, 0x10, 0x01, 0x0c, 0x06, 0x54, 0xfe, 0x50, 0x12,
6134         0x01, 0xfe, 0xae, 0x1e, 0x01, 0xfe, 0xbe, 0x1e, 0x10, 0x6a, 0x22, 0x6b,
6135         0x01, 0x0c, 0x06, 0x65, 0x4e, 0x01, 0xc2, 0x0f, 0xfe, 0x1f, 0x80, 0x04,
6136         0xfe, 0x9f, 0x83, 0x33, 0x0b, 0x0e, 0x20, 0x6e, 0x0f, 0xfe, 0x44, 0x90,
6137         0x04, 0xfe, 0xc4, 0x93, 0x3a, 0x0b, 0xfe, 0xc6, 0x90, 0x04, 0xfe, 0xc6,
6138         0x93, 0x79, 0x0b, 0x0e, 0x10, 0x6c, 0x22, 0x6d, 0x01, 0xfe, 0xce, 0x1e,
6139         0x01, 0xfe, 0xde, 0x1e, 0x10, 0x68, 0x22, 0x69, 0x0f, 0xfe, 0x40, 0x90,
6140         0x04, 0xfe, 0xc0, 0x93, 0x3a, 0x0b, 0xfe, 0xc2, 0x90, 0x04, 0xfe, 0xc2,
6141         0x93, 0x79, 0x0b, 0x0e, 0x10, 0x4b, 0x22, 0x4c, 0x10, 0x64, 0x22, 0x34,
6142         0x01, 0x0c, 0x61, 0x24, 0x44, 0x37, 0x13, 0xfe, 0x4e, 0x11, 0x2f, 0xfe,
6143         0xde, 0x09, 0xfe, 0x9e, 0xf0, 0xfe, 0xf2, 0x09, 0xfe, 0x01, 0x48, 0x1b,
6144         0x3c, 0x37, 0x88, 0xf5, 0xd4, 0xfe, 0x1e, 0x0a, 0xd5, 0xfe, 0x42, 0x0a,
6145         0xd2, 0xfe, 0x1e, 0x0a, 0xd3, 0xfe, 0x42, 0x0a, 0xae, 0xfe, 0x12, 0x0a,
6146         0xfe, 0x06, 0xf0, 0xfe, 0x18, 0x0a, 0xaf, 0xa0, 0x05, 0x29, 0x01, 0x41,
6147         0xfe, 0xc1, 0x10, 0x14, 0x24, 0xfe, 0xc1, 0x10, 0x01, 0x76, 0x06, 0x07,
6148         0xfe, 0x14, 0x12, 0x01, 0x76, 0x06, 0x0d, 0x5d, 0x01, 0x0c, 0x06, 0x0d,
6149         0xfe, 0x74, 0x12, 0xfe, 0x2e, 0x1c, 0x05, 0xfe, 0x1a, 0x0c, 0x01, 0x76,
6150         0x06, 0x07, 0x5d, 0x01, 0x76, 0x06, 0x0d, 0x41, 0xfe, 0x2c, 0x1c, 0xfe,
6151         0xaa, 0xf0, 0xfe, 0xce, 0x0a, 0xfe, 0xac, 0xf0, 0xfe, 0x66, 0x0a, 0xfe,
6152         0x92, 0x10, 0xc4, 0xf6, 0xfe, 0xad, 0xf0, 0xfe, 0x72, 0x0a, 0x05, 0xfe,
6153         0x1a, 0x0c, 0xc5, 0xfe, 0xe7, 0x10, 0xfe, 0x2b, 0xf0, 0xbf, 0xfe, 0x6b,
6154         0x18, 0x23, 0xfe, 0x00, 0xfe, 0xfe, 0x1c, 0x12, 0xac, 0xfe, 0xd2, 0xf0,
6155         0xbf, 0xfe, 0x76, 0x18, 0x23, 0x1d, 0x1b, 0xbf, 0x03, 0xe3, 0x23, 0x07,
6156         0x1b, 0xbf, 0xd4, 0x5b, 0xd5, 0x5b, 0xd2, 0x5b, 0xd3, 0x5b, 0xc4, 0xc5,
6157         0xfe, 0xa9, 0x10, 0x75, 0x5e, 0x32, 0x1f, 0x7f, 0x01, 0x42, 0x19, 0xfe,
6158         0x35, 0x00, 0xfe, 0x01, 0xf0, 0x70, 0x19, 0x98, 0x05, 0x70, 0xfe, 0x74,
6159         0x18, 0x23, 0xfe, 0x00, 0xf8, 0x1b, 0x5b, 0x7d, 0x12, 0x01, 0xfe, 0x78,
6160         0x0f, 0x4d, 0x01, 0xfe, 0x96, 0x1a, 0x21, 0x30, 0x77, 0x7d, 0x1d, 0x05,
6161         0x5b, 0x01, 0x0c, 0x06, 0x0d, 0x2b, 0xfe, 0xe2, 0x0b, 0x01, 0x0c, 0x06,
6162         0x54, 0xfe, 0xa6, 0x12, 0x01, 0x0c, 0x06, 0x24, 0xfe, 0x88, 0x13, 0x21,
6163         0x6e, 0xc7, 0x01, 0xfe, 0x1e, 0x1f, 0x0f, 0xfe, 0x83, 0x80, 0x04, 0xfe,
6164         0x83, 0x83, 0xfe, 0xc9, 0x47, 0x0b, 0x0e, 0xfe, 0xc8, 0x44, 0xfe, 0x42,
6165         0x13, 0x0f, 0xfe, 0x04, 0x91, 0x04, 0xfe, 0x84, 0x93, 0xfe, 0xca, 0x57,
6166         0x0b, 0xfe, 0x86, 0x91, 0x04, 0xfe, 0x86, 0x93, 0xfe, 0xcb, 0x57, 0x0b,
6167         0x0e, 0x7a, 0x30, 0xfe, 0x40, 0x59, 0xfe, 0xc1, 0x59, 0x8e, 0x40, 0x03,
6168         0x6a, 0x3b, 0x6b, 0x10, 0x97, 0x22, 0x98, 0xd9, 0x6a, 0xda, 0x6b, 0x01,
6169         0xc2, 0xc8, 0x7a, 0x30, 0x20, 0x6e, 0xdb, 0x64, 0xdc, 0x34, 0x91, 0x6c,
6170         0x7e, 0x6d, 0xfe, 0x44, 0x55, 0xfe, 0xe5, 0x55, 0xfe, 0x04, 0xfa, 0x64,
6171         0xfe, 0x05, 0xfa, 0x34, 0x01, 0xfe, 0x6a, 0x16, 0xa3, 0x26, 0x10, 0x97,
6172         0x10, 0x98, 0x91, 0x6c, 0x7e, 0x6d, 0xfe, 0x14, 0x10, 0x01, 0x0c, 0x06,
6173         0x24, 0x1b, 0x40, 0x91, 0x4b, 0x7e, 0x4c, 0x01, 0x0c, 0x06, 0xfe, 0xf7,
6174         0x00, 0x44, 0x03, 0x68, 0x3b, 0x69, 0xfe, 0x10, 0x58, 0xfe, 0x91, 0x58,
6175         0xfe, 0x14, 0x59, 0xfe, 0x95, 0x59, 0x05, 0x5b, 0x01, 0x0c, 0x06, 0x24,
6176         0x1b, 0x40, 0x01, 0x0c, 0x06, 0xfe, 0xf7, 0x00, 0x44, 0x78, 0x01, 0xfe,
6177         0x8e, 0x1e, 0x4f, 0x0f, 0xfe, 0x10, 0x90, 0x04, 0xfe, 0x90, 0x93, 0x3a,
6178         0x0b, 0xfe, 0x92, 0x90, 0x04, 0xfe, 0x92, 0x93, 0x79, 0x0b, 0x0e, 0xfe,
6179         0xbd, 0x10, 0x01, 0x43, 0x09, 0xbb, 0x1b, 0xfe, 0x6e, 0x0a, 0x15, 0xbb,
6180         0x01, 0x0c, 0x06, 0x0d, 0xfe, 0x14, 0x13, 0x03, 0x4b, 0x3b, 0x4c, 0x8e,
6181         0xfe, 0x6e, 0x0a, 0xfe, 0x0c, 0x58, 0xfe, 0x8d, 0x58, 0x05, 0x5b, 0x26,
6182         0x3e, 0x0f, 0xfe, 0x19, 0x80, 0x04, 0xfe, 0x99, 0x83, 0x33, 0x0b, 0x0e,
6183         0xfe, 0xe5, 0x10, 0x01, 0x0c, 0x06, 0x0d, 0xfe, 0x1a, 0x12, 0xfe, 0x6c,
6184         0x19, 0xfe, 0x19, 0x41, 0xfe, 0x6b, 0x18, 0xac, 0xfe, 0xd1, 0xf0, 0xef,
6185         0x1f, 0x92, 0x01, 0x42, 0x19, 0xfe, 0x44, 0x00, 0xfe, 0x90, 0x10, 0xfe,
6186         0x6c, 0x19, 0xd9, 0x4b, 0xfe, 0xed, 0x19, 0xda, 0x4c, 0xfe, 0x0c, 0x51,
6187         0xfe, 0x8e, 0x51, 0xfe, 0x6b, 0x18, 0x23, 0xfe, 0x00, 0xff, 0x31, 0xfe,
6188         0x76, 0x10, 0xac, 0xfe, 0xd2, 0xf0, 0xfe, 0xba, 0x0c, 0xfe, 0x76, 0x18,
6189         0x23, 0x1d, 0x5d, 0x03, 0xe3, 0x23, 0x07, 0xfe, 0x08, 0x13, 0x19, 0xfe,
6190         0x16, 0x00, 0x05, 0x70, 0xfe, 0xd1, 0xf0, 0xfe, 0xcc, 0x0c, 0x1f, 0x92,
6191         0x01, 0x42, 0x19, 0xfe, 0x17, 0x00, 0x5c, 0xfe, 0xce, 0xf0, 0xfe, 0xd2,
6192         0x0c, 0xfe, 0x3e, 0x10, 0xfe, 0xcd, 0xf0, 0xfe, 0xde, 0x0c, 0x19, 0xfe,
6193         0x22, 0x00, 0x05, 0x70, 0xfe, 0xcb, 0xf0, 0xfe, 0xea, 0x0c, 0x19, 0xfe,
6194         0x24, 0x00, 0x05, 0x70, 0xfe, 0xd0, 0xf0, 0xfe, 0xf4, 0x0c, 0x19, 0x94,
6195         0xfe, 0x1c, 0x10, 0xfe, 0xcf, 0xf0, 0xfe, 0xfe, 0x0c, 0x19, 0x4a, 0xf3,
6196         0xfe, 0xcc, 0xf0, 0xef, 0x01, 0x76, 0x06, 0x24, 0x4d, 0x19, 0xfe, 0x12,
6197         0x00, 0x37, 0x13, 0xfe, 0x4e, 0x11, 0x2f, 0xfe, 0x16, 0x0d, 0xfe, 0x9e,
6198         0xf0, 0xfe, 0x2a, 0x0d, 0xfe, 0x01, 0x48, 0x1b, 0x3c, 0x37, 0x88, 0xf5,
6199         0xd4, 0x29, 0xd5, 0x29, 0xd2, 0x29, 0xd3, 0x29, 0x37, 0xfe, 0x9c, 0x32,
6200         0x2f, 0xfe, 0x3e, 0x0d, 0x2a, 0x3c, 0xae, 0xfe, 0x62, 0x0d, 0xaf, 0xa0,
6201         0xd4, 0x9f, 0xd5, 0x9f, 0xd2, 0x9f, 0xd3, 0x9f, 0x05, 0x29, 0x01, 0x41,
6202         0xfe, 0xd3, 0x10, 0x15, 0xfe, 0xe8, 0x00, 0xc4, 0xc5, 0x75, 0xd7, 0x99,
6203         0xd8, 0x9c, 0xfe, 0x89, 0xf0, 0x29, 0x27, 0x25, 0xbe, 0xd7, 0x99, 0xd8,
6204         0x9c, 0x2f, 0xfe, 0x8c, 0x0d, 0x16, 0x29, 0x27, 0x25, 0xbd, 0xfe, 0x01,
6205         0x48, 0xa4, 0x19, 0xfe, 0x42, 0x00, 0x05, 0x70, 0x90, 0x07, 0xfe, 0x81,
6206         0x49, 0x1b, 0xfe, 0x64, 0x0e, 0x01, 0x0c, 0x06, 0x0d, 0xfe, 0x44, 0x13,
6207         0x19, 0x00, 0x2d, 0x0d, 0xfe, 0x54, 0x12, 0x2d, 0xfe, 0x28, 0x00, 0x2b,
6208         0xfe, 0xda, 0x0e, 0x0a, 0x57, 0x01, 0x18, 0x09, 0x00, 0x36, 0x46, 0xfe,
6209         0x28, 0x00, 0xfe, 0xfa, 0x10, 0x01, 0xfe, 0xf4, 0x1c, 0x01, 0xfe, 0x00,
6210         0x1d, 0x0a, 0xba, 0x01, 0xfe, 0x58, 0x10, 0x40, 0x15, 0x56, 0x01, 0x85,
6211         0x05, 0x35, 0x19, 0xfe, 0x44, 0x00, 0x2d, 0x0d, 0xf7, 0x46, 0x0d, 0xfe,
6212         0xcc, 0x10, 0x01, 0xa7, 0x46, 0x0d, 0xfe, 0xc2, 0x10, 0x01, 0xa7, 0x0f,
6213         0xfe, 0x19, 0x82, 0x04, 0xfe, 0x99, 0x83, 0xfe, 0xcc, 0x47, 0x0b, 0x0e,
6214         0xfe, 0x34, 0x46, 0xa5, 0x46, 0x0d, 0x19, 0xfe, 0x43, 0x00, 0xfe, 0xa2,
6215         0x10, 0x01, 0x0c, 0x61, 0x0d, 0x44, 0x01, 0xfe, 0xf4, 0x1c, 0x01, 0xfe,
6216         0x00, 0x1d, 0x40, 0x15, 0x56, 0x01, 0x85, 0x7d, 0x0d, 0x40, 0x51, 0x01,
6217         0xfe, 0x9e, 0x1e, 0x05, 0xfe, 0x3a, 0x03, 0x01, 0x0c, 0x06, 0x0d, 0x5d,
6218         0x46, 0x0d, 0x19, 0x00, 0xfe, 0x62, 0x10, 0x01, 0x76, 0x06, 0x12, 0xfe,
6219         0x5c, 0x12, 0x01, 0x0c, 0x06, 0x12, 0xfe, 0x52, 0x13, 0xfe, 0x1c, 0x1c,
6220         0xfe, 0x9d, 0xf0, 0xfe, 0x8e, 0x0e, 0xfe, 0x1c, 0x1c, 0xfe, 0x9d, 0xf0,
6221         0xfe, 0x94, 0x0e, 0x01, 0x0c, 0x61, 0x12, 0x44, 0xfe, 0x9f, 0x10, 0x19,
6222         0xfe, 0x15, 0x00, 0xfe, 0x04, 0xe6, 0x0d, 0x4f, 0xfe, 0x2e, 0x10, 0x19,
6223         0xfe, 0x13, 0x00, 0xfe, 0x10, 0x10, 0x19, 0xfe, 0x47, 0x00, 0xf1, 0x19,
6224         0xfe, 0x41, 0x00, 0xa2, 0x19, 0xfe, 0x24, 0x00, 0x86, 0xc4, 0xc5, 0x75,
6225         0x03, 0x81, 0x1e, 0x2b, 0xea, 0x4f, 0xfe, 0x04, 0xe6, 0x12, 0xfe, 0x9d,
6226         0x41, 0xfe, 0x1c, 0x42, 0x40, 0x01, 0xf4, 0x05, 0x35, 0xfe, 0x12, 0x1c,
6227         0x1f, 0x0d, 0x47, 0xb5, 0xc3, 0x1f, 0xfe, 0x31, 0x00, 0x47, 0xb8, 0x01,
6228         0xfe, 0xd4, 0x11, 0x05, 0xe9, 0x51, 0xfe, 0x06, 0xec, 0xe0, 0xfe, 0x0e,
6229         0x47, 0x46, 0x28, 0xfe, 0xce, 0x45, 0x31, 0x51, 0xfe, 0x06, 0xea, 0xe0,
6230         0xfe, 0x47, 0x4b, 0x45, 0xfe, 0x75, 0x57, 0x03, 0x67, 0xfe, 0x98, 0x56,
6231         0xfe, 0x38, 0x12, 0x0a, 0x5a, 0x01, 0x18, 0xfe, 0x44, 0x48, 0x60, 0x01,
6232         0x0c, 0x06, 0x28, 0xfe, 0x18, 0x13, 0x0a, 0x57, 0x01, 0x18, 0x3e, 0xfe,
6233         0x41, 0x58, 0x0a, 0xba, 0xfe, 0xfa, 0x14, 0xfe, 0x49, 0x54, 0xb0, 0xfe,
6234         0x5e, 0x0f, 0x05, 0xfe, 0x3a, 0x03, 0x0a, 0x67, 0xfe, 0xe0, 0x14, 0xfe,
6235         0x0e, 0x47, 0x46, 0x28, 0xfe, 0xce, 0x45, 0x31, 0x51, 0xfe, 0xce, 0x47,
6236         0xfe, 0xad, 0x13, 0x05, 0x35, 0x21, 0x2c, 0x09, 0x1a, 0xfe, 0x98, 0x12,
6237         0x26, 0x20, 0x96, 0x20, 0xe7, 0xfe, 0x08, 0x1c, 0xfe, 0x7c, 0x19, 0xfe,
6238         0xfd, 0x19, 0xfe, 0x0a, 0x1c, 0x03, 0xe5, 0xfe, 0x48, 0x55, 0xa5, 0x3b,
6239         0xfe, 0x62, 0x01, 0xfe, 0xc9, 0x55, 0x31, 0xfe, 0x74, 0x10, 0x01, 0xfe,
6240         0xf0, 0x1a, 0x03, 0xfe, 0x38, 0x01, 0x3b, 0xfe, 0x3a, 0x01, 0x8e, 0xfe,
6241         0x1e, 0x10, 0xfe, 0x02, 0xec, 0xe7, 0x53, 0x00, 0x36, 0xfe, 0x04, 0xec,
6242         0x2c, 0x60, 0xfe, 0x05, 0xf6, 0xfe, 0x34, 0x01, 0x01, 0xfe, 0x62, 0x1b,
6243         0x01, 0xfe, 0xce, 0x1e, 0xb2, 0x11, 0xfe, 0x18, 0x13, 0xca, 0xfe, 0x02,
6244         0xea, 0xe7, 0x53, 0x92, 0xfe, 0xc3, 0x13, 0x1f, 0x12, 0x47, 0xb5, 0xc3,
6245         0xfe, 0x2a, 0x10, 0x03, 0xfe, 0x38, 0x01, 0x23, 0xfe, 0xf0, 0xff, 0x10,
6246         0xe5, 0x03, 0xfe, 0x3a, 0x01, 0x10, 0xfe, 0x62, 0x01, 0x01, 0xfe, 0x1e,
6247         0x1e, 0x20, 0x2c, 0x15, 0x56, 0x01, 0xfe, 0x9e, 0x1e, 0x13, 0x07, 0x02,
6248         0x26, 0x02, 0x21, 0x96, 0xc7, 0x20, 0x96, 0x09, 0x92, 0xfe, 0x79, 0x13,
6249         0x1f, 0x1d, 0x47, 0xb5, 0xc3, 0xfe, 0xe1, 0x10, 0xcf, 0xfe, 0x03, 0xdc,
6250         0xfe, 0x73, 0x57, 0xfe, 0x80, 0x5d, 0x02, 0xcf, 0xfe, 0x03, 0xdc, 0xfe,
6251         0x5b, 0x57, 0xfe, 0x80, 0x5d, 0x02, 0xfe, 0x03, 0x57, 0xcf, 0x26, 0xfe,
6252         0x00, 0xcc, 0x02, 0xfe, 0x03, 0x57, 0xcf, 0x89, 0x02, 0x01, 0x0c, 0x06,
6253         0x4a, 0xfe, 0x4e, 0x13, 0x0f, 0xfe, 0x1c, 0x80, 0x04, 0xfe, 0x9c, 0x83,
6254         0x33, 0x0b, 0x0e, 0x09, 0x07, 0xfe, 0x3a, 0x13, 0x0f, 0xfe, 0x1e, 0x80,
6255         0x04, 0xfe, 0x9e, 0x83, 0x33, 0x0b, 0x0e, 0xfe, 0x2a, 0x13, 0x0f, 0xfe,
6256         0x1d, 0x80, 0x04, 0xfe, 0x9d, 0x83, 0xfe, 0xf9, 0x13, 0x0e, 0xfe, 0x1c,
6257         0x13, 0x01, 0xfe, 0xee, 0x1e, 0xac, 0xfe, 0x14, 0x13, 0x01, 0xfe, 0xfe,
6258         0x1e, 0xfe, 0x81, 0x58, 0xfa, 0x01, 0xfe, 0x0e, 0x1f, 0xfe, 0x30, 0xf4,
6259         0x0d, 0xfe, 0x3c, 0x50, 0xa2, 0x01, 0xfe, 0x92, 0x1b, 0x01, 0x43, 0x09,
6260         0x56, 0xfb, 0x01, 0xfe, 0xc8, 0x1a, 0x01, 0x0c, 0x06, 0x28, 0xa4, 0x01,
6261         0xfe, 0xf4, 0x1c, 0x01, 0xfe, 0x00, 0x1d, 0x15, 0xfe, 0xe9, 0x00, 0x01,
6262         0x0c, 0x06, 0x4a, 0xfe, 0x4e, 0x13, 0x01, 0xfe, 0x22, 0x1b, 0xfe, 0x1e,
6263         0x1c, 0x0f, 0xfe, 0x14, 0x90, 0x04, 0xfe, 0x94, 0x93, 0x3a, 0x0b, 0xfe,
6264         0x96, 0x90, 0x04, 0xfe, 0x96, 0x93, 0x79, 0x0b, 0x0e, 0x10, 0xfe, 0x64,
6265         0x01, 0x22, 0xfe, 0x66, 0x01, 0x01, 0x0c, 0x06, 0x65, 0xf9, 0x0f, 0xfe,
6266         0x03, 0x80, 0x04, 0xfe, 0x83, 0x83, 0x33, 0x0b, 0x0e, 0x77, 0xfe, 0x01,
6267         0xec, 0x2c, 0xfe, 0x80, 0x40, 0x20, 0x2c, 0x7a, 0x30, 0x15, 0xdf, 0x40,
6268         0x21, 0x2c, 0xfe, 0x00, 0x40, 0x8d, 0x2c, 0x02, 0xfe, 0x08, 0x1c, 0x03,
6269         0xfe, 0xac, 0x00, 0xfe, 0x06, 0x58, 0x03, 0xfe, 0xae, 0x00, 0xfe, 0x07,
6270         0x58, 0x03, 0xfe, 0xb0, 0x00, 0xfe, 0x08, 0x58, 0x03, 0xfe, 0xb2, 0x00,
6271         0xfe, 0x09, 0x58, 0xfe, 0x0a, 0x1c, 0x2e, 0x49, 0x20, 0xe0, 0x26, 0x10,
6272         0x66, 0x10, 0x55, 0x10, 0x6f, 0x13, 0x57, 0x52, 0x4f, 0x1c, 0x28, 0xfe,
6273         0x90, 0x4d, 0xfe, 0x91, 0x54, 0x2b, 0xfe, 0x88, 0x11, 0x46, 0x1a, 0x13,
6274         0x5a, 0x52, 0x1c, 0x4a, 0xfe, 0x90, 0x4d, 0xfe, 0x91, 0x54, 0x2b, 0xfe,
6275         0x9e, 0x11, 0x2e, 0x1a, 0x20, 0x2c, 0x90, 0x34, 0x60, 0x21, 0x2c, 0xfe,
6276         0x00, 0x40, 0x8d, 0x2c, 0x15, 0xdf, 0xfe, 0x14, 0x56, 0xfe, 0xd6, 0xf0,
6277         0xfe, 0xb2, 0x11, 0xfe, 0x12, 0x1c, 0x75, 0xfe, 0x14, 0x1c, 0xfe, 0x10,
6278         0x1c, 0xfe, 0x18, 0x1c, 0x02, 0x51, 0xfe, 0x0c, 0x14, 0xfe, 0x0e, 0x47,
6279         0xfe, 0x07, 0xe6, 0x28, 0xfe, 0xce, 0x47, 0xfe, 0xf5, 0x13, 0x02, 0x01,
6280         0xa7, 0x90, 0x34, 0x60, 0xfe, 0x06, 0x80, 0xfe, 0x48, 0x47, 0xfe, 0x42,
6281         0x13, 0xfe, 0x02, 0x80, 0x09, 0x56, 0xfe, 0x34, 0x13, 0x0a, 0x5a, 0x01,
6282         0x18, 0xcb, 0xfe, 0x36, 0x12, 0xfe, 0x41, 0x48, 0xfe, 0x45, 0x48, 0x01,
6283         0xfe, 0xb2, 0x16, 0xfe, 0x00, 0xcc, 0xcb, 0xfe, 0xf3, 0x13, 0x3f, 0x89,
6284         0x09, 0x1a, 0xa5, 0x0a, 0x9d, 0x01, 0x18, 0xfe, 0x80, 0x5c, 0x01, 0x85,
6285         0xf2, 0x09, 0x9b, 0xa4, 0xfe, 0x14, 0x56, 0xfe, 0xd6, 0xf0, 0xfe, 0xec,
6286         0x11, 0x02, 0xfe, 0x44, 0x58, 0x77, 0xfe, 0x01, 0xec, 0xb8, 0xfe, 0x9e,
6287         0x40, 0xfe, 0x9d, 0xe7, 0x00, 0xfe, 0x9c, 0xe7, 0x12, 0x8d, 0x30, 0x01,
6288         0xf4, 0xfe, 0xdd, 0x10, 0x37, 0xd7, 0x99, 0xd8, 0x9c, 0x27, 0x25, 0xee,
6289         0x09, 0x12, 0xfe, 0x48, 0x12, 0x09, 0x0d, 0xfe, 0x56, 0x12, 0x09, 0x1d,
6290         0xfe, 0x30, 0x12, 0x09, 0xdd, 0x1b, 0xfe, 0xc4, 0x13, 0x09, 0xfe, 0x23,
6291         0x00, 0x1b, 0xfe, 0xd0, 0x13, 0x09, 0x07, 0x1b, 0xfe, 0x34, 0x14, 0x09,
6292         0x24, 0xfe, 0x12, 0x12, 0x09, 0x00, 0x1b, 0x29, 0x1f, 0xdd, 0x01, 0x42,
6293         0xa1, 0x32, 0x01, 0x08, 0xae, 0x41, 0x02, 0x32, 0xfe, 0x62, 0x08, 0x0a,
6294         0xe1, 0x01, 0xfe, 0x58, 0x10, 0x15, 0x9b, 0x05, 0x35, 0x32, 0x01, 0x43,
6295         0x09, 0xbb, 0xfe, 0xd7, 0x13, 0x91, 0x4b, 0x7e, 0x4c, 0x8e, 0xfe, 0x80,
6296         0x13, 0x01, 0x0c, 0x06, 0x54, 0xfe, 0x72, 0x12, 0xdb, 0x64, 0xdc, 0x34,
6297         0xfe, 0x44, 0x55, 0xfe, 0xe5, 0x55, 0xb0, 0xfe, 0x4a, 0x13, 0x21, 0x6e,
6298         0xfe, 0x26, 0x13, 0x03, 0x97, 0x3b, 0x98, 0x8e, 0xfe, 0xb6, 0x0e, 0x10,
6299         0x6a, 0x22, 0x6b, 0x26, 0x10, 0x97, 0x10, 0x98, 0x01, 0xc2, 0x2e, 0x49,
6300         0x88, 0x20, 0x6e, 0x01, 0xfe, 0x6a, 0x16, 0xdb, 0x64, 0xdc, 0x34, 0xfe,
6301         0x04, 0x55, 0xfe, 0xa5, 0x55, 0xfe, 0x04, 0xfa, 0x64, 0xfe, 0x05, 0xfa,
6302         0x34, 0xfe, 0x8f, 0x10, 0x03, 0x6c, 0x3b, 0x6d, 0xfe, 0x40, 0x56, 0xfe,
6303         0xe1, 0x56, 0x10, 0x6c, 0x22, 0x6d, 0x71, 0xdb, 0x64, 0xdc, 0x34, 0xfe,
6304         0x44, 0x55, 0xfe, 0xe5, 0x55, 0x03, 0x68, 0x3b, 0x69, 0xfe, 0x00, 0x56,
6305         0xfe, 0xa1, 0x56, 0x10, 0x68, 0x22, 0x69, 0x01, 0x0c, 0x06, 0x54, 0xf9,
6306         0x21, 0x6e, 0xfe, 0x1f, 0x40, 0x03, 0x6a, 0x3b, 0x6b, 0xfe, 0x2c, 0x50,
6307         0xfe, 0xae, 0x50, 0x03, 0x6c, 0x3b, 0x6d, 0xfe, 0x44, 0x50, 0xfe, 0xc6,
6308         0x50, 0x03, 0x68, 0x3b, 0x69, 0xfe, 0x08, 0x50, 0xfe, 0x8a, 0x50, 0x03,
6309         0x4b, 0x3b, 0x4c, 0xfe, 0x40, 0x50, 0xfe, 0xc2, 0x50, 0x05, 0x73, 0x2e,
6310         0x07, 0x20, 0x9e, 0x05, 0x72, 0x32, 0x01, 0x08, 0x16, 0x3d, 0x27, 0x25,
6311         0xee, 0x09, 0x07, 0x2b, 0x3d, 0x01, 0x43, 0x09, 0xbb, 0x2b, 0x72, 0x01,
6312         0xa6, 0x23, 0x3f, 0x1b, 0x3d, 0x01, 0x0c, 0x06, 0x0d, 0xfe, 0x1e, 0x13,
6313         0x91, 0x4b, 0x7e, 0x4c, 0xfe, 0x0a, 0x55, 0x31, 0xfe, 0x8b, 0x55, 0xd9,
6314         0x4b, 0xda, 0x4c, 0xfe, 0x0c, 0x51, 0xfe, 0x8e, 0x51, 0x05, 0x72, 0x01,
6315         0xfe, 0x8e, 0x1e, 0xca, 0xfe, 0x19, 0x41, 0x05, 0x72, 0x32, 0x01, 0x08,
6316         0x2a, 0x3c, 0x16, 0xc0, 0x27, 0x25, 0xbe, 0x2d, 0x1d, 0xc0, 0x2d, 0x0d,
6317         0x83, 0x2d, 0x7f, 0x1b, 0xfe, 0x66, 0x15, 0x05, 0x3d, 0x01, 0x08, 0x2a,
6318         0x3c, 0x16, 0xc0, 0x27, 0x25, 0xbd, 0x09, 0x1d, 0x2b, 0x3d, 0x01, 0x08,
6319         0x16, 0xc0, 0x27, 0x25, 0xfe, 0xe8, 0x09, 0xfe, 0xc2, 0x49, 0x50, 0x03,
6320         0xb6, 0x1e, 0x83, 0x01, 0x38, 0x06, 0x24, 0x31, 0xa1, 0xfe, 0xbb, 0x45,
6321         0x2d, 0x00, 0xa4, 0x46, 0x07, 0x90, 0x3f, 0x01, 0xfe, 0xf8, 0x15, 0x01,
6322         0xa6, 0x86, 0xfe, 0x4b, 0x45, 0xfe, 0x20, 0x13, 0x01, 0x43, 0x09, 0x82,
6323         0xfe, 0x16, 0x13, 0x03, 0x9a, 0x1e, 0x5d, 0x03, 0x55, 0x1e, 0x31, 0x5e,
6324         0x05, 0x72, 0xfe, 0xc0, 0x5d, 0x01, 0xa7, 0xfe, 0x03, 0x17, 0x03, 0x66,
6325         0x8a, 0x10, 0x66, 0x5e, 0x32, 0x01, 0x08, 0x17, 0x73, 0x01, 0xfe, 0x56,
6326         0x19, 0x05, 0x73, 0x01, 0x08, 0x2a, 0x3c, 0x16, 0x3d, 0x27, 0x25, 0xbd,
6327         0x09, 0x07, 0x2b, 0x3d, 0x01, 0xfe, 0xbe, 0x16, 0xfe, 0x42, 0x58, 0xfe,
6328         0xe8, 0x14, 0x01, 0xa6, 0x86, 0xfe, 0x4a, 0xf4, 0x0d, 0x1b, 0x3d, 0xfe,
6329         0x4a, 0xf4, 0x07, 0xfe, 0x0e, 0x12, 0x01, 0x43, 0x09, 0x82, 0x4e, 0x05,
6330         0x72, 0x03, 0x55, 0x8a, 0x10, 0x55, 0x5e, 0x32, 0x01, 0x08, 0x17, 0x73,
6331         0x01, 0xfe, 0x84, 0x19, 0x05, 0x73, 0x01, 0x08, 0x2a, 0x3c, 0x16, 0x3d,
6332         0x27, 0x25, 0xbd, 0x09, 0x12, 0x2b, 0x3d, 0x01, 0xfe, 0xe8, 0x17, 0x8b,
6333         0xfe, 0xaa, 0x14, 0xfe, 0xb6, 0x14, 0x86, 0xa8, 0xb2, 0x0d, 0x1b, 0x3d,
6334         0xb2, 0x07, 0xfe, 0x0e, 0x12, 0x01, 0x43, 0x09, 0x82, 0x4e, 0x05, 0x72,
6335         0x03, 0x6f, 0x8a, 0x10, 0x6f, 0x5e, 0x32, 0x01, 0x08, 0x17, 0x73, 0x01,
6336         0xfe, 0xc0, 0x19, 0x05, 0x73, 0x13, 0x07, 0x2f, 0xfe, 0xcc, 0x15, 0x17,
6337         0xfe, 0xe2, 0x15, 0x5f, 0xcc, 0x01, 0x08, 0x26, 0x5f, 0x02, 0x8f, 0xfe,
6338         0xde, 0x15, 0x2a, 0xfe, 0xde, 0x15, 0x16, 0xfe, 0xcc, 0x15, 0x5e, 0x32,
6339         0x01, 0x08, 0xfe, 0xd5, 0x10, 0x13, 0x58, 0xff, 0x02, 0x00, 0x57, 0x52,
6340         0xad, 0x23, 0xfe, 0xff, 0x7f, 0xfe, 0x30, 0x56, 0xfe, 0x00, 0x5c, 0x02,
6341         0x13, 0x58, 0xff, 0x02, 0x00, 0x57, 0x52, 0xad, 0x23, 0x3f, 0xfe, 0x30,
6342         0x56, 0xfe, 0x00, 0x5c, 0x02, 0x13, 0x58, 0xff, 0x02, 0x00, 0x57, 0x52,
6343         0xad, 0x02, 0x13, 0x58, 0xff, 0x02, 0x00, 0x57, 0x52, 0xfe, 0x00, 0x5e,
6344         0x02, 0x13, 0x58, 0xff, 0x02, 0x00, 0x57, 0x52, 0xad, 0xfe, 0x0b, 0x58,
6345         0x02, 0x0a, 0x66, 0x01, 0x5c, 0x0a, 0x55, 0x01, 0x5c, 0x0a, 0x6f, 0x01,
6346         0x5c, 0x02, 0x01, 0xfe, 0x1e, 0x1f, 0x23, 0x1a, 0xff, 0x03, 0x00, 0x54,
6347         0xfe, 0x00, 0xf4, 0x24, 0x52, 0x0f, 0xfe, 0x00, 0x7c, 0x04, 0xfe, 0x07,
6348         0x7c, 0x3a, 0x0b, 0x0e, 0xfe, 0x00, 0x71, 0xfe, 0xf9, 0x18, 0xfe, 0x7a,
6349         0x19, 0xfe, 0xfb, 0x19, 0xfe, 0x1a, 0xf7, 0x00, 0xfe, 0x1b, 0xf7, 0x00,
6350         0x7a, 0x30, 0x10, 0x68, 0x22, 0x69, 0xd9, 0x6c, 0xda, 0x6d, 0x02, 0xfe,
6351         0x62, 0x08, 0xfe, 0x82, 0x4a, 0xfe, 0xe1, 0x1a, 0xfe, 0x83, 0x5a, 0x77,
6352         0x02, 0x01, 0xc6, 0xfe, 0x42, 0x48, 0x4f, 0x50, 0x45, 0x01, 0x08, 0x16,
6353         0xfe, 0xe0, 0x17, 0x27, 0x25, 0xbe, 0x01, 0x08, 0x16, 0xfe, 0xe0, 0x17,
6354         0x27, 0x25, 0xfe, 0xe8, 0x0a, 0xfe, 0xc1, 0x59, 0x03, 0x9a, 0x1e, 0xfe,
6355         0xda, 0x12, 0x01, 0x38, 0x06, 0x12, 0xfe, 0xd0, 0x13, 0x26, 0x53, 0x12,
6356         0x48, 0xfe, 0x08, 0x17, 0xd1, 0x12, 0x53, 0x12, 0xfe, 0x1e, 0x13, 0x2d,
6357         0xb4, 0x7b, 0xfe, 0x26, 0x17, 0x4d, 0x13, 0x07, 0x1c, 0xb4, 0x90, 0x04,
6358         0xfe, 0x78, 0x10, 0xff, 0x02, 0x83, 0x55, 0xf1, 0xff, 0x02, 0x83, 0x55,
6359         0x53, 0x1d, 0xfe, 0x12, 0x13, 0xd6, 0xfe, 0x30, 0x00, 0xb0, 0xfe, 0x80,
6360         0x17, 0x1c, 0x63, 0x13, 0x07, 0xfe, 0x56, 0x10, 0x53, 0x0d, 0xfe, 0x16,
6361         0x13, 0xd6, 0xfe, 0x64, 0x00, 0xb0, 0xfe, 0x80, 0x17, 0x0a, 0xfe, 0x64,
6362         0x00, 0x1c, 0x94, 0x13, 0x07, 0xfe, 0x28, 0x10, 0x53, 0x07, 0xfe, 0x60,
6363         0x13, 0xd6, 0xfe, 0xc8, 0x00, 0xb0, 0xfe, 0x80, 0x17, 0x0a, 0xfe, 0xc8,
6364         0x00, 0x1c, 0x95, 0x13, 0x07, 0x71, 0xd6, 0xfe, 0x90, 0x01, 0x48, 0xfe,
6365         0x8c, 0x17, 0x45, 0xf3, 0xfe, 0x43, 0xf4, 0x96, 0xfe, 0x56, 0xf0, 0xfe,
6366         0x9e, 0x17, 0xfe, 0x04, 0xf4, 0x58, 0xfe, 0x43, 0xf4, 0x94, 0xf6, 0x8b,
6367         0x01, 0xfe, 0x24, 0x16, 0x23, 0x3f, 0xfc, 0xa8, 0x8c, 0x49, 0x48, 0xfe,
6368         0xda, 0x17, 0x62, 0x49, 0xfe, 0x1c, 0x10, 0xa8, 0x8c, 0x80, 0x48, 0xfe,
6369         0xda, 0x17, 0x62, 0x80, 0x71, 0x50, 0x26, 0xfe, 0x4d, 0xf4, 0x00, 0xf7,
6370         0x45, 0x13, 0x07, 0xfe, 0xb4, 0x56, 0xfe, 0xc3, 0x58, 0x02, 0x50, 0x13,
6371         0x0d, 0x02, 0x50, 0x3e, 0x78, 0x4f, 0x45, 0x01, 0x08, 0x16, 0xa9, 0x27,
6372         0x25, 0xbe, 0xfe, 0x03, 0xea, 0xfe, 0x7e, 0x01, 0x01, 0x08, 0x16, 0xa9,
6373         0x27, 0x25, 0xfe, 0xe9, 0x0a, 0x01, 0x08, 0x16, 0xa9, 0x27, 0x25, 0xfe,
6374         0xe9, 0x0a, 0xfe, 0x05, 0xea, 0xfe, 0x7f, 0x01, 0x01, 0x08, 0x16, 0xa9,
6375         0x27, 0x25, 0xfe, 0x69, 0x09, 0xfe, 0x02, 0xea, 0xfe, 0x80, 0x01, 0x01,
6376         0x08, 0x16, 0xa9, 0x27, 0x25, 0xfe, 0xe8, 0x08, 0x47, 0xfe, 0x81, 0x01,
6377         0x03, 0xb6, 0x1e, 0x83, 0x01, 0x38, 0x06, 0x24, 0x31, 0xa2, 0x78, 0xf2,
6378         0x53, 0x07, 0x36, 0xfe, 0x34, 0xf4, 0x3f, 0xa1, 0x78, 0x03, 0x9a, 0x1e,
6379         0x83, 0x01, 0x38, 0x06, 0x12, 0x31, 0xf0, 0x4f, 0x45, 0xfe, 0x90, 0x10,
6380         0xfe, 0x40, 0x5a, 0x23, 0x3f, 0xfb, 0x8c, 0x49, 0x48, 0xfe, 0xaa, 0x18,
6381         0x62, 0x49, 0x71, 0x8c, 0x80, 0x48, 0xfe, 0xaa, 0x18, 0x62, 0x80, 0xfe,
6382         0xb4, 0x56, 0xfe, 0x40, 0x5d, 0x01, 0xc6, 0x01, 0xfe, 0xac, 0x1d, 0xfe,
6383         0x02, 0x17, 0xfe, 0xc8, 0x45, 0xfe, 0x5a, 0xf0, 0xfe, 0xc0, 0x18, 0xfe,
6384         0x43, 0x48, 0x2d, 0x93, 0x36, 0xfe, 0x34, 0xf4, 0xfe, 0x00, 0x11, 0xfe,
6385         0x40, 0x10, 0x2d, 0xb4, 0x36, 0xfe, 0x34, 0xf4, 0x04, 0xfe, 0x34, 0x10,
6386         0x2d, 0xfe, 0x0b, 0x00, 0x36, 0x46, 0x63, 0xfe, 0x28, 0x10, 0xfe, 0xc0,
6387         0x49, 0xff, 0x02, 0x00, 0x54, 0xb2, 0xfe, 0x90, 0x01, 0x48, 0xfe, 0xfa,
6388         0x18, 0x45, 0xfe, 0x1c, 0xf4, 0x3f, 0xf3, 0xfe, 0x40, 0xf4, 0x96, 0xfe,
6389         0x56, 0xf0, 0xfe, 0x0c, 0x19, 0xfe, 0x04, 0xf4, 0x58, 0xfe, 0x40, 0xf4,
6390         0x94, 0xf6, 0x3e, 0x2d, 0x93, 0x4e, 0xd0, 0x0d, 0x21, 0xfe, 0x7f, 0x01,
6391         0xfe, 0xc8, 0x46, 0xfe, 0x24, 0x13, 0x8c, 0x00, 0x5d, 0x26, 0x21, 0xfe,
6392         0x7e, 0x01, 0xfe, 0xc8, 0x45, 0xfe, 0x14, 0x13, 0x21, 0xfe, 0x80, 0x01,
6393         0xfe, 0x48, 0x45, 0xfa, 0x21, 0xfe, 0x81, 0x01, 0xfe, 0xc8, 0x44, 0x4e,
6394         0x26, 0x02, 0x13, 0x07, 0x02, 0x78, 0x45, 0x50, 0x13, 0x0d, 0x02, 0x14,
6395         0x07, 0x01, 0x08, 0x17, 0xfe, 0x82, 0x19, 0x14, 0x0d, 0x01, 0x08, 0x17,
6396         0xfe, 0x82, 0x19, 0x14, 0x1d, 0x01, 0x08, 0x17, 0xfe, 0x82, 0x19, 0x5f,
6397         0xfe, 0x89, 0x49, 0x01, 0x08, 0x02, 0x14, 0x07, 0x01, 0x08, 0x17, 0xc1,
6398         0x14, 0x1d, 0x01, 0x08, 0x17, 0xc1, 0x14, 0x07, 0x01, 0x08, 0x17, 0xc1,
6399         0xfe, 0x89, 0x49, 0x01, 0x08, 0x17, 0xc1, 0x5f, 0xfe, 0x89, 0x4a, 0x01,
6400         0x08, 0x02, 0x50, 0x02, 0x14, 0x07, 0x01, 0x08, 0x17, 0x74, 0x14, 0x7f,
6401         0x01, 0x08, 0x17, 0x74, 0x14, 0x12, 0x01, 0x08, 0x17, 0x74, 0xfe, 0x89,
6402         0x49, 0x01, 0x08, 0x17, 0x74, 0x14, 0x00, 0x01, 0x08, 0x17, 0x74, 0xfe,
6403         0x89, 0x4a, 0x01, 0x08, 0x17, 0x74, 0xfe, 0x09, 0x49, 0x01, 0x08, 0x17,
6404         0x74, 0x5f, 0xcc, 0x01, 0x08, 0x02, 0x21, 0xe4, 0x09, 0x07, 0xfe, 0x4c,
6405         0x13, 0xc8, 0x20, 0xe4, 0xfe, 0x49, 0xf4, 0x00, 0x4d, 0x5f, 0xa1, 0x5e,
6406         0xfe, 0x01, 0xec, 0xfe, 0x27, 0x01, 0xcc, 0xff, 0x02, 0x00, 0x10, 0x2f,
6407         0xfe, 0x3e, 0x1a, 0x01, 0x43, 0x09, 0xfe, 0xe3, 0x00, 0xfe, 0x22, 0x13,
6408         0x16, 0xfe, 0x64, 0x1a, 0x26, 0x20, 0x9e, 0x01, 0x41, 0x21, 0x9e, 0x09,
6409         0x07, 0x5d, 0x01, 0x0c, 0x61, 0x07, 0x44, 0x02, 0x0a, 0x5a, 0x01, 0x18,
6410         0xfe, 0x00, 0x40, 0xaa, 0x09, 0x1a, 0xfe, 0x12, 0x13, 0x0a, 0x9d, 0x01,
6411         0x18, 0xaa, 0x0a, 0x67, 0x01, 0xa3, 0x02, 0x0a, 0x9d, 0x01, 0x18, 0xaa,
6412         0xfe, 0x80, 0xe7, 0x1a, 0x09, 0x1a, 0x5d, 0xfe, 0x45, 0x58, 0x01, 0xfe,
6413         0xb2, 0x16, 0xaa, 0x02, 0x0a, 0x5a, 0x01, 0x18, 0xaa, 0x0a, 0x67, 0x01,
6414         0xa3, 0x02, 0x0a, 0x5a, 0x01, 0x18, 0x01, 0xfe, 0x7e, 0x1e, 0xfe, 0x80,
6415         0x4c, 0xfe, 0x49, 0xe4, 0x1a, 0xfe, 0x12, 0x13, 0x0a, 0x9d, 0x01, 0x18,
6416         0xfe, 0x80, 0x4c, 0x0a, 0x67, 0x01, 0x5c, 0x02, 0x1c, 0x1a, 0x87, 0x7c,
6417         0xe5, 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xde, 0xfe, 0x24, 0x1c, 0xfe, 0x1d,
6418         0xf7, 0x28, 0xb1, 0xfe, 0x04, 0x1b, 0x01, 0xfe, 0x2a, 0x1c, 0xfa, 0xb3,
6419         0x28, 0x7c, 0xfe, 0x2c, 0x01, 0xfe, 0x2f, 0x19, 0x02, 0xc9, 0x2b, 0xfe,
6420         0xf4, 0x1a, 0xfe, 0xfa, 0x10, 0x1c, 0x1a, 0x87, 0x03, 0xfe, 0x64, 0x01,
6421         0xfe, 0x00, 0xf4, 0x24, 0xfe, 0x18, 0x58, 0x03, 0xfe, 0x66, 0x01, 0xfe,
6422         0x19, 0x58, 0xb3, 0x24, 0x01, 0xfe, 0x0e, 0x1f, 0xfe, 0x30, 0xf4, 0x07,
6423         0xfe, 0x3c, 0x50, 0x7c, 0xfe, 0x38, 0x00, 0xfe, 0x0f, 0x79, 0xfe, 0x1c,
6424         0xf7, 0x24, 0xb1, 0xfe, 0x50, 0x1b, 0xfe, 0xd4, 0x14, 0x31, 0x02, 0xc9,
6425         0x2b, 0xfe, 0x26, 0x1b, 0xfe, 0xba, 0x10, 0x1c, 0x1a, 0x87, 0xfe, 0x83,
6426         0x5a, 0xfe, 0x18, 0xdf, 0xfe, 0x19, 0xde, 0xfe, 0x1d, 0xf7, 0x54, 0xb1,
6427         0xfe, 0x72, 0x1b, 0xfe, 0xb2, 0x14, 0xfc, 0xb3, 0x54, 0x7c, 0x12, 0xfe,
6428         0xaf, 0x19, 0xfe, 0x98, 0xe7, 0x00, 0x02, 0xc9, 0x2b, 0xfe, 0x66, 0x1b,
6429         0xfe, 0x8a, 0x10, 0x1c, 0x1a, 0x87, 0x8b, 0x0f, 0xfe, 0x30, 0x90, 0x04,
6430         0xfe, 0xb0, 0x93, 0x3a, 0x0b, 0xfe, 0x18, 0x58, 0xfe, 0x32, 0x90, 0x04,
6431         0xfe, 0xb2, 0x93, 0x3a, 0x0b, 0xfe, 0x19, 0x58, 0x0e, 0xa8, 0xb3, 0x4a,
6432         0x7c, 0x12, 0xfe, 0x0f, 0x79, 0xfe, 0x1c, 0xf7, 0x4a, 0xb1, 0xfe, 0xc6,
6433         0x1b, 0xfe, 0x5e, 0x14, 0x31, 0x02, 0xc9, 0x2b, 0xfe, 0x96, 0x1b, 0x5c,
6434         0xfe, 0x02, 0xf6, 0x1a, 0x87, 0xfe, 0x18, 0xfe, 0x6a, 0xfe, 0x19, 0xfe,
6435         0x6b, 0x01, 0xfe, 0x1e, 0x1f, 0xfe, 0x1d, 0xf7, 0x65, 0xb1, 0xfe, 0xee,
6436         0x1b, 0xfe, 0x36, 0x14, 0xfe, 0x1c, 0x13, 0xb3, 0x65, 0x3e, 0xfe, 0x83,
6437         0x58, 0xfe, 0xaf, 0x19, 0xfe, 0x80, 0xe7, 0x1a, 0xfe, 0x81, 0xe7, 0x1a,
6438         0x15, 0xfe, 0xdd, 0x00, 0x7a, 0x30, 0x02, 0x7a, 0x30, 0xfe, 0x12, 0x45,
6439         0x2b, 0xfe, 0xdc, 0x1b, 0x1f, 0x07, 0x47, 0xb5, 0xc3, 0x05, 0x35, 0xfe,
6440         0x39, 0xf0, 0x75, 0x26, 0x02, 0xfe, 0x7e, 0x18, 0x23, 0x1d, 0x36, 0x13,
6441         0x11, 0x02, 0x87, 0x03, 0xe3, 0x23, 0x07, 0xfe, 0xef, 0x12, 0xfe, 0xe1,
6442         0x10, 0x90, 0x34, 0x60, 0xfe, 0x02, 0x80, 0x09, 0x56, 0xfe, 0x3c, 0x13,
6443         0xfe, 0x82, 0x14, 0xfe, 0x42, 0x13, 0x51, 0xfe, 0x06, 0x83, 0x0a, 0x5a,
6444         0x01, 0x18, 0xcb, 0xfe, 0x3e, 0x12, 0xfe, 0x41, 0x48, 0xfe, 0x45, 0x48,
6445         0x01, 0xfe, 0xb2, 0x16, 0xfe, 0x00, 0xcc, 0xcb, 0xfe, 0xf3, 0x13, 0x3f,
6446         0x89, 0x09, 0x1a, 0xa5, 0x0a, 0x9d, 0x01, 0x18, 0xfe, 0x80, 0x4c, 0x01,
6447         0x85, 0xfe, 0x16, 0x10, 0x09, 0x9b, 0x4e, 0xfe, 0x40, 0x14, 0xfe, 0x24,
6448         0x12, 0xfe, 0x14, 0x56, 0xfe, 0xd6, 0xf0, 0xfe, 0x52, 0x1c, 0x1c, 0x0d,
6449         0x02, 0xfe, 0x9c, 0xe7, 0x0d, 0x19, 0xfe, 0x15, 0x00, 0x40, 0x8d, 0x30,
6450         0x01, 0xf4, 0x1c, 0x07, 0x02, 0x51, 0xfe, 0x06, 0x83, 0xfe, 0x18, 0x80,
6451         0x61, 0x28, 0x44, 0x15, 0x56, 0x01, 0x85, 0x1c, 0x07, 0x02, 0xfe, 0x38,
6452         0x90, 0xfe, 0xba, 0x90, 0x91, 0xde, 0x7e, 0xdf, 0xfe, 0x48, 0x55, 0x31,
6453         0xfe, 0xc9, 0x55, 0x02, 0x21, 0xb9, 0x88, 0x20, 0xb9, 0x02, 0x0a, 0xba,
6454         0x01, 0x18, 0xfe, 0x41, 0x48, 0x0a, 0x57, 0x01, 0x18, 0xfe, 0x49, 0x44,
6455         0x1b, 0xfe, 0x1e, 0x1d, 0x88, 0x89, 0x02, 0x0a, 0x5a, 0x01, 0x18, 0x09,
6456         0x1a, 0xa4, 0x0a, 0x67, 0x01, 0xa3, 0x0a, 0x57, 0x01, 0x18, 0x88, 0x89,
6457         0x02, 0xfe, 0x4e, 0xe4, 0x1d, 0x7b, 0xfe, 0x52, 0x1d, 0x03, 0xfe, 0x90,
6458         0x00, 0xfe, 0x3a, 0x45, 0xfe, 0x2c, 0x10, 0xfe, 0x4e, 0xe4, 0xdd, 0x7b,
6459         0xfe, 0x64, 0x1d, 0x03, 0xfe, 0x92, 0x00, 0xd1, 0x12, 0xfe, 0x1a, 0x10,
6460         0xfe, 0x4e, 0xe4, 0xfe, 0x0b, 0x00, 0x7b, 0xfe, 0x76, 0x1d, 0x03, 0xfe,
6461         0x94, 0x00, 0xd1, 0x24, 0xfe, 0x08, 0x10, 0x03, 0xfe, 0x96, 0x00, 0xd1,
6462         0x63, 0xfe, 0x4e, 0x45, 0x83, 0xca, 0xff, 0x04, 0x68, 0x54, 0xfe, 0xf1,
6463         0x10, 0x23, 0x49, 0xfe, 0x08, 0x1c, 0xfe, 0x67, 0x19, 0xfe, 0x0a, 0x1c,
6464         0xfe, 0x1a, 0xf4, 0xfe, 0x00, 0x04, 0x83, 0xb2, 0x1d, 0x48, 0xfe, 0xaa,
6465         0x1d, 0x13, 0x1d, 0x02, 0x09, 0x92, 0xfe, 0x5a, 0xf0, 0xfe, 0xba, 0x1d,
6466         0x2e, 0x93, 0xfe, 0x34, 0x10, 0x09, 0x12, 0xfe, 0x5a, 0xf0, 0xfe, 0xc8,
6467         0x1d, 0x2e, 0xb4, 0xfe, 0x26, 0x10, 0x09, 0x1d, 0x36, 0x2e, 0x63, 0xfe,
6468         0x1a, 0x10, 0x09, 0x0d, 0x36, 0x2e, 0x94, 0xf2, 0x09, 0x07, 0x36, 0x2e,
6469         0x95, 0xa1, 0xc8, 0x02, 0x1f, 0x93, 0x01, 0x42, 0xfe, 0x04, 0xfe, 0x99,
6470         0x03, 0x9c, 0x8b, 0x02, 0x2a, 0xfe, 0x1c, 0x1e, 0xfe, 0x14, 0xf0, 0x08,
6471         0x2f, 0xfe, 0x0c, 0x1e, 0x2a, 0xfe, 0x1c, 0x1e, 0x8f, 0xfe, 0x1c, 0x1e,
6472         0xfe, 0x82, 0xf0, 0xfe, 0x10, 0x1e, 0x02, 0x0f, 0x3f, 0x04, 0xfe, 0x80,
6473         0x83, 0x33, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x18, 0x80, 0x04, 0xfe, 0x98,
6474         0x83, 0x33, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x02, 0x80, 0x04, 0xfe, 0x82,
6475         0x83, 0x33, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x06, 0x80, 0x04, 0xfe, 0x86,
6476         0x83, 0x33, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x1b, 0x80, 0x04, 0xfe, 0x9b,
6477         0x83, 0x33, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x04, 0x80, 0x04, 0xfe, 0x84,
6478         0x83, 0x33, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x80, 0x80, 0x04, 0xfe, 0x80,
6479         0x83, 0xfe, 0xc9, 0x47, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x19, 0x81, 0x04,
6480         0xfe, 0x99, 0x83, 0xfe, 0xca, 0x47, 0x0b, 0x0e, 0x02, 0x0f, 0xfe, 0x06,
6481         0x83, 0x04, 0xfe, 0x86, 0x83, 0xfe, 0xce, 0x47, 0x0b, 0x0e, 0x02, 0x0f,
6482         0xfe, 0x2c, 0x90, 0x04, 0xfe, 0xac, 0x93, 0x3a, 0x0b, 0x0e, 0x02, 0x0f,
6483         0xfe, 0xae, 0x90, 0x04, 0xfe, 0xae, 0x93, 0x79, 0x0b, 0x0e, 0x02, 0x0f,
6484         0xfe, 0x08, 0x90, 0x04, 0xfe, 0x88, 0x93, 0x3a, 0x0b, 0x0e, 0x02, 0x0f,
6485         0xfe, 0x8a, 0x90, 0x04, 0xfe, 0x8a, 0x93, 0x79, 0x0b, 0x0e, 0x02, 0x0f,
6486         0xfe, 0x0c, 0x90, 0x04, 0xfe, 0x8c, 0x93, 0x3a, 0x0b, 0x0e, 0x02, 0x0f,
6487         0xfe, 0x8e, 0x90, 0x04, 0xfe, 0x8e, 0x93, 0x79, 0x0b, 0x0e, 0x02, 0x0f,
6488         0xfe, 0x3c, 0x90, 0x04, 0xfe, 0xbc, 0x93, 0x3a, 0x0b, 0x0e, 0x02, 0x8b,
6489         0x0f, 0xfe, 0x03, 0x80, 0x04, 0xfe, 0x83, 0x83, 0x33, 0x0b, 0x77, 0x0e,
6490         0xa8, 0x02, 0xff, 0x66, 0x00, 0x00,
6491 };
6492
6493 static unsigned short _adv_asc38C1600_size = sizeof(_adv_asc38C1600_buf);       /* 0x1673 */
6494 static ADV_DCNT _adv_asc38C1600_chksum = 0x0604EF77UL;  /* Expanded little-endian checksum. */
6495
6496 static void AscInitQLinkVar(ASC_DVC_VAR *asc_dvc)
6497 {
6498         PortAddr iop_base;
6499         int i;
6500         ushort lram_addr;
6501
6502         iop_base = asc_dvc->iop_base;
6503         AscPutRiscVarFreeQHead(iop_base, 1);
6504         AscPutRiscVarDoneQTail(iop_base, asc_dvc->max_total_qng);
6505         AscPutVarFreeQHead(iop_base, 1);
6506         AscPutVarDoneQTail(iop_base, asc_dvc->max_total_qng);
6507         AscWriteLramByte(iop_base, ASCV_BUSY_QHEAD_B,
6508                          (uchar)((int)asc_dvc->max_total_qng + 1));
6509         AscWriteLramByte(iop_base, ASCV_DISC1_QHEAD_B,
6510                          (uchar)((int)asc_dvc->max_total_qng + 2));
6511         AscWriteLramByte(iop_base, (ushort)ASCV_TOTAL_READY_Q_B,
6512                          asc_dvc->max_total_qng);
6513         AscWriteLramWord(iop_base, ASCV_ASCDVC_ERR_CODE_W, 0);
6514         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
6515         AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, 0);
6516         AscWriteLramByte(iop_base, ASCV_SCSIBUSY_B, 0);
6517         AscWriteLramByte(iop_base, ASCV_WTM_FLAG_B, 0);
6518         AscPutQDoneInProgress(iop_base, 0);
6519         lram_addr = ASC_QADR_BEG;
6520         for (i = 0; i < 32; i++, lram_addr += 2) {
6521                 AscWriteLramWord(iop_base, lram_addr, 0);
6522         }
6523 }
6524
6525 static ushort AscInitMicroCodeVar(ASC_DVC_VAR *asc_dvc)
6526 {
6527         int i;
6528         ushort warn_code;
6529         PortAddr iop_base;
6530         ASC_PADDR phy_addr;
6531         ASC_DCNT phy_size;
6532
6533         iop_base = asc_dvc->iop_base;
6534         warn_code = 0;
6535         for (i = 0; i <= ASC_MAX_TID; i++) {
6536                 AscPutMCodeInitSDTRAtID(iop_base, i,
6537                                         asc_dvc->cfg->sdtr_period_offset[i]);
6538         }
6539
6540         AscInitQLinkVar(asc_dvc);
6541         AscWriteLramByte(iop_base, ASCV_DISC_ENABLE_B,
6542                          asc_dvc->cfg->disc_enable);
6543         AscWriteLramByte(iop_base, ASCV_HOSTSCSI_ID_B,
6544                          ASC_TID_TO_TARGET_ID(asc_dvc->cfg->chip_scsi_id));
6545
6546         /* Align overrun buffer on an 8 byte boundary. */
6547         phy_addr = virt_to_bus(asc_dvc->cfg->overrun_buf);
6548         phy_addr = cpu_to_le32((phy_addr + 7) & ~0x7);
6549         AscMemDWordCopyPtrToLram(iop_base, ASCV_OVERRUN_PADDR_D,
6550                                  (uchar *)&phy_addr, 1);
6551         phy_size = cpu_to_le32(ASC_OVERRUN_BSIZE - 8);
6552         AscMemDWordCopyPtrToLram(iop_base, ASCV_OVERRUN_BSIZE_D,
6553                                  (uchar *)&phy_size, 1);
6554
6555         asc_dvc->cfg->mcode_date =
6556             AscReadLramWord(iop_base, (ushort)ASCV_MC_DATE_W);
6557         asc_dvc->cfg->mcode_version =
6558             AscReadLramWord(iop_base, (ushort)ASCV_MC_VER_W);
6559
6560         AscSetPCAddr(iop_base, ASC_MCODE_START_ADDR);
6561         if (AscGetPCAddr(iop_base) != ASC_MCODE_START_ADDR) {
6562                 asc_dvc->err_code |= ASC_IERR_SET_PC_ADDR;
6563                 return warn_code;
6564         }
6565         if (AscStartChip(iop_base) != 1) {
6566                 asc_dvc->err_code |= ASC_IERR_START_STOP_CHIP;
6567                 return warn_code;
6568         }
6569
6570         return warn_code;
6571 }
6572
6573 static ushort AscInitAsc1000Driver(ASC_DVC_VAR *asc_dvc)
6574 {
6575         ushort warn_code;
6576         PortAddr iop_base;
6577
6578         iop_base = asc_dvc->iop_base;
6579         warn_code = 0;
6580         if ((asc_dvc->dvc_cntl & ASC_CNTL_RESET_SCSI) &&
6581             !(asc_dvc->init_state & ASC_INIT_RESET_SCSI_DONE)) {
6582                 AscResetChipAndScsiBus(asc_dvc);
6583                 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
6584         }
6585         asc_dvc->init_state |= ASC_INIT_STATE_BEG_LOAD_MC;
6586         if (asc_dvc->err_code != 0)
6587                 return UW_ERR;
6588         if (!AscFindSignature(asc_dvc->iop_base)) {
6589                 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
6590                 return warn_code;
6591         }
6592         AscDisableInterrupt(iop_base);
6593         warn_code |= AscInitLram(asc_dvc);
6594         if (asc_dvc->err_code != 0)
6595                 return UW_ERR;
6596         ASC_DBG1(1, "AscInitAsc1000Driver: _asc_mcode_chksum 0x%lx\n",
6597                  (ulong)_asc_mcode_chksum);
6598         if (AscLoadMicroCode(iop_base, 0, _asc_mcode_buf,
6599                              _asc_mcode_size) != _asc_mcode_chksum) {
6600                 asc_dvc->err_code |= ASC_IERR_MCODE_CHKSUM;
6601                 return warn_code;
6602         }
6603         warn_code |= AscInitMicroCodeVar(asc_dvc);
6604         asc_dvc->init_state |= ASC_INIT_STATE_END_LOAD_MC;
6605         AscEnableInterrupt(iop_base);
6606         return warn_code;
6607 }
6608
6609 /*
6610  * Load the Microcode
6611  *
6612  * Write the microcode image to RISC memory starting at address 0.
6613  *
6614  * The microcode is stored compressed in the following format:
6615  *
6616  *  254 word (508 byte) table indexed by byte code followed
6617  *  by the following byte codes:
6618  *
6619  *    1-Byte Code:
6620  *      00: Emit word 0 in table.
6621  *      01: Emit word 1 in table.
6622  *      .
6623  *      FD: Emit word 253 in table.
6624  *
6625  *    Multi-Byte Code:
6626  *      FE WW WW: (3 byte code) Word to emit is the next word WW WW.
6627  *      FF BB WW WW: (4 byte code) Emit BB count times next word WW WW.
6628  *
6629  * Returns 0 or an error if the checksum doesn't match
6630  */
6631 static int AdvLoadMicrocode(AdvPortAddr iop_base, unsigned char *buf, int size,
6632                             int memsize, int chksum)
6633 {
6634         int i, j, end, len = 0;
6635         ADV_DCNT sum;
6636
6637         AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, 0);
6638
6639         for (i = 253 * 2; i < size; i++) {
6640                 if (buf[i] == 0xff) {
6641                         unsigned short word = (buf[i + 3] << 8) | buf[i + 2];
6642                         for (j = 0; j < buf[i + 1]; j++) {
6643                                 AdvWriteWordAutoIncLram(iop_base, word);
6644                                 len += 2;
6645                         }
6646                         i += 3;
6647                 } else if (buf[i] == 0xfe) {
6648                         unsigned short word = (buf[i + 2] << 8) | buf[i + 1];
6649                         AdvWriteWordAutoIncLram(iop_base, word);
6650                         i += 2;
6651                         len += 2;
6652                 } else {
6653                         unsigned char off = buf[i] * 2;
6654                         unsigned short word = (buf[off + 1] << 8) | buf[off];
6655                         AdvWriteWordAutoIncLram(iop_base, word);
6656                         len += 2;
6657                 }
6658         }
6659
6660         end = len;
6661
6662         while (len < memsize) {
6663                 AdvWriteWordAutoIncLram(iop_base, 0);
6664                 len += 2;
6665         }
6666
6667         /* Verify the microcode checksum. */
6668         sum = 0;
6669         AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, 0);
6670
6671         for (len = 0; len < end; len += 2) {
6672                 sum += AdvReadWordAutoIncLram(iop_base);
6673         }
6674
6675         if (sum != chksum)
6676                 return ASC_IERR_MCODE_CHKSUM;
6677
6678         return 0;
6679 }
6680
6681 /*
6682  * DvcGetPhyAddr()
6683  *
6684  * Return the physical address of 'vaddr' and set '*lenp' to the
6685  * number of physically contiguous bytes that follow 'vaddr'.
6686  * 'flag' indicates the type of structure whose physical address
6687  * is being translated.
6688  *
6689  * Note: Because Linux currently doesn't page the kernel and all
6690  * kernel buffers are physically contiguous, leave '*lenp' unchanged.
6691  */
6692 ADV_PADDR
6693 DvcGetPhyAddr(ADV_DVC_VAR *asc_dvc, ADV_SCSI_REQ_Q *scsiq,
6694               uchar *vaddr, ADV_SDCNT *lenp, int flag)
6695 {
6696         ADV_PADDR paddr = virt_to_bus(vaddr);
6697
6698         ASC_DBG4(4, "DvcGetPhyAddr: vaddr 0x%p, lenp 0x%p *lenp %lu, paddr 0x%lx\n",
6699                  vaddr, lenp, (ulong)*((ulong *)lenp), (ulong)paddr);
6700
6701         return paddr;
6702 }
6703
6704 static void AdvBuildCarrierFreelist(struct adv_dvc_var *asc_dvc)
6705 {
6706         ADV_CARR_T *carrp;
6707         ADV_SDCNT buf_size;
6708         ADV_PADDR carr_paddr;
6709
6710         BUG_ON(!asc_dvc->carrier_buf);
6711
6712         carrp = (ADV_CARR_T *) ADV_16BALIGN(asc_dvc->carrier_buf);
6713         asc_dvc->carr_freelist = NULL;
6714         if (carrp == asc_dvc->carrier_buf) {
6715                 buf_size = ADV_CARRIER_BUFSIZE;
6716         } else {
6717                 buf_size = ADV_CARRIER_BUFSIZE - sizeof(ADV_CARR_T);
6718         }
6719
6720         do {
6721                 /* Get physical address of the carrier 'carrp'. */
6722                 ADV_DCNT contig_len = sizeof(ADV_CARR_T);
6723                 carr_paddr = cpu_to_le32(DvcGetPhyAddr(asc_dvc, NULL,
6724                                                        (uchar *)carrp,
6725                                                        (ADV_SDCNT *)&contig_len,
6726                                                        ADV_IS_CARRIER_FLAG));
6727
6728                 buf_size -= sizeof(ADV_CARR_T);
6729
6730                 /*
6731                  * If the current carrier is not physically contiguous, then
6732                  * maybe there was a page crossing. Try the next carrier
6733                  * aligned start address.
6734                  */
6735                 if (contig_len < sizeof(ADV_CARR_T)) {
6736                         carrp++;
6737                         continue;
6738                 }
6739
6740                 carrp->carr_pa = carr_paddr;
6741                 carrp->carr_va = cpu_to_le32(ADV_VADDR_TO_U32(carrp));
6742
6743                 /*
6744                  * Insert the carrier at the beginning of the freelist.
6745                  */
6746                 carrp->next_vpa =
6747                         cpu_to_le32(ADV_VADDR_TO_U32(asc_dvc->carr_freelist));
6748                 asc_dvc->carr_freelist = carrp;
6749
6750                 carrp++;
6751         } while (buf_size > 0);
6752 }
6753
6754 /*
6755  * Send an idle command to the chip and wait for completion.
6756  *
6757  * Command completion is polled for once per microsecond.
6758  *
6759  * The function can be called from anywhere including an interrupt handler.
6760  * But the function is not re-entrant, so it uses the DvcEnter/LeaveCritical()
6761  * functions to prevent reentrancy.
6762  *
6763  * Return Values:
6764  *   ADV_TRUE - command completed successfully
6765  *   ADV_FALSE - command failed
6766  *   ADV_ERROR - command timed out
6767  */
6768 static int
6769 AdvSendIdleCmd(ADV_DVC_VAR *asc_dvc,
6770                ushort idle_cmd, ADV_DCNT idle_cmd_parameter)
6771 {
6772         int result;
6773         ADV_DCNT i, j;
6774         AdvPortAddr iop_base;
6775
6776         iop_base = asc_dvc->iop_base;
6777
6778         /*
6779          * Clear the idle command status which is set by the microcode
6780          * to a non-zero value to indicate when the command is completed.
6781          * The non-zero result is one of the IDLE_CMD_STATUS_* values
6782          */
6783         AdvWriteWordLram(iop_base, ASC_MC_IDLE_CMD_STATUS, (ushort)0);
6784
6785         /*
6786          * Write the idle command value after the idle command parameter
6787          * has been written to avoid a race condition. If the order is not
6788          * followed, the microcode may process the idle command before the
6789          * parameters have been written to LRAM.
6790          */
6791         AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IDLE_CMD_PARAMETER,
6792                                 cpu_to_le32(idle_cmd_parameter));
6793         AdvWriteWordLram(iop_base, ASC_MC_IDLE_CMD, idle_cmd);
6794
6795         /*
6796          * Tickle the RISC to tell it to process the idle command.
6797          */
6798         AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_B);
6799         if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
6800                 /*
6801                  * Clear the tickle value. In the ASC-3550 the RISC flag
6802                  * command 'clr_tickle_b' does not work unless the host
6803                  * value is cleared.
6804                  */
6805                 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_NOP);
6806         }
6807
6808         /* Wait for up to 100 millisecond for the idle command to timeout. */
6809         for (i = 0; i < SCSI_WAIT_100_MSEC; i++) {
6810                 /* Poll once each microsecond for command completion. */
6811                 for (j = 0; j < SCSI_US_PER_MSEC; j++) {
6812                         AdvReadWordLram(iop_base, ASC_MC_IDLE_CMD_STATUS,
6813                                         result);
6814                         if (result != 0)
6815                                 return result;
6816                         udelay(1);
6817                 }
6818         }
6819
6820         BUG();          /* The idle command should never timeout. */
6821         return ADV_ERROR;
6822 }
6823
6824 /*
6825  * Reset SCSI Bus and purge all outstanding requests.
6826  *
6827  * Return Value:
6828  *      ADV_TRUE(1) -   All requests are purged and SCSI Bus is reset.
6829  *      ADV_FALSE(0) -  Microcode command failed.
6830  *      ADV_ERROR(-1) - Microcode command timed-out. Microcode or IC
6831  *                      may be hung which requires driver recovery.
6832  */
6833 static int AdvResetSB(ADV_DVC_VAR *asc_dvc)
6834 {
6835         int status;
6836
6837         /*
6838          * Send the SCSI Bus Reset idle start idle command which asserts
6839          * the SCSI Bus Reset signal.
6840          */
6841         status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_START, 0L);
6842         if (status != ADV_TRUE) {
6843                 return status;
6844         }
6845
6846         /*
6847          * Delay for the specified SCSI Bus Reset hold time.
6848          *
6849          * The hold time delay is done on the host because the RISC has no
6850          * microsecond accurate timer.
6851          */
6852         udelay(ASC_SCSI_RESET_HOLD_TIME_US);
6853
6854         /*
6855          * Send the SCSI Bus Reset end idle command which de-asserts
6856          * the SCSI Bus Reset signal and purges any pending requests.
6857          */
6858         status = AdvSendIdleCmd(asc_dvc, (ushort)IDLE_CMD_SCSI_RESET_END, 0L);
6859         if (status != ADV_TRUE) {
6860                 return status;
6861         }
6862
6863         mdelay(asc_dvc->scsi_reset_wait * 1000);        /* XXX: msleep? */
6864
6865         return status;
6866 }
6867
6868 /*
6869  * Initialize the ASC-3550.
6870  *
6871  * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
6872  *
6873  * For a non-fatal error return a warning code. If there are no warnings
6874  * then 0 is returned.
6875  *
6876  * Needed after initialization for error recovery.
6877  */
6878 static int AdvInitAsc3550Driver(ADV_DVC_VAR *asc_dvc)
6879 {
6880         AdvPortAddr iop_base;
6881         ushort warn_code;
6882         int begin_addr;
6883         int end_addr;
6884         ushort code_sum;
6885         int word;
6886         int i;
6887         ushort scsi_cfg1;
6888         uchar tid;
6889         ushort bios_mem[ASC_MC_BIOSLEN / 2];    /* BIOS RISC Memory 0x40-0x8F. */
6890         ushort wdtr_able = 0, sdtr_able, tagqng_able;
6891         uchar max_cmd[ADV_MAX_TID + 1];
6892
6893         /* If there is already an error, don't continue. */
6894         if (asc_dvc->err_code != 0)
6895                 return ADV_ERROR;
6896
6897         /*
6898          * The caller must set 'chip_type' to ADV_CHIP_ASC3550.
6899          */
6900         if (asc_dvc->chip_type != ADV_CHIP_ASC3550) {
6901                 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
6902                 return ADV_ERROR;
6903         }
6904
6905         warn_code = 0;
6906         iop_base = asc_dvc->iop_base;
6907
6908         /*
6909          * Save the RISC memory BIOS region before writing the microcode.
6910          * The BIOS may already be loaded and using its RISC LRAM region
6911          * so its region must be saved and restored.
6912          *
6913          * Note: This code makes the assumption, which is currently true,
6914          * that a chip reset does not clear RISC LRAM.
6915          */
6916         for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
6917                 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
6918                                 bios_mem[i]);
6919         }
6920
6921         /*
6922          * Save current per TID negotiated values.
6923          */
6924         if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] == 0x55AA) {
6925                 ushort bios_version, major, minor;
6926
6927                 bios_version =
6928                     bios_mem[(ASC_MC_BIOS_VERSION - ASC_MC_BIOSMEM) / 2];
6929                 major = (bios_version >> 12) & 0xF;
6930                 minor = (bios_version >> 8) & 0xF;
6931                 if (major < 3 || (major == 3 && minor == 1)) {
6932                         /* BIOS 3.1 and earlier location of 'wdtr_able' variable. */
6933                         AdvReadWordLram(iop_base, 0x120, wdtr_able);
6934                 } else {
6935                         AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
6936                 }
6937         }
6938         AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
6939         AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
6940         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
6941                 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
6942                                 max_cmd[tid]);
6943         }
6944
6945         asc_dvc->err_code = AdvLoadMicrocode(iop_base, _adv_asc3550_buf,
6946                                         _adv_asc3550_size, ADV_3550_MEMSIZE,
6947                                         _adv_asc3550_chksum);
6948         if (asc_dvc->err_code)
6949                 return ADV_ERROR;
6950
6951         /*
6952          * Restore the RISC memory BIOS region.
6953          */
6954         for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
6955                 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
6956                                  bios_mem[i]);
6957         }
6958
6959         /*
6960          * Calculate and write the microcode code checksum to the microcode
6961          * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
6962          */
6963         AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
6964         AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
6965         code_sum = 0;
6966         AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
6967         for (word = begin_addr; word < end_addr; word += 2) {
6968                 code_sum += AdvReadWordAutoIncLram(iop_base);
6969         }
6970         AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
6971
6972         /*
6973          * Read and save microcode version and date.
6974          */
6975         AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
6976                         asc_dvc->cfg->mcode_date);
6977         AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
6978                         asc_dvc->cfg->mcode_version);
6979
6980         /*
6981          * Set the chip type to indicate the ASC3550.
6982          */
6983         AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC3550);
6984
6985         /*
6986          * If the PCI Configuration Command Register "Parity Error Response
6987          * Control" Bit was clear (0), then set the microcode variable
6988          * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
6989          * to ignore DMA parity errors.
6990          */
6991         if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
6992                 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
6993                 word |= CONTROL_FLAG_IGNORE_PERR;
6994                 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
6995         }
6996
6997         /*
6998          * For ASC-3550, setting the START_CTL_EMFU [3:2] bits sets a FIFO
6999          * threshold of 128 bytes. This register is only accessible to the host.
7000          */
7001         AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
7002                              START_CTL_EMFU | READ_CMD_MRM);
7003
7004         /*
7005          * Microcode operating variables for WDTR, SDTR, and command tag
7006          * queuing will be set in slave_configure() based on what a
7007          * device reports it is capable of in Inquiry byte 7.
7008          *
7009          * If SCSI Bus Resets have been disabled, then directly set
7010          * SDTR and WDTR from the EEPROM configuration. This will allow
7011          * the BIOS and warm boot to work without a SCSI bus hang on
7012          * the Inquiry caused by host and target mismatched DTR values.
7013          * Without the SCSI Bus Reset, before an Inquiry a device can't
7014          * be assumed to be in Asynchronous, Narrow mode.
7015          */
7016         if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
7017                 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
7018                                  asc_dvc->wdtr_able);
7019                 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
7020                                  asc_dvc->sdtr_able);
7021         }
7022
7023         /*
7024          * Set microcode operating variables for SDTR_SPEED1, SDTR_SPEED2,
7025          * SDTR_SPEED3, and SDTR_SPEED4 based on the ULTRA EEPROM per TID
7026          * bitmask. These values determine the maximum SDTR speed negotiated
7027          * with a device.
7028          *
7029          * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
7030          * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
7031          * without determining here whether the device supports SDTR.
7032          *
7033          * 4-bit speed  SDTR speed name
7034          * ===========  ===============
7035          * 0000b (0x0)  SDTR disabled
7036          * 0001b (0x1)  5 Mhz
7037          * 0010b (0x2)  10 Mhz
7038          * 0011b (0x3)  20 Mhz (Ultra)
7039          * 0100b (0x4)  40 Mhz (LVD/Ultra2)
7040          * 0101b (0x5)  80 Mhz (LVD2/Ultra3)
7041          * 0110b (0x6)  Undefined
7042          * .
7043          * 1111b (0xF)  Undefined
7044          */
7045         word = 0;
7046         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
7047                 if (ADV_TID_TO_TIDMASK(tid) & asc_dvc->ultra_able) {
7048                         /* Set Ultra speed for TID 'tid'. */
7049                         word |= (0x3 << (4 * (tid % 4)));
7050                 } else {
7051                         /* Set Fast speed for TID 'tid'. */
7052                         word |= (0x2 << (4 * (tid % 4)));
7053                 }
7054                 if (tid == 3) { /* Check if done with sdtr_speed1. */
7055                         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, word);
7056                         word = 0;
7057                 } else if (tid == 7) {  /* Check if done with sdtr_speed2. */
7058                         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, word);
7059                         word = 0;
7060                 } else if (tid == 11) { /* Check if done with sdtr_speed3. */
7061                         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, word);
7062                         word = 0;
7063                 } else if (tid == 15) { /* Check if done with sdtr_speed4. */
7064                         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, word);
7065                         /* End of loop. */
7066                 }
7067         }
7068
7069         /*
7070          * Set microcode operating variable for the disconnect per TID bitmask.
7071          */
7072         AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
7073                          asc_dvc->cfg->disc_enable);
7074
7075         /*
7076          * Set SCSI_CFG0 Microcode Default Value.
7077          *
7078          * The microcode will set the SCSI_CFG0 register using this value
7079          * after it is started below.
7080          */
7081         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
7082                          PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
7083                          asc_dvc->chip_scsi_id);
7084
7085         /*
7086          * Determine SCSI_CFG1 Microcode Default Value.
7087          *
7088          * The microcode will set the SCSI_CFG1 register using this value
7089          * after it is started below.
7090          */
7091
7092         /* Read current SCSI_CFG1 Register value. */
7093         scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
7094
7095         /*
7096          * If all three connectors are in use, return an error.
7097          */
7098         if ((scsi_cfg1 & CABLE_ILLEGAL_A) == 0 ||
7099             (scsi_cfg1 & CABLE_ILLEGAL_B) == 0) {
7100                 asc_dvc->err_code |= ASC_IERR_ILLEGAL_CONNECTION;
7101                 return ADV_ERROR;
7102         }
7103
7104         /*
7105          * If the internal narrow cable is reversed all of the SCSI_CTRL
7106          * register signals will be set. Check for and return an error if
7107          * this condition is found.
7108          */
7109         if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
7110                 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
7111                 return ADV_ERROR;
7112         }
7113
7114         /*
7115          * If this is a differential board and a single-ended device
7116          * is attached to one of the connectors, return an error.
7117          */
7118         if ((scsi_cfg1 & DIFF_MODE) && (scsi_cfg1 & DIFF_SENSE) == 0) {
7119                 asc_dvc->err_code |= ASC_IERR_SINGLE_END_DEVICE;
7120                 return ADV_ERROR;
7121         }
7122
7123         /*
7124          * If automatic termination control is enabled, then set the
7125          * termination value based on a table listed in a_condor.h.
7126          *
7127          * If manual termination was specified with an EEPROM setting
7128          * then 'termination' was set-up in AdvInitFrom3550EEPROM() and
7129          * is ready to be 'ored' into SCSI_CFG1.
7130          */
7131         if (asc_dvc->cfg->termination == 0) {
7132                 /*
7133                  * The software always controls termination by setting TERM_CTL_SEL.
7134                  * If TERM_CTL_SEL were set to 0, the hardware would set termination.
7135                  */
7136                 asc_dvc->cfg->termination |= TERM_CTL_SEL;
7137
7138                 switch (scsi_cfg1 & CABLE_DETECT) {
7139                         /* TERM_CTL_H: on, TERM_CTL_L: on */
7140                 case 0x3:
7141                 case 0x7:
7142                 case 0xB:
7143                 case 0xD:
7144                 case 0xE:
7145                 case 0xF:
7146                         asc_dvc->cfg->termination |= (TERM_CTL_H | TERM_CTL_L);
7147                         break;
7148
7149                         /* TERM_CTL_H: on, TERM_CTL_L: off */
7150                 case 0x1:
7151                 case 0x5:
7152                 case 0x9:
7153                 case 0xA:
7154                 case 0xC:
7155                         asc_dvc->cfg->termination |= TERM_CTL_H;
7156                         break;
7157
7158                         /* TERM_CTL_H: off, TERM_CTL_L: off */
7159                 case 0x2:
7160                 case 0x6:
7161                         break;
7162                 }
7163         }
7164
7165         /*
7166          * Clear any set TERM_CTL_H and TERM_CTL_L bits.
7167          */
7168         scsi_cfg1 &= ~TERM_CTL;
7169
7170         /*
7171          * Invert the TERM_CTL_H and TERM_CTL_L bits and then
7172          * set 'scsi_cfg1'. The TERM_POL bit does not need to be
7173          * referenced, because the hardware internally inverts
7174          * the Termination High and Low bits if TERM_POL is set.
7175          */
7176         scsi_cfg1 |= (TERM_CTL_SEL | (~asc_dvc->cfg->termination & TERM_CTL));
7177
7178         /*
7179          * Set SCSI_CFG1 Microcode Default Value
7180          *
7181          * Set filter value and possibly modified termination control
7182          * bits in the Microcode SCSI_CFG1 Register Value.
7183          *
7184          * The microcode will set the SCSI_CFG1 register using this value
7185          * after it is started below.
7186          */
7187         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1,
7188                          FLTR_DISABLE | scsi_cfg1);
7189
7190         /*
7191          * Set MEM_CFG Microcode Default Value
7192          *
7193          * The microcode will set the MEM_CFG register using this value
7194          * after it is started below.
7195          *
7196          * MEM_CFG may be accessed as a word or byte, but only bits 0-7
7197          * are defined.
7198          *
7199          * ASC-3550 has 8KB internal memory.
7200          */
7201         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
7202                          BIOS_EN | RAM_SZ_8KB);
7203
7204         /*
7205          * Set SEL_MASK Microcode Default Value
7206          *
7207          * The microcode will set the SEL_MASK register using this value
7208          * after it is started below.
7209          */
7210         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
7211                          ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
7212
7213         AdvBuildCarrierFreelist(asc_dvc);
7214
7215         /*
7216          * Set-up the Host->RISC Initiator Command Queue (ICQ).
7217          */
7218
7219         if ((asc_dvc->icq_sp = asc_dvc->carr_freelist) == NULL) {
7220                 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
7221                 return ADV_ERROR;
7222         }
7223         asc_dvc->carr_freelist = (ADV_CARR_T *)
7224             ADV_U32_TO_VADDR(le32_to_cpu(asc_dvc->icq_sp->next_vpa));
7225
7226         /*
7227          * The first command issued will be placed in the stopper carrier.
7228          */
7229         asc_dvc->icq_sp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
7230
7231         /*
7232          * Set RISC ICQ physical address start value.
7233          */
7234         AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
7235
7236         /*
7237          * Set-up the RISC->Host Initiator Response Queue (IRQ).
7238          */
7239         if ((asc_dvc->irq_sp = asc_dvc->carr_freelist) == NULL) {
7240                 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
7241                 return ADV_ERROR;
7242         }
7243         asc_dvc->carr_freelist = (ADV_CARR_T *)
7244             ADV_U32_TO_VADDR(le32_to_cpu(asc_dvc->irq_sp->next_vpa));
7245
7246         /*
7247          * The first command completed by the RISC will be placed in
7248          * the stopper.
7249          *
7250          * Note: Set 'next_vpa' to ASC_CQ_STOPPER. When the request is
7251          * completed the RISC will set the ASC_RQ_STOPPER bit.
7252          */
7253         asc_dvc->irq_sp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
7254
7255         /*
7256          * Set RISC IRQ physical address start value.
7257          */
7258         AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
7259         asc_dvc->carr_pending_cnt = 0;
7260
7261         AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
7262                              (ADV_INTR_ENABLE_HOST_INTR |
7263                               ADV_INTR_ENABLE_GLOBAL_INTR));
7264
7265         AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
7266         AdvWriteWordRegister(iop_base, IOPW_PC, word);
7267
7268         /* finally, finally, gentlemen, start your engine */
7269         AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
7270
7271         /*
7272          * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
7273          * Resets should be performed. The RISC has to be running
7274          * to issue a SCSI Bus Reset.
7275          */
7276         if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
7277                 /*
7278                  * If the BIOS Signature is present in memory, restore the
7279                  * BIOS Handshake Configuration Table and do not perform
7280                  * a SCSI Bus Reset.
7281                  */
7282                 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
7283                     0x55AA) {
7284                         /*
7285                          * Restore per TID negotiated values.
7286                          */
7287                         AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
7288                         AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
7289                         AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
7290                                          tagqng_able);
7291                         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
7292                                 AdvWriteByteLram(iop_base,
7293                                                  ASC_MC_NUMBER_OF_MAX_CMD + tid,
7294                                                  max_cmd[tid]);
7295                         }
7296                 } else {
7297                         if (AdvResetSB(asc_dvc) != ADV_TRUE) {
7298                                 warn_code = ASC_WARN_BUSRESET_ERROR;
7299                         }
7300                 }
7301         }
7302
7303         return warn_code;
7304 }
7305
7306 /*
7307  * Initialize the ASC-38C0800.
7308  *
7309  * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
7310  *
7311  * For a non-fatal error return a warning code. If there are no warnings
7312  * then 0 is returned.
7313  *
7314  * Needed after initialization for error recovery.
7315  */
7316 static int AdvInitAsc38C0800Driver(ADV_DVC_VAR *asc_dvc)
7317 {
7318         AdvPortAddr iop_base;
7319         ushort warn_code;
7320         int begin_addr;
7321         int end_addr;
7322         ushort code_sum;
7323         int word;
7324         int i;
7325         ushort scsi_cfg1;
7326         uchar byte;
7327         uchar tid;
7328         ushort bios_mem[ASC_MC_BIOSLEN / 2];    /* BIOS RISC Memory 0x40-0x8F. */
7329         ushort wdtr_able, sdtr_able, tagqng_able;
7330         uchar max_cmd[ADV_MAX_TID + 1];
7331
7332         /* If there is already an error, don't continue. */
7333         if (asc_dvc->err_code != 0)
7334                 return ADV_ERROR;
7335
7336         /*
7337          * The caller must set 'chip_type' to ADV_CHIP_ASC38C0800.
7338          */
7339         if (asc_dvc->chip_type != ADV_CHIP_ASC38C0800) {
7340                 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
7341                 return ADV_ERROR;
7342         }
7343
7344         warn_code = 0;
7345         iop_base = asc_dvc->iop_base;
7346
7347         /*
7348          * Save the RISC memory BIOS region before writing the microcode.
7349          * The BIOS may already be loaded and using its RISC LRAM region
7350          * so its region must be saved and restored.
7351          *
7352          * Note: This code makes the assumption, which is currently true,
7353          * that a chip reset does not clear RISC LRAM.
7354          */
7355         for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
7356                 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
7357                                 bios_mem[i]);
7358         }
7359
7360         /*
7361          * Save current per TID negotiated values.
7362          */
7363         AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
7364         AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
7365         AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
7366         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
7367                 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
7368                                 max_cmd[tid]);
7369         }
7370
7371         /*
7372          * RAM BIST (RAM Built-In Self Test)
7373          *
7374          * Address : I/O base + offset 0x38h register (byte).
7375          * Function: Bit 7-6(RW) : RAM mode
7376          *                          Normal Mode   : 0x00
7377          *                          Pre-test Mode : 0x40
7378          *                          RAM Test Mode : 0x80
7379          *           Bit 5       : unused
7380          *           Bit 4(RO)   : Done bit
7381          *           Bit 3-0(RO) : Status
7382          *                          Host Error    : 0x08
7383          *                          Int_RAM Error : 0x04
7384          *                          RISC Error    : 0x02
7385          *                          SCSI Error    : 0x01
7386          *                          No Error      : 0x00
7387          *
7388          * Note: RAM BIST code should be put right here, before loading the
7389          * microcode and after saving the RISC memory BIOS region.
7390          */
7391
7392         /*
7393          * LRAM Pre-test
7394          *
7395          * Write PRE_TEST_MODE (0x40) to register and wait for 10 milliseconds.
7396          * If Done bit not set or low nibble not PRE_TEST_VALUE (0x05), return
7397          * an error. Reset to NORMAL_MODE (0x00) and do again. If cannot reset
7398          * to NORMAL_MODE, return an error too.
7399          */
7400         for (i = 0; i < 2; i++) {
7401                 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, PRE_TEST_MODE);
7402                 mdelay(10);     /* Wait for 10ms before reading back. */
7403                 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
7404                 if ((byte & RAM_TEST_DONE) == 0
7405                     || (byte & 0x0F) != PRE_TEST_VALUE) {
7406                         asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
7407                         return ADV_ERROR;
7408                 }
7409
7410                 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
7411                 mdelay(10);     /* Wait for 10ms before reading back. */
7412                 if (AdvReadByteRegister(iop_base, IOPB_RAM_BIST)
7413                     != NORMAL_VALUE) {
7414                         asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
7415                         return ADV_ERROR;
7416                 }
7417         }
7418
7419         /*
7420          * LRAM Test - It takes about 1.5 ms to run through the test.
7421          *
7422          * Write RAM_TEST_MODE (0x80) to register and wait for 10 milliseconds.
7423          * If Done bit not set or Status not 0, save register byte, set the
7424          * err_code, and return an error.
7425          */
7426         AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, RAM_TEST_MODE);
7427         mdelay(10);     /* Wait for 10ms before checking status. */
7428
7429         byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
7430         if ((byte & RAM_TEST_DONE) == 0 || (byte & RAM_TEST_STATUS) != 0) {
7431                 /* Get here if Done bit not set or Status not 0. */
7432                 asc_dvc->bist_err_code = byte;  /* for BIOS display message */
7433                 asc_dvc->err_code = ASC_IERR_BIST_RAM_TEST;
7434                 return ADV_ERROR;
7435         }
7436
7437         /* We need to reset back to normal mode after LRAM test passes. */
7438         AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
7439
7440         asc_dvc->err_code = AdvLoadMicrocode(iop_base, _adv_asc38C0800_buf,
7441                                  _adv_asc38C0800_size, ADV_38C0800_MEMSIZE,
7442                                  _adv_asc38C0800_chksum);
7443         if (asc_dvc->err_code)
7444                 return ADV_ERROR;
7445
7446         /*
7447          * Restore the RISC memory BIOS region.
7448          */
7449         for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
7450                 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
7451                                  bios_mem[i]);
7452         }
7453
7454         /*
7455          * Calculate and write the microcode code checksum to the microcode
7456          * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
7457          */
7458         AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
7459         AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
7460         code_sum = 0;
7461         AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
7462         for (word = begin_addr; word < end_addr; word += 2) {
7463                 code_sum += AdvReadWordAutoIncLram(iop_base);
7464         }
7465         AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
7466
7467         /*
7468          * Read microcode version and date.
7469          */
7470         AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
7471                         asc_dvc->cfg->mcode_date);
7472         AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
7473                         asc_dvc->cfg->mcode_version);
7474
7475         /*
7476          * Set the chip type to indicate the ASC38C0800.
7477          */
7478         AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC38C0800);
7479
7480         /*
7481          * Write 1 to bit 14 'DIS_TERM_DRV' in the SCSI_CFG1 register.
7482          * When DIS_TERM_DRV set to 1, C_DET[3:0] will reflect current
7483          * cable detection and then we are able to read C_DET[3:0].
7484          *
7485          * Note: We will reset DIS_TERM_DRV to 0 in the 'Set SCSI_CFG1
7486          * Microcode Default Value' section below.
7487          */
7488         scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
7489         AdvWriteWordRegister(iop_base, IOPW_SCSI_CFG1,
7490                              scsi_cfg1 | DIS_TERM_DRV);
7491
7492         /*
7493          * If the PCI Configuration Command Register "Parity Error Response
7494          * Control" Bit was clear (0), then set the microcode variable
7495          * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
7496          * to ignore DMA parity errors.
7497          */
7498         if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
7499                 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
7500                 word |= CONTROL_FLAG_IGNORE_PERR;
7501                 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
7502         }
7503
7504         /*
7505          * For ASC-38C0800, set FIFO_THRESH_80B [6:4] bits and START_CTL_TH [3:2]
7506          * bits for the default FIFO threshold.
7507          *
7508          * Note: ASC-38C0800 FIFO threshold has been changed to 256 bytes.
7509          *
7510          * For DMA Errata #4 set the BC_THRESH_ENB bit.
7511          */
7512         AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
7513                              BC_THRESH_ENB | FIFO_THRESH_80B | START_CTL_TH |
7514                              READ_CMD_MRM);
7515
7516         /*
7517          * Microcode operating variables for WDTR, SDTR, and command tag
7518          * queuing will be set in slave_configure() based on what a
7519          * device reports it is capable of in Inquiry byte 7.
7520          *
7521          * If SCSI Bus Resets have been disabled, then directly set
7522          * SDTR and WDTR from the EEPROM configuration. This will allow
7523          * the BIOS and warm boot to work without a SCSI bus hang on
7524          * the Inquiry caused by host and target mismatched DTR values.
7525          * Without the SCSI Bus Reset, before an Inquiry a device can't
7526          * be assumed to be in Asynchronous, Narrow mode.
7527          */
7528         if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
7529                 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
7530                                  asc_dvc->wdtr_able);
7531                 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
7532                                  asc_dvc->sdtr_able);
7533         }
7534
7535         /*
7536          * Set microcode operating variables for DISC and SDTR_SPEED1,
7537          * SDTR_SPEED2, SDTR_SPEED3, and SDTR_SPEED4 based on the EEPROM
7538          * configuration values.
7539          *
7540          * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
7541          * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
7542          * without determining here whether the device supports SDTR.
7543          */
7544         AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
7545                          asc_dvc->cfg->disc_enable);
7546         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, asc_dvc->sdtr_speed1);
7547         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, asc_dvc->sdtr_speed2);
7548         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, asc_dvc->sdtr_speed3);
7549         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, asc_dvc->sdtr_speed4);
7550
7551         /*
7552          * Set SCSI_CFG0 Microcode Default Value.
7553          *
7554          * The microcode will set the SCSI_CFG0 register using this value
7555          * after it is started below.
7556          */
7557         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
7558                          PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
7559                          asc_dvc->chip_scsi_id);
7560
7561         /*
7562          * Determine SCSI_CFG1 Microcode Default Value.
7563          *
7564          * The microcode will set the SCSI_CFG1 register using this value
7565          * after it is started below.
7566          */
7567
7568         /* Read current SCSI_CFG1 Register value. */
7569         scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
7570
7571         /*
7572          * If the internal narrow cable is reversed all of the SCSI_CTRL
7573          * register signals will be set. Check for and return an error if
7574          * this condition is found.
7575          */
7576         if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
7577                 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
7578                 return ADV_ERROR;
7579         }
7580
7581         /*
7582          * All kind of combinations of devices attached to one of four
7583          * connectors are acceptable except HVD device attached. For example,
7584          * LVD device can be attached to SE connector while SE device attached
7585          * to LVD connector.  If LVD device attached to SE connector, it only
7586          * runs up to Ultra speed.
7587          *
7588          * If an HVD device is attached to one of LVD connectors, return an
7589          * error.  However, there is no way to detect HVD device attached to
7590          * SE connectors.
7591          */
7592         if (scsi_cfg1 & HVD) {
7593                 asc_dvc->err_code = ASC_IERR_HVD_DEVICE;
7594                 return ADV_ERROR;
7595         }
7596
7597         /*
7598          * If either SE or LVD automatic termination control is enabled, then
7599          * set the termination value based on a table listed in a_condor.h.
7600          *
7601          * If manual termination was specified with an EEPROM setting then
7602          * 'termination' was set-up in AdvInitFrom38C0800EEPROM() and is ready
7603          * to be 'ored' into SCSI_CFG1.
7604          */
7605         if ((asc_dvc->cfg->termination & TERM_SE) == 0) {
7606                 /* SE automatic termination control is enabled. */
7607                 switch (scsi_cfg1 & C_DET_SE) {
7608                         /* TERM_SE_HI: on, TERM_SE_LO: on */
7609                 case 0x1:
7610                 case 0x2:
7611                 case 0x3:
7612                         asc_dvc->cfg->termination |= TERM_SE;
7613                         break;
7614
7615                         /* TERM_SE_HI: on, TERM_SE_LO: off */
7616                 case 0x0:
7617                         asc_dvc->cfg->termination |= TERM_SE_HI;
7618                         break;
7619                 }
7620         }
7621
7622         if ((asc_dvc->cfg->termination & TERM_LVD) == 0) {
7623                 /* LVD automatic termination control is enabled. */
7624                 switch (scsi_cfg1 & C_DET_LVD) {
7625                         /* TERM_LVD_HI: on, TERM_LVD_LO: on */
7626                 case 0x4:
7627                 case 0x8:
7628                 case 0xC:
7629                         asc_dvc->cfg->termination |= TERM_LVD;
7630                         break;
7631
7632                         /* TERM_LVD_HI: off, TERM_LVD_LO: off */
7633                 case 0x0:
7634                         break;
7635                 }
7636         }
7637
7638         /*
7639          * Clear any set TERM_SE and TERM_LVD bits.
7640          */
7641         scsi_cfg1 &= (~TERM_SE & ~TERM_LVD);
7642
7643         /*
7644          * Invert the TERM_SE and TERM_LVD bits and then set 'scsi_cfg1'.
7645          */
7646         scsi_cfg1 |= (~asc_dvc->cfg->termination & 0xF0);
7647
7648         /*
7649          * Clear BIG_ENDIAN, DIS_TERM_DRV, Terminator Polarity and HVD/LVD/SE
7650          * bits and set possibly modified termination control bits in the
7651          * Microcode SCSI_CFG1 Register Value.
7652          */
7653         scsi_cfg1 &= (~BIG_ENDIAN & ~DIS_TERM_DRV & ~TERM_POL & ~HVD_LVD_SE);
7654
7655         /*
7656          * Set SCSI_CFG1 Microcode Default Value
7657          *
7658          * Set possibly modified termination control and reset DIS_TERM_DRV
7659          * bits in the Microcode SCSI_CFG1 Register Value.
7660          *
7661          * The microcode will set the SCSI_CFG1 register using this value
7662          * after it is started below.
7663          */
7664         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1, scsi_cfg1);
7665
7666         /*
7667          * Set MEM_CFG Microcode Default Value
7668          *
7669          * The microcode will set the MEM_CFG register using this value
7670          * after it is started below.
7671          *
7672          * MEM_CFG may be accessed as a word or byte, but only bits 0-7
7673          * are defined.
7674          *
7675          * ASC-38C0800 has 16KB internal memory.
7676          */
7677         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
7678                          BIOS_EN | RAM_SZ_16KB);
7679
7680         /*
7681          * Set SEL_MASK Microcode Default Value
7682          *
7683          * The microcode will set the SEL_MASK register using this value
7684          * after it is started below.
7685          */
7686         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
7687                          ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
7688
7689         AdvBuildCarrierFreelist(asc_dvc);
7690
7691         /*
7692          * Set-up the Host->RISC Initiator Command Queue (ICQ).
7693          */
7694
7695         if ((asc_dvc->icq_sp = asc_dvc->carr_freelist) == NULL) {
7696                 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
7697                 return ADV_ERROR;
7698         }
7699         asc_dvc->carr_freelist = (ADV_CARR_T *)
7700             ADV_U32_TO_VADDR(le32_to_cpu(asc_dvc->icq_sp->next_vpa));
7701
7702         /*
7703          * The first command issued will be placed in the stopper carrier.
7704          */
7705         asc_dvc->icq_sp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
7706
7707         /*
7708          * Set RISC ICQ physical address start value.
7709          * carr_pa is LE, must be native before write
7710          */
7711         AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
7712
7713         /*
7714          * Set-up the RISC->Host Initiator Response Queue (IRQ).
7715          */
7716         if ((asc_dvc->irq_sp = asc_dvc->carr_freelist) == NULL) {
7717                 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
7718                 return ADV_ERROR;
7719         }
7720         asc_dvc->carr_freelist = (ADV_CARR_T *)
7721             ADV_U32_TO_VADDR(le32_to_cpu(asc_dvc->irq_sp->next_vpa));
7722
7723         /*
7724          * The first command completed by the RISC will be placed in
7725          * the stopper.
7726          *
7727          * Note: Set 'next_vpa' to ASC_CQ_STOPPER. When the request is
7728          * completed the RISC will set the ASC_RQ_STOPPER bit.
7729          */
7730         asc_dvc->irq_sp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
7731
7732         /*
7733          * Set RISC IRQ physical address start value.
7734          *
7735          * carr_pa is LE, must be native before write *
7736          */
7737         AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
7738         asc_dvc->carr_pending_cnt = 0;
7739
7740         AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
7741                              (ADV_INTR_ENABLE_HOST_INTR |
7742                               ADV_INTR_ENABLE_GLOBAL_INTR));
7743
7744         AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
7745         AdvWriteWordRegister(iop_base, IOPW_PC, word);
7746
7747         /* finally, finally, gentlemen, start your engine */
7748         AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
7749
7750         /*
7751          * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
7752          * Resets should be performed. The RISC has to be running
7753          * to issue a SCSI Bus Reset.
7754          */
7755         if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
7756                 /*
7757                  * If the BIOS Signature is present in memory, restore the
7758                  * BIOS Handshake Configuration Table and do not perform
7759                  * a SCSI Bus Reset.
7760                  */
7761                 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
7762                     0x55AA) {
7763                         /*
7764                          * Restore per TID negotiated values.
7765                          */
7766                         AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
7767                         AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
7768                         AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
7769                                          tagqng_able);
7770                         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
7771                                 AdvWriteByteLram(iop_base,
7772                                                  ASC_MC_NUMBER_OF_MAX_CMD + tid,
7773                                                  max_cmd[tid]);
7774                         }
7775                 } else {
7776                         if (AdvResetSB(asc_dvc) != ADV_TRUE) {
7777                                 warn_code = ASC_WARN_BUSRESET_ERROR;
7778                         }
7779                 }
7780         }
7781
7782         return warn_code;
7783 }
7784
7785 /*
7786  * Initialize the ASC-38C1600.
7787  *
7788  * On failure set the ASC_DVC_VAR field 'err_code' and return ADV_ERROR.
7789  *
7790  * For a non-fatal error return a warning code. If there are no warnings
7791  * then 0 is returned.
7792  *
7793  * Needed after initialization for error recovery.
7794  */
7795 static int AdvInitAsc38C1600Driver(ADV_DVC_VAR *asc_dvc)
7796 {
7797         AdvPortAddr iop_base;
7798         ushort warn_code;
7799         int begin_addr;
7800         int end_addr;
7801         ushort code_sum;
7802         long word;
7803         int i;
7804         ushort scsi_cfg1;
7805         uchar byte;
7806         uchar tid;
7807         ushort bios_mem[ASC_MC_BIOSLEN / 2];    /* BIOS RISC Memory 0x40-0x8F. */
7808         ushort wdtr_able, sdtr_able, ppr_able, tagqng_able;
7809         uchar max_cmd[ASC_MAX_TID + 1];
7810
7811         /* If there is already an error, don't continue. */
7812         if (asc_dvc->err_code != 0) {
7813                 return ADV_ERROR;
7814         }
7815
7816         /*
7817          * The caller must set 'chip_type' to ADV_CHIP_ASC38C1600.
7818          */
7819         if (asc_dvc->chip_type != ADV_CHIP_ASC38C1600) {
7820                 asc_dvc->err_code = ASC_IERR_BAD_CHIPTYPE;
7821                 return ADV_ERROR;
7822         }
7823
7824         warn_code = 0;
7825         iop_base = asc_dvc->iop_base;
7826
7827         /*
7828          * Save the RISC memory BIOS region before writing the microcode.
7829          * The BIOS may already be loaded and using its RISC LRAM region
7830          * so its region must be saved and restored.
7831          *
7832          * Note: This code makes the assumption, which is currently true,
7833          * that a chip reset does not clear RISC LRAM.
7834          */
7835         for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
7836                 AdvReadWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
7837                                 bios_mem[i]);
7838         }
7839
7840         /*
7841          * Save current per TID negotiated values.
7842          */
7843         AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
7844         AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
7845         AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
7846         AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
7847         for (tid = 0; tid <= ASC_MAX_TID; tid++) {
7848                 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
7849                                 max_cmd[tid]);
7850         }
7851
7852         /*
7853          * RAM BIST (Built-In Self Test)
7854          *
7855          * Address : I/O base + offset 0x38h register (byte).
7856          * Function: Bit 7-6(RW) : RAM mode
7857          *                          Normal Mode   : 0x00
7858          *                          Pre-test Mode : 0x40
7859          *                          RAM Test Mode : 0x80
7860          *           Bit 5       : unused
7861          *           Bit 4(RO)   : Done bit
7862          *           Bit 3-0(RO) : Status
7863          *                          Host Error    : 0x08
7864          *                          Int_RAM Error : 0x04
7865          *                          RISC Error    : 0x02
7866          *                          SCSI Error    : 0x01
7867          *                          No Error      : 0x00
7868          *
7869          * Note: RAM BIST code should be put right here, before loading the
7870          * microcode and after saving the RISC memory BIOS region.
7871          */
7872
7873         /*
7874          * LRAM Pre-test
7875          *
7876          * Write PRE_TEST_MODE (0x40) to register and wait for 10 milliseconds.
7877          * If Done bit not set or low nibble not PRE_TEST_VALUE (0x05), return
7878          * an error. Reset to NORMAL_MODE (0x00) and do again. If cannot reset
7879          * to NORMAL_MODE, return an error too.
7880          */
7881         for (i = 0; i < 2; i++) {
7882                 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, PRE_TEST_MODE);
7883                 mdelay(10);     /* Wait for 10ms before reading back. */
7884                 byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
7885                 if ((byte & RAM_TEST_DONE) == 0
7886                     || (byte & 0x0F) != PRE_TEST_VALUE) {
7887                         asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
7888                         return ADV_ERROR;
7889                 }
7890
7891                 AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
7892                 mdelay(10);     /* Wait for 10ms before reading back. */
7893                 if (AdvReadByteRegister(iop_base, IOPB_RAM_BIST)
7894                     != NORMAL_VALUE) {
7895                         asc_dvc->err_code = ASC_IERR_BIST_PRE_TEST;
7896                         return ADV_ERROR;
7897                 }
7898         }
7899
7900         /*
7901          * LRAM Test - It takes about 1.5 ms to run through the test.
7902          *
7903          * Write RAM_TEST_MODE (0x80) to register and wait for 10 milliseconds.
7904          * If Done bit not set or Status not 0, save register byte, set the
7905          * err_code, and return an error.
7906          */
7907         AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, RAM_TEST_MODE);
7908         mdelay(10);     /* Wait for 10ms before checking status. */
7909
7910         byte = AdvReadByteRegister(iop_base, IOPB_RAM_BIST);
7911         if ((byte & RAM_TEST_DONE) == 0 || (byte & RAM_TEST_STATUS) != 0) {
7912                 /* Get here if Done bit not set or Status not 0. */
7913                 asc_dvc->bist_err_code = byte;  /* for BIOS display message */
7914                 asc_dvc->err_code = ASC_IERR_BIST_RAM_TEST;
7915                 return ADV_ERROR;
7916         }
7917
7918         /* We need to reset back to normal mode after LRAM test passes. */
7919         AdvWriteByteRegister(iop_base, IOPB_RAM_BIST, NORMAL_MODE);
7920
7921         asc_dvc->err_code = AdvLoadMicrocode(iop_base, _adv_asc38C1600_buf,
7922                                  _adv_asc38C1600_size, ADV_38C1600_MEMSIZE,
7923                                  _adv_asc38C1600_chksum);
7924         if (asc_dvc->err_code)
7925                 return ADV_ERROR;
7926
7927         /*
7928          * Restore the RISC memory BIOS region.
7929          */
7930         for (i = 0; i < ASC_MC_BIOSLEN / 2; i++) {
7931                 AdvWriteWordLram(iop_base, ASC_MC_BIOSMEM + (2 * i),
7932                                  bios_mem[i]);
7933         }
7934
7935         /*
7936          * Calculate and write the microcode code checksum to the microcode
7937          * code checksum location ASC_MC_CODE_CHK_SUM (0x2C).
7938          */
7939         AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, begin_addr);
7940         AdvReadWordLram(iop_base, ASC_MC_CODE_END_ADDR, end_addr);
7941         code_sum = 0;
7942         AdvWriteWordRegister(iop_base, IOPW_RAM_ADDR, begin_addr);
7943         for (word = begin_addr; word < end_addr; word += 2) {
7944                 code_sum += AdvReadWordAutoIncLram(iop_base);
7945         }
7946         AdvWriteWordLram(iop_base, ASC_MC_CODE_CHK_SUM, code_sum);
7947
7948         /*
7949          * Read microcode version and date.
7950          */
7951         AdvReadWordLram(iop_base, ASC_MC_VERSION_DATE,
7952                         asc_dvc->cfg->mcode_date);
7953         AdvReadWordLram(iop_base, ASC_MC_VERSION_NUM,
7954                         asc_dvc->cfg->mcode_version);
7955
7956         /*
7957          * Set the chip type to indicate the ASC38C1600.
7958          */
7959         AdvWriteWordLram(iop_base, ASC_MC_CHIP_TYPE, ADV_CHIP_ASC38C1600);
7960
7961         /*
7962          * Write 1 to bit 14 'DIS_TERM_DRV' in the SCSI_CFG1 register.
7963          * When DIS_TERM_DRV set to 1, C_DET[3:0] will reflect current
7964          * cable detection and then we are able to read C_DET[3:0].
7965          *
7966          * Note: We will reset DIS_TERM_DRV to 0 in the 'Set SCSI_CFG1
7967          * Microcode Default Value' section below.
7968          */
7969         scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
7970         AdvWriteWordRegister(iop_base, IOPW_SCSI_CFG1,
7971                              scsi_cfg1 | DIS_TERM_DRV);
7972
7973         /*
7974          * If the PCI Configuration Command Register "Parity Error Response
7975          * Control" Bit was clear (0), then set the microcode variable
7976          * 'control_flag' CONTROL_FLAG_IGNORE_PERR flag to tell the microcode
7977          * to ignore DMA parity errors.
7978          */
7979         if (asc_dvc->cfg->control_flag & CONTROL_FLAG_IGNORE_PERR) {
7980                 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
7981                 word |= CONTROL_FLAG_IGNORE_PERR;
7982                 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
7983         }
7984
7985         /*
7986          * If the BIOS control flag AIPP (Asynchronous Information
7987          * Phase Protection) disable bit is not set, then set the firmware
7988          * 'control_flag' CONTROL_FLAG_ENABLE_AIPP bit to enable
7989          * AIPP checking and encoding.
7990          */
7991         if ((asc_dvc->bios_ctrl & BIOS_CTRL_AIPP_DIS) == 0) {
7992                 AdvReadWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
7993                 word |= CONTROL_FLAG_ENABLE_AIPP;
7994                 AdvWriteWordLram(iop_base, ASC_MC_CONTROL_FLAG, word);
7995         }
7996
7997         /*
7998          * For ASC-38C1600 use DMA_CFG0 default values: FIFO_THRESH_80B [6:4],
7999          * and START_CTL_TH [3:2].
8000          */
8001         AdvWriteByteRegister(iop_base, IOPB_DMA_CFG0,
8002                              FIFO_THRESH_80B | START_CTL_TH | READ_CMD_MRM);
8003
8004         /*
8005          * Microcode operating variables for WDTR, SDTR, and command tag
8006          * queuing will be set in slave_configure() based on what a
8007          * device reports it is capable of in Inquiry byte 7.
8008          *
8009          * If SCSI Bus Resets have been disabled, then directly set
8010          * SDTR and WDTR from the EEPROM configuration. This will allow
8011          * the BIOS and warm boot to work without a SCSI bus hang on
8012          * the Inquiry caused by host and target mismatched DTR values.
8013          * Without the SCSI Bus Reset, before an Inquiry a device can't
8014          * be assumed to be in Asynchronous, Narrow mode.
8015          */
8016         if ((asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) == 0) {
8017                 AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE,
8018                                  asc_dvc->wdtr_able);
8019                 AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE,
8020                                  asc_dvc->sdtr_able);
8021         }
8022
8023         /*
8024          * Set microcode operating variables for DISC and SDTR_SPEED1,
8025          * SDTR_SPEED2, SDTR_SPEED3, and SDTR_SPEED4 based on the EEPROM
8026          * configuration values.
8027          *
8028          * The SDTR per TID bitmask overrides the SDTR_SPEED1, SDTR_SPEED2,
8029          * SDTR_SPEED3, and SDTR_SPEED4 values so it is safe to set them
8030          * without determining here whether the device supports SDTR.
8031          */
8032         AdvWriteWordLram(iop_base, ASC_MC_DISC_ENABLE,
8033                          asc_dvc->cfg->disc_enable);
8034         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED1, asc_dvc->sdtr_speed1);
8035         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED2, asc_dvc->sdtr_speed2);
8036         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED3, asc_dvc->sdtr_speed3);
8037         AdvWriteWordLram(iop_base, ASC_MC_SDTR_SPEED4, asc_dvc->sdtr_speed4);
8038
8039         /*
8040          * Set SCSI_CFG0 Microcode Default Value.
8041          *
8042          * The microcode will set the SCSI_CFG0 register using this value
8043          * after it is started below.
8044          */
8045         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG0,
8046                          PARITY_EN | QUEUE_128 | SEL_TMO_LONG | OUR_ID_EN |
8047                          asc_dvc->chip_scsi_id);
8048
8049         /*
8050          * Calculate SCSI_CFG1 Microcode Default Value.
8051          *
8052          * The microcode will set the SCSI_CFG1 register using this value
8053          * after it is started below.
8054          *
8055          * Each ASC-38C1600 function has only two cable detect bits.
8056          * The bus mode override bits are in IOPB_SOFT_OVER_WR.
8057          */
8058         scsi_cfg1 = AdvReadWordRegister(iop_base, IOPW_SCSI_CFG1);
8059
8060         /*
8061          * If the cable is reversed all of the SCSI_CTRL register signals
8062          * will be set. Check for and return an error if this condition is
8063          * found.
8064          */
8065         if ((AdvReadWordRegister(iop_base, IOPW_SCSI_CTRL) & 0x3F07) == 0x3F07) {
8066                 asc_dvc->err_code |= ASC_IERR_REVERSED_CABLE;
8067                 return ADV_ERROR;
8068         }
8069
8070         /*
8071          * Each ASC-38C1600 function has two connectors. Only an HVD device
8072          * can not be connected to either connector. An LVD device or SE device
8073          * may be connected to either connecor. If an SE device is connected,
8074          * then at most Ultra speed (20 Mhz) can be used on both connectors.
8075          *
8076          * If an HVD device is attached, return an error.
8077          */
8078         if (scsi_cfg1 & HVD) {
8079                 asc_dvc->err_code |= ASC_IERR_HVD_DEVICE;
8080                 return ADV_ERROR;
8081         }
8082
8083         /*
8084          * Each function in the ASC-38C1600 uses only the SE cable detect and
8085          * termination because there are two connectors for each function. Each
8086          * function may use either LVD or SE mode. Corresponding the SE automatic
8087          * termination control EEPROM bits are used for each function. Each
8088          * function has its own EEPROM. If SE automatic control is enabled for
8089          * the function, then set the termination value based on a table listed
8090          * in a_condor.h.
8091          *
8092          * If manual termination is specified in the EEPROM for the function,
8093          * then 'termination' was set-up in AscInitFrom38C1600EEPROM() and is
8094          * ready to be 'ored' into SCSI_CFG1.
8095          */
8096         if ((asc_dvc->cfg->termination & TERM_SE) == 0) {
8097                 struct pci_dev *pdev = adv_dvc_to_pdev(asc_dvc);
8098                 /* SE automatic termination control is enabled. */
8099                 switch (scsi_cfg1 & C_DET_SE) {
8100                         /* TERM_SE_HI: on, TERM_SE_LO: on */
8101                 case 0x1:
8102                 case 0x2:
8103                 case 0x3:
8104                         asc_dvc->cfg->termination |= TERM_SE;
8105                         break;
8106
8107                 case 0x0:
8108                         if (PCI_FUNC(pdev->devfn) == 0) {
8109                                 /* Function 0 - TERM_SE_HI: off, TERM_SE_LO: off */
8110                         } else {
8111                                 /* Function 1 - TERM_SE_HI: on, TERM_SE_LO: off */
8112                                 asc_dvc->cfg->termination |= TERM_SE_HI;
8113                         }
8114                         break;
8115                 }
8116         }
8117
8118         /*
8119          * Clear any set TERM_SE bits.
8120          */
8121         scsi_cfg1 &= ~TERM_SE;
8122
8123         /*
8124          * Invert the TERM_SE bits and then set 'scsi_cfg1'.
8125          */
8126         scsi_cfg1 |= (~asc_dvc->cfg->termination & TERM_SE);
8127
8128         /*
8129          * Clear Big Endian and Terminator Polarity bits and set possibly
8130          * modified termination control bits in the Microcode SCSI_CFG1
8131          * Register Value.
8132          *
8133          * Big Endian bit is not used even on big endian machines.
8134          */
8135         scsi_cfg1 &= (~BIG_ENDIAN & ~DIS_TERM_DRV & ~TERM_POL);
8136
8137         /*
8138          * Set SCSI_CFG1 Microcode Default Value
8139          *
8140          * Set possibly modified termination control bits in the Microcode
8141          * SCSI_CFG1 Register Value.
8142          *
8143          * The microcode will set the SCSI_CFG1 register using this value
8144          * after it is started below.
8145          */
8146         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SCSI_CFG1, scsi_cfg1);
8147
8148         /*
8149          * Set MEM_CFG Microcode Default Value
8150          *
8151          * The microcode will set the MEM_CFG register using this value
8152          * after it is started below.
8153          *
8154          * MEM_CFG may be accessed as a word or byte, but only bits 0-7
8155          * are defined.
8156          *
8157          * ASC-38C1600 has 32KB internal memory.
8158          *
8159          * XXX - Since ASC38C1600 Rev.3 has a Local RAM failure issue, we come
8160          * out a special 16K Adv Library and Microcode version. After the issue
8161          * resolved, we should turn back to the 32K support. Both a_condor.h and
8162          * mcode.sas files also need to be updated.
8163          *
8164          * AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
8165          *  BIOS_EN | RAM_SZ_32KB);
8166          */
8167         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_MEM_CFG,
8168                          BIOS_EN | RAM_SZ_16KB);
8169
8170         /*
8171          * Set SEL_MASK Microcode Default Value
8172          *
8173          * The microcode will set the SEL_MASK register using this value
8174          * after it is started below.
8175          */
8176         AdvWriteWordLram(iop_base, ASC_MC_DEFAULT_SEL_MASK,
8177                          ADV_TID_TO_TIDMASK(asc_dvc->chip_scsi_id));
8178
8179         AdvBuildCarrierFreelist(asc_dvc);
8180
8181         /*
8182          * Set-up the Host->RISC Initiator Command Queue (ICQ).
8183          */
8184         if ((asc_dvc->icq_sp = asc_dvc->carr_freelist) == NULL) {
8185                 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
8186                 return ADV_ERROR;
8187         }
8188         asc_dvc->carr_freelist = (ADV_CARR_T *)
8189             ADV_U32_TO_VADDR(le32_to_cpu(asc_dvc->icq_sp->next_vpa));
8190
8191         /*
8192          * The first command issued will be placed in the stopper carrier.
8193          */
8194         asc_dvc->icq_sp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
8195
8196         /*
8197          * Set RISC ICQ physical address start value. Initialize the
8198          * COMMA register to the same value otherwise the RISC will
8199          * prematurely detect a command is available.
8200          */
8201         AdvWriteDWordLramNoSwap(iop_base, ASC_MC_ICQ, asc_dvc->icq_sp->carr_pa);
8202         AdvWriteDWordRegister(iop_base, IOPDW_COMMA,
8203                               le32_to_cpu(asc_dvc->icq_sp->carr_pa));
8204
8205         /*
8206          * Set-up the RISC->Host Initiator Response Queue (IRQ).
8207          */
8208         if ((asc_dvc->irq_sp = asc_dvc->carr_freelist) == NULL) {
8209                 asc_dvc->err_code |= ASC_IERR_NO_CARRIER;
8210                 return ADV_ERROR;
8211         }
8212         asc_dvc->carr_freelist = (ADV_CARR_T *)
8213             ADV_U32_TO_VADDR(le32_to_cpu(asc_dvc->irq_sp->next_vpa));
8214
8215         /*
8216          * The first command completed by the RISC will be placed in
8217          * the stopper.
8218          *
8219          * Note: Set 'next_vpa' to ASC_CQ_STOPPER. When the request is
8220          * completed the RISC will set the ASC_RQ_STOPPER bit.
8221          */
8222         asc_dvc->irq_sp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
8223
8224         /*
8225          * Set RISC IRQ physical address start value.
8226          */
8227         AdvWriteDWordLramNoSwap(iop_base, ASC_MC_IRQ, asc_dvc->irq_sp->carr_pa);
8228         asc_dvc->carr_pending_cnt = 0;
8229
8230         AdvWriteByteRegister(iop_base, IOPB_INTR_ENABLES,
8231                              (ADV_INTR_ENABLE_HOST_INTR |
8232                               ADV_INTR_ENABLE_GLOBAL_INTR));
8233         AdvReadWordLram(iop_base, ASC_MC_CODE_BEGIN_ADDR, word);
8234         AdvWriteWordRegister(iop_base, IOPW_PC, word);
8235
8236         /* finally, finally, gentlemen, start your engine */
8237         AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_RUN);
8238
8239         /*
8240          * Reset the SCSI Bus if the EEPROM indicates that SCSI Bus
8241          * Resets should be performed. The RISC has to be running
8242          * to issue a SCSI Bus Reset.
8243          */
8244         if (asc_dvc->bios_ctrl & BIOS_CTRL_RESET_SCSI_BUS) {
8245                 /*
8246                  * If the BIOS Signature is present in memory, restore the
8247                  * per TID microcode operating variables.
8248                  */
8249                 if (bios_mem[(ASC_MC_BIOS_SIGNATURE - ASC_MC_BIOSMEM) / 2] ==
8250                     0x55AA) {
8251                         /*
8252                          * Restore per TID negotiated values.
8253                          */
8254                         AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
8255                         AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
8256                         AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
8257                         AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
8258                                          tagqng_able);
8259                         for (tid = 0; tid <= ASC_MAX_TID; tid++) {
8260                                 AdvWriteByteLram(iop_base,
8261                                                  ASC_MC_NUMBER_OF_MAX_CMD + tid,
8262                                                  max_cmd[tid]);
8263                         }
8264                 } else {
8265                         if (AdvResetSB(asc_dvc) != ADV_TRUE) {
8266                                 warn_code = ASC_WARN_BUSRESET_ERROR;
8267                         }
8268                 }
8269         }
8270
8271         return warn_code;
8272 }
8273
8274 /*
8275  * Reset chip and SCSI Bus.
8276  *
8277  * Return Value:
8278  *      ADV_TRUE(1) -   Chip re-initialization and SCSI Bus Reset successful.
8279  *      ADV_FALSE(0) -  Chip re-initialization and SCSI Bus Reset failure.
8280  */
8281 static int AdvResetChipAndSB(ADV_DVC_VAR *asc_dvc)
8282 {
8283         int status;
8284         ushort wdtr_able, sdtr_able, tagqng_able;
8285         ushort ppr_able = 0;
8286         uchar tid, max_cmd[ADV_MAX_TID + 1];
8287         AdvPortAddr iop_base;
8288         ushort bios_sig;
8289
8290         iop_base = asc_dvc->iop_base;
8291
8292         /*
8293          * Save current per TID negotiated values.
8294          */
8295         AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
8296         AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
8297         if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
8298                 AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
8299         }
8300         AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
8301         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
8302                 AdvReadByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
8303                                 max_cmd[tid]);
8304         }
8305
8306         /*
8307          * Force the AdvInitAsc3550/38C0800Driver() function to
8308          * perform a SCSI Bus Reset by clearing the BIOS signature word.
8309          * The initialization functions assumes a SCSI Bus Reset is not
8310          * needed if the BIOS signature word is present.
8311          */
8312         AdvReadWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, bios_sig);
8313         AdvWriteWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, 0);
8314
8315         /*
8316          * Stop chip and reset it.
8317          */
8318         AdvWriteWordRegister(iop_base, IOPW_RISC_CSR, ADV_RISC_CSR_STOP);
8319         AdvWriteWordRegister(iop_base, IOPW_CTRL_REG, ADV_CTRL_REG_CMD_RESET);
8320         mdelay(100);
8321         AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
8322                              ADV_CTRL_REG_CMD_WR_IO_REG);
8323
8324         /*
8325          * Reset Adv Library error code, if any, and try
8326          * re-initializing the chip.
8327          */
8328         asc_dvc->err_code = 0;
8329         if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
8330                 status = AdvInitAsc38C1600Driver(asc_dvc);
8331         } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
8332                 status = AdvInitAsc38C0800Driver(asc_dvc);
8333         } else {
8334                 status = AdvInitAsc3550Driver(asc_dvc);
8335         }
8336
8337         /* Translate initialization return value to status value. */
8338         if (status == 0) {
8339                 status = ADV_TRUE;
8340         } else {
8341                 status = ADV_FALSE;
8342         }
8343
8344         /*
8345          * Restore the BIOS signature word.
8346          */
8347         AdvWriteWordLram(iop_base, ASC_MC_BIOS_SIGNATURE, bios_sig);
8348
8349         /*
8350          * Restore per TID negotiated values.
8351          */
8352         AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, wdtr_able);
8353         AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, sdtr_able);
8354         if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
8355                 AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, ppr_able);
8356         }
8357         AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE, tagqng_able);
8358         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
8359                 AdvWriteByteLram(iop_base, ASC_MC_NUMBER_OF_MAX_CMD + tid,
8360                                  max_cmd[tid]);
8361         }
8362
8363         return status;
8364 }
8365
8366 /*
8367  * adv_async_callback() - Adv Library asynchronous event callback function.
8368  */
8369 static void adv_async_callback(ADV_DVC_VAR *adv_dvc_varp, uchar code)
8370 {
8371         switch (code) {
8372         case ADV_ASYNC_SCSI_BUS_RESET_DET:
8373                 /*
8374                  * The firmware detected a SCSI Bus reset.
8375                  */
8376                 ASC_DBG(0,
8377                         "adv_async_callback: ADV_ASYNC_SCSI_BUS_RESET_DET\n");
8378                 break;
8379
8380         case ADV_ASYNC_RDMA_FAILURE:
8381                 /*
8382                  * Handle RDMA failure by resetting the SCSI Bus and
8383                  * possibly the chip if it is unresponsive. Log the error
8384                  * with a unique code.
8385                  */
8386                 ASC_DBG(0, "adv_async_callback: ADV_ASYNC_RDMA_FAILURE\n");
8387                 AdvResetChipAndSB(adv_dvc_varp);
8388                 break;
8389
8390         case ADV_HOST_SCSI_BUS_RESET:
8391                 /*
8392                  * Host generated SCSI bus reset occurred.
8393                  */
8394                 ASC_DBG(0, "adv_async_callback: ADV_HOST_SCSI_BUS_RESET\n");
8395                 break;
8396
8397         default:
8398                 ASC_DBG1(0, "DvcAsyncCallBack: unknown code 0x%x\n", code);
8399                 break;
8400         }
8401 }
8402
8403 /*
8404  * adv_isr_callback() - Second Level Interrupt Handler called by AdvISR().
8405  *
8406  * Callback function for the Wide SCSI Adv Library.
8407  */
8408 static void adv_isr_callback(ADV_DVC_VAR *adv_dvc_varp, ADV_SCSI_REQ_Q *scsiqp)
8409 {
8410         asc_board_t *boardp;
8411         adv_req_t *reqp;
8412         adv_sgblk_t *sgblkp;
8413         struct scsi_cmnd *scp;
8414         struct Scsi_Host *shost;
8415         ADV_DCNT resid_cnt;
8416
8417         ASC_DBG2(1, "adv_isr_callback: adv_dvc_varp 0x%lx, scsiqp 0x%lx\n",
8418                  (ulong)adv_dvc_varp, (ulong)scsiqp);
8419         ASC_DBG_PRT_ADV_SCSI_REQ_Q(2, scsiqp);
8420
8421         /*
8422          * Get the adv_req_t structure for the command that has been
8423          * completed. The adv_req_t structure actually contains the
8424          * completed ADV_SCSI_REQ_Q structure.
8425          */
8426         reqp = (adv_req_t *)ADV_U32_TO_VADDR(scsiqp->srb_ptr);
8427         ASC_DBG1(1, "adv_isr_callback: reqp 0x%lx\n", (ulong)reqp);
8428         if (reqp == NULL) {
8429                 ASC_PRINT("adv_isr_callback: reqp is NULL\n");
8430                 return;
8431         }
8432
8433         /*
8434          * Get the struct scsi_cmnd structure and Scsi_Host structure for the
8435          * command that has been completed.
8436          *
8437          * Note: The adv_req_t request structure and adv_sgblk_t structure,
8438          * if any, are dropped, because a board structure pointer can not be
8439          * determined.
8440          */
8441         scp = reqp->cmndp;
8442         ASC_DBG1(1, "adv_isr_callback: scp 0x%lx\n", (ulong)scp);
8443         if (scp == NULL) {
8444                 ASC_PRINT
8445                     ("adv_isr_callback: scp is NULL; adv_req_t dropped.\n");
8446                 return;
8447         }
8448         ASC_DBG_PRT_CDB(2, scp->cmnd, scp->cmd_len);
8449
8450         shost = scp->device->host;
8451         ASC_STATS(shost, callback);
8452         ASC_DBG1(1, "adv_isr_callback: shost 0x%lx\n", (ulong)shost);
8453
8454         boardp = ASC_BOARDP(shost);
8455         BUG_ON(adv_dvc_varp != &boardp->dvc_var.adv_dvc_var);
8456
8457         /*
8458          * 'done_status' contains the command's ending status.
8459          */
8460         switch (scsiqp->done_status) {
8461         case QD_NO_ERROR:
8462                 ASC_DBG(2, "adv_isr_callback: QD_NO_ERROR\n");
8463                 scp->result = 0;
8464
8465                 /*
8466                  * Check for an underrun condition.
8467                  *
8468                  * If there was no error and an underrun condition, then
8469                  * then return the number of underrun bytes.
8470                  */
8471                 resid_cnt = le32_to_cpu(scsiqp->data_cnt);
8472                 if (scp->request_bufflen != 0 && resid_cnt != 0 &&
8473                     resid_cnt <= scp->request_bufflen) {
8474                         ASC_DBG1(1,
8475                                  "adv_isr_callback: underrun condition %lu bytes\n",
8476                                  (ulong)resid_cnt);
8477                         scp->resid = resid_cnt;
8478                 }
8479                 break;
8480
8481         case QD_WITH_ERROR:
8482                 ASC_DBG(2, "adv_isr_callback: QD_WITH_ERROR\n");
8483                 switch (scsiqp->host_status) {
8484                 case QHSTA_NO_ERROR:
8485                         if (scsiqp->scsi_status == SAM_STAT_CHECK_CONDITION) {
8486                                 ASC_DBG(2,
8487                                         "adv_isr_callback: SAM_STAT_CHECK_CONDITION\n");
8488                                 ASC_DBG_PRT_SENSE(2, scp->sense_buffer,
8489                                                   sizeof(scp->sense_buffer));
8490                                 /*
8491                                  * Note: The 'status_byte()' macro used by
8492                                  * target drivers defined in scsi.h shifts the
8493                                  * status byte returned by host drivers right
8494                                  * by 1 bit.  This is why target drivers also
8495                                  * use right shifted status byte definitions.
8496                                  * For instance target drivers use
8497                                  * CHECK_CONDITION, defined to 0x1, instead of
8498                                  * the SCSI defined check condition value of
8499                                  * 0x2. Host drivers are supposed to return
8500                                  * the status byte as it is defined by SCSI.
8501                                  */
8502                                 scp->result = DRIVER_BYTE(DRIVER_SENSE) |
8503                                     STATUS_BYTE(scsiqp->scsi_status);
8504                         } else {
8505                                 scp->result = STATUS_BYTE(scsiqp->scsi_status);
8506                         }
8507                         break;
8508
8509                 default:
8510                         /* Some other QHSTA error occurred. */
8511                         ASC_DBG1(1, "adv_isr_callback: host_status 0x%x\n",
8512                                  scsiqp->host_status);
8513                         scp->result = HOST_BYTE(DID_BAD_TARGET);
8514                         break;
8515                 }
8516                 break;
8517
8518         case QD_ABORTED_BY_HOST:
8519                 ASC_DBG(1, "adv_isr_callback: QD_ABORTED_BY_HOST\n");
8520                 scp->result =
8521                     HOST_BYTE(DID_ABORT) | STATUS_BYTE(scsiqp->scsi_status);
8522                 break;
8523
8524         default:
8525                 ASC_DBG1(1, "adv_isr_callback: done_status 0x%x\n",
8526                          scsiqp->done_status);
8527                 scp->result =
8528                     HOST_BYTE(DID_ERROR) | STATUS_BYTE(scsiqp->scsi_status);
8529                 break;
8530         }
8531
8532         /*
8533          * If the 'init_tidmask' bit isn't already set for the target and the
8534          * current request finished normally, then set the bit for the target
8535          * to indicate that a device is present.
8536          */
8537         if ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(scp->device->id)) == 0 &&
8538             scsiqp->done_status == QD_NO_ERROR &&
8539             scsiqp->host_status == QHSTA_NO_ERROR) {
8540                 boardp->init_tidmask |= ADV_TID_TO_TIDMASK(scp->device->id);
8541         }
8542
8543         asc_scsi_done(scp);
8544
8545         /*
8546          * Free all 'adv_sgblk_t' structures allocated for the request.
8547          */
8548         while ((sgblkp = reqp->sgblkp) != NULL) {
8549                 /* Remove 'sgblkp' from the request list. */
8550                 reqp->sgblkp = sgblkp->next_sgblkp;
8551
8552                 /* Add 'sgblkp' to the board free list. */
8553                 sgblkp->next_sgblkp = boardp->adv_sgblkp;
8554                 boardp->adv_sgblkp = sgblkp;
8555         }
8556
8557         /*
8558          * Free the adv_req_t structure used with the command by adding
8559          * it back to the board free list.
8560          */
8561         reqp->next_reqp = boardp->adv_reqp;
8562         boardp->adv_reqp = reqp;
8563
8564         ASC_DBG(1, "adv_isr_callback: done\n");
8565
8566         return;
8567 }
8568
8569 /*
8570  * Adv Library Interrupt Service Routine
8571  *
8572  *  This function is called by a driver's interrupt service routine.
8573  *  The function disables and re-enables interrupts.
8574  *
8575  *  When a microcode idle command is completed, the ADV_DVC_VAR
8576  *  'idle_cmd_done' field is set to ADV_TRUE.
8577  *
8578  *  Note: AdvISR() can be called when interrupts are disabled or even
8579  *  when there is no hardware interrupt condition present. It will
8580  *  always check for completed idle commands and microcode requests.
8581  *  This is an important feature that shouldn't be changed because it
8582  *  allows commands to be completed from polling mode loops.
8583  *
8584  * Return:
8585  *   ADV_TRUE(1) - interrupt was pending
8586  *   ADV_FALSE(0) - no interrupt was pending
8587  */
8588 static int AdvISR(ADV_DVC_VAR *asc_dvc)
8589 {
8590         AdvPortAddr iop_base;
8591         uchar int_stat;
8592         ushort target_bit;
8593         ADV_CARR_T *free_carrp;
8594         ADV_VADDR irq_next_vpa;
8595         ADV_SCSI_REQ_Q *scsiq;
8596
8597         iop_base = asc_dvc->iop_base;
8598
8599         /* Reading the register clears the interrupt. */
8600         int_stat = AdvReadByteRegister(iop_base, IOPB_INTR_STATUS_REG);
8601
8602         if ((int_stat & (ADV_INTR_STATUS_INTRA | ADV_INTR_STATUS_INTRB |
8603                          ADV_INTR_STATUS_INTRC)) == 0) {
8604                 return ADV_FALSE;
8605         }
8606
8607         /*
8608          * Notify the driver of an asynchronous microcode condition by
8609          * calling the adv_async_callback function. The function
8610          * is passed the microcode ASC_MC_INTRB_CODE byte value.
8611          */
8612         if (int_stat & ADV_INTR_STATUS_INTRB) {
8613                 uchar intrb_code;
8614
8615                 AdvReadByteLram(iop_base, ASC_MC_INTRB_CODE, intrb_code);
8616
8617                 if (asc_dvc->chip_type == ADV_CHIP_ASC3550 ||
8618                     asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
8619                         if (intrb_code == ADV_ASYNC_CARRIER_READY_FAILURE &&
8620                             asc_dvc->carr_pending_cnt != 0) {
8621                                 AdvWriteByteRegister(iop_base, IOPB_TICKLE,
8622                                                      ADV_TICKLE_A);
8623                                 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
8624                                         AdvWriteByteRegister(iop_base,
8625                                                              IOPB_TICKLE,
8626                                                              ADV_TICKLE_NOP);
8627                                 }
8628                         }
8629                 }
8630
8631                 adv_async_callback(asc_dvc, intrb_code);
8632         }
8633
8634         /*
8635          * Check if the IRQ stopper carrier contains a completed request.
8636          */
8637         while (((irq_next_vpa =
8638                  le32_to_cpu(asc_dvc->irq_sp->next_vpa)) & ASC_RQ_DONE) != 0) {
8639                 /*
8640                  * Get a pointer to the newly completed ADV_SCSI_REQ_Q structure.
8641                  * The RISC will have set 'areq_vpa' to a virtual address.
8642                  *
8643                  * The firmware will have copied the ASC_SCSI_REQ_Q.scsiq_ptr
8644                  * field to the carrier ADV_CARR_T.areq_vpa field. The conversion
8645                  * below complements the conversion of ASC_SCSI_REQ_Q.scsiq_ptr'
8646                  * in AdvExeScsiQueue().
8647                  */
8648                 scsiq = (ADV_SCSI_REQ_Q *)
8649                     ADV_U32_TO_VADDR(le32_to_cpu(asc_dvc->irq_sp->areq_vpa));
8650
8651                 /*
8652                  * Request finished with good status and the queue was not
8653                  * DMAed to host memory by the firmware. Set all status fields
8654                  * to indicate good status.
8655                  */
8656                 if ((irq_next_vpa & ASC_RQ_GOOD) != 0) {
8657                         scsiq->done_status = QD_NO_ERROR;
8658                         scsiq->host_status = scsiq->scsi_status = 0;
8659                         scsiq->data_cnt = 0L;
8660                 }
8661
8662                 /*
8663                  * Advance the stopper pointer to the next carrier
8664                  * ignoring the lower four bits. Free the previous
8665                  * stopper carrier.
8666                  */
8667                 free_carrp = asc_dvc->irq_sp;
8668                 asc_dvc->irq_sp = (ADV_CARR_T *)
8669                     ADV_U32_TO_VADDR(ASC_GET_CARRP(irq_next_vpa));
8670
8671                 free_carrp->next_vpa =
8672                     cpu_to_le32(ADV_VADDR_TO_U32(asc_dvc->carr_freelist));
8673                 asc_dvc->carr_freelist = free_carrp;
8674                 asc_dvc->carr_pending_cnt--;
8675
8676                 target_bit = ADV_TID_TO_TIDMASK(scsiq->target_id);
8677
8678                 /*
8679                  * Clear request microcode control flag.
8680                  */
8681                 scsiq->cntl = 0;
8682
8683                 /*
8684                  * Notify the driver of the completed request by passing
8685                  * the ADV_SCSI_REQ_Q pointer to its callback function.
8686                  */
8687                 scsiq->a_flag |= ADV_SCSIQ_DONE;
8688                 adv_isr_callback(asc_dvc, scsiq);
8689                 /*
8690                  * Note: After the driver callback function is called, 'scsiq'
8691                  * can no longer be referenced.
8692                  *
8693                  * Fall through and continue processing other completed
8694                  * requests...
8695                  */
8696         }
8697         return ADV_TRUE;
8698 }
8699
8700 static int AscSetLibErrorCode(ASC_DVC_VAR *asc_dvc, ushort err_code)
8701 {
8702         if (asc_dvc->err_code == 0) {
8703                 asc_dvc->err_code = err_code;
8704                 AscWriteLramWord(asc_dvc->iop_base, ASCV_ASCDVC_ERR_CODE_W,
8705                                  err_code);
8706         }
8707         return err_code;
8708 }
8709
8710 static void AscAckInterrupt(PortAddr iop_base)
8711 {
8712         uchar host_flag;
8713         uchar risc_flag;
8714         ushort loop;
8715
8716         loop = 0;
8717         do {
8718                 risc_flag = AscReadLramByte(iop_base, ASCV_RISC_FLAG_B);
8719                 if (loop++ > 0x7FFF) {
8720                         break;
8721                 }
8722         } while ((risc_flag & ASC_RISC_FLAG_GEN_INT) != 0);
8723         host_flag =
8724             AscReadLramByte(iop_base,
8725                             ASCV_HOST_FLAG_B) & (~ASC_HOST_FLAG_ACK_INT);
8726         AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
8727                          (uchar)(host_flag | ASC_HOST_FLAG_ACK_INT));
8728         AscSetChipStatus(iop_base, CIW_INT_ACK);
8729         loop = 0;
8730         while (AscGetChipStatus(iop_base) & CSW_INT_PENDING) {
8731                 AscSetChipStatus(iop_base, CIW_INT_ACK);
8732                 if (loop++ > 3) {
8733                         break;
8734                 }
8735         }
8736         AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
8737         return;
8738 }
8739
8740 static uchar AscGetSynPeriodIndex(ASC_DVC_VAR *asc_dvc, uchar syn_time)
8741 {
8742         uchar *period_table;
8743         int max_index;
8744         int min_index;
8745         int i;
8746
8747         period_table = asc_dvc->sdtr_period_tbl;
8748         max_index = (int)asc_dvc->max_sdtr_index;
8749         min_index = (int)asc_dvc->host_init_sdtr_index;
8750         if ((syn_time <= period_table[max_index])) {
8751                 for (i = min_index; i < (max_index - 1); i++) {
8752                         if (syn_time <= period_table[i]) {
8753                                 return (uchar)i;
8754                         }
8755                 }
8756                 return (uchar)max_index;
8757         } else {
8758                 return (uchar)(max_index + 1);
8759         }
8760 }
8761
8762 static uchar
8763 AscMsgOutSDTR(ASC_DVC_VAR *asc_dvc, uchar sdtr_period, uchar sdtr_offset)
8764 {
8765         EXT_MSG sdtr_buf;
8766         uchar sdtr_period_index;
8767         PortAddr iop_base;
8768
8769         iop_base = asc_dvc->iop_base;
8770         sdtr_buf.msg_type = EXTENDED_MESSAGE;
8771         sdtr_buf.msg_len = MS_SDTR_LEN;
8772         sdtr_buf.msg_req = EXTENDED_SDTR;
8773         sdtr_buf.xfer_period = sdtr_period;
8774         sdtr_offset &= ASC_SYN_MAX_OFFSET;
8775         sdtr_buf.req_ack_offset = sdtr_offset;
8776         sdtr_period_index = AscGetSynPeriodIndex(asc_dvc, sdtr_period);
8777         if (sdtr_period_index <= asc_dvc->max_sdtr_index) {
8778                 AscMemWordCopyPtrToLram(iop_base, ASCV_MSGOUT_BEG,
8779                                         (uchar *)&sdtr_buf,
8780                                         sizeof(EXT_MSG) >> 1);
8781                 return ((sdtr_period_index << 4) | sdtr_offset);
8782         } else {
8783                 sdtr_buf.req_ack_offset = 0;
8784                 AscMemWordCopyPtrToLram(iop_base, ASCV_MSGOUT_BEG,
8785                                         (uchar *)&sdtr_buf,
8786                                         sizeof(EXT_MSG) >> 1);
8787                 return 0;
8788         }
8789 }
8790
8791 static uchar
8792 AscCalSDTRData(ASC_DVC_VAR *asc_dvc, uchar sdtr_period, uchar syn_offset)
8793 {
8794         uchar byte;
8795         uchar sdtr_period_ix;
8796
8797         sdtr_period_ix = AscGetSynPeriodIndex(asc_dvc, sdtr_period);
8798         if (sdtr_period_ix > asc_dvc->max_sdtr_index) {
8799                 return 0xFF;
8800         }
8801         byte = (sdtr_period_ix << 4) | (syn_offset & ASC_SYN_MAX_OFFSET);
8802         return byte;
8803 }
8804
8805 static int AscSetChipSynRegAtID(PortAddr iop_base, uchar id, uchar sdtr_data)
8806 {
8807         ASC_SCSI_BIT_ID_TYPE org_id;
8808         int i;
8809         int sta = TRUE;
8810
8811         AscSetBank(iop_base, 1);
8812         org_id = AscReadChipDvcID(iop_base);
8813         for (i = 0; i <= ASC_MAX_TID; i++) {
8814                 if (org_id == (0x01 << i))
8815                         break;
8816         }
8817         org_id = (ASC_SCSI_BIT_ID_TYPE) i;
8818         AscWriteChipDvcID(iop_base, id);
8819         if (AscReadChipDvcID(iop_base) == (0x01 << id)) {
8820                 AscSetBank(iop_base, 0);
8821                 AscSetChipSyn(iop_base, sdtr_data);
8822                 if (AscGetChipSyn(iop_base) != sdtr_data) {
8823                         sta = FALSE;
8824                 }
8825         } else {
8826                 sta = FALSE;
8827         }
8828         AscSetBank(iop_base, 1);
8829         AscWriteChipDvcID(iop_base, org_id);
8830         AscSetBank(iop_base, 0);
8831         return (sta);
8832 }
8833
8834 static void AscSetChipSDTR(PortAddr iop_base, uchar sdtr_data, uchar tid_no)
8835 {
8836         AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
8837         AscPutMCodeSDTRDoneAtID(iop_base, tid_no, sdtr_data);
8838 }
8839
8840 static int AscIsrChipHalted(ASC_DVC_VAR *asc_dvc)
8841 {
8842         EXT_MSG ext_msg;
8843         EXT_MSG out_msg;
8844         ushort halt_q_addr;
8845         int sdtr_accept;
8846         ushort int_halt_code;
8847         ASC_SCSI_BIT_ID_TYPE scsi_busy;
8848         ASC_SCSI_BIT_ID_TYPE target_id;
8849         PortAddr iop_base;
8850         uchar tag_code;
8851         uchar q_status;
8852         uchar halt_qp;
8853         uchar sdtr_data;
8854         uchar target_ix;
8855         uchar q_cntl, tid_no;
8856         uchar cur_dvc_qng;
8857         uchar asyn_sdtr;
8858         uchar scsi_status;
8859         asc_board_t *boardp;
8860
8861         BUG_ON(!asc_dvc->drv_ptr);
8862         boardp = asc_dvc->drv_ptr;
8863
8864         iop_base = asc_dvc->iop_base;
8865         int_halt_code = AscReadLramWord(iop_base, ASCV_HALTCODE_W);
8866
8867         halt_qp = AscReadLramByte(iop_base, ASCV_CURCDB_B);
8868         halt_q_addr = ASC_QNO_TO_QADDR(halt_qp);
8869         target_ix = AscReadLramByte(iop_base,
8870                                     (ushort)(halt_q_addr +
8871                                              (ushort)ASC_SCSIQ_B_TARGET_IX));
8872         q_cntl = AscReadLramByte(iop_base,
8873                             (ushort)(halt_q_addr + (ushort)ASC_SCSIQ_B_CNTL));
8874         tid_no = ASC_TIX_TO_TID(target_ix);
8875         target_id = (uchar)ASC_TID_TO_TARGET_ID(tid_no);
8876         if (asc_dvc->pci_fix_asyn_xfer & target_id) {
8877                 asyn_sdtr = ASYN_SDTR_DATA_FIX_PCI_REV_AB;
8878         } else {
8879                 asyn_sdtr = 0;
8880         }
8881         if (int_halt_code == ASC_HALT_DISABLE_ASYN_USE_SYN_FIX) {
8882                 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
8883                         AscSetChipSDTR(iop_base, 0, tid_no);
8884                         boardp->sdtr_data[tid_no] = 0;
8885                 }
8886                 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
8887                 return (0);
8888         } else if (int_halt_code == ASC_HALT_ENABLE_ASYN_USE_SYN_FIX) {
8889                 if (asc_dvc->pci_fix_asyn_xfer & target_id) {
8890                         AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
8891                         boardp->sdtr_data[tid_no] = asyn_sdtr;
8892                 }
8893                 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
8894                 return (0);
8895         } else if (int_halt_code == ASC_HALT_EXTMSG_IN) {
8896                 AscMemWordCopyPtrFromLram(iop_base,
8897                                           ASCV_MSGIN_BEG,
8898                                           (uchar *)&ext_msg,
8899                                           sizeof(EXT_MSG) >> 1);
8900
8901                 if (ext_msg.msg_type == EXTENDED_MESSAGE &&
8902                     ext_msg.msg_req == EXTENDED_SDTR &&
8903                     ext_msg.msg_len == MS_SDTR_LEN) {
8904                         sdtr_accept = TRUE;
8905                         if ((ext_msg.req_ack_offset > ASC_SYN_MAX_OFFSET)) {
8906
8907                                 sdtr_accept = FALSE;
8908                                 ext_msg.req_ack_offset = ASC_SYN_MAX_OFFSET;
8909                         }
8910                         if ((ext_msg.xfer_period <
8911                              asc_dvc->sdtr_period_tbl[asc_dvc->
8912                                                       host_init_sdtr_index])
8913                             || (ext_msg.xfer_period >
8914                                 asc_dvc->sdtr_period_tbl[asc_dvc->
8915                                                          max_sdtr_index])) {
8916                                 sdtr_accept = FALSE;
8917                                 ext_msg.xfer_period =
8918                                     asc_dvc->sdtr_period_tbl[asc_dvc->
8919                                                              host_init_sdtr_index];
8920                         }
8921                         if (sdtr_accept) {
8922                                 sdtr_data =
8923                                     AscCalSDTRData(asc_dvc, ext_msg.xfer_period,
8924                                                    ext_msg.req_ack_offset);
8925                                 if ((sdtr_data == 0xFF)) {
8926
8927                                         q_cntl |= QC_MSG_OUT;
8928                                         asc_dvc->init_sdtr &= ~target_id;
8929                                         asc_dvc->sdtr_done &= ~target_id;
8930                                         AscSetChipSDTR(iop_base, asyn_sdtr,
8931                                                        tid_no);
8932                                         boardp->sdtr_data[tid_no] = asyn_sdtr;
8933                                 }
8934                         }
8935                         if (ext_msg.req_ack_offset == 0) {
8936
8937                                 q_cntl &= ~QC_MSG_OUT;
8938                                 asc_dvc->init_sdtr &= ~target_id;
8939                                 asc_dvc->sdtr_done &= ~target_id;
8940                                 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
8941                         } else {
8942                                 if (sdtr_accept && (q_cntl & QC_MSG_OUT)) {
8943
8944                                         q_cntl &= ~QC_MSG_OUT;
8945                                         asc_dvc->sdtr_done |= target_id;
8946                                         asc_dvc->init_sdtr |= target_id;
8947                                         asc_dvc->pci_fix_asyn_xfer &=
8948                                             ~target_id;
8949                                         sdtr_data =
8950                                             AscCalSDTRData(asc_dvc,
8951                                                            ext_msg.xfer_period,
8952                                                            ext_msg.
8953                                                            req_ack_offset);
8954                                         AscSetChipSDTR(iop_base, sdtr_data,
8955                                                        tid_no);
8956                                         boardp->sdtr_data[tid_no] = sdtr_data;
8957                                 } else {
8958
8959                                         q_cntl |= QC_MSG_OUT;
8960                                         AscMsgOutSDTR(asc_dvc,
8961                                                       ext_msg.xfer_period,
8962                                                       ext_msg.req_ack_offset);
8963                                         asc_dvc->pci_fix_asyn_xfer &=
8964                                             ~target_id;
8965                                         sdtr_data =
8966                                             AscCalSDTRData(asc_dvc,
8967                                                            ext_msg.xfer_period,
8968                                                            ext_msg.
8969                                                            req_ack_offset);
8970                                         AscSetChipSDTR(iop_base, sdtr_data,
8971                                                        tid_no);
8972                                         boardp->sdtr_data[tid_no] = sdtr_data;
8973                                         asc_dvc->sdtr_done |= target_id;
8974                                         asc_dvc->init_sdtr |= target_id;
8975                                 }
8976                         }
8977
8978                         AscWriteLramByte(iop_base,
8979                                          (ushort)(halt_q_addr +
8980                                                   (ushort)ASC_SCSIQ_B_CNTL),
8981                                          q_cntl);
8982                         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
8983                         return (0);
8984                 } else if (ext_msg.msg_type == EXTENDED_MESSAGE &&
8985                            ext_msg.msg_req == EXTENDED_WDTR &&
8986                            ext_msg.msg_len == MS_WDTR_LEN) {
8987
8988                         ext_msg.wdtr_width = 0;
8989                         AscMemWordCopyPtrToLram(iop_base,
8990                                                 ASCV_MSGOUT_BEG,
8991                                                 (uchar *)&ext_msg,
8992                                                 sizeof(EXT_MSG) >> 1);
8993                         q_cntl |= QC_MSG_OUT;
8994                         AscWriteLramByte(iop_base,
8995                                          (ushort)(halt_q_addr +
8996                                                   (ushort)ASC_SCSIQ_B_CNTL),
8997                                          q_cntl);
8998                         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
8999                         return (0);
9000                 } else {
9001
9002                         ext_msg.msg_type = MESSAGE_REJECT;
9003                         AscMemWordCopyPtrToLram(iop_base,
9004                                                 ASCV_MSGOUT_BEG,
9005                                                 (uchar *)&ext_msg,
9006                                                 sizeof(EXT_MSG) >> 1);
9007                         q_cntl |= QC_MSG_OUT;
9008                         AscWriteLramByte(iop_base,
9009                                          (ushort)(halt_q_addr +
9010                                                   (ushort)ASC_SCSIQ_B_CNTL),
9011                                          q_cntl);
9012                         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
9013                         return (0);
9014                 }
9015         } else if (int_halt_code == ASC_HALT_CHK_CONDITION) {
9016
9017                 q_cntl |= QC_REQ_SENSE;
9018
9019                 if ((asc_dvc->init_sdtr & target_id) != 0) {
9020
9021                         asc_dvc->sdtr_done &= ~target_id;
9022
9023                         sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
9024                         q_cntl |= QC_MSG_OUT;
9025                         AscMsgOutSDTR(asc_dvc,
9026                                       asc_dvc->
9027                                       sdtr_period_tbl[(sdtr_data >> 4) &
9028                                                       (uchar)(asc_dvc->
9029                                                               max_sdtr_index -
9030                                                               1)],
9031                                       (uchar)(sdtr_data & (uchar)
9032                                               ASC_SYN_MAX_OFFSET));
9033                 }
9034
9035                 AscWriteLramByte(iop_base,
9036                                  (ushort)(halt_q_addr +
9037                                           (ushort)ASC_SCSIQ_B_CNTL), q_cntl);
9038
9039                 tag_code = AscReadLramByte(iop_base,
9040                                            (ushort)(halt_q_addr + (ushort)
9041                                                     ASC_SCSIQ_B_TAG_CODE));
9042                 tag_code &= 0xDC;
9043                 if ((asc_dvc->pci_fix_asyn_xfer & target_id)
9044                     && !(asc_dvc->pci_fix_asyn_xfer_always & target_id)
9045                     ) {
9046
9047                         tag_code |= (ASC_TAG_FLAG_DISABLE_DISCONNECT
9048                                      | ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX);
9049
9050                 }
9051                 AscWriteLramByte(iop_base,
9052                                  (ushort)(halt_q_addr +
9053                                           (ushort)ASC_SCSIQ_B_TAG_CODE),
9054                                  tag_code);
9055
9056                 q_status = AscReadLramByte(iop_base,
9057                                            (ushort)(halt_q_addr + (ushort)
9058                                                     ASC_SCSIQ_B_STATUS));
9059                 q_status |= (QS_READY | QS_BUSY);
9060                 AscWriteLramByte(iop_base,
9061                                  (ushort)(halt_q_addr +
9062                                           (ushort)ASC_SCSIQ_B_STATUS),
9063                                  q_status);
9064
9065                 scsi_busy = AscReadLramByte(iop_base, (ushort)ASCV_SCSIBUSY_B);
9066                 scsi_busy &= ~target_id;
9067                 AscWriteLramByte(iop_base, (ushort)ASCV_SCSIBUSY_B, scsi_busy);
9068
9069                 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
9070                 return (0);
9071         } else if (int_halt_code == ASC_HALT_SDTR_REJECTED) {
9072
9073                 AscMemWordCopyPtrFromLram(iop_base,
9074                                           ASCV_MSGOUT_BEG,
9075                                           (uchar *)&out_msg,
9076                                           sizeof(EXT_MSG) >> 1);
9077
9078                 if ((out_msg.msg_type == EXTENDED_MESSAGE) &&
9079                     (out_msg.msg_len == MS_SDTR_LEN) &&
9080                     (out_msg.msg_req == EXTENDED_SDTR)) {
9081
9082                         asc_dvc->init_sdtr &= ~target_id;
9083                         asc_dvc->sdtr_done &= ~target_id;
9084                         AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
9085                         boardp->sdtr_data[tid_no] = asyn_sdtr;
9086                 }
9087                 q_cntl &= ~QC_MSG_OUT;
9088                 AscWriteLramByte(iop_base,
9089                                  (ushort)(halt_q_addr +
9090                                           (ushort)ASC_SCSIQ_B_CNTL), q_cntl);
9091                 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
9092                 return (0);
9093         } else if (int_halt_code == ASC_HALT_SS_QUEUE_FULL) {
9094
9095                 scsi_status = AscReadLramByte(iop_base,
9096                                               (ushort)((ushort)halt_q_addr +
9097                                                        (ushort)
9098                                                        ASC_SCSIQ_SCSI_STATUS));
9099                 cur_dvc_qng =
9100                     AscReadLramByte(iop_base,
9101                                     (ushort)((ushort)ASC_QADR_BEG +
9102                                              (ushort)target_ix));
9103                 if ((cur_dvc_qng > 0) && (asc_dvc->cur_dvc_qng[tid_no] > 0)) {
9104
9105                         scsi_busy = AscReadLramByte(iop_base,
9106                                                     (ushort)ASCV_SCSIBUSY_B);
9107                         scsi_busy |= target_id;
9108                         AscWriteLramByte(iop_base,
9109                                          (ushort)ASCV_SCSIBUSY_B, scsi_busy);
9110                         asc_dvc->queue_full_or_busy |= target_id;
9111
9112                         if (scsi_status == SAM_STAT_TASK_SET_FULL) {
9113                                 if (cur_dvc_qng > ASC_MIN_TAGGED_CMD) {
9114                                         cur_dvc_qng -= 1;
9115                                         asc_dvc->max_dvc_qng[tid_no] =
9116                                             cur_dvc_qng;
9117
9118                                         AscWriteLramByte(iop_base,
9119                                                          (ushort)((ushort)
9120                                                                   ASCV_MAX_DVC_QNG_BEG
9121                                                                   + (ushort)
9122                                                                   tid_no),
9123                                                          cur_dvc_qng);
9124
9125                                         /*
9126                                          * Set the device queue depth to the
9127                                          * number of active requests when the
9128                                          * QUEUE FULL condition was encountered.
9129                                          */
9130                                         boardp->queue_full |= target_id;
9131                                         boardp->queue_full_cnt[tid_no] =
9132                                             cur_dvc_qng;
9133                                 }
9134                         }
9135                 }
9136                 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
9137                 return (0);
9138         }
9139 #if CC_VERY_LONG_SG_LIST
9140         else if (int_halt_code == ASC_HALT_HOST_COPY_SG_LIST_TO_RISC) {
9141                 uchar q_no;
9142                 ushort q_addr;
9143                 uchar sg_wk_q_no;
9144                 uchar first_sg_wk_q_no;
9145                 ASC_SCSI_Q *scsiq;      /* Ptr to driver request. */
9146                 ASC_SG_HEAD *sg_head;   /* Ptr to driver SG request. */
9147                 ASC_SG_LIST_Q scsi_sg_q;        /* Structure written to queue. */
9148                 ushort sg_list_dwords;
9149                 ushort sg_entry_cnt;
9150                 uchar next_qp;
9151                 int i;
9152
9153                 q_no = AscReadLramByte(iop_base, (ushort)ASCV_REQ_SG_LIST_QP);
9154                 if (q_no == ASC_QLINK_END)
9155                         return 0;
9156
9157                 q_addr = ASC_QNO_TO_QADDR(q_no);
9158
9159                 /*
9160                  * Convert the request's SRB pointer to a host ASC_SCSI_REQ
9161                  * structure pointer using a macro provided by the driver.
9162                  * The ASC_SCSI_REQ pointer provides a pointer to the
9163                  * host ASC_SG_HEAD structure.
9164                  */
9165                 /* Read request's SRB pointer. */
9166                 scsiq = (ASC_SCSI_Q *)
9167                     ASC_SRB2SCSIQ(ASC_U32_TO_VADDR(AscReadLramDWord(iop_base,
9168                                                                     (ushort)
9169                                                                     (q_addr +
9170                                                                      ASC_SCSIQ_D_SRBPTR))));
9171
9172                 /*
9173                  * Get request's first and working SG queue.
9174                  */
9175                 sg_wk_q_no = AscReadLramByte(iop_base,
9176                                              (ushort)(q_addr +
9177                                                       ASC_SCSIQ_B_SG_WK_QP));
9178
9179                 first_sg_wk_q_no = AscReadLramByte(iop_base,
9180                                                    (ushort)(q_addr +
9181                                                             ASC_SCSIQ_B_FIRST_SG_WK_QP));
9182
9183                 /*
9184                  * Reset request's working SG queue back to the
9185                  * first SG queue.
9186                  */
9187                 AscWriteLramByte(iop_base,
9188                                  (ushort)(q_addr +
9189                                           (ushort)ASC_SCSIQ_B_SG_WK_QP),
9190                                  first_sg_wk_q_no);
9191
9192                 sg_head = scsiq->sg_head;
9193
9194                 /*
9195                  * Set sg_entry_cnt to the number of SG elements
9196                  * that will be completed on this interrupt.
9197                  *
9198                  * Note: The allocated SG queues contain ASC_MAX_SG_LIST - 1
9199                  * SG elements. The data_cnt and data_addr fields which
9200                  * add 1 to the SG element capacity are not used when
9201                  * restarting SG handling after a halt.
9202                  */
9203                 if (scsiq->remain_sg_entry_cnt > (ASC_MAX_SG_LIST - 1)) {
9204                         sg_entry_cnt = ASC_MAX_SG_LIST - 1;
9205
9206                         /*
9207                          * Keep track of remaining number of SG elements that
9208                          * will need to be handled on the next interrupt.
9209                          */
9210                         scsiq->remain_sg_entry_cnt -= (ASC_MAX_SG_LIST - 1);
9211                 } else {
9212                         sg_entry_cnt = scsiq->remain_sg_entry_cnt;
9213                         scsiq->remain_sg_entry_cnt = 0;
9214                 }
9215
9216                 /*
9217                  * Copy SG elements into the list of allocated SG queues.
9218                  *
9219                  * Last index completed is saved in scsiq->next_sg_index.
9220                  */
9221                 next_qp = first_sg_wk_q_no;
9222                 q_addr = ASC_QNO_TO_QADDR(next_qp);
9223                 scsi_sg_q.sg_head_qp = q_no;
9224                 scsi_sg_q.cntl = QCSG_SG_XFER_LIST;
9225                 for (i = 0; i < sg_head->queue_cnt; i++) {
9226                         scsi_sg_q.seq_no = i + 1;
9227                         if (sg_entry_cnt > ASC_SG_LIST_PER_Q) {
9228                                 sg_list_dwords = (uchar)(ASC_SG_LIST_PER_Q * 2);
9229                                 sg_entry_cnt -= ASC_SG_LIST_PER_Q;
9230                                 /*
9231                                  * After very first SG queue RISC FW uses next
9232                                  * SG queue first element then checks sg_list_cnt
9233                                  * against zero and then decrements, so set
9234                                  * sg_list_cnt 1 less than number of SG elements
9235                                  * in each SG queue.
9236                                  */
9237                                 scsi_sg_q.sg_list_cnt = ASC_SG_LIST_PER_Q - 1;
9238                                 scsi_sg_q.sg_cur_list_cnt =
9239                                     ASC_SG_LIST_PER_Q - 1;
9240                         } else {
9241                                 /*
9242                                  * This is the last SG queue in the list of
9243                                  * allocated SG queues. If there are more
9244                                  * SG elements than will fit in the allocated
9245                                  * queues, then set the QCSG_SG_XFER_MORE flag.
9246                                  */
9247                                 if (scsiq->remain_sg_entry_cnt != 0) {
9248                                         scsi_sg_q.cntl |= QCSG_SG_XFER_MORE;
9249                                 } else {
9250                                         scsi_sg_q.cntl |= QCSG_SG_XFER_END;
9251                                 }
9252                                 /* equals sg_entry_cnt * 2 */
9253                                 sg_list_dwords = sg_entry_cnt << 1;
9254                                 scsi_sg_q.sg_list_cnt = sg_entry_cnt - 1;
9255                                 scsi_sg_q.sg_cur_list_cnt = sg_entry_cnt - 1;
9256                                 sg_entry_cnt = 0;
9257                         }
9258
9259                         scsi_sg_q.q_no = next_qp;
9260                         AscMemWordCopyPtrToLram(iop_base,
9261                                                 q_addr + ASC_SCSIQ_SGHD_CPY_BEG,
9262                                                 (uchar *)&scsi_sg_q,
9263                                                 sizeof(ASC_SG_LIST_Q) >> 1);
9264
9265                         AscMemDWordCopyPtrToLram(iop_base,
9266                                                  q_addr + ASC_SGQ_LIST_BEG,
9267                                                  (uchar *)&sg_head->
9268                                                  sg_list[scsiq->next_sg_index],
9269                                                  sg_list_dwords);
9270
9271                         scsiq->next_sg_index += ASC_SG_LIST_PER_Q;
9272
9273                         /*
9274                          * If the just completed SG queue contained the
9275                          * last SG element, then no more SG queues need
9276                          * to be written.
9277                          */
9278                         if (scsi_sg_q.cntl & QCSG_SG_XFER_END) {
9279                                 break;
9280                         }
9281
9282                         next_qp = AscReadLramByte(iop_base,
9283                                                   (ushort)(q_addr +
9284                                                            ASC_SCSIQ_B_FWD));
9285                         q_addr = ASC_QNO_TO_QADDR(next_qp);
9286                 }
9287
9288                 /*
9289                  * Clear the halt condition so the RISC will be restarted
9290                  * after the return.
9291                  */
9292                 AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
9293                 return (0);
9294         }
9295 #endif /* CC_VERY_LONG_SG_LIST */
9296         return (0);
9297 }
9298
9299 /*
9300  * void
9301  * DvcGetQinfo(PortAddr iop_base, ushort s_addr, uchar *inbuf, int words)
9302  *
9303  * Calling/Exit State:
9304  *    none
9305  *
9306  * Description:
9307  *     Input an ASC_QDONE_INFO structure from the chip
9308  */
9309 static void
9310 DvcGetQinfo(PortAddr iop_base, ushort s_addr, uchar *inbuf, int words)
9311 {
9312         int i;
9313         ushort word;
9314
9315         AscSetChipLramAddr(iop_base, s_addr);
9316         for (i = 0; i < 2 * words; i += 2) {
9317                 if (i == 10) {
9318                         continue;
9319                 }
9320                 word = inpw(iop_base + IOP_RAM_DATA);
9321                 inbuf[i] = word & 0xff;
9322                 inbuf[i + 1] = (word >> 8) & 0xff;
9323         }
9324         ASC_DBG_PRT_HEX(2, "DvcGetQinfo", inbuf, 2 * words);
9325 }
9326
9327 static uchar
9328 _AscCopyLramScsiDoneQ(PortAddr iop_base,
9329                       ushort q_addr,
9330                       ASC_QDONE_INFO *scsiq, ASC_DCNT max_dma_count)
9331 {
9332         ushort _val;
9333         uchar sg_queue_cnt;
9334
9335         DvcGetQinfo(iop_base,
9336                     q_addr + ASC_SCSIQ_DONE_INFO_BEG,
9337                     (uchar *)scsiq,
9338                     (sizeof(ASC_SCSIQ_2) + sizeof(ASC_SCSIQ_3)) / 2);
9339
9340         _val = AscReadLramWord(iop_base,
9341                                (ushort)(q_addr + (ushort)ASC_SCSIQ_B_STATUS));
9342         scsiq->q_status = (uchar)_val;
9343         scsiq->q_no = (uchar)(_val >> 8);
9344         _val = AscReadLramWord(iop_base,
9345                                (ushort)(q_addr + (ushort)ASC_SCSIQ_B_CNTL));
9346         scsiq->cntl = (uchar)_val;
9347         sg_queue_cnt = (uchar)(_val >> 8);
9348         _val = AscReadLramWord(iop_base,
9349                                (ushort)(q_addr +
9350                                         (ushort)ASC_SCSIQ_B_SENSE_LEN));
9351         scsiq->sense_len = (uchar)_val;
9352         scsiq->extra_bytes = (uchar)(_val >> 8);
9353
9354         /*
9355          * Read high word of remain bytes from alternate location.
9356          */
9357         scsiq->remain_bytes = (((ADV_DCNT)AscReadLramWord(iop_base,
9358                                                           (ushort)(q_addr +
9359                                                                    (ushort)
9360                                                                    ASC_SCSIQ_W_ALT_DC1)))
9361                                << 16);
9362         /*
9363          * Read low word of remain bytes from original location.
9364          */
9365         scsiq->remain_bytes += AscReadLramWord(iop_base,
9366                                                (ushort)(q_addr + (ushort)
9367                                                         ASC_SCSIQ_DW_REMAIN_XFER_CNT));
9368
9369         scsiq->remain_bytes &= max_dma_count;
9370         return sg_queue_cnt;
9371 }
9372
9373 /*
9374  * asc_isr_callback() - Second Level Interrupt Handler called by AscISR().
9375  *
9376  * Interrupt callback function for the Narrow SCSI Asc Library.
9377  */
9378 static void asc_isr_callback(ASC_DVC_VAR *asc_dvc_varp, ASC_QDONE_INFO *qdonep)
9379 {
9380         asc_board_t *boardp;
9381         struct scsi_cmnd *scp;
9382         struct Scsi_Host *shost;
9383
9384         ASC_DBG2(1, "asc_isr_callback: asc_dvc_varp 0x%lx, qdonep 0x%lx\n",
9385                  (ulong)asc_dvc_varp, (ulong)qdonep);
9386         ASC_DBG_PRT_ASC_QDONE_INFO(2, qdonep);
9387
9388         /*
9389          * Get the struct scsi_cmnd structure and Scsi_Host structure for the
9390          * command that has been completed.
9391          */
9392         scp = (struct scsi_cmnd *)ASC_U32_TO_VADDR(qdonep->d2.srb_ptr);
9393         ASC_DBG1(1, "asc_isr_callback: scp 0x%lx\n", (ulong)scp);
9394
9395         if (scp == NULL) {
9396                 ASC_PRINT("asc_isr_callback: scp is NULL\n");
9397                 return;
9398         }
9399         ASC_DBG_PRT_CDB(2, scp->cmnd, scp->cmd_len);
9400
9401         shost = scp->device->host;
9402         ASC_STATS(shost, callback);
9403         ASC_DBG1(1, "asc_isr_callback: shost 0x%lx\n", (ulong)shost);
9404
9405         boardp = ASC_BOARDP(shost);
9406         BUG_ON(asc_dvc_varp != &boardp->dvc_var.asc_dvc_var);
9407
9408         /*
9409          * 'qdonep' contains the command's ending status.
9410          */
9411         switch (qdonep->d3.done_stat) {
9412         case QD_NO_ERROR:
9413                 ASC_DBG(2, "asc_isr_callback: QD_NO_ERROR\n");
9414                 scp->result = 0;
9415
9416                 /*
9417                  * Check for an underrun condition.
9418                  *
9419                  * If there was no error and an underrun condition, then
9420                  * return the number of underrun bytes.
9421                  */
9422                 if (scp->request_bufflen != 0 && qdonep->remain_bytes != 0 &&
9423                     qdonep->remain_bytes <= scp->request_bufflen) {
9424                         ASC_DBG1(1,
9425                                  "asc_isr_callback: underrun condition %u bytes\n",
9426                                  (unsigned)qdonep->remain_bytes);
9427                         scp->resid = qdonep->remain_bytes;
9428                 }
9429                 break;
9430
9431         case QD_WITH_ERROR:
9432                 ASC_DBG(2, "asc_isr_callback: QD_WITH_ERROR\n");
9433                 switch (qdonep->d3.host_stat) {
9434                 case QHSTA_NO_ERROR:
9435                         if (qdonep->d3.scsi_stat == SAM_STAT_CHECK_CONDITION) {
9436                                 ASC_DBG(2,
9437                                         "asc_isr_callback: SAM_STAT_CHECK_CONDITION\n");
9438                                 ASC_DBG_PRT_SENSE(2, scp->sense_buffer,
9439                                                   sizeof(scp->sense_buffer));
9440                                 /*
9441                                  * Note: The 'status_byte()' macro used by
9442                                  * target drivers defined in scsi.h shifts the
9443                                  * status byte returned by host drivers right
9444                                  * by 1 bit.  This is why target drivers also
9445                                  * use right shifted status byte definitions.
9446                                  * For instance target drivers use
9447                                  * CHECK_CONDITION, defined to 0x1, instead of
9448                                  * the SCSI defined check condition value of
9449                                  * 0x2. Host drivers are supposed to return
9450                                  * the status byte as it is defined by SCSI.
9451                                  */
9452                                 scp->result = DRIVER_BYTE(DRIVER_SENSE) |
9453                                     STATUS_BYTE(qdonep->d3.scsi_stat);
9454                         } else {
9455                                 scp->result = STATUS_BYTE(qdonep->d3.scsi_stat);
9456                         }
9457                         break;
9458
9459                 default:
9460                         /* QHSTA error occurred */
9461                         ASC_DBG1(1, "asc_isr_callback: host_stat 0x%x\n",
9462                                  qdonep->d3.host_stat);
9463                         scp->result = HOST_BYTE(DID_BAD_TARGET);
9464                         break;
9465                 }
9466                 break;
9467
9468         case QD_ABORTED_BY_HOST:
9469                 ASC_DBG(1, "asc_isr_callback: QD_ABORTED_BY_HOST\n");
9470                 scp->result =
9471                     HOST_BYTE(DID_ABORT) | MSG_BYTE(qdonep->d3.
9472                                                     scsi_msg) |
9473                     STATUS_BYTE(qdonep->d3.scsi_stat);
9474                 break;
9475
9476         default:
9477                 ASC_DBG1(1, "asc_isr_callback: done_stat 0x%x\n",
9478                          qdonep->d3.done_stat);
9479                 scp->result =
9480                     HOST_BYTE(DID_ERROR) | MSG_BYTE(qdonep->d3.
9481                                                     scsi_msg) |
9482                     STATUS_BYTE(qdonep->d3.scsi_stat);
9483                 break;
9484         }
9485
9486         /*
9487          * If the 'init_tidmask' bit isn't already set for the target and the
9488          * current request finished normally, then set the bit for the target
9489          * to indicate that a device is present.
9490          */
9491         if ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(scp->device->id)) == 0 &&
9492             qdonep->d3.done_stat == QD_NO_ERROR &&
9493             qdonep->d3.host_stat == QHSTA_NO_ERROR) {
9494                 boardp->init_tidmask |= ADV_TID_TO_TIDMASK(scp->device->id);
9495         }
9496
9497         asc_scsi_done(scp);
9498
9499         return;
9500 }
9501
9502 static int AscIsrQDone(ASC_DVC_VAR *asc_dvc)
9503 {
9504         uchar next_qp;
9505         uchar n_q_used;
9506         uchar sg_list_qp;
9507         uchar sg_queue_cnt;
9508         uchar q_cnt;
9509         uchar done_q_tail;
9510         uchar tid_no;
9511         ASC_SCSI_BIT_ID_TYPE scsi_busy;
9512         ASC_SCSI_BIT_ID_TYPE target_id;
9513         PortAddr iop_base;
9514         ushort q_addr;
9515         ushort sg_q_addr;
9516         uchar cur_target_qng;
9517         ASC_QDONE_INFO scsiq_buf;
9518         ASC_QDONE_INFO *scsiq;
9519         int false_overrun;
9520
9521         iop_base = asc_dvc->iop_base;
9522         n_q_used = 1;
9523         scsiq = (ASC_QDONE_INFO *)&scsiq_buf;
9524         done_q_tail = (uchar)AscGetVarDoneQTail(iop_base);
9525         q_addr = ASC_QNO_TO_QADDR(done_q_tail);
9526         next_qp = AscReadLramByte(iop_base,
9527                                   (ushort)(q_addr + (ushort)ASC_SCSIQ_B_FWD));
9528         if (next_qp != ASC_QLINK_END) {
9529                 AscPutVarDoneQTail(iop_base, next_qp);
9530                 q_addr = ASC_QNO_TO_QADDR(next_qp);
9531                 sg_queue_cnt = _AscCopyLramScsiDoneQ(iop_base, q_addr, scsiq,
9532                                                      asc_dvc->max_dma_count);
9533                 AscWriteLramByte(iop_base,
9534                                  (ushort)(q_addr +
9535                                           (ushort)ASC_SCSIQ_B_STATUS),
9536                                  (uchar)(scsiq->
9537                                          q_status & (uchar)~(QS_READY |
9538                                                              QS_ABORTED)));
9539                 tid_no = ASC_TIX_TO_TID(scsiq->d2.target_ix);
9540                 target_id = ASC_TIX_TO_TARGET_ID(scsiq->d2.target_ix);
9541                 if ((scsiq->cntl & QC_SG_HEAD) != 0) {
9542                         sg_q_addr = q_addr;
9543                         sg_list_qp = next_qp;
9544                         for (q_cnt = 0; q_cnt < sg_queue_cnt; q_cnt++) {
9545                                 sg_list_qp = AscReadLramByte(iop_base,
9546                                                              (ushort)(sg_q_addr
9547                                                                       + (ushort)
9548                                                                       ASC_SCSIQ_B_FWD));
9549                                 sg_q_addr = ASC_QNO_TO_QADDR(sg_list_qp);
9550                                 if (sg_list_qp == ASC_QLINK_END) {
9551                                         AscSetLibErrorCode(asc_dvc,
9552                                                            ASCQ_ERR_SG_Q_LINKS);
9553                                         scsiq->d3.done_stat = QD_WITH_ERROR;
9554                                         scsiq->d3.host_stat =
9555                                             QHSTA_D_QDONE_SG_LIST_CORRUPTED;
9556                                         goto FATAL_ERR_QDONE;
9557                                 }
9558                                 AscWriteLramByte(iop_base,
9559                                                  (ushort)(sg_q_addr + (ushort)
9560                                                           ASC_SCSIQ_B_STATUS),
9561                                                  QS_FREE);
9562                         }
9563                         n_q_used = sg_queue_cnt + 1;
9564                         AscPutVarDoneQTail(iop_base, sg_list_qp);
9565                 }
9566                 if (asc_dvc->queue_full_or_busy & target_id) {
9567                         cur_target_qng = AscReadLramByte(iop_base,
9568                                                          (ushort)((ushort)
9569                                                                   ASC_QADR_BEG
9570                                                                   + (ushort)
9571                                                                   scsiq->d2.
9572                                                                   target_ix));
9573                         if (cur_target_qng < asc_dvc->max_dvc_qng[tid_no]) {
9574                                 scsi_busy = AscReadLramByte(iop_base, (ushort)
9575                                                             ASCV_SCSIBUSY_B);
9576                                 scsi_busy &= ~target_id;
9577                                 AscWriteLramByte(iop_base,
9578                                                  (ushort)ASCV_SCSIBUSY_B,
9579                                                  scsi_busy);
9580                                 asc_dvc->queue_full_or_busy &= ~target_id;
9581                         }
9582                 }
9583                 if (asc_dvc->cur_total_qng >= n_q_used) {
9584                         asc_dvc->cur_total_qng -= n_q_used;
9585                         if (asc_dvc->cur_dvc_qng[tid_no] != 0) {
9586                                 asc_dvc->cur_dvc_qng[tid_no]--;
9587                         }
9588                 } else {
9589                         AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CUR_QNG);
9590                         scsiq->d3.done_stat = QD_WITH_ERROR;
9591                         goto FATAL_ERR_QDONE;
9592                 }
9593                 if ((scsiq->d2.srb_ptr == 0UL) ||
9594                     ((scsiq->q_status & QS_ABORTED) != 0)) {
9595                         return (0x11);
9596                 } else if (scsiq->q_status == QS_DONE) {
9597                         false_overrun = FALSE;
9598                         if (scsiq->extra_bytes != 0) {
9599                                 scsiq->remain_bytes +=
9600                                     (ADV_DCNT)scsiq->extra_bytes;
9601                         }
9602                         if (scsiq->d3.done_stat == QD_WITH_ERROR) {
9603                                 if (scsiq->d3.host_stat ==
9604                                     QHSTA_M_DATA_OVER_RUN) {
9605                                         if ((scsiq->
9606                                              cntl & (QC_DATA_IN | QC_DATA_OUT))
9607                                             == 0) {
9608                                                 scsiq->d3.done_stat =
9609                                                     QD_NO_ERROR;
9610                                                 scsiq->d3.host_stat =
9611                                                     QHSTA_NO_ERROR;
9612                                         } else if (false_overrun) {
9613                                                 scsiq->d3.done_stat =
9614                                                     QD_NO_ERROR;
9615                                                 scsiq->d3.host_stat =
9616                                                     QHSTA_NO_ERROR;
9617                                         }
9618                                 } else if (scsiq->d3.host_stat ==
9619                                            QHSTA_M_HUNG_REQ_SCSI_BUS_RESET) {
9620                                         AscStopChip(iop_base);
9621                                         AscSetChipControl(iop_base,
9622                                                           (uchar)(CC_SCSI_RESET
9623                                                                   | CC_HALT));
9624                                         udelay(60);
9625                                         AscSetChipControl(iop_base, CC_HALT);
9626                                         AscSetChipStatus(iop_base,
9627                                                          CIW_CLR_SCSI_RESET_INT);
9628                                         AscSetChipStatus(iop_base, 0);
9629                                         AscSetChipControl(iop_base, 0);
9630                                 }
9631                         }
9632                         if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
9633                                 asc_isr_callback(asc_dvc, scsiq);
9634                         } else {
9635                                 if ((AscReadLramByte(iop_base,
9636                                                      (ushort)(q_addr + (ushort)
9637                                                               ASC_SCSIQ_CDB_BEG))
9638                                      == START_STOP)) {
9639                                         asc_dvc->unit_not_ready &= ~target_id;
9640                                         if (scsiq->d3.done_stat != QD_NO_ERROR) {
9641                                                 asc_dvc->start_motor &=
9642                                                     ~target_id;
9643                                         }
9644                                 }
9645                         }
9646                         return (1);
9647                 } else {
9648                         AscSetLibErrorCode(asc_dvc, ASCQ_ERR_Q_STATUS);
9649  FATAL_ERR_QDONE:
9650                         if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
9651                                 asc_isr_callback(asc_dvc, scsiq);
9652                         }
9653                         return (0x80);
9654                 }
9655         }
9656         return (0);
9657 }
9658
9659 static int AscISR(ASC_DVC_VAR *asc_dvc)
9660 {
9661         ASC_CS_TYPE chipstat;
9662         PortAddr iop_base;
9663         ushort saved_ram_addr;
9664         uchar ctrl_reg;
9665         uchar saved_ctrl_reg;
9666         int int_pending;
9667         int status;
9668         uchar host_flag;
9669
9670         iop_base = asc_dvc->iop_base;
9671         int_pending = FALSE;
9672
9673         if (AscIsIntPending(iop_base) == 0)
9674                 return int_pending;
9675
9676         if ((asc_dvc->init_state & ASC_INIT_STATE_END_LOAD_MC) == 0) {
9677                 return ERR;
9678         }
9679         if (asc_dvc->in_critical_cnt != 0) {
9680                 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_ON_CRITICAL);
9681                 return ERR;
9682         }
9683         if (asc_dvc->is_in_int) {
9684                 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_RE_ENTRY);
9685                 return ERR;
9686         }
9687         asc_dvc->is_in_int = TRUE;
9688         ctrl_reg = AscGetChipControl(iop_base);
9689         saved_ctrl_reg = ctrl_reg & (~(CC_SCSI_RESET | CC_CHIP_RESET |
9690                                        CC_SINGLE_STEP | CC_DIAG | CC_TEST));
9691         chipstat = AscGetChipStatus(iop_base);
9692         if (chipstat & CSW_SCSI_RESET_LATCH) {
9693                 if (!(asc_dvc->bus_type & (ASC_IS_VL | ASC_IS_EISA))) {
9694                         int i = 10;
9695                         int_pending = TRUE;
9696                         asc_dvc->sdtr_done = 0;
9697                         saved_ctrl_reg &= (uchar)(~CC_HALT);
9698                         while ((AscGetChipStatus(iop_base) &
9699                                 CSW_SCSI_RESET_ACTIVE) && (i-- > 0)) {
9700                                 mdelay(100);
9701                         }
9702                         AscSetChipControl(iop_base, (CC_CHIP_RESET | CC_HALT));
9703                         AscSetChipControl(iop_base, CC_HALT);
9704                         AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
9705                         AscSetChipStatus(iop_base, 0);
9706                         chipstat = AscGetChipStatus(iop_base);
9707                 }
9708         }
9709         saved_ram_addr = AscGetChipLramAddr(iop_base);
9710         host_flag = AscReadLramByte(iop_base,
9711                                     ASCV_HOST_FLAG_B) &
9712             (uchar)(~ASC_HOST_FLAG_IN_ISR);
9713         AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
9714                          (uchar)(host_flag | (uchar)ASC_HOST_FLAG_IN_ISR));
9715         if ((chipstat & CSW_INT_PENDING) || (int_pending)) {
9716                 AscAckInterrupt(iop_base);
9717                 int_pending = TRUE;
9718                 if ((chipstat & CSW_HALTED) && (ctrl_reg & CC_SINGLE_STEP)) {
9719                         if (AscIsrChipHalted(asc_dvc) == ERR) {
9720                                 goto ISR_REPORT_QDONE_FATAL_ERROR;
9721                         } else {
9722                                 saved_ctrl_reg &= (uchar)(~CC_HALT);
9723                         }
9724                 } else {
9725  ISR_REPORT_QDONE_FATAL_ERROR:
9726                         if ((asc_dvc->dvc_cntl & ASC_CNTL_INT_MULTI_Q) != 0) {
9727                                 while (((status =
9728                                          AscIsrQDone(asc_dvc)) & 0x01) != 0) {
9729                                 }
9730                         } else {
9731                                 do {
9732                                         if ((status =
9733                                              AscIsrQDone(asc_dvc)) == 1) {
9734                                                 break;
9735                                         }
9736                                 } while (status == 0x11);
9737                         }
9738                         if ((status & 0x80) != 0)
9739                                 int_pending = ERR;
9740                 }
9741         }
9742         AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
9743         AscSetChipLramAddr(iop_base, saved_ram_addr);
9744         AscSetChipControl(iop_base, saved_ctrl_reg);
9745         asc_dvc->is_in_int = FALSE;
9746         return int_pending;
9747 }
9748
9749 /*
9750  * advansys_reset()
9751  *
9752  * Reset the bus associated with the command 'scp'.
9753  *
9754  * This function runs its own thread. Interrupts must be blocked but
9755  * sleeping is allowed and no locking other than for host structures is
9756  * required. Returns SUCCESS or FAILED.
9757  */
9758 static int advansys_reset(struct scsi_cmnd *scp)
9759 {
9760         struct Scsi_Host *shost;
9761         asc_board_t *boardp;
9762         ASC_DVC_VAR *asc_dvc_varp;
9763         ADV_DVC_VAR *adv_dvc_varp;
9764         ulong flags;
9765         int status;
9766         int ret = SUCCESS;
9767
9768         ASC_DBG1(1, "advansys_reset: 0x%lx\n", (ulong)scp);
9769
9770 #ifdef ADVANSYS_STATS
9771         if (scp->device->host != NULL) {
9772                 ASC_STATS(scp->device->host, reset);
9773         }
9774 #endif /* ADVANSYS_STATS */
9775
9776         if ((shost = scp->device->host) == NULL) {
9777                 scp->result = HOST_BYTE(DID_ERROR);
9778                 return FAILED;
9779         }
9780
9781         boardp = ASC_BOARDP(shost);
9782
9783         ASC_PRINT1("advansys_reset: board %d: SCSI bus reset started...\n",
9784                    boardp->id);
9785         /*
9786          * Check for re-entrancy.
9787          */
9788         spin_lock_irqsave(&boardp->lock, flags);
9789         if (boardp->flags & ASC_HOST_IN_RESET) {
9790                 spin_unlock_irqrestore(&boardp->lock, flags);
9791                 return FAILED;
9792         }
9793         boardp->flags |= ASC_HOST_IN_RESET;
9794         spin_unlock_irqrestore(&boardp->lock, flags);
9795
9796         if (ASC_NARROW_BOARD(boardp)) {
9797                 /*
9798                  * Narrow Board
9799                  */
9800                 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
9801
9802                 /*
9803                  * Reset the chip and SCSI bus.
9804                  */
9805                 ASC_DBG(1, "advansys_reset: before AscInitAsc1000Driver()\n");
9806                 status = AscInitAsc1000Driver(asc_dvc_varp);
9807
9808                 /* Refer to ASC_IERR_* defintions for meaning of 'err_code'. */
9809                 if (asc_dvc_varp->err_code) {
9810                         ASC_PRINT2("advansys_reset: board %d: SCSI bus reset "
9811                                    "error: 0x%x\n", boardp->id,
9812                                    asc_dvc_varp->err_code);
9813                         ret = FAILED;
9814                 } else if (status) {
9815                         ASC_PRINT2("advansys_reset: board %d: SCSI bus reset "
9816                                    "warning: 0x%x\n", boardp->id, status);
9817                 } else {
9818                         ASC_PRINT1("advansys_reset: board %d: SCSI bus reset "
9819                                    "successful.\n", boardp->id);
9820                 }
9821
9822                 ASC_DBG(1, "advansys_reset: after AscInitAsc1000Driver()\n");
9823                 spin_lock_irqsave(&boardp->lock, flags);
9824
9825         } else {
9826                 /*
9827                  * Wide Board
9828                  *
9829                  * If the suggest reset bus flags are set, then reset the bus.
9830                  * Otherwise only reset the device.
9831                  */
9832                 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
9833
9834                 /*
9835                  * Reset the target's SCSI bus.
9836                  */
9837                 ASC_DBG(1, "advansys_reset: before AdvResetChipAndSB()\n");
9838                 switch (AdvResetChipAndSB(adv_dvc_varp)) {
9839                 case ASC_TRUE:
9840                         ASC_PRINT1("advansys_reset: board %d: SCSI bus reset "
9841                                    "successful.\n", boardp->id);
9842                         break;
9843                 case ASC_FALSE:
9844                 default:
9845                         ASC_PRINT1("advansys_reset: board %d: SCSI bus reset "
9846                                    "error.\n", boardp->id);
9847                         ret = FAILED;
9848                         break;
9849                 }
9850                 spin_lock_irqsave(&boardp->lock, flags);
9851                 AdvISR(adv_dvc_varp);
9852         }
9853         /* Board lock is held. */
9854
9855         /* Save the time of the most recently completed reset. */
9856         boardp->last_reset = jiffies;
9857
9858         /* Clear reset flag. */
9859         boardp->flags &= ~ASC_HOST_IN_RESET;
9860         spin_unlock_irqrestore(&boardp->lock, flags);
9861
9862         ASC_DBG1(1, "advansys_reset: ret %d\n", ret);
9863
9864         return ret;
9865 }
9866
9867 /*
9868  * advansys_biosparam()
9869  *
9870  * Translate disk drive geometry if the "BIOS greater than 1 GB"
9871  * support is enabled for a drive.
9872  *
9873  * ip (information pointer) is an int array with the following definition:
9874  * ip[0]: heads
9875  * ip[1]: sectors
9876  * ip[2]: cylinders
9877  */
9878 static int
9879 advansys_biosparam(struct scsi_device *sdev, struct block_device *bdev,
9880                    sector_t capacity, int ip[])
9881 {
9882         asc_board_t *boardp;
9883
9884         ASC_DBG(1, "advansys_biosparam: begin\n");
9885         ASC_STATS(sdev->host, biosparam);
9886         boardp = ASC_BOARDP(sdev->host);
9887         if (ASC_NARROW_BOARD(boardp)) {
9888                 if ((boardp->dvc_var.asc_dvc_var.dvc_cntl &
9889                      ASC_CNTL_BIOS_GT_1GB) && capacity > 0x200000) {
9890                         ip[0] = 255;
9891                         ip[1] = 63;
9892                 } else {
9893                         ip[0] = 64;
9894                         ip[1] = 32;
9895                 }
9896         } else {
9897                 if ((boardp->dvc_var.adv_dvc_var.bios_ctrl &
9898                      BIOS_CTRL_EXTENDED_XLAT) && capacity > 0x200000) {
9899                         ip[0] = 255;
9900                         ip[1] = 63;
9901                 } else {
9902                         ip[0] = 64;
9903                         ip[1] = 32;
9904                 }
9905         }
9906         ip[2] = (unsigned long)capacity / (ip[0] * ip[1]);
9907         ASC_DBG(1, "advansys_biosparam: end\n");
9908         return 0;
9909 }
9910
9911 /*
9912  * First-level interrupt handler.
9913  *
9914  * 'dev_id' is a pointer to the interrupting adapter's Scsi_Host.
9915  */
9916 static irqreturn_t advansys_interrupt(int irq, void *dev_id)
9917 {
9918         unsigned long flags;
9919         struct Scsi_Host *shost = dev_id;
9920         asc_board_t *boardp = ASC_BOARDP(shost);
9921         irqreturn_t result = IRQ_NONE;
9922
9923         ASC_DBG1(2, "advansys_interrupt: boardp 0x%p\n", boardp);
9924         spin_lock_irqsave(&boardp->lock, flags);
9925         if (ASC_NARROW_BOARD(boardp)) {
9926                 if (AscIsIntPending(shost->io_port)) {
9927                         result = IRQ_HANDLED;
9928                         ASC_STATS(shost, interrupt);
9929                         ASC_DBG(1, "advansys_interrupt: before AscISR()\n");
9930                         AscISR(&boardp->dvc_var.asc_dvc_var);
9931                 }
9932         } else {
9933                 ASC_DBG(1, "advansys_interrupt: before AdvISR()\n");
9934                 if (AdvISR(&boardp->dvc_var.adv_dvc_var)) {
9935                         result = IRQ_HANDLED;
9936                         ASC_STATS(shost, interrupt);
9937                 }
9938         }
9939         spin_unlock_irqrestore(&boardp->lock, flags);
9940
9941         ASC_DBG(1, "advansys_interrupt: end\n");
9942         return result;
9943 }
9944
9945 static int AscHostReqRiscHalt(PortAddr iop_base)
9946 {
9947         int count = 0;
9948         int sta = 0;
9949         uchar saved_stop_code;
9950
9951         if (AscIsChipHalted(iop_base))
9952                 return (1);
9953         saved_stop_code = AscReadLramByte(iop_base, ASCV_STOP_CODE_B);
9954         AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
9955                          ASC_STOP_HOST_REQ_RISC_HALT | ASC_STOP_REQ_RISC_STOP);
9956         do {
9957                 if (AscIsChipHalted(iop_base)) {
9958                         sta = 1;
9959                         break;
9960                 }
9961                 mdelay(100);
9962         } while (count++ < 20);
9963         AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, saved_stop_code);
9964         return (sta);
9965 }
9966
9967 static int
9968 AscSetRunChipSynRegAtID(PortAddr iop_base, uchar tid_no, uchar sdtr_data)
9969 {
9970         int sta = FALSE;
9971
9972         if (AscHostReqRiscHalt(iop_base)) {
9973                 sta = AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
9974                 AscStartChip(iop_base);
9975         }
9976         return sta;
9977 }
9978
9979 static void AscAsyncFix(ASC_DVC_VAR *asc_dvc, struct scsi_device *sdev)
9980 {
9981         char type = sdev->type;
9982         ASC_SCSI_BIT_ID_TYPE tid_bits = 1 << sdev->id;
9983
9984         if (!(asc_dvc->bug_fix_cntl & ASC_BUG_FIX_ASYN_USE_SYN))
9985                 return;
9986         if (asc_dvc->init_sdtr & tid_bits)
9987                 return;
9988
9989         if ((type == TYPE_ROM) && (strncmp(sdev->vendor, "HP ", 3) == 0))
9990                 asc_dvc->pci_fix_asyn_xfer_always |= tid_bits;
9991
9992         asc_dvc->pci_fix_asyn_xfer |= tid_bits;
9993         if ((type == TYPE_PROCESSOR) || (type == TYPE_SCANNER) ||
9994             (type == TYPE_ROM) || (type == TYPE_TAPE))
9995                 asc_dvc->pci_fix_asyn_xfer &= ~tid_bits;
9996
9997         if (asc_dvc->pci_fix_asyn_xfer & tid_bits)
9998                 AscSetRunChipSynRegAtID(asc_dvc->iop_base, sdev->id,
9999                                         ASYN_SDTR_DATA_FIX_PCI_REV_AB);
10000 }
10001
10002 static void
10003 advansys_narrow_slave_configure(struct scsi_device *sdev, ASC_DVC_VAR *asc_dvc)
10004 {
10005         ASC_SCSI_BIT_ID_TYPE tid_bit = 1 << sdev->id;
10006         ASC_SCSI_BIT_ID_TYPE orig_use_tagged_qng = asc_dvc->use_tagged_qng;
10007
10008         if (sdev->lun == 0) {
10009                 ASC_SCSI_BIT_ID_TYPE orig_init_sdtr = asc_dvc->init_sdtr;
10010                 if ((asc_dvc->cfg->sdtr_enable & tid_bit) && sdev->sdtr) {
10011                         asc_dvc->init_sdtr |= tid_bit;
10012                 } else {
10013                         asc_dvc->init_sdtr &= ~tid_bit;
10014                 }
10015
10016                 if (orig_init_sdtr != asc_dvc->init_sdtr)
10017                         AscAsyncFix(asc_dvc, sdev);
10018         }
10019
10020         if (sdev->tagged_supported) {
10021                 if (asc_dvc->cfg->cmd_qng_enabled & tid_bit) {
10022                         if (sdev->lun == 0) {
10023                                 asc_dvc->cfg->can_tagged_qng |= tid_bit;
10024                                 asc_dvc->use_tagged_qng |= tid_bit;
10025                         }
10026                         scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG,
10027                                                 asc_dvc->max_dvc_qng[sdev->id]);
10028                 }
10029         } else {
10030                 if (sdev->lun == 0) {
10031                         asc_dvc->cfg->can_tagged_qng &= ~tid_bit;
10032                         asc_dvc->use_tagged_qng &= ~tid_bit;
10033                 }
10034                 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
10035         }
10036
10037         if ((sdev->lun == 0) &&
10038             (orig_use_tagged_qng != asc_dvc->use_tagged_qng)) {
10039                 AscWriteLramByte(asc_dvc->iop_base, ASCV_DISC_ENABLE_B,
10040                                  asc_dvc->cfg->disc_enable);
10041                 AscWriteLramByte(asc_dvc->iop_base, ASCV_USE_TAGGED_QNG_B,
10042                                  asc_dvc->use_tagged_qng);
10043                 AscWriteLramByte(asc_dvc->iop_base, ASCV_CAN_TAGGED_QNG_B,
10044                                  asc_dvc->cfg->can_tagged_qng);
10045
10046                 asc_dvc->max_dvc_qng[sdev->id] =
10047                                         asc_dvc->cfg->max_tag_qng[sdev->id];
10048                 AscWriteLramByte(asc_dvc->iop_base,
10049                                  (ushort)(ASCV_MAX_DVC_QNG_BEG + sdev->id),
10050                                  asc_dvc->max_dvc_qng[sdev->id]);
10051         }
10052 }
10053
10054 /*
10055  * Wide Transfers
10056  *
10057  * If the EEPROM enabled WDTR for the device and the device supports wide
10058  * bus (16 bit) transfers, then turn on the device's 'wdtr_able' bit and
10059  * write the new value to the microcode.
10060  */
10061 static void
10062 advansys_wide_enable_wdtr(AdvPortAddr iop_base, unsigned short tidmask)
10063 {
10064         unsigned short cfg_word;
10065         AdvReadWordLram(iop_base, ASC_MC_WDTR_ABLE, cfg_word);
10066         if ((cfg_word & tidmask) != 0)
10067                 return;
10068
10069         cfg_word |= tidmask;
10070         AdvWriteWordLram(iop_base, ASC_MC_WDTR_ABLE, cfg_word);
10071
10072         /*
10073          * Clear the microcode SDTR and WDTR negotiation done indicators for
10074          * the target to cause it to negotiate with the new setting set above.
10075          * WDTR when accepted causes the target to enter asynchronous mode, so
10076          * SDTR must be negotiated.
10077          */
10078         AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
10079         cfg_word &= ~tidmask;
10080         AdvWriteWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
10081         AdvReadWordLram(iop_base, ASC_MC_WDTR_DONE, cfg_word);
10082         cfg_word &= ~tidmask;
10083         AdvWriteWordLram(iop_base, ASC_MC_WDTR_DONE, cfg_word);
10084 }
10085
10086 /*
10087  * Synchronous Transfers
10088  *
10089  * If the EEPROM enabled SDTR for the device and the device
10090  * supports synchronous transfers, then turn on the device's
10091  * 'sdtr_able' bit. Write the new value to the microcode.
10092  */
10093 static void
10094 advansys_wide_enable_sdtr(AdvPortAddr iop_base, unsigned short tidmask)
10095 {
10096         unsigned short cfg_word;
10097         AdvReadWordLram(iop_base, ASC_MC_SDTR_ABLE, cfg_word);
10098         if ((cfg_word & tidmask) != 0)
10099                 return;
10100
10101         cfg_word |= tidmask;
10102         AdvWriteWordLram(iop_base, ASC_MC_SDTR_ABLE, cfg_word);
10103
10104         /*
10105          * Clear the microcode "SDTR negotiation" done indicator for the
10106          * target to cause it to negotiate with the new setting set above.
10107          */
10108         AdvReadWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
10109         cfg_word &= ~tidmask;
10110         AdvWriteWordLram(iop_base, ASC_MC_SDTR_DONE, cfg_word);
10111 }
10112
10113 /*
10114  * PPR (Parallel Protocol Request) Capable
10115  *
10116  * If the device supports DT mode, then it must be PPR capable.
10117  * The PPR message will be used in place of the SDTR and WDTR
10118  * messages to negotiate synchronous speed and offset, transfer
10119  * width, and protocol options.
10120  */
10121 static void advansys_wide_enable_ppr(ADV_DVC_VAR *adv_dvc,
10122                                 AdvPortAddr iop_base, unsigned short tidmask)
10123 {
10124         AdvReadWordLram(iop_base, ASC_MC_PPR_ABLE, adv_dvc->ppr_able);
10125         adv_dvc->ppr_able |= tidmask;
10126         AdvWriteWordLram(iop_base, ASC_MC_PPR_ABLE, adv_dvc->ppr_able);
10127 }
10128
10129 static void
10130 advansys_wide_slave_configure(struct scsi_device *sdev, ADV_DVC_VAR *adv_dvc)
10131 {
10132         AdvPortAddr iop_base = adv_dvc->iop_base;
10133         unsigned short tidmask = 1 << sdev->id;
10134
10135         if (sdev->lun == 0) {
10136                 /*
10137                  * Handle WDTR, SDTR, and Tag Queuing. If the feature
10138                  * is enabled in the EEPROM and the device supports the
10139                  * feature, then enable it in the microcode.
10140                  */
10141
10142                 if ((adv_dvc->wdtr_able & tidmask) && sdev->wdtr)
10143                         advansys_wide_enable_wdtr(iop_base, tidmask);
10144                 if ((adv_dvc->sdtr_able & tidmask) && sdev->sdtr)
10145                         advansys_wide_enable_sdtr(iop_base, tidmask);
10146                 if (adv_dvc->chip_type == ADV_CHIP_ASC38C1600 && sdev->ppr)
10147                         advansys_wide_enable_ppr(adv_dvc, iop_base, tidmask);
10148
10149                 /*
10150                  * Tag Queuing is disabled for the BIOS which runs in polled
10151                  * mode and would see no benefit from Tag Queuing. Also by
10152                  * disabling Tag Queuing in the BIOS devices with Tag Queuing
10153                  * bugs will at least work with the BIOS.
10154                  */
10155                 if ((adv_dvc->tagqng_able & tidmask) &&
10156                     sdev->tagged_supported) {
10157                         unsigned short cfg_word;
10158                         AdvReadWordLram(iop_base, ASC_MC_TAGQNG_ABLE, cfg_word);
10159                         cfg_word |= tidmask;
10160                         AdvWriteWordLram(iop_base, ASC_MC_TAGQNG_ABLE,
10161                                          cfg_word);
10162                         AdvWriteByteLram(iop_base,
10163                                          ASC_MC_NUMBER_OF_MAX_CMD + sdev->id,
10164                                          adv_dvc->max_dvc_qng);
10165                 }
10166         }
10167
10168         if ((adv_dvc->tagqng_able & tidmask) && sdev->tagged_supported) {
10169                 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG,
10170                                         adv_dvc->max_dvc_qng);
10171         } else {
10172                 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
10173         }
10174 }
10175
10176 /*
10177  * Set the number of commands to queue per device for the
10178  * specified host adapter.
10179  */
10180 static int advansys_slave_configure(struct scsi_device *sdev)
10181 {
10182         asc_board_t *boardp = ASC_BOARDP(sdev->host);
10183         boardp->flags |= ASC_SELECT_QUEUE_DEPTHS;
10184
10185         if (ASC_NARROW_BOARD(boardp))
10186                 advansys_narrow_slave_configure(sdev,
10187                                                 &boardp->dvc_var.asc_dvc_var);
10188         else
10189                 advansys_wide_slave_configure(sdev,
10190                                                 &boardp->dvc_var.adv_dvc_var);
10191
10192         return 0;
10193 }
10194
10195 /*
10196  * Build a request structure for the Asc Library (Narrow Board).
10197  *
10198  * The global structures 'asc_scsi_q' and 'asc_sg_head' are
10199  * used to build the request.
10200  *
10201  * If an error occurs, then return ASC_ERROR.
10202  */
10203 static int asc_build_req(asc_board_t *boardp, struct scsi_cmnd *scp)
10204 {
10205         /*
10206          * Mutually exclusive access is required to 'asc_scsi_q' and
10207          * 'asc_sg_head' until after the request is started.
10208          */
10209         memset(&asc_scsi_q, 0, sizeof(ASC_SCSI_Q));
10210
10211         /*
10212          * Point the ASC_SCSI_Q to the 'struct scsi_cmnd'.
10213          */
10214         asc_scsi_q.q2.srb_ptr = ASC_VADDR_TO_U32(scp);
10215
10216         /*
10217          * Build the ASC_SCSI_Q request.
10218          */
10219         asc_scsi_q.cdbptr = &scp->cmnd[0];
10220         asc_scsi_q.q2.cdb_len = scp->cmd_len;
10221         asc_scsi_q.q1.target_id = ASC_TID_TO_TARGET_ID(scp->device->id);
10222         asc_scsi_q.q1.target_lun = scp->device->lun;
10223         asc_scsi_q.q2.target_ix =
10224             ASC_TIDLUN_TO_IX(scp->device->id, scp->device->lun);
10225         asc_scsi_q.q1.sense_addr =
10226             cpu_to_le32(virt_to_bus(&scp->sense_buffer[0]));
10227         asc_scsi_q.q1.sense_len = sizeof(scp->sense_buffer);
10228
10229         /*
10230          * If there are any outstanding requests for the current target,
10231          * then every 255th request send an ORDERED request. This heuristic
10232          * tries to retain the benefit of request sorting while preventing
10233          * request starvation. 255 is the max number of tags or pending commands
10234          * a device may have outstanding.
10235          *
10236          * The request count is incremented below for every successfully
10237          * started request.
10238          *
10239          */
10240         if ((boardp->dvc_var.asc_dvc_var.cur_dvc_qng[scp->device->id] > 0) &&
10241             (boardp->reqcnt[scp->device->id] % 255) == 0) {
10242                 asc_scsi_q.q2.tag_code = MSG_ORDERED_TAG;
10243         } else {
10244                 asc_scsi_q.q2.tag_code = MSG_SIMPLE_TAG;
10245         }
10246
10247         /*
10248          * Build ASC_SCSI_Q for a contiguous buffer or a scatter-gather
10249          * buffer command.
10250          */
10251         if (scp->use_sg == 0) {
10252                 /*
10253                  * CDB request of single contiguous buffer.
10254                  */
10255                 ASC_STATS(scp->device->host, cont_cnt);
10256                 scp->SCp.dma_handle = scp->request_bufflen ?
10257                     dma_map_single(boardp->dev, scp->request_buffer,
10258                                    scp->request_bufflen,
10259                                    scp->sc_data_direction) : 0;
10260                 asc_scsi_q.q1.data_addr = cpu_to_le32(scp->SCp.dma_handle);
10261                 asc_scsi_q.q1.data_cnt = cpu_to_le32(scp->request_bufflen);
10262                 ASC_STATS_ADD(scp->device->host, cont_xfer,
10263                               ASC_CEILING(scp->request_bufflen, 512));
10264                 asc_scsi_q.q1.sg_queue_cnt = 0;
10265                 asc_scsi_q.sg_head = NULL;
10266         } else {
10267                 /*
10268                  * CDB scatter-gather request list.
10269                  */
10270                 int sgcnt;
10271                 int use_sg;
10272                 struct scatterlist *slp;
10273
10274                 slp = (struct scatterlist *)scp->request_buffer;
10275                 use_sg = dma_map_sg(boardp->dev, slp, scp->use_sg,
10276                                     scp->sc_data_direction);
10277
10278                 if (use_sg > scp->device->host->sg_tablesize) {
10279                         ASC_PRINT3("asc_build_req: board %d: use_sg %d > "
10280                                    "sg_tablesize %d\n", boardp->id, use_sg,
10281                                    scp->device->host->sg_tablesize);
10282                         dma_unmap_sg(boardp->dev, slp, scp->use_sg,
10283                                      scp->sc_data_direction);
10284                         scp->result = HOST_BYTE(DID_ERROR);
10285                         return ASC_ERROR;
10286                 }
10287
10288                 ASC_STATS(scp->device->host, sg_cnt);
10289
10290                 /*
10291                  * Use global ASC_SG_HEAD structure and set the ASC_SCSI_Q
10292                  * structure to point to it.
10293                  */
10294                 memset(&asc_sg_head, 0, sizeof(ASC_SG_HEAD));
10295
10296                 asc_scsi_q.q1.cntl |= QC_SG_HEAD;
10297                 asc_scsi_q.sg_head = &asc_sg_head;
10298                 asc_scsi_q.q1.data_cnt = 0;
10299                 asc_scsi_q.q1.data_addr = 0;
10300                 /* This is a byte value, otherwise it would need to be swapped. */
10301                 asc_sg_head.entry_cnt = asc_scsi_q.q1.sg_queue_cnt = use_sg;
10302                 ASC_STATS_ADD(scp->device->host, sg_elem,
10303                               asc_sg_head.entry_cnt);
10304
10305                 /*
10306                  * Convert scatter-gather list into ASC_SG_HEAD list.
10307                  */
10308                 for (sgcnt = 0; sgcnt < use_sg; sgcnt++, slp++) {
10309                         asc_sg_head.sg_list[sgcnt].addr =
10310                             cpu_to_le32(sg_dma_address(slp));
10311                         asc_sg_head.sg_list[sgcnt].bytes =
10312                             cpu_to_le32(sg_dma_len(slp));
10313                         ASC_STATS_ADD(scp->device->host, sg_xfer,
10314                                       ASC_CEILING(sg_dma_len(slp), 512));
10315                 }
10316         }
10317
10318         ASC_DBG_PRT_ASC_SCSI_Q(2, &asc_scsi_q);
10319         ASC_DBG_PRT_CDB(1, scp->cmnd, scp->cmd_len);
10320
10321         return ASC_NOERROR;
10322 }
10323
10324 /*
10325  * Build scatter-gather list for Adv Library (Wide Board).
10326  *
10327  * Additional ADV_SG_BLOCK structures will need to be allocated
10328  * if the total number of scatter-gather elements exceeds
10329  * NO_OF_SG_PER_BLOCK (15). The ADV_SG_BLOCK structures are
10330  * assumed to be physically contiguous.
10331  *
10332  * Return:
10333  *      ADV_SUCCESS(1) - SG List successfully created
10334  *      ADV_ERROR(-1) - SG List creation failed
10335  */
10336 static int
10337 adv_get_sglist(asc_board_t *boardp, adv_req_t *reqp, struct scsi_cmnd *scp,
10338                int use_sg)
10339 {
10340         adv_sgblk_t *sgblkp;
10341         ADV_SCSI_REQ_Q *scsiqp;
10342         struct scatterlist *slp;
10343         int sg_elem_cnt;
10344         ADV_SG_BLOCK *sg_block, *prev_sg_block;
10345         ADV_PADDR sg_block_paddr;
10346         int i;
10347
10348         scsiqp = (ADV_SCSI_REQ_Q *)ADV_32BALIGN(&reqp->scsi_req_q);
10349         slp = (struct scatterlist *)scp->request_buffer;
10350         sg_elem_cnt = use_sg;
10351         prev_sg_block = NULL;
10352         reqp->sgblkp = NULL;
10353
10354         for (;;) {
10355                 /*
10356                  * Allocate a 'adv_sgblk_t' structure from the board free
10357                  * list. One 'adv_sgblk_t' structure holds NO_OF_SG_PER_BLOCK
10358                  * (15) scatter-gather elements.
10359                  */
10360                 if ((sgblkp = boardp->adv_sgblkp) == NULL) {
10361                         ASC_DBG(1, "adv_get_sglist: no free adv_sgblk_t\n");
10362                         ASC_STATS(scp->device->host, adv_build_nosg);
10363
10364                         /*
10365                          * Allocation failed. Free 'adv_sgblk_t' structures
10366                          * already allocated for the request.
10367                          */
10368                         while ((sgblkp = reqp->sgblkp) != NULL) {
10369                                 /* Remove 'sgblkp' from the request list. */
10370                                 reqp->sgblkp = sgblkp->next_sgblkp;
10371
10372                                 /* Add 'sgblkp' to the board free list. */
10373                                 sgblkp->next_sgblkp = boardp->adv_sgblkp;
10374                                 boardp->adv_sgblkp = sgblkp;
10375                         }
10376                         return ASC_BUSY;
10377                 }
10378
10379                 /* Complete 'adv_sgblk_t' board allocation. */
10380                 boardp->adv_sgblkp = sgblkp->next_sgblkp;
10381                 sgblkp->next_sgblkp = NULL;
10382
10383                 /*
10384                  * Get 8 byte aligned virtual and physical addresses
10385                  * for the allocated ADV_SG_BLOCK structure.
10386                  */
10387                 sg_block = (ADV_SG_BLOCK *)ADV_8BALIGN(&sgblkp->sg_block);
10388                 sg_block_paddr = virt_to_bus(sg_block);
10389
10390                 /*
10391                  * Check if this is the first 'adv_sgblk_t' for the
10392                  * request.
10393                  */
10394                 if (reqp->sgblkp == NULL) {
10395                         /* Request's first scatter-gather block. */
10396                         reqp->sgblkp = sgblkp;
10397
10398                         /*
10399                          * Set ADV_SCSI_REQ_T ADV_SG_BLOCK virtual and physical
10400                          * address pointers.
10401                          */
10402                         scsiqp->sg_list_ptr = sg_block;
10403                         scsiqp->sg_real_addr = cpu_to_le32(sg_block_paddr);
10404                 } else {
10405                         /* Request's second or later scatter-gather block. */
10406                         sgblkp->next_sgblkp = reqp->sgblkp;
10407                         reqp->sgblkp = sgblkp;
10408
10409                         /*
10410                          * Point the previous ADV_SG_BLOCK structure to
10411                          * the newly allocated ADV_SG_BLOCK structure.
10412                          */
10413                         prev_sg_block->sg_ptr = cpu_to_le32(sg_block_paddr);
10414                 }
10415
10416                 for (i = 0; i < NO_OF_SG_PER_BLOCK; i++) {
10417                         sg_block->sg_list[i].sg_addr =
10418                                         cpu_to_le32(sg_dma_address(slp));
10419                         sg_block->sg_list[i].sg_count =
10420                                         cpu_to_le32(sg_dma_len(slp));
10421                         ASC_STATS_ADD(scp->device->host, sg_xfer,
10422                                       ASC_CEILING(sg_dma_len(slp), 512));
10423
10424                         if (--sg_elem_cnt == 0) {       /* Last ADV_SG_BLOCK and scatter-gather entry. */
10425                                 sg_block->sg_cnt = i + 1;
10426                                 sg_block->sg_ptr = 0L;  /* Last ADV_SG_BLOCK in list. */
10427                                 return ADV_SUCCESS;
10428                         }
10429                         slp++;
10430                 }
10431                 sg_block->sg_cnt = NO_OF_SG_PER_BLOCK;
10432                 prev_sg_block = sg_block;
10433         }
10434 }
10435
10436 /*
10437  * Build a request structure for the Adv Library (Wide Board).
10438  *
10439  * If an adv_req_t can not be allocated to issue the request,
10440  * then return ASC_BUSY. If an error occurs, then return ASC_ERROR.
10441  *
10442  * Multi-byte fields in the ASC_SCSI_REQ_Q that are used by the
10443  * microcode for DMA addresses or math operations are byte swapped
10444  * to little-endian order.
10445  */
10446 static int
10447 adv_build_req(asc_board_t *boardp, struct scsi_cmnd *scp,
10448               ADV_SCSI_REQ_Q **adv_scsiqpp)
10449 {
10450         adv_req_t *reqp;
10451         ADV_SCSI_REQ_Q *scsiqp;
10452         int i;
10453         int ret;
10454
10455         /*
10456          * Allocate an adv_req_t structure from the board to execute
10457          * the command.
10458          */
10459         if (boardp->adv_reqp == NULL) {
10460                 ASC_DBG(1, "adv_build_req: no free adv_req_t\n");
10461                 ASC_STATS(scp->device->host, adv_build_noreq);
10462                 return ASC_BUSY;
10463         } else {
10464                 reqp = boardp->adv_reqp;
10465                 boardp->adv_reqp = reqp->next_reqp;
10466                 reqp->next_reqp = NULL;
10467         }
10468
10469         /*
10470          * Get 32-byte aligned ADV_SCSI_REQ_Q and ADV_SG_BLOCK pointers.
10471          */
10472         scsiqp = (ADV_SCSI_REQ_Q *)ADV_32BALIGN(&reqp->scsi_req_q);
10473
10474         /*
10475          * Initialize the structure.
10476          */
10477         scsiqp->cntl = scsiqp->scsi_cntl = scsiqp->done_status = 0;
10478
10479         /*
10480          * Set the ADV_SCSI_REQ_Q 'srb_ptr' to point to the adv_req_t structure.
10481          */
10482         scsiqp->srb_ptr = ASC_VADDR_TO_U32(reqp);
10483
10484         /*
10485          * Set the adv_req_t 'cmndp' to point to the struct scsi_cmnd structure.
10486          */
10487         reqp->cmndp = scp;
10488
10489         /*
10490          * Build the ADV_SCSI_REQ_Q request.
10491          */
10492
10493         /* Set CDB length and copy it to the request structure.  */
10494         scsiqp->cdb_len = scp->cmd_len;
10495         /* Copy first 12 CDB bytes to cdb[]. */
10496         for (i = 0; i < scp->cmd_len && i < 12; i++) {
10497                 scsiqp->cdb[i] = scp->cmnd[i];
10498         }
10499         /* Copy last 4 CDB bytes, if present, to cdb16[]. */
10500         for (; i < scp->cmd_len; i++) {
10501                 scsiqp->cdb16[i - 12] = scp->cmnd[i];
10502         }
10503
10504         scsiqp->target_id = scp->device->id;
10505         scsiqp->target_lun = scp->device->lun;
10506
10507         scsiqp->sense_addr = cpu_to_le32(virt_to_bus(&scp->sense_buffer[0]));
10508         scsiqp->sense_len = sizeof(scp->sense_buffer);
10509
10510         /*
10511          * Build ADV_SCSI_REQ_Q for a contiguous buffer or a scatter-gather
10512          * buffer command.
10513          */
10514
10515         scsiqp->data_cnt = cpu_to_le32(scp->request_bufflen);
10516         scsiqp->vdata_addr = scp->request_buffer;
10517         scsiqp->data_addr = cpu_to_le32(virt_to_bus(scp->request_buffer));
10518
10519         if (scp->use_sg == 0) {
10520                 /*
10521                  * CDB request of single contiguous buffer.
10522                  */
10523                 reqp->sgblkp = NULL;
10524                 scsiqp->data_cnt = cpu_to_le32(scp->request_bufflen);
10525                 if (scp->request_bufflen) {
10526                         scsiqp->vdata_addr = scp->request_buffer;
10527                         scp->SCp.dma_handle =
10528                             dma_map_single(boardp->dev, scp->request_buffer,
10529                                            scp->request_bufflen,
10530                                            scp->sc_data_direction);
10531                 } else {
10532                         scsiqp->vdata_addr = NULL;
10533                         scp->SCp.dma_handle = 0;
10534                 }
10535                 scsiqp->data_addr = cpu_to_le32(scp->SCp.dma_handle);
10536                 scsiqp->sg_list_ptr = NULL;
10537                 scsiqp->sg_real_addr = 0;
10538                 ASC_STATS(scp->device->host, cont_cnt);
10539                 ASC_STATS_ADD(scp->device->host, cont_xfer,
10540                               ASC_CEILING(scp->request_bufflen, 512));
10541         } else {
10542                 /*
10543                  * CDB scatter-gather request list.
10544                  */
10545                 struct scatterlist *slp;
10546                 int use_sg;
10547
10548                 slp = (struct scatterlist *)scp->request_buffer;
10549                 use_sg = dma_map_sg(boardp->dev, slp, scp->use_sg,
10550                                     scp->sc_data_direction);
10551
10552                 if (use_sg > ADV_MAX_SG_LIST) {
10553                         ASC_PRINT3("adv_build_req: board %d: use_sg %d > "
10554                                    "ADV_MAX_SG_LIST %d\n", boardp->id, use_sg,
10555                                    scp->device->host->sg_tablesize);
10556                         dma_unmap_sg(boardp->dev, slp, scp->use_sg,
10557                                      scp->sc_data_direction);
10558                         scp->result = HOST_BYTE(DID_ERROR);
10559
10560                         /*
10561                          * Free the 'adv_req_t' structure by adding it back
10562                          * to the board free list.
10563                          */
10564                         reqp->next_reqp = boardp->adv_reqp;
10565                         boardp->adv_reqp = reqp;
10566
10567                         return ASC_ERROR;
10568                 }
10569
10570                 ret = adv_get_sglist(boardp, reqp, scp, use_sg);
10571                 if (ret != ADV_SUCCESS) {
10572                         /*
10573                          * Free the adv_req_t structure by adding it back to
10574                          * the board free list.
10575                          */
10576                         reqp->next_reqp = boardp->adv_reqp;
10577                         boardp->adv_reqp = reqp;
10578
10579                         return ret;
10580                 }
10581
10582                 ASC_STATS(scp->device->host, sg_cnt);
10583                 ASC_STATS_ADD(scp->device->host, sg_elem, use_sg);
10584         }
10585
10586         ASC_DBG_PRT_ADV_SCSI_REQ_Q(2, scsiqp);
10587         ASC_DBG_PRT_CDB(1, scp->cmnd, scp->cmd_len);
10588
10589         *adv_scsiqpp = scsiqp;
10590
10591         return ASC_NOERROR;
10592 }
10593
10594 static int AscSgListToQueue(int sg_list)
10595 {
10596         int n_sg_list_qs;
10597
10598         n_sg_list_qs = ((sg_list - 1) / ASC_SG_LIST_PER_Q);
10599         if (((sg_list - 1) % ASC_SG_LIST_PER_Q) != 0)
10600                 n_sg_list_qs++;
10601         return n_sg_list_qs + 1;
10602 }
10603
10604 static uint
10605 AscGetNumOfFreeQueue(ASC_DVC_VAR *asc_dvc, uchar target_ix, uchar n_qs)
10606 {
10607         uint cur_used_qs;
10608         uint cur_free_qs;
10609         ASC_SCSI_BIT_ID_TYPE target_id;
10610         uchar tid_no;
10611
10612         target_id = ASC_TIX_TO_TARGET_ID(target_ix);
10613         tid_no = ASC_TIX_TO_TID(target_ix);
10614         if ((asc_dvc->unit_not_ready & target_id) ||
10615             (asc_dvc->queue_full_or_busy & target_id)) {
10616                 return 0;
10617         }
10618         if (n_qs == 1) {
10619                 cur_used_qs = (uint) asc_dvc->cur_total_qng +
10620                     (uint) asc_dvc->last_q_shortage + (uint) ASC_MIN_FREE_Q;
10621         } else {
10622                 cur_used_qs = (uint) asc_dvc->cur_total_qng +
10623                     (uint) ASC_MIN_FREE_Q;
10624         }
10625         if ((uint) (cur_used_qs + n_qs) <= (uint) asc_dvc->max_total_qng) {
10626                 cur_free_qs = (uint) asc_dvc->max_total_qng - cur_used_qs;
10627                 if (asc_dvc->cur_dvc_qng[tid_no] >=
10628                     asc_dvc->max_dvc_qng[tid_no]) {
10629                         return 0;
10630                 }
10631                 return cur_free_qs;
10632         }
10633         if (n_qs > 1) {
10634                 if ((n_qs > asc_dvc->last_q_shortage)
10635                     && (n_qs <= (asc_dvc->max_total_qng - ASC_MIN_FREE_Q))) {
10636                         asc_dvc->last_q_shortage = n_qs;
10637                 }
10638         }
10639         return 0;
10640 }
10641
10642 static uchar AscAllocFreeQueue(PortAddr iop_base, uchar free_q_head)
10643 {
10644         ushort q_addr;
10645         uchar next_qp;
10646         uchar q_status;
10647
10648         q_addr = ASC_QNO_TO_QADDR(free_q_head);
10649         q_status = (uchar)AscReadLramByte(iop_base,
10650                                           (ushort)(q_addr +
10651                                                    ASC_SCSIQ_B_STATUS));
10652         next_qp = AscReadLramByte(iop_base, (ushort)(q_addr + ASC_SCSIQ_B_FWD));
10653         if (((q_status & QS_READY) == 0) && (next_qp != ASC_QLINK_END))
10654                 return next_qp;
10655         return ASC_QLINK_END;
10656 }
10657
10658 static uchar
10659 AscAllocMultipleFreeQueue(PortAddr iop_base, uchar free_q_head, uchar n_free_q)
10660 {
10661         uchar i;
10662
10663         for (i = 0; i < n_free_q; i++) {
10664                 free_q_head = AscAllocFreeQueue(iop_base, free_q_head);
10665                 if (free_q_head == ASC_QLINK_END)
10666                         break;
10667         }
10668         return free_q_head;
10669 }
10670
10671 /*
10672  * void
10673  * DvcPutScsiQ(PortAddr iop_base, ushort s_addr, uchar *outbuf, int words)
10674  *
10675  * Calling/Exit State:
10676  *    none
10677  *
10678  * Description:
10679  *     Output an ASC_SCSI_Q structure to the chip
10680  */
10681 static void
10682 DvcPutScsiQ(PortAddr iop_base, ushort s_addr, uchar *outbuf, int words)
10683 {
10684         int i;
10685
10686         ASC_DBG_PRT_HEX(2, "DvcPutScsiQ", outbuf, 2 * words);
10687         AscSetChipLramAddr(iop_base, s_addr);
10688         for (i = 0; i < 2 * words; i += 2) {
10689                 if (i == 4 || i == 20) {
10690                         continue;
10691                 }
10692                 outpw(iop_base + IOP_RAM_DATA,
10693                       ((ushort)outbuf[i + 1] << 8) | outbuf[i]);
10694         }
10695 }
10696
10697 static int AscPutReadyQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar q_no)
10698 {
10699         ushort q_addr;
10700         uchar tid_no;
10701         uchar sdtr_data;
10702         uchar syn_period_ix;
10703         uchar syn_offset;
10704         PortAddr iop_base;
10705
10706         iop_base = asc_dvc->iop_base;
10707         if (((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) &&
10708             ((asc_dvc->sdtr_done & scsiq->q1.target_id) == 0)) {
10709                 tid_no = ASC_TIX_TO_TID(scsiq->q2.target_ix);
10710                 sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
10711                 syn_period_ix =
10712                     (sdtr_data >> 4) & (asc_dvc->max_sdtr_index - 1);
10713                 syn_offset = sdtr_data & ASC_SYN_MAX_OFFSET;
10714                 AscMsgOutSDTR(asc_dvc,
10715                               asc_dvc->sdtr_period_tbl[syn_period_ix],
10716                               syn_offset);
10717                 scsiq->q1.cntl |= QC_MSG_OUT;
10718         }
10719         q_addr = ASC_QNO_TO_QADDR(q_no);
10720         if ((scsiq->q1.target_id & asc_dvc->use_tagged_qng) == 0) {
10721                 scsiq->q2.tag_code &= ~MSG_SIMPLE_TAG;
10722         }
10723         scsiq->q1.status = QS_FREE;
10724         AscMemWordCopyPtrToLram(iop_base,
10725                                 q_addr + ASC_SCSIQ_CDB_BEG,
10726                                 (uchar *)scsiq->cdbptr, scsiq->q2.cdb_len >> 1);
10727
10728         DvcPutScsiQ(iop_base,
10729                     q_addr + ASC_SCSIQ_CPY_BEG,
10730                     (uchar *)&scsiq->q1.cntl,
10731                     ((sizeof(ASC_SCSIQ_1) + sizeof(ASC_SCSIQ_2)) / 2) - 1);
10732         AscWriteLramWord(iop_base,
10733                          (ushort)(q_addr + (ushort)ASC_SCSIQ_B_STATUS),
10734                          (ushort)(((ushort)scsiq->q1.
10735                                    q_no << 8) | (ushort)QS_READY));
10736         return 1;
10737 }
10738
10739 static int
10740 AscPutReadySgListQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar q_no)
10741 {
10742         int sta;
10743         int i;
10744         ASC_SG_HEAD *sg_head;
10745         ASC_SG_LIST_Q scsi_sg_q;
10746         ASC_DCNT saved_data_addr;
10747         ASC_DCNT saved_data_cnt;
10748         PortAddr iop_base;
10749         ushort sg_list_dwords;
10750         ushort sg_index;
10751         ushort sg_entry_cnt;
10752         ushort q_addr;
10753         uchar next_qp;
10754
10755         iop_base = asc_dvc->iop_base;
10756         sg_head = scsiq->sg_head;
10757         saved_data_addr = scsiq->q1.data_addr;
10758         saved_data_cnt = scsiq->q1.data_cnt;
10759         scsiq->q1.data_addr = (ASC_PADDR) sg_head->sg_list[0].addr;
10760         scsiq->q1.data_cnt = (ASC_DCNT) sg_head->sg_list[0].bytes;
10761 #if CC_VERY_LONG_SG_LIST
10762         /*
10763          * If sg_head->entry_cnt is greater than ASC_MAX_SG_LIST
10764          * then not all SG elements will fit in the allocated queues.
10765          * The rest of the SG elements will be copied when the RISC
10766          * completes the SG elements that fit and halts.
10767          */
10768         if (sg_head->entry_cnt > ASC_MAX_SG_LIST) {
10769                 /*
10770                  * Set sg_entry_cnt to be the number of SG elements that
10771                  * will fit in the allocated SG queues. It is minus 1, because
10772                  * the first SG element is handled above. ASC_MAX_SG_LIST is
10773                  * already inflated by 1 to account for this. For example it
10774                  * may be 50 which is 1 + 7 queues * 7 SG elements.
10775                  */
10776                 sg_entry_cnt = ASC_MAX_SG_LIST - 1;
10777
10778                 /*
10779                  * Keep track of remaining number of SG elements that will
10780                  * need to be handled from a_isr.c.
10781                  */
10782                 scsiq->remain_sg_entry_cnt =
10783                     sg_head->entry_cnt - ASC_MAX_SG_LIST;
10784         } else {
10785 #endif /* CC_VERY_LONG_SG_LIST */
10786                 /*
10787                  * Set sg_entry_cnt to be the number of SG elements that
10788                  * will fit in the allocated SG queues. It is minus 1, because
10789                  * the first SG element is handled above.
10790                  */
10791                 sg_entry_cnt = sg_head->entry_cnt - 1;
10792 #if CC_VERY_LONG_SG_LIST
10793         }
10794 #endif /* CC_VERY_LONG_SG_LIST */
10795         if (sg_entry_cnt != 0) {
10796                 scsiq->q1.cntl |= QC_SG_HEAD;
10797                 q_addr = ASC_QNO_TO_QADDR(q_no);
10798                 sg_index = 1;
10799                 scsiq->q1.sg_queue_cnt = sg_head->queue_cnt;
10800                 scsi_sg_q.sg_head_qp = q_no;
10801                 scsi_sg_q.cntl = QCSG_SG_XFER_LIST;
10802                 for (i = 0; i < sg_head->queue_cnt; i++) {
10803                         scsi_sg_q.seq_no = i + 1;
10804                         if (sg_entry_cnt > ASC_SG_LIST_PER_Q) {
10805                                 sg_list_dwords = (uchar)(ASC_SG_LIST_PER_Q * 2);
10806                                 sg_entry_cnt -= ASC_SG_LIST_PER_Q;
10807                                 if (i == 0) {
10808                                         scsi_sg_q.sg_list_cnt =
10809                                             ASC_SG_LIST_PER_Q;
10810                                         scsi_sg_q.sg_cur_list_cnt =
10811                                             ASC_SG_LIST_PER_Q;
10812                                 } else {
10813                                         scsi_sg_q.sg_list_cnt =
10814                                             ASC_SG_LIST_PER_Q - 1;
10815                                         scsi_sg_q.sg_cur_list_cnt =
10816                                             ASC_SG_LIST_PER_Q - 1;
10817                                 }
10818                         } else {
10819 #if CC_VERY_LONG_SG_LIST
10820                                 /*
10821                                  * This is the last SG queue in the list of
10822                                  * allocated SG queues. If there are more
10823                                  * SG elements than will fit in the allocated
10824                                  * queues, then set the QCSG_SG_XFER_MORE flag.
10825                                  */
10826                                 if (sg_head->entry_cnt > ASC_MAX_SG_LIST) {
10827                                         scsi_sg_q.cntl |= QCSG_SG_XFER_MORE;
10828                                 } else {
10829 #endif /* CC_VERY_LONG_SG_LIST */
10830                                         scsi_sg_q.cntl |= QCSG_SG_XFER_END;
10831 #if CC_VERY_LONG_SG_LIST
10832                                 }
10833 #endif /* CC_VERY_LONG_SG_LIST */
10834                                 sg_list_dwords = sg_entry_cnt << 1;
10835                                 if (i == 0) {
10836                                         scsi_sg_q.sg_list_cnt = sg_entry_cnt;
10837                                         scsi_sg_q.sg_cur_list_cnt =
10838                                             sg_entry_cnt;
10839                                 } else {
10840                                         scsi_sg_q.sg_list_cnt =
10841                                             sg_entry_cnt - 1;
10842                                         scsi_sg_q.sg_cur_list_cnt =
10843                                             sg_entry_cnt - 1;
10844                                 }
10845                                 sg_entry_cnt = 0;
10846                         }
10847                         next_qp = AscReadLramByte(iop_base,
10848                                                   (ushort)(q_addr +
10849                                                            ASC_SCSIQ_B_FWD));
10850                         scsi_sg_q.q_no = next_qp;
10851                         q_addr = ASC_QNO_TO_QADDR(next_qp);
10852                         AscMemWordCopyPtrToLram(iop_base,
10853                                                 q_addr + ASC_SCSIQ_SGHD_CPY_BEG,
10854                                                 (uchar *)&scsi_sg_q,
10855                                                 sizeof(ASC_SG_LIST_Q) >> 1);
10856                         AscMemDWordCopyPtrToLram(iop_base,
10857                                                  q_addr + ASC_SGQ_LIST_BEG,
10858                                                  (uchar *)&sg_head->
10859                                                  sg_list[sg_index],
10860                                                  sg_list_dwords);
10861                         sg_index += ASC_SG_LIST_PER_Q;
10862                         scsiq->next_sg_index = sg_index;
10863                 }
10864         } else {
10865                 scsiq->q1.cntl &= ~QC_SG_HEAD;
10866         }
10867         sta = AscPutReadyQueue(asc_dvc, scsiq, q_no);
10868         scsiq->q1.data_addr = saved_data_addr;
10869         scsiq->q1.data_cnt = saved_data_cnt;
10870         return (sta);
10871 }
10872
10873 static int
10874 AscSendScsiQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq, uchar n_q_required)
10875 {
10876         PortAddr iop_base;
10877         uchar free_q_head;
10878         uchar next_qp;
10879         uchar tid_no;
10880         uchar target_ix;
10881         int sta;
10882
10883         iop_base = asc_dvc->iop_base;
10884         target_ix = scsiq->q2.target_ix;
10885         tid_no = ASC_TIX_TO_TID(target_ix);
10886         sta = 0;
10887         free_q_head = (uchar)AscGetVarFreeQHead(iop_base);
10888         if (n_q_required > 1) {
10889                 next_qp = AscAllocMultipleFreeQueue(iop_base, free_q_head,
10890                                                     (uchar)n_q_required);
10891                 if (next_qp != ASC_QLINK_END) {
10892                         asc_dvc->last_q_shortage = 0;
10893                         scsiq->sg_head->queue_cnt = n_q_required - 1;
10894                         scsiq->q1.q_no = free_q_head;
10895                         sta = AscPutReadySgListQueue(asc_dvc, scsiq,
10896                                                      free_q_head);
10897                 }
10898         } else if (n_q_required == 1) {
10899                 next_qp = AscAllocFreeQueue(iop_base, free_q_head);
10900                 if (next_qp != ASC_QLINK_END) {
10901                         scsiq->q1.q_no = free_q_head;
10902                         sta = AscPutReadyQueue(asc_dvc, scsiq, free_q_head);
10903                 }
10904         }
10905         if (sta == 1) {
10906                 AscPutVarFreeQHead(iop_base, next_qp);
10907                 asc_dvc->cur_total_qng += n_q_required;
10908                 asc_dvc->cur_dvc_qng[tid_no]++;
10909         }
10910         return sta;
10911 }
10912
10913 #define ASC_SYN_OFFSET_ONE_DISABLE_LIST  16
10914 static uchar _syn_offset_one_disable_cmd[ASC_SYN_OFFSET_ONE_DISABLE_LIST] = {
10915         INQUIRY,
10916         REQUEST_SENSE,
10917         READ_CAPACITY,
10918         READ_TOC,
10919         MODE_SELECT,
10920         MODE_SENSE,
10921         MODE_SELECT_10,
10922         MODE_SENSE_10,
10923         0xFF,
10924         0xFF,
10925         0xFF,
10926         0xFF,
10927         0xFF,
10928         0xFF,
10929         0xFF,
10930         0xFF
10931 };
10932
10933 static int AscExeScsiQueue(ASC_DVC_VAR *asc_dvc, ASC_SCSI_Q *scsiq)
10934 {
10935         PortAddr iop_base;
10936         int sta;
10937         int n_q_required;
10938         int disable_syn_offset_one_fix;
10939         int i;
10940         ASC_PADDR addr;
10941         ushort sg_entry_cnt = 0;
10942         ushort sg_entry_cnt_minus_one = 0;
10943         uchar target_ix;
10944         uchar tid_no;
10945         uchar sdtr_data;
10946         uchar extra_bytes;
10947         uchar scsi_cmd;
10948         uchar disable_cmd;
10949         ASC_SG_HEAD *sg_head;
10950         ASC_DCNT data_cnt;
10951
10952         iop_base = asc_dvc->iop_base;
10953         sg_head = scsiq->sg_head;
10954         if (asc_dvc->err_code != 0)
10955                 return (ERR);
10956         scsiq->q1.q_no = 0;
10957         if ((scsiq->q2.tag_code & ASC_TAG_FLAG_EXTRA_BYTES) == 0) {
10958                 scsiq->q1.extra_bytes = 0;
10959         }
10960         sta = 0;
10961         target_ix = scsiq->q2.target_ix;
10962         tid_no = ASC_TIX_TO_TID(target_ix);
10963         n_q_required = 1;
10964         if (scsiq->cdbptr[0] == REQUEST_SENSE) {
10965                 if ((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) {
10966                         asc_dvc->sdtr_done &= ~scsiq->q1.target_id;
10967                         sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
10968                         AscMsgOutSDTR(asc_dvc,
10969                                       asc_dvc->
10970                                       sdtr_period_tbl[(sdtr_data >> 4) &
10971                                                       (uchar)(asc_dvc->
10972                                                               max_sdtr_index -
10973                                                               1)],
10974                                       (uchar)(sdtr_data & (uchar)
10975                                               ASC_SYN_MAX_OFFSET));
10976                         scsiq->q1.cntl |= (QC_MSG_OUT | QC_URGENT);
10977                 }
10978         }
10979         if (asc_dvc->in_critical_cnt != 0) {
10980                 AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CRITICAL_RE_ENTRY);
10981                 return (ERR);
10982         }
10983         asc_dvc->in_critical_cnt++;
10984         if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
10985                 if ((sg_entry_cnt = sg_head->entry_cnt) == 0) {
10986                         asc_dvc->in_critical_cnt--;
10987                         return (ERR);
10988                 }
10989 #if !CC_VERY_LONG_SG_LIST
10990                 if (sg_entry_cnt > ASC_MAX_SG_LIST) {
10991                         asc_dvc->in_critical_cnt--;
10992                         return (ERR);
10993                 }
10994 #endif /* !CC_VERY_LONG_SG_LIST */
10995                 if (sg_entry_cnt == 1) {
10996                         scsiq->q1.data_addr =
10997                             (ADV_PADDR)sg_head->sg_list[0].addr;
10998                         scsiq->q1.data_cnt =
10999                             (ADV_DCNT)sg_head->sg_list[0].bytes;
11000                         scsiq->q1.cntl &= ~(QC_SG_HEAD | QC_SG_SWAP_QUEUE);
11001                 }
11002                 sg_entry_cnt_minus_one = sg_entry_cnt - 1;
11003         }
11004         scsi_cmd = scsiq->cdbptr[0];
11005         disable_syn_offset_one_fix = FALSE;
11006         if ((asc_dvc->pci_fix_asyn_xfer & scsiq->q1.target_id) &&
11007             !(asc_dvc->pci_fix_asyn_xfer_always & scsiq->q1.target_id)) {
11008                 if (scsiq->q1.cntl & QC_SG_HEAD) {
11009                         data_cnt = 0;
11010                         for (i = 0; i < sg_entry_cnt; i++) {
11011                                 data_cnt +=
11012                                     (ADV_DCNT)le32_to_cpu(sg_head->sg_list[i].
11013                                                           bytes);
11014                         }
11015                 } else {
11016                         data_cnt = le32_to_cpu(scsiq->q1.data_cnt);
11017                 }
11018                 if (data_cnt != 0UL) {
11019                         if (data_cnt < 512UL) {
11020                                 disable_syn_offset_one_fix = TRUE;
11021                         } else {
11022                                 for (i = 0; i < ASC_SYN_OFFSET_ONE_DISABLE_LIST;
11023                                      i++) {
11024                                         disable_cmd =
11025                                             _syn_offset_one_disable_cmd[i];
11026                                         if (disable_cmd == 0xFF) {
11027                                                 break;
11028                                         }
11029                                         if (scsi_cmd == disable_cmd) {
11030                                                 disable_syn_offset_one_fix =
11031                                                     TRUE;
11032                                                 break;
11033                                         }
11034                                 }
11035                         }
11036                 }
11037         }
11038         if (disable_syn_offset_one_fix) {
11039                 scsiq->q2.tag_code &= ~MSG_SIMPLE_TAG;
11040                 scsiq->q2.tag_code |= (ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX |
11041                                        ASC_TAG_FLAG_DISABLE_DISCONNECT);
11042         } else {
11043                 scsiq->q2.tag_code &= 0x27;
11044         }
11045         if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
11046                 if (asc_dvc->bug_fix_cntl) {
11047                         if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
11048                                 if ((scsi_cmd == READ_6) ||
11049                                     (scsi_cmd == READ_10)) {
11050                                         addr =
11051                                             (ADV_PADDR)le32_to_cpu(sg_head->
11052                                                                    sg_list
11053                                                                    [sg_entry_cnt_minus_one].
11054                                                                    addr) +
11055                                             (ADV_DCNT)le32_to_cpu(sg_head->
11056                                                                   sg_list
11057                                                                   [sg_entry_cnt_minus_one].
11058                                                                   bytes);
11059                                         extra_bytes =
11060                                             (uchar)((ushort)addr & 0x0003);
11061                                         if ((extra_bytes != 0)
11062                                             &&
11063                                             ((scsiq->q2.
11064                                               tag_code &
11065                                               ASC_TAG_FLAG_EXTRA_BYTES)
11066                                              == 0)) {
11067                                                 scsiq->q2.tag_code |=
11068                                                     ASC_TAG_FLAG_EXTRA_BYTES;
11069                                                 scsiq->q1.extra_bytes =
11070                                                     extra_bytes;
11071                                                 data_cnt =
11072                                                     le32_to_cpu(sg_head->
11073                                                                 sg_list
11074                                                                 [sg_entry_cnt_minus_one].
11075                                                                 bytes);
11076                                                 data_cnt -=
11077                                                     (ASC_DCNT) extra_bytes;
11078                                                 sg_head->
11079                                                     sg_list
11080                                                     [sg_entry_cnt_minus_one].
11081                                                     bytes =
11082                                                     cpu_to_le32(data_cnt);
11083                                         }
11084                                 }
11085                         }
11086                 }
11087                 sg_head->entry_to_copy = sg_head->entry_cnt;
11088 #if CC_VERY_LONG_SG_LIST
11089                 /*
11090                  * Set the sg_entry_cnt to the maximum possible. The rest of
11091                  * the SG elements will be copied when the RISC completes the
11092                  * SG elements that fit and halts.
11093                  */
11094                 if (sg_entry_cnt > ASC_MAX_SG_LIST) {
11095                         sg_entry_cnt = ASC_MAX_SG_LIST;
11096                 }
11097 #endif /* CC_VERY_LONG_SG_LIST */
11098                 n_q_required = AscSgListToQueue(sg_entry_cnt);
11099                 if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, n_q_required) >=
11100                      (uint) n_q_required)
11101                     || ((scsiq->q1.cntl & QC_URGENT) != 0)) {
11102                         if ((sta =
11103                              AscSendScsiQueue(asc_dvc, scsiq,
11104                                               n_q_required)) == 1) {
11105                                 asc_dvc->in_critical_cnt--;
11106                                 return (sta);
11107                         }
11108                 }
11109         } else {
11110                 if (asc_dvc->bug_fix_cntl) {
11111                         if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
11112                                 if ((scsi_cmd == READ_6) ||
11113                                     (scsi_cmd == READ_10)) {
11114                                         addr =
11115                                             le32_to_cpu(scsiq->q1.data_addr) +
11116                                             le32_to_cpu(scsiq->q1.data_cnt);
11117                                         extra_bytes =
11118                                             (uchar)((ushort)addr & 0x0003);
11119                                         if ((extra_bytes != 0)
11120                                             &&
11121                                             ((scsiq->q2.
11122                                               tag_code &
11123                                               ASC_TAG_FLAG_EXTRA_BYTES)
11124                                              == 0)) {
11125                                                 data_cnt =
11126                                                     le32_to_cpu(scsiq->q1.
11127                                                                 data_cnt);
11128                                                 if (((ushort)data_cnt & 0x01FF)
11129                                                     == 0) {
11130                                                         scsiq->q2.tag_code |=
11131                                                             ASC_TAG_FLAG_EXTRA_BYTES;
11132                                                         data_cnt -= (ASC_DCNT)
11133                                                             extra_bytes;
11134                                                         scsiq->q1.data_cnt =
11135                                                             cpu_to_le32
11136                                                             (data_cnt);
11137                                                         scsiq->q1.extra_bytes =
11138                                                             extra_bytes;
11139                                                 }
11140                                         }
11141                                 }
11142                         }
11143                 }
11144                 n_q_required = 1;
11145                 if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, 1) >= 1) ||
11146                     ((scsiq->q1.cntl & QC_URGENT) != 0)) {
11147                         if ((sta = AscSendScsiQueue(asc_dvc, scsiq,
11148                                                     n_q_required)) == 1) {
11149                                 asc_dvc->in_critical_cnt--;
11150                                 return (sta);
11151                         }
11152                 }
11153         }
11154         asc_dvc->in_critical_cnt--;
11155         return (sta);
11156 }
11157
11158 /*
11159  * AdvExeScsiQueue() - Send a request to the RISC microcode program.
11160  *
11161  *   Allocate a carrier structure, point the carrier to the ADV_SCSI_REQ_Q,
11162  *   add the carrier to the ICQ (Initiator Command Queue), and tickle the
11163  *   RISC to notify it a new command is ready to be executed.
11164  *
11165  * If 'done_status' is not set to QD_DO_RETRY, then 'error_retry' will be
11166  * set to SCSI_MAX_RETRY.
11167  *
11168  * Multi-byte fields in the ASC_SCSI_REQ_Q that are used by the microcode
11169  * for DMA addresses or math operations are byte swapped to little-endian
11170  * order.
11171  *
11172  * Return:
11173  *      ADV_SUCCESS(1) - The request was successfully queued.
11174  *      ADV_BUSY(0) -    Resource unavailable; Retry again after pending
11175  *                       request completes.
11176  *      ADV_ERROR(-1) -  Invalid ADV_SCSI_REQ_Q request structure
11177  *                       host IC error.
11178  */
11179 static int AdvExeScsiQueue(ADV_DVC_VAR *asc_dvc, ADV_SCSI_REQ_Q *scsiq)
11180 {
11181         AdvPortAddr iop_base;
11182         ADV_DCNT req_size;
11183         ADV_PADDR req_paddr;
11184         ADV_CARR_T *new_carrp;
11185
11186         /*
11187          * The ADV_SCSI_REQ_Q 'target_id' field should never exceed ADV_MAX_TID.
11188          */
11189         if (scsiq->target_id > ADV_MAX_TID) {
11190                 scsiq->host_status = QHSTA_M_INVALID_DEVICE;
11191                 scsiq->done_status = QD_WITH_ERROR;
11192                 return ADV_ERROR;
11193         }
11194
11195         iop_base = asc_dvc->iop_base;
11196
11197         /*
11198          * Allocate a carrier ensuring at least one carrier always
11199          * remains on the freelist and initialize fields.
11200          */
11201         if ((new_carrp = asc_dvc->carr_freelist) == NULL) {
11202                 return ADV_BUSY;
11203         }
11204         asc_dvc->carr_freelist = (ADV_CARR_T *)
11205             ADV_U32_TO_VADDR(le32_to_cpu(new_carrp->next_vpa));
11206         asc_dvc->carr_pending_cnt++;
11207
11208         /*
11209          * Set the carrier to be a stopper by setting 'next_vpa'
11210          * to the stopper value. The current stopper will be changed
11211          * below to point to the new stopper.
11212          */
11213         new_carrp->next_vpa = cpu_to_le32(ASC_CQ_STOPPER);
11214
11215         /*
11216          * Clear the ADV_SCSI_REQ_Q done flag.
11217          */
11218         scsiq->a_flag &= ~ADV_SCSIQ_DONE;
11219
11220         req_size = sizeof(ADV_SCSI_REQ_Q);
11221         req_paddr = DvcGetPhyAddr(asc_dvc, scsiq, (uchar *)scsiq,
11222                                   (ADV_SDCNT *)&req_size, ADV_IS_SCSIQ_FLAG);
11223
11224         BUG_ON(req_paddr & 31);
11225         BUG_ON(req_size < sizeof(ADV_SCSI_REQ_Q));
11226
11227         /* Wait for assertion before making little-endian */
11228         req_paddr = cpu_to_le32(req_paddr);
11229
11230         /* Save virtual and physical address of ADV_SCSI_REQ_Q and carrier. */
11231         scsiq->scsiq_ptr = cpu_to_le32(ADV_VADDR_TO_U32(scsiq));
11232         scsiq->scsiq_rptr = req_paddr;
11233
11234         scsiq->carr_va = cpu_to_le32(ADV_VADDR_TO_U32(asc_dvc->icq_sp));
11235         /*
11236          * Every ADV_CARR_T.carr_pa is byte swapped to little-endian
11237          * order during initialization.
11238          */
11239         scsiq->carr_pa = asc_dvc->icq_sp->carr_pa;
11240
11241         /*
11242          * Use the current stopper to send the ADV_SCSI_REQ_Q command to
11243          * the microcode. The newly allocated stopper will become the new
11244          * stopper.
11245          */
11246         asc_dvc->icq_sp->areq_vpa = req_paddr;
11247
11248         /*
11249          * Set the 'next_vpa' pointer for the old stopper to be the
11250          * physical address of the new stopper. The RISC can only
11251          * follow physical addresses.
11252          */
11253         asc_dvc->icq_sp->next_vpa = new_carrp->carr_pa;
11254
11255         /*
11256          * Set the host adapter stopper pointer to point to the new carrier.
11257          */
11258         asc_dvc->icq_sp = new_carrp;
11259
11260         if (asc_dvc->chip_type == ADV_CHIP_ASC3550 ||
11261             asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
11262                 /*
11263                  * Tickle the RISC to tell it to read its Command Queue Head pointer.
11264                  */
11265                 AdvWriteByteRegister(iop_base, IOPB_TICKLE, ADV_TICKLE_A);
11266                 if (asc_dvc->chip_type == ADV_CHIP_ASC3550) {
11267                         /*
11268                          * Clear the tickle value. In the ASC-3550 the RISC flag
11269                          * command 'clr_tickle_a' does not work unless the host
11270                          * value is cleared.
11271                          */
11272                         AdvWriteByteRegister(iop_base, IOPB_TICKLE,
11273                                              ADV_TICKLE_NOP);
11274                 }
11275         } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
11276                 /*
11277                  * Notify the RISC a carrier is ready by writing the physical
11278                  * address of the new carrier stopper to the COMMA register.
11279                  */
11280                 AdvWriteDWordRegister(iop_base, IOPDW_COMMA,
11281                                       le32_to_cpu(new_carrp->carr_pa));
11282         }
11283
11284         return ADV_SUCCESS;
11285 }
11286
11287 /*
11288  * Execute a single 'Scsi_Cmnd'.
11289  *
11290  * The function 'done' is called when the request has been completed.
11291  *
11292  * Scsi_Cmnd:
11293  *
11294  *  host - board controlling device
11295  *  device - device to send command
11296  *  target - target of device
11297  *  lun - lun of device
11298  *  cmd_len - length of SCSI CDB
11299  *  cmnd - buffer for SCSI 8, 10, or 12 byte CDB
11300  *  use_sg - if non-zero indicates scatter-gather request with use_sg elements
11301  *
11302  *  if (use_sg == 0) {
11303  *    request_buffer - buffer address for request
11304  *    request_bufflen - length of request buffer
11305  *  } else {
11306  *    request_buffer - pointer to scatterlist structure
11307  *  }
11308  *
11309  *  sense_buffer - sense command buffer
11310  *
11311  *  result (4 bytes of an int):
11312  *    Byte Meaning
11313  *    0 SCSI Status Byte Code
11314  *    1 SCSI One Byte Message Code
11315  *    2 Host Error Code
11316  *    3 Mid-Level Error Code
11317  *
11318  *  host driver fields:
11319  *    SCp - Scsi_Pointer used for command processing status
11320  *    scsi_done - used to save caller's done function
11321  *    host_scribble - used for pointer to another struct scsi_cmnd
11322  *
11323  * If this function returns ASC_NOERROR the request will be completed
11324  * from the interrupt handler.
11325  *
11326  * If this function returns ASC_ERROR the host error code has been set,
11327  * and the called must call asc_scsi_done.
11328  *
11329  * If ASC_BUSY is returned the request will be returned to the midlayer
11330  * and re-tried later.
11331  */
11332 static int asc_execute_scsi_cmnd(struct scsi_cmnd *scp)
11333 {
11334         int ret, err_code;
11335         asc_board_t *boardp = ASC_BOARDP(scp->device->host);
11336
11337         ASC_DBG1(1, "asc_execute_scsi_cmnd: scp 0x%p\n", scp);
11338
11339         if (ASC_NARROW_BOARD(boardp)) {
11340                 ASC_DVC_VAR *asc_dvc = &boardp->dvc_var.asc_dvc_var;
11341
11342                 /* asc_build_req() can not return ASC_BUSY. */
11343                 if (asc_build_req(boardp, scp) == ASC_ERROR) {
11344                         ASC_STATS(scp->device->host, build_error);
11345                         return ASC_ERROR;
11346                 }
11347
11348                 ret = AscExeScsiQueue(asc_dvc, &asc_scsi_q);
11349                 err_code = asc_dvc->err_code;
11350         } else {
11351                 ADV_DVC_VAR *adv_dvc = &boardp->dvc_var.adv_dvc_var;
11352                 ADV_SCSI_REQ_Q *adv_scsiqp;
11353
11354                 switch (adv_build_req(boardp, scp, &adv_scsiqp)) {
11355                 case ASC_NOERROR:
11356                         ASC_DBG(3, "asc_execute_scsi_cmnd: adv_build_req "
11357                                 "ASC_NOERROR\n");
11358                         break;
11359                 case ASC_BUSY:
11360                         ASC_DBG(1, "asc_execute_scsi_cmnd: adv_build_req "
11361                                 "ASC_BUSY\n");
11362                         /*
11363                          * The asc_stats fields 'adv_build_noreq' and
11364                          * 'adv_build_nosg' count wide board busy conditions.
11365                          * They are updated in adv_build_req and
11366                          * adv_get_sglist, respectively.
11367                          */
11368                         return ASC_BUSY;
11369                 case ASC_ERROR:
11370                 default:
11371                         ASC_DBG(1, "asc_execute_scsi_cmnd: adv_build_req "
11372                                 "ASC_ERROR\n");
11373                         ASC_STATS(scp->device->host, build_error);
11374                         return ASC_ERROR;
11375                 }
11376
11377                 ret = AdvExeScsiQueue(adv_dvc, adv_scsiqp);
11378                 err_code = adv_dvc->err_code;
11379         }
11380
11381         switch (ret) {
11382         case ASC_NOERROR:
11383                 ASC_STATS(scp->device->host, exe_noerror);
11384                 /*
11385                  * Increment monotonically increasing per device
11386                  * successful request counter. Wrapping doesn't matter.
11387                  */
11388                 boardp->reqcnt[scp->device->id]++;
11389                 ASC_DBG(1, "asc_execute_scsi_cmnd: ExeScsiQueue(), "
11390                         "ASC_NOERROR\n");
11391                 break;
11392         case ASC_BUSY:
11393                 ASC_STATS(scp->device->host, exe_busy);
11394                 break;
11395         case ASC_ERROR:
11396                 ASC_PRINT2("asc_execute_scsi_cmnd: board %d: ExeScsiQueue() "
11397                            "ASC_ERROR, err_code 0x%x\n", boardp->id, err_code);
11398                 ASC_STATS(scp->device->host, exe_error);
11399                 scp->result = HOST_BYTE(DID_ERROR);
11400                 break;
11401         default:
11402                 ASC_PRINT2("asc_execute_scsi_cmnd: board %d: ExeScsiQueue() "
11403                            "unknown, err_code 0x%x\n", boardp->id, err_code);
11404                 ASC_STATS(scp->device->host, exe_unknown);
11405                 scp->result = HOST_BYTE(DID_ERROR);
11406                 break;
11407         }
11408
11409         ASC_DBG(1, "asc_execute_scsi_cmnd: end\n");
11410         return ret;
11411 }
11412
11413 /*
11414  * advansys_queuecommand() - interrupt-driven I/O entrypoint.
11415  *
11416  * This function always returns 0. Command return status is saved
11417  * in the 'scp' result field.
11418  */
11419 static int
11420 advansys_queuecommand(struct scsi_cmnd *scp, void (*done)(struct scsi_cmnd *))
11421 {
11422         struct Scsi_Host *shost = scp->device->host;
11423         asc_board_t *boardp = ASC_BOARDP(shost);
11424         unsigned long flags;
11425         int asc_res, result = 0;
11426
11427         ASC_STATS(shost, queuecommand);
11428         scp->scsi_done = done;
11429
11430         /*
11431          * host_lock taken by mid-level prior to call, but need
11432          * to protect against own ISR
11433          */
11434         spin_lock_irqsave(&boardp->lock, flags);
11435         asc_res = asc_execute_scsi_cmnd(scp);
11436         spin_unlock_irqrestore(&boardp->lock, flags);
11437
11438         switch (asc_res) {
11439         case ASC_NOERROR:
11440                 break;
11441         case ASC_BUSY:
11442                 result = SCSI_MLQUEUE_HOST_BUSY;
11443                 break;
11444         case ASC_ERROR:
11445         default:
11446                 asc_scsi_done(scp);
11447                 break;
11448         }
11449
11450         return result;
11451 }
11452
11453 static ushort __devinit AscGetEisaChipCfg(PortAddr iop_base)
11454 {
11455         PortAddr eisa_cfg_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
11456             (PortAddr) (ASC_EISA_CFG_IOP_MASK);
11457         return inpw(eisa_cfg_iop);
11458 }
11459
11460 /*
11461  * Return the BIOS address of the adapter at the specified
11462  * I/O port and with the specified bus type.
11463  */
11464 static unsigned short __devinit
11465 AscGetChipBiosAddress(PortAddr iop_base, unsigned short bus_type)
11466 {
11467         unsigned short cfg_lsw;
11468         unsigned short bios_addr;
11469
11470         /*
11471          * The PCI BIOS is re-located by the motherboard BIOS. Because
11472          * of this the driver can not determine where a PCI BIOS is
11473          * loaded and executes.
11474          */
11475         if (bus_type & ASC_IS_PCI)
11476                 return 0;
11477
11478         if ((bus_type & ASC_IS_EISA) != 0) {
11479                 cfg_lsw = AscGetEisaChipCfg(iop_base);
11480                 cfg_lsw &= 0x000F;
11481                 bios_addr = ASC_BIOS_MIN_ADDR + cfg_lsw * ASC_BIOS_BANK_SIZE;
11482                 return bios_addr;
11483         }
11484
11485         cfg_lsw = AscGetChipCfgLsw(iop_base);
11486
11487         /*
11488          *  ISA PnP uses the top bit as the 32K BIOS flag
11489          */
11490         if (bus_type == ASC_IS_ISAPNP)
11491                 cfg_lsw &= 0x7FFF;
11492         bios_addr = ASC_BIOS_MIN_ADDR + (cfg_lsw >> 12) * ASC_BIOS_BANK_SIZE;
11493         return bios_addr;
11494 }
11495
11496 static uchar __devinit AscSetChipScsiID(PortAddr iop_base, uchar new_host_id)
11497 {
11498         ushort cfg_lsw;
11499
11500         if (AscGetChipScsiID(iop_base) == new_host_id) {
11501                 return (new_host_id);
11502         }
11503         cfg_lsw = AscGetChipCfgLsw(iop_base);
11504         cfg_lsw &= 0xF8FF;
11505         cfg_lsw |= (ushort)((new_host_id & ASC_MAX_TID) << 8);
11506         AscSetChipCfgLsw(iop_base, cfg_lsw);
11507         return (AscGetChipScsiID(iop_base));
11508 }
11509
11510 static unsigned char __devinit AscGetChipScsiCtrl(PortAddr iop_base)
11511 {
11512         unsigned char sc;
11513
11514         AscSetBank(iop_base, 1);
11515         sc = inp(iop_base + IOP_REG_SC);
11516         AscSetBank(iop_base, 0);
11517         return sc;
11518 }
11519
11520 static unsigned char __devinit
11521 AscGetChipVersion(PortAddr iop_base, unsigned short bus_type)
11522 {
11523         if (bus_type & ASC_IS_EISA) {
11524                 PortAddr eisa_iop;
11525                 unsigned char revision;
11526                 eisa_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
11527                     (PortAddr) ASC_EISA_REV_IOP_MASK;
11528                 revision = inp(eisa_iop);
11529                 return ASC_CHIP_MIN_VER_EISA - 1 + revision;
11530         }
11531         return AscGetChipVerNo(iop_base);
11532 }
11533
11534 static void __devinit AscToggleIRQAct(PortAddr iop_base)
11535 {
11536         AscSetChipStatus(iop_base, CIW_IRQ_ACT);
11537         AscSetChipStatus(iop_base, 0);
11538         return;
11539 }
11540
11541 static uchar __devinit AscGetChipIRQ(PortAddr iop_base, ushort bus_type)
11542 {
11543         ushort cfg_lsw;
11544         uchar chip_irq;
11545
11546         if ((bus_type & ASC_IS_EISA) != 0) {
11547                 cfg_lsw = AscGetEisaChipCfg(iop_base);
11548                 chip_irq = (uchar)(((cfg_lsw >> 8) & 0x07) + 10);
11549                 if ((chip_irq == 13) || (chip_irq > 15)) {
11550                         return (0);
11551                 }
11552                 return (chip_irq);
11553         }
11554         if ((bus_type & ASC_IS_VL) != 0) {
11555                 cfg_lsw = AscGetChipCfgLsw(iop_base);
11556                 chip_irq = (uchar)(((cfg_lsw >> 2) & 0x07));
11557                 if ((chip_irq == 0) || (chip_irq == 4) || (chip_irq == 7)) {
11558                         return (0);
11559                 }
11560                 return ((uchar)(chip_irq + (ASC_MIN_IRQ_NO - 1)));
11561         }
11562         cfg_lsw = AscGetChipCfgLsw(iop_base);
11563         chip_irq = (uchar)(((cfg_lsw >> 2) & 0x03));
11564         if (chip_irq == 3)
11565                 chip_irq += (uchar)2;
11566         return ((uchar)(chip_irq + ASC_MIN_IRQ_NO));
11567 }
11568
11569 static uchar __devinit
11570 AscSetChipIRQ(PortAddr iop_base, uchar irq_no, ushort bus_type)
11571 {
11572         ushort cfg_lsw;
11573
11574         if ((bus_type & ASC_IS_VL) != 0) {
11575                 if (irq_no != 0) {
11576                         if ((irq_no < ASC_MIN_IRQ_NO)
11577                             || (irq_no > ASC_MAX_IRQ_NO)) {
11578                                 irq_no = 0;
11579                         } else {
11580                                 irq_no -= (uchar)((ASC_MIN_IRQ_NO - 1));
11581                         }
11582                 }
11583                 cfg_lsw = (ushort)(AscGetChipCfgLsw(iop_base) & 0xFFE3);
11584                 cfg_lsw |= (ushort)0x0010;
11585                 AscSetChipCfgLsw(iop_base, cfg_lsw);
11586                 AscToggleIRQAct(iop_base);
11587                 cfg_lsw = (ushort)(AscGetChipCfgLsw(iop_base) & 0xFFE0);
11588                 cfg_lsw |= (ushort)((irq_no & 0x07) << 2);
11589                 AscSetChipCfgLsw(iop_base, cfg_lsw);
11590                 AscToggleIRQAct(iop_base);
11591                 return (AscGetChipIRQ(iop_base, bus_type));
11592         }
11593         if ((bus_type & (ASC_IS_ISA)) != 0) {
11594                 if (irq_no == 15)
11595                         irq_no -= (uchar)2;
11596                 irq_no -= (uchar)ASC_MIN_IRQ_NO;
11597                 cfg_lsw = (ushort)(AscGetChipCfgLsw(iop_base) & 0xFFF3);
11598                 cfg_lsw |= (ushort)((irq_no & 0x03) << 2);
11599                 AscSetChipCfgLsw(iop_base, cfg_lsw);
11600                 return (AscGetChipIRQ(iop_base, bus_type));
11601         }
11602         return (0);
11603 }
11604
11605 #ifdef CONFIG_ISA
11606 static void __devinit AscEnableIsaDma(uchar dma_channel)
11607 {
11608         if (dma_channel < 4) {
11609                 outp(0x000B, (ushort)(0xC0 | dma_channel));
11610                 outp(0x000A, dma_channel);
11611         } else if (dma_channel < 8) {
11612                 outp(0x00D6, (ushort)(0xC0 | (dma_channel - 4)));
11613                 outp(0x00D4, (ushort)(dma_channel - 4));
11614         }
11615         return;
11616 }
11617 #endif /* CONFIG_ISA */
11618
11619 static int AscStopQueueExe(PortAddr iop_base)
11620 {
11621         int count = 0;
11622
11623         if (AscReadLramByte(iop_base, ASCV_STOP_CODE_B) == 0) {
11624                 AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
11625                                  ASC_STOP_REQ_RISC_STOP);
11626                 do {
11627                         if (AscReadLramByte(iop_base, ASCV_STOP_CODE_B) &
11628                             ASC_STOP_ACK_RISC_STOP) {
11629                                 return (1);
11630                         }
11631                         mdelay(100);
11632                 } while (count++ < 20);
11633         }
11634         return (0);
11635 }
11636
11637 static ASC_DCNT __devinit AscGetMaxDmaCount(ushort bus_type)
11638 {
11639         if (bus_type & ASC_IS_ISA)
11640                 return ASC_MAX_ISA_DMA_COUNT;
11641         else if (bus_type & (ASC_IS_EISA | ASC_IS_VL))
11642                 return ASC_MAX_VL_DMA_COUNT;
11643         return ASC_MAX_PCI_DMA_COUNT;
11644 }
11645
11646 #ifdef CONFIG_ISA
11647 static ushort __devinit AscGetIsaDmaChannel(PortAddr iop_base)
11648 {
11649         ushort channel;
11650
11651         channel = AscGetChipCfgLsw(iop_base) & 0x0003;
11652         if (channel == 0x03)
11653                 return (0);
11654         else if (channel == 0x00)
11655                 return (7);
11656         return (channel + 4);
11657 }
11658
11659 static ushort __devinit AscSetIsaDmaChannel(PortAddr iop_base, ushort dma_channel)
11660 {
11661         ushort cfg_lsw;
11662         uchar value;
11663
11664         if ((dma_channel >= 5) && (dma_channel <= 7)) {
11665                 if (dma_channel == 7)
11666                         value = 0x00;
11667                 else
11668                         value = dma_channel - 4;
11669                 cfg_lsw = AscGetChipCfgLsw(iop_base) & 0xFFFC;
11670                 cfg_lsw |= value;
11671                 AscSetChipCfgLsw(iop_base, cfg_lsw);
11672                 return (AscGetIsaDmaChannel(iop_base));
11673         }
11674         return 0;
11675 }
11676
11677 static uchar __devinit AscGetIsaDmaSpeed(PortAddr iop_base)
11678 {
11679         uchar speed_value;
11680
11681         AscSetBank(iop_base, 1);
11682         speed_value = AscReadChipDmaSpeed(iop_base);
11683         speed_value &= 0x07;
11684         AscSetBank(iop_base, 0);
11685         return speed_value;
11686 }
11687
11688 static uchar __devinit AscSetIsaDmaSpeed(PortAddr iop_base, uchar speed_value)
11689 {
11690         speed_value &= 0x07;
11691         AscSetBank(iop_base, 1);
11692         AscWriteChipDmaSpeed(iop_base, speed_value);
11693         AscSetBank(iop_base, 0);
11694         return AscGetIsaDmaSpeed(iop_base);
11695 }
11696 #endif /* CONFIG_ISA */
11697
11698 static ushort __devinit AscInitAscDvcVar(ASC_DVC_VAR *asc_dvc)
11699 {
11700         int i;
11701         PortAddr iop_base;
11702         ushort warn_code;
11703         uchar chip_version;
11704
11705         iop_base = asc_dvc->iop_base;
11706         warn_code = 0;
11707         asc_dvc->err_code = 0;
11708         if ((asc_dvc->bus_type &
11709              (ASC_IS_ISA | ASC_IS_PCI | ASC_IS_EISA | ASC_IS_VL)) == 0) {
11710                 asc_dvc->err_code |= ASC_IERR_NO_BUS_TYPE;
11711         }
11712         AscSetChipControl(iop_base, CC_HALT);
11713         AscSetChipStatus(iop_base, 0);
11714         asc_dvc->bug_fix_cntl = 0;
11715         asc_dvc->pci_fix_asyn_xfer = 0;
11716         asc_dvc->pci_fix_asyn_xfer_always = 0;
11717         /* asc_dvc->init_state initalized in AscInitGetConfig(). */
11718         asc_dvc->sdtr_done = 0;
11719         asc_dvc->cur_total_qng = 0;
11720         asc_dvc->is_in_int = 0;
11721         asc_dvc->in_critical_cnt = 0;
11722         asc_dvc->last_q_shortage = 0;
11723         asc_dvc->use_tagged_qng = 0;
11724         asc_dvc->no_scam = 0;
11725         asc_dvc->unit_not_ready = 0;
11726         asc_dvc->queue_full_or_busy = 0;
11727         asc_dvc->redo_scam = 0;
11728         asc_dvc->res2 = 0;
11729         asc_dvc->host_init_sdtr_index = 0;
11730         asc_dvc->cfg->can_tagged_qng = 0;
11731         asc_dvc->cfg->cmd_qng_enabled = 0;
11732         asc_dvc->dvc_cntl = ASC_DEF_DVC_CNTL;
11733         asc_dvc->init_sdtr = 0;
11734         asc_dvc->max_total_qng = ASC_DEF_MAX_TOTAL_QNG;
11735         asc_dvc->scsi_reset_wait = 3;
11736         asc_dvc->start_motor = ASC_SCSI_WIDTH_BIT_SET;
11737         asc_dvc->max_dma_count = AscGetMaxDmaCount(asc_dvc->bus_type);
11738         asc_dvc->cfg->sdtr_enable = ASC_SCSI_WIDTH_BIT_SET;
11739         asc_dvc->cfg->disc_enable = ASC_SCSI_WIDTH_BIT_SET;
11740         asc_dvc->cfg->chip_scsi_id = ASC_DEF_CHIP_SCSI_ID;
11741         asc_dvc->cfg->lib_serial_no = ASC_LIB_SERIAL_NUMBER;
11742         asc_dvc->cfg->lib_version = (ASC_LIB_VERSION_MAJOR << 8) |
11743             ASC_LIB_VERSION_MINOR;
11744         chip_version = AscGetChipVersion(iop_base, asc_dvc->bus_type);
11745         asc_dvc->cfg->chip_version = chip_version;
11746         asc_dvc->sdtr_period_tbl[0] = SYN_XFER_NS_0;
11747         asc_dvc->sdtr_period_tbl[1] = SYN_XFER_NS_1;
11748         asc_dvc->sdtr_period_tbl[2] = SYN_XFER_NS_2;
11749         asc_dvc->sdtr_period_tbl[3] = SYN_XFER_NS_3;
11750         asc_dvc->sdtr_period_tbl[4] = SYN_XFER_NS_4;
11751         asc_dvc->sdtr_period_tbl[5] = SYN_XFER_NS_5;
11752         asc_dvc->sdtr_period_tbl[6] = SYN_XFER_NS_6;
11753         asc_dvc->sdtr_period_tbl[7] = SYN_XFER_NS_7;
11754         asc_dvc->max_sdtr_index = 7;
11755         if ((asc_dvc->bus_type & ASC_IS_PCI) &&
11756             (chip_version >= ASC_CHIP_VER_PCI_ULTRA_3150)) {
11757                 asc_dvc->bus_type = ASC_IS_PCI_ULTRA;
11758                 asc_dvc->sdtr_period_tbl[0] = SYN_ULTRA_XFER_NS_0;
11759                 asc_dvc->sdtr_period_tbl[1] = SYN_ULTRA_XFER_NS_1;
11760                 asc_dvc->sdtr_period_tbl[2] = SYN_ULTRA_XFER_NS_2;
11761                 asc_dvc->sdtr_period_tbl[3] = SYN_ULTRA_XFER_NS_3;
11762                 asc_dvc->sdtr_period_tbl[4] = SYN_ULTRA_XFER_NS_4;
11763                 asc_dvc->sdtr_period_tbl[5] = SYN_ULTRA_XFER_NS_5;
11764                 asc_dvc->sdtr_period_tbl[6] = SYN_ULTRA_XFER_NS_6;
11765                 asc_dvc->sdtr_period_tbl[7] = SYN_ULTRA_XFER_NS_7;
11766                 asc_dvc->sdtr_period_tbl[8] = SYN_ULTRA_XFER_NS_8;
11767                 asc_dvc->sdtr_period_tbl[9] = SYN_ULTRA_XFER_NS_9;
11768                 asc_dvc->sdtr_period_tbl[10] = SYN_ULTRA_XFER_NS_10;
11769                 asc_dvc->sdtr_period_tbl[11] = SYN_ULTRA_XFER_NS_11;
11770                 asc_dvc->sdtr_period_tbl[12] = SYN_ULTRA_XFER_NS_12;
11771                 asc_dvc->sdtr_period_tbl[13] = SYN_ULTRA_XFER_NS_13;
11772                 asc_dvc->sdtr_period_tbl[14] = SYN_ULTRA_XFER_NS_14;
11773                 asc_dvc->sdtr_period_tbl[15] = SYN_ULTRA_XFER_NS_15;
11774                 asc_dvc->max_sdtr_index = 15;
11775                 if (chip_version == ASC_CHIP_VER_PCI_ULTRA_3150) {
11776                         AscSetExtraControl(iop_base,
11777                                            (SEC_ACTIVE_NEGATE | SEC_SLEW_RATE));
11778                 } else if (chip_version >= ASC_CHIP_VER_PCI_ULTRA_3050) {
11779                         AscSetExtraControl(iop_base,
11780                                            (SEC_ACTIVE_NEGATE |
11781                                             SEC_ENABLE_FILTER));
11782                 }
11783         }
11784         if (asc_dvc->bus_type == ASC_IS_PCI) {
11785                 AscSetExtraControl(iop_base,
11786                                    (SEC_ACTIVE_NEGATE | SEC_SLEW_RATE));
11787         }
11788
11789         asc_dvc->cfg->isa_dma_speed = ASC_DEF_ISA_DMA_SPEED;
11790 #ifdef CONFIG_ISA
11791         if ((asc_dvc->bus_type & ASC_IS_ISA) != 0) {
11792                 if (chip_version >= ASC_CHIP_MIN_VER_ISA_PNP) {
11793                         AscSetChipIFC(iop_base, IFC_INIT_DEFAULT);
11794                         asc_dvc->bus_type = ASC_IS_ISAPNP;
11795                 }
11796                 asc_dvc->cfg->isa_dma_channel =
11797                     (uchar)AscGetIsaDmaChannel(iop_base);
11798         }
11799 #endif /* CONFIG_ISA */
11800         for (i = 0; i <= ASC_MAX_TID; i++) {
11801                 asc_dvc->cur_dvc_qng[i] = 0;
11802                 asc_dvc->max_dvc_qng[i] = ASC_MAX_SCSI1_QNG;
11803                 asc_dvc->scsiq_busy_head[i] = (ASC_SCSI_Q *)0L;
11804                 asc_dvc->scsiq_busy_tail[i] = (ASC_SCSI_Q *)0L;
11805                 asc_dvc->cfg->max_tag_qng[i] = ASC_MAX_INRAM_TAG_QNG;
11806         }
11807         return warn_code;
11808 }
11809
11810 static int __devinit AscWriteEEPCmdReg(PortAddr iop_base, uchar cmd_reg)
11811 {
11812         int retry;
11813
11814         for (retry = 0; retry < ASC_EEP_MAX_RETRY; retry++) {
11815                 unsigned char read_back;
11816                 AscSetChipEEPCmd(iop_base, cmd_reg);
11817                 mdelay(1);
11818                 read_back = AscGetChipEEPCmd(iop_base);
11819                 if (read_back == cmd_reg)
11820                         return 1;
11821         }
11822         return 0;
11823 }
11824
11825 static void __devinit AscWaitEEPRead(void)
11826 {
11827         mdelay(1);
11828 }
11829
11830 static ushort __devinit AscReadEEPWord(PortAddr iop_base, uchar addr)
11831 {
11832         ushort read_wval;
11833         uchar cmd_reg;
11834
11835         AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_DISABLE);
11836         AscWaitEEPRead();
11837         cmd_reg = addr | ASC_EEP_CMD_READ;
11838         AscWriteEEPCmdReg(iop_base, cmd_reg);
11839         AscWaitEEPRead();
11840         read_wval = AscGetChipEEPData(iop_base);
11841         AscWaitEEPRead();
11842         return read_wval;
11843 }
11844
11845 static ushort __devinit
11846 AscGetEEPConfig(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf, ushort bus_type)
11847 {
11848         ushort wval;
11849         ushort sum;
11850         ushort *wbuf;
11851         int cfg_beg;
11852         int cfg_end;
11853         int uchar_end_in_config = ASC_EEP_MAX_DVC_ADDR - 2;
11854         int s_addr;
11855
11856         wbuf = (ushort *)cfg_buf;
11857         sum = 0;
11858         /* Read two config words; Byte-swapping done by AscReadEEPWord(). */
11859         for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
11860                 *wbuf = AscReadEEPWord(iop_base, (uchar)s_addr);
11861                 sum += *wbuf;
11862         }
11863         if (bus_type & ASC_IS_VL) {
11864                 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
11865                 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
11866         } else {
11867                 cfg_beg = ASC_EEP_DVC_CFG_BEG;
11868                 cfg_end = ASC_EEP_MAX_DVC_ADDR;
11869         }
11870         for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
11871                 wval = AscReadEEPWord(iop_base, (uchar)s_addr);
11872                 if (s_addr <= uchar_end_in_config) {
11873                         /*
11874                          * Swap all char fields - must unswap bytes already swapped
11875                          * by AscReadEEPWord().
11876                          */
11877                         *wbuf = le16_to_cpu(wval);
11878                 } else {
11879                         /* Don't swap word field at the end - cntl field. */
11880                         *wbuf = wval;
11881                 }
11882                 sum += wval;    /* Checksum treats all EEPROM data as words. */
11883         }
11884         /*
11885          * Read the checksum word which will be compared against 'sum'
11886          * by the caller. Word field already swapped.
11887          */
11888         *wbuf = AscReadEEPWord(iop_base, (uchar)s_addr);
11889         return sum;
11890 }
11891
11892 static int __devinit AscTestExternalLram(ASC_DVC_VAR *asc_dvc)
11893 {
11894         PortAddr iop_base;
11895         ushort q_addr;
11896         ushort saved_word;
11897         int sta;
11898
11899         iop_base = asc_dvc->iop_base;
11900         sta = 0;
11901         q_addr = ASC_QNO_TO_QADDR(241);
11902         saved_word = AscReadLramWord(iop_base, q_addr);
11903         AscSetChipLramAddr(iop_base, q_addr);
11904         AscSetChipLramData(iop_base, 0x55AA);
11905         mdelay(10);
11906         AscSetChipLramAddr(iop_base, q_addr);
11907         if (AscGetChipLramData(iop_base) == 0x55AA) {
11908                 sta = 1;
11909                 AscWriteLramWord(iop_base, q_addr, saved_word);
11910         }
11911         return (sta);
11912 }
11913
11914 static void __devinit AscWaitEEPWrite(void)
11915 {
11916         mdelay(20);
11917         return;
11918 }
11919
11920 static int __devinit AscWriteEEPDataReg(PortAddr iop_base, ushort data_reg)
11921 {
11922         ushort read_back;
11923         int retry;
11924
11925         retry = 0;
11926         while (TRUE) {
11927                 AscSetChipEEPData(iop_base, data_reg);
11928                 mdelay(1);
11929                 read_back = AscGetChipEEPData(iop_base);
11930                 if (read_back == data_reg) {
11931                         return (1);
11932                 }
11933                 if (retry++ > ASC_EEP_MAX_RETRY) {
11934                         return (0);
11935                 }
11936         }
11937 }
11938
11939 static ushort __devinit
11940 AscWriteEEPWord(PortAddr iop_base, uchar addr, ushort word_val)
11941 {
11942         ushort read_wval;
11943
11944         read_wval = AscReadEEPWord(iop_base, addr);
11945         if (read_wval != word_val) {
11946                 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_ABLE);
11947                 AscWaitEEPRead();
11948                 AscWriteEEPDataReg(iop_base, word_val);
11949                 AscWaitEEPRead();
11950                 AscWriteEEPCmdReg(iop_base,
11951                                   (uchar)((uchar)ASC_EEP_CMD_WRITE | addr));
11952                 AscWaitEEPWrite();
11953                 AscWriteEEPCmdReg(iop_base, ASC_EEP_CMD_WRITE_DISABLE);
11954                 AscWaitEEPRead();
11955                 return (AscReadEEPWord(iop_base, addr));
11956         }
11957         return (read_wval);
11958 }
11959
11960 static int __devinit
11961 AscSetEEPConfigOnce(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf, ushort bus_type)
11962 {
11963         int n_error;
11964         ushort *wbuf;
11965         ushort word;
11966         ushort sum;
11967         int s_addr;
11968         int cfg_beg;
11969         int cfg_end;
11970         int uchar_end_in_config = ASC_EEP_MAX_DVC_ADDR - 2;
11971
11972         wbuf = (ushort *)cfg_buf;
11973         n_error = 0;
11974         sum = 0;
11975         /* Write two config words; AscWriteEEPWord() will swap bytes. */
11976         for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
11977                 sum += *wbuf;
11978                 if (*wbuf != AscWriteEEPWord(iop_base, (uchar)s_addr, *wbuf)) {
11979                         n_error++;
11980                 }
11981         }
11982         if (bus_type & ASC_IS_VL) {
11983                 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
11984                 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
11985         } else {
11986                 cfg_beg = ASC_EEP_DVC_CFG_BEG;
11987                 cfg_end = ASC_EEP_MAX_DVC_ADDR;
11988         }
11989         for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
11990                 if (s_addr <= uchar_end_in_config) {
11991                         /*
11992                          * This is a char field. Swap char fields before they are
11993                          * swapped again by AscWriteEEPWord().
11994                          */
11995                         word = cpu_to_le16(*wbuf);
11996                         if (word !=
11997                             AscWriteEEPWord(iop_base, (uchar)s_addr, word)) {
11998                                 n_error++;
11999                         }
12000                 } else {
12001                         /* Don't swap word field at the end - cntl field. */
12002                         if (*wbuf !=
12003                             AscWriteEEPWord(iop_base, (uchar)s_addr, *wbuf)) {
12004                                 n_error++;
12005                         }
12006                 }
12007                 sum += *wbuf;   /* Checksum calculated from word values. */
12008         }
12009         /* Write checksum word. It will be swapped by AscWriteEEPWord(). */
12010         *wbuf = sum;
12011         if (sum != AscWriteEEPWord(iop_base, (uchar)s_addr, sum)) {
12012                 n_error++;
12013         }
12014
12015         /* Read EEPROM back again. */
12016         wbuf = (ushort *)cfg_buf;
12017         /*
12018          * Read two config words; Byte-swapping done by AscReadEEPWord().
12019          */
12020         for (s_addr = 0; s_addr < 2; s_addr++, wbuf++) {
12021                 if (*wbuf != AscReadEEPWord(iop_base, (uchar)s_addr)) {
12022                         n_error++;
12023                 }
12024         }
12025         if (bus_type & ASC_IS_VL) {
12026                 cfg_beg = ASC_EEP_DVC_CFG_BEG_VL;
12027                 cfg_end = ASC_EEP_MAX_DVC_ADDR_VL;
12028         } else {
12029                 cfg_beg = ASC_EEP_DVC_CFG_BEG;
12030                 cfg_end = ASC_EEP_MAX_DVC_ADDR;
12031         }
12032         for (s_addr = cfg_beg; s_addr <= (cfg_end - 1); s_addr++, wbuf++) {
12033                 if (s_addr <= uchar_end_in_config) {
12034                         /*
12035                          * Swap all char fields. Must unswap bytes already swapped
12036                          * by AscReadEEPWord().
12037                          */
12038                         word =
12039                             le16_to_cpu(AscReadEEPWord
12040                                         (iop_base, (uchar)s_addr));
12041                 } else {
12042                         /* Don't swap word field at the end - cntl field. */
12043                         word = AscReadEEPWord(iop_base, (uchar)s_addr);
12044                 }
12045                 if (*wbuf != word) {
12046                         n_error++;
12047                 }
12048         }
12049         /* Read checksum; Byte swapping not needed. */
12050         if (AscReadEEPWord(iop_base, (uchar)s_addr) != sum) {
12051                 n_error++;
12052         }
12053         return n_error;
12054 }
12055
12056 static int __devinit
12057 AscSetEEPConfig(PortAddr iop_base, ASCEEP_CONFIG *cfg_buf, ushort bus_type)
12058 {
12059         int retry;
12060         int n_error;
12061
12062         retry = 0;
12063         while (TRUE) {
12064                 if ((n_error = AscSetEEPConfigOnce(iop_base, cfg_buf,
12065                                                    bus_type)) == 0) {
12066                         break;
12067                 }
12068                 if (++retry > ASC_EEP_MAX_RETRY) {
12069                         break;
12070                 }
12071         }
12072         return n_error;
12073 }
12074
12075 static ushort __devinit AscInitFromEEP(ASC_DVC_VAR *asc_dvc)
12076 {
12077         ASCEEP_CONFIG eep_config_buf;
12078         ASCEEP_CONFIG *eep_config;
12079         PortAddr iop_base;
12080         ushort chksum;
12081         ushort warn_code;
12082         ushort cfg_msw, cfg_lsw;
12083         int i;
12084         int write_eep = 0;
12085
12086         iop_base = asc_dvc->iop_base;
12087         warn_code = 0;
12088         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0x00FE);
12089         AscStopQueueExe(iop_base);
12090         if ((AscStopChip(iop_base) == FALSE) ||
12091             (AscGetChipScsiCtrl(iop_base) != 0)) {
12092                 asc_dvc->init_state |= ASC_INIT_RESET_SCSI_DONE;
12093                 AscResetChipAndScsiBus(asc_dvc);
12094                 mdelay(asc_dvc->scsi_reset_wait * 1000); /* XXX: msleep? */
12095         }
12096         if (AscIsChipHalted(iop_base) == FALSE) {
12097                 asc_dvc->err_code |= ASC_IERR_START_STOP_CHIP;
12098                 return (warn_code);
12099         }
12100         AscSetPCAddr(iop_base, ASC_MCODE_START_ADDR);
12101         if (AscGetPCAddr(iop_base) != ASC_MCODE_START_ADDR) {
12102                 asc_dvc->err_code |= ASC_IERR_SET_PC_ADDR;
12103                 return (warn_code);
12104         }
12105         eep_config = (ASCEEP_CONFIG *)&eep_config_buf;
12106         cfg_msw = AscGetChipCfgMsw(iop_base);
12107         cfg_lsw = AscGetChipCfgLsw(iop_base);
12108         if ((cfg_msw & ASC_CFG_MSW_CLR_MASK) != 0) {
12109                 cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
12110                 warn_code |= ASC_WARN_CFG_MSW_RECOVER;
12111                 AscSetChipCfgMsw(iop_base, cfg_msw);
12112         }
12113         chksum = AscGetEEPConfig(iop_base, eep_config, asc_dvc->bus_type);
12114         ASC_DBG1(1, "AscInitFromEEP: chksum 0x%x\n", chksum);
12115         if (chksum == 0) {
12116                 chksum = 0xaa55;
12117         }
12118         if (AscGetChipStatus(iop_base) & CSW_AUTO_CONFIG) {
12119                 warn_code |= ASC_WARN_AUTO_CONFIG;
12120                 if (asc_dvc->cfg->chip_version == 3) {
12121                         if (eep_config->cfg_lsw != cfg_lsw) {
12122                                 warn_code |= ASC_WARN_EEPROM_RECOVER;
12123                                 eep_config->cfg_lsw =
12124                                     AscGetChipCfgLsw(iop_base);
12125                         }
12126                         if (eep_config->cfg_msw != cfg_msw) {
12127                                 warn_code |= ASC_WARN_EEPROM_RECOVER;
12128                                 eep_config->cfg_msw =
12129                                     AscGetChipCfgMsw(iop_base);
12130                         }
12131                 }
12132         }
12133         eep_config->cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
12134         eep_config->cfg_lsw |= ASC_CFG0_HOST_INT_ON;
12135         ASC_DBG1(1, "AscInitFromEEP: eep_config->chksum 0x%x\n",
12136                  eep_config->chksum);
12137         if (chksum != eep_config->chksum) {
12138                 if (AscGetChipVersion(iop_base, asc_dvc->bus_type) ==
12139                     ASC_CHIP_VER_PCI_ULTRA_3050) {
12140                         ASC_DBG(1,
12141                                 "AscInitFromEEP: chksum error ignored; EEPROM-less board\n");
12142                         eep_config->init_sdtr = 0xFF;
12143                         eep_config->disc_enable = 0xFF;
12144                         eep_config->start_motor = 0xFF;
12145                         eep_config->use_cmd_qng = 0;
12146                         eep_config->max_total_qng = 0xF0;
12147                         eep_config->max_tag_qng = 0x20;
12148                         eep_config->cntl = 0xBFFF;
12149                         ASC_EEP_SET_CHIP_ID(eep_config, 7);
12150                         eep_config->no_scam = 0;
12151                         eep_config->adapter_info[0] = 0;
12152                         eep_config->adapter_info[1] = 0;
12153                         eep_config->adapter_info[2] = 0;
12154                         eep_config->adapter_info[3] = 0;
12155                         eep_config->adapter_info[4] = 0;
12156                         /* Indicate EEPROM-less board. */
12157                         eep_config->adapter_info[5] = 0xBB;
12158                 } else {
12159                         ASC_PRINT
12160                             ("AscInitFromEEP: EEPROM checksum error; Will try to re-write EEPROM.\n");
12161                         write_eep = 1;
12162                         warn_code |= ASC_WARN_EEPROM_CHKSUM;
12163                 }
12164         }
12165         asc_dvc->cfg->sdtr_enable = eep_config->init_sdtr;
12166         asc_dvc->cfg->disc_enable = eep_config->disc_enable;
12167         asc_dvc->cfg->cmd_qng_enabled = eep_config->use_cmd_qng;
12168         asc_dvc->cfg->isa_dma_speed = ASC_EEP_GET_DMA_SPD(eep_config);
12169         asc_dvc->start_motor = eep_config->start_motor;
12170         asc_dvc->dvc_cntl = eep_config->cntl;
12171         asc_dvc->no_scam = eep_config->no_scam;
12172         asc_dvc->cfg->adapter_info[0] = eep_config->adapter_info[0];
12173         asc_dvc->cfg->adapter_info[1] = eep_config->adapter_info[1];
12174         asc_dvc->cfg->adapter_info[2] = eep_config->adapter_info[2];
12175         asc_dvc->cfg->adapter_info[3] = eep_config->adapter_info[3];
12176         asc_dvc->cfg->adapter_info[4] = eep_config->adapter_info[4];
12177         asc_dvc->cfg->adapter_info[5] = eep_config->adapter_info[5];
12178         if (!AscTestExternalLram(asc_dvc)) {
12179                 if (((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) ==
12180                      ASC_IS_PCI_ULTRA)) {
12181                         eep_config->max_total_qng =
12182                             ASC_MAX_PCI_ULTRA_INRAM_TOTAL_QNG;
12183                         eep_config->max_tag_qng =
12184                             ASC_MAX_PCI_ULTRA_INRAM_TAG_QNG;
12185                 } else {
12186                         eep_config->cfg_msw |= 0x0800;
12187                         cfg_msw |= 0x0800;
12188                         AscSetChipCfgMsw(iop_base, cfg_msw);
12189                         eep_config->max_total_qng = ASC_MAX_PCI_INRAM_TOTAL_QNG;
12190                         eep_config->max_tag_qng = ASC_MAX_INRAM_TAG_QNG;
12191                 }
12192         } else {
12193         }
12194         if (eep_config->max_total_qng < ASC_MIN_TOTAL_QNG) {
12195                 eep_config->max_total_qng = ASC_MIN_TOTAL_QNG;
12196         }
12197         if (eep_config->max_total_qng > ASC_MAX_TOTAL_QNG) {
12198                 eep_config->max_total_qng = ASC_MAX_TOTAL_QNG;
12199         }
12200         if (eep_config->max_tag_qng > eep_config->max_total_qng) {
12201                 eep_config->max_tag_qng = eep_config->max_total_qng;
12202         }
12203         if (eep_config->max_tag_qng < ASC_MIN_TAG_Q_PER_DVC) {
12204                 eep_config->max_tag_qng = ASC_MIN_TAG_Q_PER_DVC;
12205         }
12206         asc_dvc->max_total_qng = eep_config->max_total_qng;
12207         if ((eep_config->use_cmd_qng & eep_config->disc_enable) !=
12208             eep_config->use_cmd_qng) {
12209                 eep_config->disc_enable = eep_config->use_cmd_qng;
12210                 warn_code |= ASC_WARN_CMD_QNG_CONFLICT;
12211         }
12212         if (asc_dvc->bus_type & (ASC_IS_ISA | ASC_IS_VL | ASC_IS_EISA)) {
12213                 asc_dvc->irq_no = AscGetChipIRQ(iop_base, asc_dvc->bus_type);
12214         }
12215         ASC_EEP_SET_CHIP_ID(eep_config,
12216                             ASC_EEP_GET_CHIP_ID(eep_config) & ASC_MAX_TID);
12217         asc_dvc->cfg->chip_scsi_id = ASC_EEP_GET_CHIP_ID(eep_config);
12218         if (((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) == ASC_IS_PCI_ULTRA) &&
12219             !(asc_dvc->dvc_cntl & ASC_CNTL_SDTR_ENABLE_ULTRA)) {
12220                 asc_dvc->host_init_sdtr_index = ASC_SDTR_ULTRA_PCI_10MB_INDEX;
12221         }
12222
12223         for (i = 0; i <= ASC_MAX_TID; i++) {
12224                 asc_dvc->dos_int13_table[i] = eep_config->dos_int13_table[i];
12225                 asc_dvc->cfg->max_tag_qng[i] = eep_config->max_tag_qng;
12226                 asc_dvc->cfg->sdtr_period_offset[i] =
12227                     (uchar)(ASC_DEF_SDTR_OFFSET |
12228                             (asc_dvc->host_init_sdtr_index << 4));
12229         }
12230         eep_config->cfg_msw = AscGetChipCfgMsw(iop_base);
12231         if (write_eep) {
12232                 if ((i = AscSetEEPConfig(iop_base, eep_config,
12233                                      asc_dvc->bus_type)) != 0) {
12234                         ASC_PRINT1
12235                             ("AscInitFromEEP: Failed to re-write EEPROM with %d errors.\n",
12236                              i);
12237                 } else {
12238                         ASC_PRINT
12239                             ("AscInitFromEEP: Successfully re-wrote EEPROM.\n");
12240                 }
12241         }
12242         return (warn_code);
12243 }
12244
12245 static int __devinit AscInitGetConfig(asc_board_t *boardp)
12246 {
12247         ASC_DVC_VAR *asc_dvc = &boardp->dvc_var.asc_dvc_var;
12248         unsigned short warn_code = 0;
12249
12250         asc_dvc->init_state = ASC_INIT_STATE_BEG_GET_CFG;
12251         if (asc_dvc->err_code != 0)
12252                 return asc_dvc->err_code;
12253
12254         if (AscFindSignature(asc_dvc->iop_base)) {
12255                 warn_code |= AscInitAscDvcVar(asc_dvc);
12256                 warn_code |= AscInitFromEEP(asc_dvc);
12257                 asc_dvc->init_state |= ASC_INIT_STATE_END_GET_CFG;
12258                 if (asc_dvc->scsi_reset_wait > ASC_MAX_SCSI_RESET_WAIT)
12259                         asc_dvc->scsi_reset_wait = ASC_MAX_SCSI_RESET_WAIT;
12260         } else {
12261                 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
12262         }
12263
12264         switch (warn_code) {
12265         case 0: /* No error */
12266                 break;
12267         case ASC_WARN_IO_PORT_ROTATE:
12268                 ASC_PRINT1("AscInitGetConfig: board %d: I/O port address "
12269                            "modified\n", boardp->id);
12270                 break;
12271         case ASC_WARN_AUTO_CONFIG:
12272                 ASC_PRINT1("AscInitGetConfig: board %d: I/O port increment "
12273                            "switch enabled\n", boardp->id);
12274                 break;
12275         case ASC_WARN_EEPROM_CHKSUM:
12276                 ASC_PRINT1("AscInitGetConfig: board %d: EEPROM checksum "
12277                            "error\n", boardp->id);
12278                 break;
12279         case ASC_WARN_IRQ_MODIFIED:
12280                 ASC_PRINT1("AscInitGetConfig: board %d: IRQ modified\n",
12281                            boardp->id);
12282                 break;
12283         case ASC_WARN_CMD_QNG_CONFLICT:
12284                 ASC_PRINT1("AscInitGetConfig: board %d: tag queuing enabled "
12285                            "w/o disconnects\n", boardp->id);
12286                 break;
12287         default:
12288                 ASC_PRINT2("AscInitGetConfig: board %d: unknown warning: "
12289                            "0x%x\n", boardp->id, warn_code);
12290                 break;
12291         }
12292
12293         if (asc_dvc->err_code != 0) {
12294                 ASC_PRINT3("AscInitGetConfig: board %d error: init_state 0x%x, "
12295                            "err_code 0x%x\n", boardp->id, asc_dvc->init_state,
12296                            asc_dvc->err_code);
12297         }
12298
12299         return asc_dvc->err_code;
12300 }
12301
12302 static int __devinit AscInitSetConfig(struct pci_dev *pdev, asc_board_t *boardp)
12303 {
12304         ASC_DVC_VAR *asc_dvc = &boardp->dvc_var.asc_dvc_var;
12305         PortAddr iop_base = asc_dvc->iop_base;
12306         unsigned short cfg_msw;
12307         unsigned short warn_code = 0;
12308
12309         asc_dvc->init_state |= ASC_INIT_STATE_BEG_SET_CFG;
12310         if (asc_dvc->err_code != 0)
12311                 return asc_dvc->err_code;
12312         if (!AscFindSignature(asc_dvc->iop_base)) {
12313                 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
12314                 return asc_dvc->err_code;
12315         }
12316
12317         cfg_msw = AscGetChipCfgMsw(iop_base);
12318         if ((cfg_msw & ASC_CFG_MSW_CLR_MASK) != 0) {
12319                 cfg_msw &= ~ASC_CFG_MSW_CLR_MASK;
12320                 warn_code |= ASC_WARN_CFG_MSW_RECOVER;
12321                 AscSetChipCfgMsw(iop_base, cfg_msw);
12322         }
12323         if ((asc_dvc->cfg->cmd_qng_enabled & asc_dvc->cfg->disc_enable) !=
12324             asc_dvc->cfg->cmd_qng_enabled) {
12325                 asc_dvc->cfg->disc_enable = asc_dvc->cfg->cmd_qng_enabled;
12326                 warn_code |= ASC_WARN_CMD_QNG_CONFLICT;
12327         }
12328         if (AscGetChipStatus(iop_base) & CSW_AUTO_CONFIG) {
12329                 warn_code |= ASC_WARN_AUTO_CONFIG;
12330         }
12331         if ((asc_dvc->bus_type & (ASC_IS_ISA | ASC_IS_VL)) != 0) {
12332                 if (AscSetChipIRQ(iop_base, asc_dvc->irq_no, asc_dvc->bus_type)
12333                     != asc_dvc->irq_no) {
12334                         asc_dvc->err_code |= ASC_IERR_SET_IRQ_NO;
12335                 }
12336         }
12337 #ifdef CONFIG_PCI
12338         if (asc_dvc->bus_type & ASC_IS_PCI) {
12339                 cfg_msw &= 0xFFC0;
12340                 AscSetChipCfgMsw(iop_base, cfg_msw);
12341                 if ((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) == ASC_IS_PCI_ULTRA) {
12342                 } else {
12343                         if ((pdev->device == PCI_DEVICE_ID_ASP_1200A) ||
12344                             (pdev->device == PCI_DEVICE_ID_ASP_ABP940)) {
12345                                 asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_IF_NOT_DWB;
12346                                 asc_dvc->bug_fix_cntl |=
12347                                     ASC_BUG_FIX_ASYN_USE_SYN;
12348                         }
12349                 }
12350         } else
12351 #endif /* CONFIG_PCI */
12352         if (asc_dvc->bus_type == ASC_IS_ISAPNP) {
12353                 if (AscGetChipVersion(iop_base, asc_dvc->bus_type)
12354                     == ASC_CHIP_VER_ASYN_BUG) {
12355                         asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_ASYN_USE_SYN;
12356                 }
12357         }
12358         if (AscSetChipScsiID(iop_base, asc_dvc->cfg->chip_scsi_id) !=
12359             asc_dvc->cfg->chip_scsi_id) {
12360                 asc_dvc->err_code |= ASC_IERR_SET_SCSI_ID;
12361         }
12362 #ifdef CONFIG_ISA
12363         if (asc_dvc->bus_type & ASC_IS_ISA) {
12364                 AscSetIsaDmaChannel(iop_base, asc_dvc->cfg->isa_dma_channel);
12365                 AscSetIsaDmaSpeed(iop_base, asc_dvc->cfg->isa_dma_speed);
12366         }
12367 #endif /* CONFIG_ISA */
12368
12369         asc_dvc->init_state |= ASC_INIT_STATE_END_SET_CFG;
12370
12371         switch (warn_code) {
12372         case 0: /* No error. */
12373                 break;
12374         case ASC_WARN_IO_PORT_ROTATE:
12375                 ASC_PRINT1("AscInitSetConfig: board %d: I/O port address "
12376                            "modified\n", boardp->id);
12377                 break;
12378         case ASC_WARN_AUTO_CONFIG:
12379                 ASC_PRINT1("AscInitSetConfig: board %d: I/O port increment "
12380                            "switch enabled\n", boardp->id);
12381                 break;
12382         case ASC_WARN_EEPROM_CHKSUM:
12383                 ASC_PRINT1("AscInitSetConfig: board %d: EEPROM checksum "
12384                            "error\n", boardp->id);
12385                 break;
12386         case ASC_WARN_IRQ_MODIFIED:
12387                 ASC_PRINT1("AscInitSetConfig: board %d: IRQ modified\n",
12388                            boardp->id);
12389                 break;
12390         case ASC_WARN_CMD_QNG_CONFLICT:
12391                 ASC_PRINT1("AscInitSetConfig: board %d: tag queuing w/o "
12392                            "disconnects\n",
12393                      boardp->id);
12394                 break;
12395         default:
12396                 ASC_PRINT2("AscInitSetConfig: board %d: unknown warning: "
12397                            "0x%x\n", boardp->id, warn_code);
12398                 break;
12399         }
12400
12401         if (asc_dvc->err_code != 0) {
12402                 ASC_PRINT3("AscInitSetConfig: board %d error: init_state 0x%x, "
12403                            "err_code 0x%x\n", boardp->id, asc_dvc->init_state,
12404                            asc_dvc->err_code);
12405         }
12406
12407         return asc_dvc->err_code;
12408 }
12409
12410 /*
12411  * EEPROM Configuration.
12412  *
12413  * All drivers should use this structure to set the default EEPROM
12414  * configuration. The BIOS now uses this structure when it is built.
12415  * Additional structure information can be found in a_condor.h where
12416  * the structure is defined.
12417  *
12418  * The *_Field_IsChar structs are needed to correct for endianness.
12419  * These values are read from the board 16 bits at a time directly
12420  * into the structs. Because some fields are char, the values will be
12421  * in the wrong order. The *_Field_IsChar tells when to flip the
12422  * bytes. Data read and written to PCI memory is automatically swapped
12423  * on big-endian platforms so char fields read as words are actually being
12424  * unswapped on big-endian platforms.
12425  */
12426 static ADVEEP_3550_CONFIG Default_3550_EEPROM_Config __devinitdata = {
12427         ADV_EEPROM_BIOS_ENABLE, /* cfg_lsw */
12428         0x0000,                 /* cfg_msw */
12429         0xFFFF,                 /* disc_enable */
12430         0xFFFF,                 /* wdtr_able */
12431         0xFFFF,                 /* sdtr_able */
12432         0xFFFF,                 /* start_motor */
12433         0xFFFF,                 /* tagqng_able */
12434         0xFFFF,                 /* bios_scan */
12435         0,                      /* scam_tolerant */
12436         7,                      /* adapter_scsi_id */
12437         0,                      /* bios_boot_delay */
12438         3,                      /* scsi_reset_delay */
12439         0,                      /* bios_id_lun */
12440         0,                      /* termination */
12441         0,                      /* reserved1 */
12442         0xFFE7,                 /* bios_ctrl */
12443         0xFFFF,                 /* ultra_able */
12444         0,                      /* reserved2 */
12445         ASC_DEF_MAX_HOST_QNG,   /* max_host_qng */
12446         ASC_DEF_MAX_DVC_QNG,    /* max_dvc_qng */
12447         0,                      /* dvc_cntl */
12448         0,                      /* bug_fix */
12449         0,                      /* serial_number_word1 */
12450         0,                      /* serial_number_word2 */
12451         0,                      /* serial_number_word3 */
12452         0,                      /* check_sum */
12453         {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
12454         ,                       /* oem_name[16] */
12455         0,                      /* dvc_err_code */
12456         0,                      /* adv_err_code */
12457         0,                      /* adv_err_addr */
12458         0,                      /* saved_dvc_err_code */
12459         0,                      /* saved_adv_err_code */
12460         0,                      /* saved_adv_err_addr */
12461         0                       /* num_of_err */
12462 };
12463
12464 static ADVEEP_3550_CONFIG ADVEEP_3550_Config_Field_IsChar __devinitdata = {
12465         0,                      /* cfg_lsw */
12466         0,                      /* cfg_msw */
12467         0,                      /* -disc_enable */
12468         0,                      /* wdtr_able */
12469         0,                      /* sdtr_able */
12470         0,                      /* start_motor */
12471         0,                      /* tagqng_able */
12472         0,                      /* bios_scan */
12473         0,                      /* scam_tolerant */
12474         1,                      /* adapter_scsi_id */
12475         1,                      /* bios_boot_delay */
12476         1,                      /* scsi_reset_delay */
12477         1,                      /* bios_id_lun */
12478         1,                      /* termination */
12479         1,                      /* reserved1 */
12480         0,                      /* bios_ctrl */
12481         0,                      /* ultra_able */
12482         0,                      /* reserved2 */
12483         1,                      /* max_host_qng */
12484         1,                      /* max_dvc_qng */
12485         0,                      /* dvc_cntl */
12486         0,                      /* bug_fix */
12487         0,                      /* serial_number_word1 */
12488         0,                      /* serial_number_word2 */
12489         0,                      /* serial_number_word3 */
12490         0,                      /* check_sum */
12491         {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
12492         ,                       /* oem_name[16] */
12493         0,                      /* dvc_err_code */
12494         0,                      /* adv_err_code */
12495         0,                      /* adv_err_addr */
12496         0,                      /* saved_dvc_err_code */
12497         0,                      /* saved_adv_err_code */
12498         0,                      /* saved_adv_err_addr */
12499         0                       /* num_of_err */
12500 };
12501
12502 static ADVEEP_38C0800_CONFIG Default_38C0800_EEPROM_Config __devinitdata = {
12503         ADV_EEPROM_BIOS_ENABLE, /* 00 cfg_lsw */
12504         0x0000,                 /* 01 cfg_msw */
12505         0xFFFF,                 /* 02 disc_enable */
12506         0xFFFF,                 /* 03 wdtr_able */
12507         0x4444,                 /* 04 sdtr_speed1 */
12508         0xFFFF,                 /* 05 start_motor */
12509         0xFFFF,                 /* 06 tagqng_able */
12510         0xFFFF,                 /* 07 bios_scan */
12511         0,                      /* 08 scam_tolerant */
12512         7,                      /* 09 adapter_scsi_id */
12513         0,                      /*    bios_boot_delay */
12514         3,                      /* 10 scsi_reset_delay */
12515         0,                      /*    bios_id_lun */
12516         0,                      /* 11 termination_se */
12517         0,                      /*    termination_lvd */
12518         0xFFE7,                 /* 12 bios_ctrl */
12519         0x4444,                 /* 13 sdtr_speed2 */
12520         0x4444,                 /* 14 sdtr_speed3 */
12521         ASC_DEF_MAX_HOST_QNG,   /* 15 max_host_qng */
12522         ASC_DEF_MAX_DVC_QNG,    /*    max_dvc_qng */
12523         0,                      /* 16 dvc_cntl */
12524         0x4444,                 /* 17 sdtr_speed4 */
12525         0,                      /* 18 serial_number_word1 */
12526         0,                      /* 19 serial_number_word2 */
12527         0,                      /* 20 serial_number_word3 */
12528         0,                      /* 21 check_sum */
12529         {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
12530         ,                       /* 22-29 oem_name[16] */
12531         0,                      /* 30 dvc_err_code */
12532         0,                      /* 31 adv_err_code */
12533         0,                      /* 32 adv_err_addr */
12534         0,                      /* 33 saved_dvc_err_code */
12535         0,                      /* 34 saved_adv_err_code */
12536         0,                      /* 35 saved_adv_err_addr */
12537         0,                      /* 36 reserved */
12538         0,                      /* 37 reserved */
12539         0,                      /* 38 reserved */
12540         0,                      /* 39 reserved */
12541         0,                      /* 40 reserved */
12542         0,                      /* 41 reserved */
12543         0,                      /* 42 reserved */
12544         0,                      /* 43 reserved */
12545         0,                      /* 44 reserved */
12546         0,                      /* 45 reserved */
12547         0,                      /* 46 reserved */
12548         0,                      /* 47 reserved */
12549         0,                      /* 48 reserved */
12550         0,                      /* 49 reserved */
12551         0,                      /* 50 reserved */
12552         0,                      /* 51 reserved */
12553         0,                      /* 52 reserved */
12554         0,                      /* 53 reserved */
12555         0,                      /* 54 reserved */
12556         0,                      /* 55 reserved */
12557         0,                      /* 56 cisptr_lsw */
12558         0,                      /* 57 cisprt_msw */
12559         PCI_VENDOR_ID_ASP,      /* 58 subsysvid */
12560         PCI_DEVICE_ID_38C0800_REV1,     /* 59 subsysid */
12561         0,                      /* 60 reserved */
12562         0,                      /* 61 reserved */
12563         0,                      /* 62 reserved */
12564         0                       /* 63 reserved */
12565 };
12566
12567 static ADVEEP_38C0800_CONFIG ADVEEP_38C0800_Config_Field_IsChar __devinitdata = {
12568         0,                      /* 00 cfg_lsw */
12569         0,                      /* 01 cfg_msw */
12570         0,                      /* 02 disc_enable */
12571         0,                      /* 03 wdtr_able */
12572         0,                      /* 04 sdtr_speed1 */
12573         0,                      /* 05 start_motor */
12574         0,                      /* 06 tagqng_able */
12575         0,                      /* 07 bios_scan */
12576         0,                      /* 08 scam_tolerant */
12577         1,                      /* 09 adapter_scsi_id */
12578         1,                      /*    bios_boot_delay */
12579         1,                      /* 10 scsi_reset_delay */
12580         1,                      /*    bios_id_lun */
12581         1,                      /* 11 termination_se */
12582         1,                      /*    termination_lvd */
12583         0,                      /* 12 bios_ctrl */
12584         0,                      /* 13 sdtr_speed2 */
12585         0,                      /* 14 sdtr_speed3 */
12586         1,                      /* 15 max_host_qng */
12587         1,                      /*    max_dvc_qng */
12588         0,                      /* 16 dvc_cntl */
12589         0,                      /* 17 sdtr_speed4 */
12590         0,                      /* 18 serial_number_word1 */
12591         0,                      /* 19 serial_number_word2 */
12592         0,                      /* 20 serial_number_word3 */
12593         0,                      /* 21 check_sum */
12594         {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
12595         ,                       /* 22-29 oem_name[16] */
12596         0,                      /* 30 dvc_err_code */
12597         0,                      /* 31 adv_err_code */
12598         0,                      /* 32 adv_err_addr */
12599         0,                      /* 33 saved_dvc_err_code */
12600         0,                      /* 34 saved_adv_err_code */
12601         0,                      /* 35 saved_adv_err_addr */
12602         0,                      /* 36 reserved */
12603         0,                      /* 37 reserved */
12604         0,                      /* 38 reserved */
12605         0,                      /* 39 reserved */
12606         0,                      /* 40 reserved */
12607         0,                      /* 41 reserved */
12608         0,                      /* 42 reserved */
12609         0,                      /* 43 reserved */
12610         0,                      /* 44 reserved */
12611         0,                      /* 45 reserved */
12612         0,                      /* 46 reserved */
12613         0,                      /* 47 reserved */
12614         0,                      /* 48 reserved */
12615         0,                      /* 49 reserved */
12616         0,                      /* 50 reserved */
12617         0,                      /* 51 reserved */
12618         0,                      /* 52 reserved */
12619         0,                      /* 53 reserved */
12620         0,                      /* 54 reserved */
12621         0,                      /* 55 reserved */
12622         0,                      /* 56 cisptr_lsw */
12623         0,                      /* 57 cisprt_msw */
12624         0,                      /* 58 subsysvid */
12625         0,                      /* 59 subsysid */
12626         0,                      /* 60 reserved */
12627         0,                      /* 61 reserved */
12628         0,                      /* 62 reserved */
12629         0                       /* 63 reserved */
12630 };
12631
12632 static ADVEEP_38C1600_CONFIG Default_38C1600_EEPROM_Config __devinitdata = {
12633         ADV_EEPROM_BIOS_ENABLE, /* 00 cfg_lsw */
12634         0x0000,                 /* 01 cfg_msw */
12635         0xFFFF,                 /* 02 disc_enable */
12636         0xFFFF,                 /* 03 wdtr_able */
12637         0x5555,                 /* 04 sdtr_speed1 */
12638         0xFFFF,                 /* 05 start_motor */
12639         0xFFFF,                 /* 06 tagqng_able */
12640         0xFFFF,                 /* 07 bios_scan */
12641         0,                      /* 08 scam_tolerant */
12642         7,                      /* 09 adapter_scsi_id */
12643         0,                      /*    bios_boot_delay */
12644         3,                      /* 10 scsi_reset_delay */
12645         0,                      /*    bios_id_lun */
12646         0,                      /* 11 termination_se */
12647         0,                      /*    termination_lvd */
12648         0xFFE7,                 /* 12 bios_ctrl */
12649         0x5555,                 /* 13 sdtr_speed2 */
12650         0x5555,                 /* 14 sdtr_speed3 */
12651         ASC_DEF_MAX_HOST_QNG,   /* 15 max_host_qng */
12652         ASC_DEF_MAX_DVC_QNG,    /*    max_dvc_qng */
12653         0,                      /* 16 dvc_cntl */
12654         0x5555,                 /* 17 sdtr_speed4 */
12655         0,                      /* 18 serial_number_word1 */
12656         0,                      /* 19 serial_number_word2 */
12657         0,                      /* 20 serial_number_word3 */
12658         0,                      /* 21 check_sum */
12659         {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
12660         ,                       /* 22-29 oem_name[16] */
12661         0,                      /* 30 dvc_err_code */
12662         0,                      /* 31 adv_err_code */
12663         0,                      /* 32 adv_err_addr */
12664         0,                      /* 33 saved_dvc_err_code */
12665         0,                      /* 34 saved_adv_err_code */
12666         0,                      /* 35 saved_adv_err_addr */
12667         0,                      /* 36 reserved */
12668         0,                      /* 37 reserved */
12669         0,                      /* 38 reserved */
12670         0,                      /* 39 reserved */
12671         0,                      /* 40 reserved */
12672         0,                      /* 41 reserved */
12673         0,                      /* 42 reserved */
12674         0,                      /* 43 reserved */
12675         0,                      /* 44 reserved */
12676         0,                      /* 45 reserved */
12677         0,                      /* 46 reserved */
12678         0,                      /* 47 reserved */
12679         0,                      /* 48 reserved */
12680         0,                      /* 49 reserved */
12681         0,                      /* 50 reserved */
12682         0,                      /* 51 reserved */
12683         0,                      /* 52 reserved */
12684         0,                      /* 53 reserved */
12685         0,                      /* 54 reserved */
12686         0,                      /* 55 reserved */
12687         0,                      /* 56 cisptr_lsw */
12688         0,                      /* 57 cisprt_msw */
12689         PCI_VENDOR_ID_ASP,      /* 58 subsysvid */
12690         PCI_DEVICE_ID_38C1600_REV1,     /* 59 subsysid */
12691         0,                      /* 60 reserved */
12692         0,                      /* 61 reserved */
12693         0,                      /* 62 reserved */
12694         0                       /* 63 reserved */
12695 };
12696
12697 static ADVEEP_38C1600_CONFIG ADVEEP_38C1600_Config_Field_IsChar __devinitdata = {
12698         0,                      /* 00 cfg_lsw */
12699         0,                      /* 01 cfg_msw */
12700         0,                      /* 02 disc_enable */
12701         0,                      /* 03 wdtr_able */
12702         0,                      /* 04 sdtr_speed1 */
12703         0,                      /* 05 start_motor */
12704         0,                      /* 06 tagqng_able */
12705         0,                      /* 07 bios_scan */
12706         0,                      /* 08 scam_tolerant */
12707         1,                      /* 09 adapter_scsi_id */
12708         1,                      /*    bios_boot_delay */
12709         1,                      /* 10 scsi_reset_delay */
12710         1,                      /*    bios_id_lun */
12711         1,                      /* 11 termination_se */
12712         1,                      /*    termination_lvd */
12713         0,                      /* 12 bios_ctrl */
12714         0,                      /* 13 sdtr_speed2 */
12715         0,                      /* 14 sdtr_speed3 */
12716         1,                      /* 15 max_host_qng */
12717         1,                      /*    max_dvc_qng */
12718         0,                      /* 16 dvc_cntl */
12719         0,                      /* 17 sdtr_speed4 */
12720         0,                      /* 18 serial_number_word1 */
12721         0,                      /* 19 serial_number_word2 */
12722         0,                      /* 20 serial_number_word3 */
12723         0,                      /* 21 check_sum */
12724         {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
12725         ,                       /* 22-29 oem_name[16] */
12726         0,                      /* 30 dvc_err_code */
12727         0,                      /* 31 adv_err_code */
12728         0,                      /* 32 adv_err_addr */
12729         0,                      /* 33 saved_dvc_err_code */
12730         0,                      /* 34 saved_adv_err_code */
12731         0,                      /* 35 saved_adv_err_addr */
12732         0,                      /* 36 reserved */
12733         0,                      /* 37 reserved */
12734         0,                      /* 38 reserved */
12735         0,                      /* 39 reserved */
12736         0,                      /* 40 reserved */
12737         0,                      /* 41 reserved */
12738         0,                      /* 42 reserved */
12739         0,                      /* 43 reserved */
12740         0,                      /* 44 reserved */
12741         0,                      /* 45 reserved */
12742         0,                      /* 46 reserved */
12743         0,                      /* 47 reserved */
12744         0,                      /* 48 reserved */
12745         0,                      /* 49 reserved */
12746         0,                      /* 50 reserved */
12747         0,                      /* 51 reserved */
12748         0,                      /* 52 reserved */
12749         0,                      /* 53 reserved */
12750         0,                      /* 54 reserved */
12751         0,                      /* 55 reserved */
12752         0,                      /* 56 cisptr_lsw */
12753         0,                      /* 57 cisprt_msw */
12754         0,                      /* 58 subsysvid */
12755         0,                      /* 59 subsysid */
12756         0,                      /* 60 reserved */
12757         0,                      /* 61 reserved */
12758         0,                      /* 62 reserved */
12759         0                       /* 63 reserved */
12760 };
12761
12762 #ifdef CONFIG_PCI
12763 /*
12764  * Wait for EEPROM command to complete
12765  */
12766 static void __devinit AdvWaitEEPCmd(AdvPortAddr iop_base)
12767 {
12768         int eep_delay_ms;
12769
12770         for (eep_delay_ms = 0; eep_delay_ms < ADV_EEP_DELAY_MS; eep_delay_ms++) {
12771                 if (AdvReadWordRegister(iop_base, IOPW_EE_CMD) &
12772                     ASC_EEP_CMD_DONE) {
12773                         break;
12774                 }
12775                 mdelay(1);
12776         }
12777         if ((AdvReadWordRegister(iop_base, IOPW_EE_CMD) & ASC_EEP_CMD_DONE) ==
12778             0)
12779                 BUG();
12780 }
12781
12782 /*
12783  * Read the EEPROM from specified location
12784  */
12785 static ushort __devinit AdvReadEEPWord(AdvPortAddr iop_base, int eep_word_addr)
12786 {
12787         AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
12788                              ASC_EEP_CMD_READ | eep_word_addr);
12789         AdvWaitEEPCmd(iop_base);
12790         return AdvReadWordRegister(iop_base, IOPW_EE_DATA);
12791 }
12792
12793 /*
12794  * Write the EEPROM from 'cfg_buf'.
12795  */
12796 void __devinit
12797 AdvSet3550EEPConfig(AdvPortAddr iop_base, ADVEEP_3550_CONFIG *cfg_buf)
12798 {
12799         ushort *wbuf;
12800         ushort addr, chksum;
12801         ushort *charfields;
12802
12803         wbuf = (ushort *)cfg_buf;
12804         charfields = (ushort *)&ADVEEP_3550_Config_Field_IsChar;
12805         chksum = 0;
12806
12807         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
12808         AdvWaitEEPCmd(iop_base);
12809
12810         /*
12811          * Write EEPROM from word 0 to word 20.
12812          */
12813         for (addr = ADV_EEP_DVC_CFG_BEGIN;
12814              addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
12815                 ushort word;
12816
12817                 if (*charfields++) {
12818                         word = cpu_to_le16(*wbuf);
12819                 } else {
12820                         word = *wbuf;
12821                 }
12822                 chksum += *wbuf;        /* Checksum is calculated from word values. */
12823                 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
12824                 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
12825                                      ASC_EEP_CMD_WRITE | addr);
12826                 AdvWaitEEPCmd(iop_base);
12827                 mdelay(ADV_EEP_DELAY_MS);
12828         }
12829
12830         /*
12831          * Write EEPROM checksum at word 21.
12832          */
12833         AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
12834         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
12835         AdvWaitEEPCmd(iop_base);
12836         wbuf++;
12837         charfields++;
12838
12839         /*
12840          * Write EEPROM OEM name at words 22 to 29.
12841          */
12842         for (addr = ADV_EEP_DVC_CTL_BEGIN;
12843              addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
12844                 ushort word;
12845
12846                 if (*charfields++) {
12847                         word = cpu_to_le16(*wbuf);
12848                 } else {
12849                         word = *wbuf;
12850                 }
12851                 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
12852                 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
12853                                      ASC_EEP_CMD_WRITE | addr);
12854                 AdvWaitEEPCmd(iop_base);
12855         }
12856         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
12857         AdvWaitEEPCmd(iop_base);
12858 }
12859
12860 /*
12861  * Write the EEPROM from 'cfg_buf'.
12862  */
12863 void __devinit
12864 AdvSet38C0800EEPConfig(AdvPortAddr iop_base, ADVEEP_38C0800_CONFIG *cfg_buf)
12865 {
12866         ushort *wbuf;
12867         ushort *charfields;
12868         ushort addr, chksum;
12869
12870         wbuf = (ushort *)cfg_buf;
12871         charfields = (ushort *)&ADVEEP_38C0800_Config_Field_IsChar;
12872         chksum = 0;
12873
12874         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
12875         AdvWaitEEPCmd(iop_base);
12876
12877         /*
12878          * Write EEPROM from word 0 to word 20.
12879          */
12880         for (addr = ADV_EEP_DVC_CFG_BEGIN;
12881              addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
12882                 ushort word;
12883
12884                 if (*charfields++) {
12885                         word = cpu_to_le16(*wbuf);
12886                 } else {
12887                         word = *wbuf;
12888                 }
12889                 chksum += *wbuf;        /* Checksum is calculated from word values. */
12890                 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
12891                 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
12892                                      ASC_EEP_CMD_WRITE | addr);
12893                 AdvWaitEEPCmd(iop_base);
12894                 mdelay(ADV_EEP_DELAY_MS);
12895         }
12896
12897         /*
12898          * Write EEPROM checksum at word 21.
12899          */
12900         AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
12901         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
12902         AdvWaitEEPCmd(iop_base);
12903         wbuf++;
12904         charfields++;
12905
12906         /*
12907          * Write EEPROM OEM name at words 22 to 29.
12908          */
12909         for (addr = ADV_EEP_DVC_CTL_BEGIN;
12910              addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
12911                 ushort word;
12912
12913                 if (*charfields++) {
12914                         word = cpu_to_le16(*wbuf);
12915                 } else {
12916                         word = *wbuf;
12917                 }
12918                 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
12919                 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
12920                                      ASC_EEP_CMD_WRITE | addr);
12921                 AdvWaitEEPCmd(iop_base);
12922         }
12923         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
12924         AdvWaitEEPCmd(iop_base);
12925 }
12926
12927 /*
12928  * Write the EEPROM from 'cfg_buf'.
12929  */
12930 void __devinit
12931 AdvSet38C1600EEPConfig(AdvPortAddr iop_base, ADVEEP_38C1600_CONFIG *cfg_buf)
12932 {
12933         ushort *wbuf;
12934         ushort *charfields;
12935         ushort addr, chksum;
12936
12937         wbuf = (ushort *)cfg_buf;
12938         charfields = (ushort *)&ADVEEP_38C1600_Config_Field_IsChar;
12939         chksum = 0;
12940
12941         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_ABLE);
12942         AdvWaitEEPCmd(iop_base);
12943
12944         /*
12945          * Write EEPROM from word 0 to word 20.
12946          */
12947         for (addr = ADV_EEP_DVC_CFG_BEGIN;
12948              addr < ADV_EEP_DVC_CFG_END; addr++, wbuf++) {
12949                 ushort word;
12950
12951                 if (*charfields++) {
12952                         word = cpu_to_le16(*wbuf);
12953                 } else {
12954                         word = *wbuf;
12955                 }
12956                 chksum += *wbuf;        /* Checksum is calculated from word values. */
12957                 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
12958                 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
12959                                      ASC_EEP_CMD_WRITE | addr);
12960                 AdvWaitEEPCmd(iop_base);
12961                 mdelay(ADV_EEP_DELAY_MS);
12962         }
12963
12964         /*
12965          * Write EEPROM checksum at word 21.
12966          */
12967         AdvWriteWordRegister(iop_base, IOPW_EE_DATA, chksum);
12968         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE | addr);
12969         AdvWaitEEPCmd(iop_base);
12970         wbuf++;
12971         charfields++;
12972
12973         /*
12974          * Write EEPROM OEM name at words 22 to 29.
12975          */
12976         for (addr = ADV_EEP_DVC_CTL_BEGIN;
12977              addr < ADV_EEP_MAX_WORD_ADDR; addr++, wbuf++) {
12978                 ushort word;
12979
12980                 if (*charfields++) {
12981                         word = cpu_to_le16(*wbuf);
12982                 } else {
12983                         word = *wbuf;
12984                 }
12985                 AdvWriteWordRegister(iop_base, IOPW_EE_DATA, word);
12986                 AdvWriteWordRegister(iop_base, IOPW_EE_CMD,
12987                                      ASC_EEP_CMD_WRITE | addr);
12988                 AdvWaitEEPCmd(iop_base);
12989         }
12990         AdvWriteWordRegister(iop_base, IOPW_EE_CMD, ASC_EEP_CMD_WRITE_DISABLE);
12991         AdvWaitEEPCmd(iop_base);
12992 }
12993
12994 /*
12995  * Read EEPROM configuration into the specified buffer.
12996  *
12997  * Return a checksum based on the EEPROM configuration read.
12998  */
12999 static ushort __devinit
13000 AdvGet3550EEPConfig(AdvPortAddr iop_base, ADVEEP_3550_CONFIG *cfg_buf)
13001 {
13002         ushort wval, chksum;
13003         ushort *wbuf;
13004         int eep_addr;
13005         ushort *charfields;
13006
13007         charfields = (ushort *)&ADVEEP_3550_Config_Field_IsChar;
13008         wbuf = (ushort *)cfg_buf;
13009         chksum = 0;
13010
13011         for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
13012              eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
13013                 wval = AdvReadEEPWord(iop_base, eep_addr);
13014                 chksum += wval; /* Checksum is calculated from word values. */
13015                 if (*charfields++) {
13016                         *wbuf = le16_to_cpu(wval);
13017                 } else {
13018                         *wbuf = wval;
13019                 }
13020         }
13021         /* Read checksum word. */
13022         *wbuf = AdvReadEEPWord(iop_base, eep_addr);
13023         wbuf++;
13024         charfields++;
13025
13026         /* Read rest of EEPROM not covered by the checksum. */
13027         for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
13028              eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
13029                 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
13030                 if (*charfields++) {
13031                         *wbuf = le16_to_cpu(*wbuf);
13032                 }
13033         }
13034         return chksum;
13035 }
13036
13037 /*
13038  * Read EEPROM configuration into the specified buffer.
13039  *
13040  * Return a checksum based on the EEPROM configuration read.
13041  */
13042 static ushort __devinit
13043 AdvGet38C0800EEPConfig(AdvPortAddr iop_base, ADVEEP_38C0800_CONFIG *cfg_buf)
13044 {
13045         ushort wval, chksum;
13046         ushort *wbuf;
13047         int eep_addr;
13048         ushort *charfields;
13049
13050         charfields = (ushort *)&ADVEEP_38C0800_Config_Field_IsChar;
13051         wbuf = (ushort *)cfg_buf;
13052         chksum = 0;
13053
13054         for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
13055              eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
13056                 wval = AdvReadEEPWord(iop_base, eep_addr);
13057                 chksum += wval; /* Checksum is calculated from word values. */
13058                 if (*charfields++) {
13059                         *wbuf = le16_to_cpu(wval);
13060                 } else {
13061                         *wbuf = wval;
13062                 }
13063         }
13064         /* Read checksum word. */
13065         *wbuf = AdvReadEEPWord(iop_base, eep_addr);
13066         wbuf++;
13067         charfields++;
13068
13069         /* Read rest of EEPROM not covered by the checksum. */
13070         for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
13071              eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
13072                 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
13073                 if (*charfields++) {
13074                         *wbuf = le16_to_cpu(*wbuf);
13075                 }
13076         }
13077         return chksum;
13078 }
13079
13080 /*
13081  * Read EEPROM configuration into the specified buffer.
13082  *
13083  * Return a checksum based on the EEPROM configuration read.
13084  */
13085 static ushort __devinit
13086 AdvGet38C1600EEPConfig(AdvPortAddr iop_base, ADVEEP_38C1600_CONFIG *cfg_buf)
13087 {
13088         ushort wval, chksum;
13089         ushort *wbuf;
13090         int eep_addr;
13091         ushort *charfields;
13092
13093         charfields = (ushort *)&ADVEEP_38C1600_Config_Field_IsChar;
13094         wbuf = (ushort *)cfg_buf;
13095         chksum = 0;
13096
13097         for (eep_addr = ADV_EEP_DVC_CFG_BEGIN;
13098              eep_addr < ADV_EEP_DVC_CFG_END; eep_addr++, wbuf++) {
13099                 wval = AdvReadEEPWord(iop_base, eep_addr);
13100                 chksum += wval; /* Checksum is calculated from word values. */
13101                 if (*charfields++) {
13102                         *wbuf = le16_to_cpu(wval);
13103                 } else {
13104                         *wbuf = wval;
13105                 }
13106         }
13107         /* Read checksum word. */
13108         *wbuf = AdvReadEEPWord(iop_base, eep_addr);
13109         wbuf++;
13110         charfields++;
13111
13112         /* Read rest of EEPROM not covered by the checksum. */
13113         for (eep_addr = ADV_EEP_DVC_CTL_BEGIN;
13114              eep_addr < ADV_EEP_MAX_WORD_ADDR; eep_addr++, wbuf++) {
13115                 *wbuf = AdvReadEEPWord(iop_base, eep_addr);
13116                 if (*charfields++) {
13117                         *wbuf = le16_to_cpu(*wbuf);
13118                 }
13119         }
13120         return chksum;
13121 }
13122
13123 /*
13124  * Read the board's EEPROM configuration. Set fields in ADV_DVC_VAR and
13125  * ADV_DVC_CFG based on the EEPROM settings. The chip is stopped while
13126  * all of this is done.
13127  *
13128  * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
13129  *
13130  * For a non-fatal error return a warning code. If there are no warnings
13131  * then 0 is returned.
13132  *
13133  * Note: Chip is stopped on entry.
13134  */
13135 static int __devinit AdvInitFrom3550EEP(ADV_DVC_VAR *asc_dvc)
13136 {
13137         AdvPortAddr iop_base;
13138         ushort warn_code;
13139         ADVEEP_3550_CONFIG eep_config;
13140
13141         iop_base = asc_dvc->iop_base;
13142
13143         warn_code = 0;
13144
13145         /*
13146          * Read the board's EEPROM configuration.
13147          *
13148          * Set default values if a bad checksum is found.
13149          */
13150         if (AdvGet3550EEPConfig(iop_base, &eep_config) != eep_config.check_sum) {
13151                 warn_code |= ASC_WARN_EEPROM_CHKSUM;
13152
13153                 /*
13154                  * Set EEPROM default values.
13155                  */
13156                 memcpy(&eep_config, &Default_3550_EEPROM_Config,
13157                         sizeof(ADVEEP_3550_CONFIG));
13158
13159                 /*
13160                  * Assume the 6 byte board serial number that was read from
13161                  * EEPROM is correct even if the EEPROM checksum failed.
13162                  */
13163                 eep_config.serial_number_word3 =
13164                     AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
13165
13166                 eep_config.serial_number_word2 =
13167                     AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
13168
13169                 eep_config.serial_number_word1 =
13170                     AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
13171
13172                 AdvSet3550EEPConfig(iop_base, &eep_config);
13173         }
13174         /*
13175          * Set ASC_DVC_VAR and ASC_DVC_CFG variables from the
13176          * EEPROM configuration that was read.
13177          *
13178          * This is the mapping of EEPROM fields to Adv Library fields.
13179          */
13180         asc_dvc->wdtr_able = eep_config.wdtr_able;
13181         asc_dvc->sdtr_able = eep_config.sdtr_able;
13182         asc_dvc->ultra_able = eep_config.ultra_able;
13183         asc_dvc->tagqng_able = eep_config.tagqng_able;
13184         asc_dvc->cfg->disc_enable = eep_config.disc_enable;
13185         asc_dvc->max_host_qng = eep_config.max_host_qng;
13186         asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
13187         asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ADV_MAX_TID);
13188         asc_dvc->start_motor = eep_config.start_motor;
13189         asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
13190         asc_dvc->bios_ctrl = eep_config.bios_ctrl;
13191         asc_dvc->no_scam = eep_config.scam_tolerant;
13192         asc_dvc->cfg->serial1 = eep_config.serial_number_word1;
13193         asc_dvc->cfg->serial2 = eep_config.serial_number_word2;
13194         asc_dvc->cfg->serial3 = eep_config.serial_number_word3;
13195
13196         /*
13197          * Set the host maximum queuing (max. 253, min. 16) and the per device
13198          * maximum queuing (max. 63, min. 4).
13199          */
13200         if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
13201                 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
13202         } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
13203                 /* If the value is zero, assume it is uninitialized. */
13204                 if (eep_config.max_host_qng == 0) {
13205                         eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
13206                 } else {
13207                         eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
13208                 }
13209         }
13210
13211         if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
13212                 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
13213         } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
13214                 /* If the value is zero, assume it is uninitialized. */
13215                 if (eep_config.max_dvc_qng == 0) {
13216                         eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
13217                 } else {
13218                         eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
13219                 }
13220         }
13221
13222         /*
13223          * If 'max_dvc_qng' is greater than 'max_host_qng', then
13224          * set 'max_dvc_qng' to 'max_host_qng'.
13225          */
13226         if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
13227                 eep_config.max_dvc_qng = eep_config.max_host_qng;
13228         }
13229
13230         /*
13231          * Set ADV_DVC_VAR 'max_host_qng' and ADV_DVC_VAR 'max_dvc_qng'
13232          * values based on possibly adjusted EEPROM values.
13233          */
13234         asc_dvc->max_host_qng = eep_config.max_host_qng;
13235         asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
13236
13237         /*
13238          * If the EEPROM 'termination' field is set to automatic (0), then set
13239          * the ADV_DVC_CFG 'termination' field to automatic also.
13240          *
13241          * If the termination is specified with a non-zero 'termination'
13242          * value check that a legal value is set and set the ADV_DVC_CFG
13243          * 'termination' field appropriately.
13244          */
13245         if (eep_config.termination == 0) {
13246                 asc_dvc->cfg->termination = 0;  /* auto termination */
13247         } else {
13248                 /* Enable manual control with low off / high off. */
13249                 if (eep_config.termination == 1) {
13250                         asc_dvc->cfg->termination = TERM_CTL_SEL;
13251
13252                         /* Enable manual control with low off / high on. */
13253                 } else if (eep_config.termination == 2) {
13254                         asc_dvc->cfg->termination = TERM_CTL_SEL | TERM_CTL_H;
13255
13256                         /* Enable manual control with low on / high on. */
13257                 } else if (eep_config.termination == 3) {
13258                         asc_dvc->cfg->termination =
13259                             TERM_CTL_SEL | TERM_CTL_H | TERM_CTL_L;
13260                 } else {
13261                         /*
13262                          * The EEPROM 'termination' field contains a bad value. Use
13263                          * automatic termination instead.
13264                          */
13265                         asc_dvc->cfg->termination = 0;
13266                         warn_code |= ASC_WARN_EEPROM_TERMINATION;
13267                 }
13268         }
13269
13270         return warn_code;
13271 }
13272
13273 /*
13274  * Read the board's EEPROM configuration. Set fields in ADV_DVC_VAR and
13275  * ADV_DVC_CFG based on the EEPROM settings. The chip is stopped while
13276  * all of this is done.
13277  *
13278  * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
13279  *
13280  * For a non-fatal error return a warning code. If there are no warnings
13281  * then 0 is returned.
13282  *
13283  * Note: Chip is stopped on entry.
13284  */
13285 static int __devinit AdvInitFrom38C0800EEP(ADV_DVC_VAR *asc_dvc)
13286 {
13287         AdvPortAddr iop_base;
13288         ushort warn_code;
13289         ADVEEP_38C0800_CONFIG eep_config;
13290         uchar tid, termination;
13291         ushort sdtr_speed = 0;
13292
13293         iop_base = asc_dvc->iop_base;
13294
13295         warn_code = 0;
13296
13297         /*
13298          * Read the board's EEPROM configuration.
13299          *
13300          * Set default values if a bad checksum is found.
13301          */
13302         if (AdvGet38C0800EEPConfig(iop_base, &eep_config) !=
13303             eep_config.check_sum) {
13304                 warn_code |= ASC_WARN_EEPROM_CHKSUM;
13305
13306                 /*
13307                  * Set EEPROM default values.
13308                  */
13309                 memcpy(&eep_config, &Default_38C0800_EEPROM_Config,
13310                         sizeof(ADVEEP_38C0800_CONFIG));
13311
13312                 /*
13313                  * Assume the 6 byte board serial number that was read from
13314                  * EEPROM is correct even if the EEPROM checksum failed.
13315                  */
13316                 eep_config.serial_number_word3 =
13317                     AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
13318
13319                 eep_config.serial_number_word2 =
13320                     AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
13321
13322                 eep_config.serial_number_word1 =
13323                     AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
13324
13325                 AdvSet38C0800EEPConfig(iop_base, &eep_config);
13326         }
13327         /*
13328          * Set ADV_DVC_VAR and ADV_DVC_CFG variables from the
13329          * EEPROM configuration that was read.
13330          *
13331          * This is the mapping of EEPROM fields to Adv Library fields.
13332          */
13333         asc_dvc->wdtr_able = eep_config.wdtr_able;
13334         asc_dvc->sdtr_speed1 = eep_config.sdtr_speed1;
13335         asc_dvc->sdtr_speed2 = eep_config.sdtr_speed2;
13336         asc_dvc->sdtr_speed3 = eep_config.sdtr_speed3;
13337         asc_dvc->sdtr_speed4 = eep_config.sdtr_speed4;
13338         asc_dvc->tagqng_able = eep_config.tagqng_able;
13339         asc_dvc->cfg->disc_enable = eep_config.disc_enable;
13340         asc_dvc->max_host_qng = eep_config.max_host_qng;
13341         asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
13342         asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ADV_MAX_TID);
13343         asc_dvc->start_motor = eep_config.start_motor;
13344         asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
13345         asc_dvc->bios_ctrl = eep_config.bios_ctrl;
13346         asc_dvc->no_scam = eep_config.scam_tolerant;
13347         asc_dvc->cfg->serial1 = eep_config.serial_number_word1;
13348         asc_dvc->cfg->serial2 = eep_config.serial_number_word2;
13349         asc_dvc->cfg->serial3 = eep_config.serial_number_word3;
13350
13351         /*
13352          * For every Target ID if any of its 'sdtr_speed[1234]' bits
13353          * are set, then set an 'sdtr_able' bit for it.
13354          */
13355         asc_dvc->sdtr_able = 0;
13356         for (tid = 0; tid <= ADV_MAX_TID; tid++) {
13357                 if (tid == 0) {
13358                         sdtr_speed = asc_dvc->sdtr_speed1;
13359                 } else if (tid == 4) {
13360                         sdtr_speed = asc_dvc->sdtr_speed2;
13361                 } else if (tid == 8) {
13362                         sdtr_speed = asc_dvc->sdtr_speed3;
13363                 } else if (tid == 12) {
13364                         sdtr_speed = asc_dvc->sdtr_speed4;
13365                 }
13366                 if (sdtr_speed & ADV_MAX_TID) {
13367                         asc_dvc->sdtr_able |= (1 << tid);
13368                 }
13369                 sdtr_speed >>= 4;
13370         }
13371
13372         /*
13373          * Set the host maximum queuing (max. 253, min. 16) and the per device
13374          * maximum queuing (max. 63, min. 4).
13375          */
13376         if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
13377                 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
13378         } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
13379                 /* If the value is zero, assume it is uninitialized. */
13380                 if (eep_config.max_host_qng == 0) {
13381                         eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
13382                 } else {
13383                         eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
13384                 }
13385         }
13386
13387         if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
13388                 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
13389         } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
13390                 /* If the value is zero, assume it is uninitialized. */
13391                 if (eep_config.max_dvc_qng == 0) {
13392                         eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
13393                 } else {
13394                         eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
13395                 }
13396         }
13397
13398         /*
13399          * If 'max_dvc_qng' is greater than 'max_host_qng', then
13400          * set 'max_dvc_qng' to 'max_host_qng'.
13401          */
13402         if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
13403                 eep_config.max_dvc_qng = eep_config.max_host_qng;
13404         }
13405
13406         /*
13407          * Set ADV_DVC_VAR 'max_host_qng' and ADV_DVC_VAR 'max_dvc_qng'
13408          * values based on possibly adjusted EEPROM values.
13409          */
13410         asc_dvc->max_host_qng = eep_config.max_host_qng;
13411         asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
13412
13413         /*
13414          * If the EEPROM 'termination' field is set to automatic (0), then set
13415          * the ADV_DVC_CFG 'termination' field to automatic also.
13416          *
13417          * If the termination is specified with a non-zero 'termination'
13418          * value check that a legal value is set and set the ADV_DVC_CFG
13419          * 'termination' field appropriately.
13420          */
13421         if (eep_config.termination_se == 0) {
13422                 termination = 0;        /* auto termination for SE */
13423         } else {
13424                 /* Enable manual control with low off / high off. */
13425                 if (eep_config.termination_se == 1) {
13426                         termination = 0;
13427
13428                         /* Enable manual control with low off / high on. */
13429                 } else if (eep_config.termination_se == 2) {
13430                         termination = TERM_SE_HI;
13431
13432                         /* Enable manual control with low on / high on. */
13433                 } else if (eep_config.termination_se == 3) {
13434                         termination = TERM_SE;
13435                 } else {
13436                         /*
13437                          * The EEPROM 'termination_se' field contains a bad value.
13438                          * Use automatic termination instead.
13439                          */
13440                         termination = 0;
13441                         warn_code |= ASC_WARN_EEPROM_TERMINATION;
13442                 }
13443         }
13444
13445         if (eep_config.termination_lvd == 0) {
13446                 asc_dvc->cfg->termination = termination;        /* auto termination for LVD */
13447         } else {
13448                 /* Enable manual control with low off / high off. */
13449                 if (eep_config.termination_lvd == 1) {
13450                         asc_dvc->cfg->termination = termination;
13451
13452                         /* Enable manual control with low off / high on. */
13453                 } else if (eep_config.termination_lvd == 2) {
13454                         asc_dvc->cfg->termination = termination | TERM_LVD_HI;
13455
13456                         /* Enable manual control with low on / high on. */
13457                 } else if (eep_config.termination_lvd == 3) {
13458                         asc_dvc->cfg->termination = termination | TERM_LVD;
13459                 } else {
13460                         /*
13461                          * The EEPROM 'termination_lvd' field contains a bad value.
13462                          * Use automatic termination instead.
13463                          */
13464                         asc_dvc->cfg->termination = termination;
13465                         warn_code |= ASC_WARN_EEPROM_TERMINATION;
13466                 }
13467         }
13468
13469         return warn_code;
13470 }
13471
13472 /*
13473  * Read the board's EEPROM configuration. Set fields in ASC_DVC_VAR and
13474  * ASC_DVC_CFG based on the EEPROM settings. The chip is stopped while
13475  * all of this is done.
13476  *
13477  * On failure set the ASC_DVC_VAR field 'err_code' and return ADV_ERROR.
13478  *
13479  * For a non-fatal error return a warning code. If there are no warnings
13480  * then 0 is returned.
13481  *
13482  * Note: Chip is stopped on entry.
13483  */
13484 static int __devinit AdvInitFrom38C1600EEP(ADV_DVC_VAR *asc_dvc)
13485 {
13486         AdvPortAddr iop_base;
13487         ushort warn_code;
13488         ADVEEP_38C1600_CONFIG eep_config;
13489         uchar tid, termination;
13490         ushort sdtr_speed = 0;
13491
13492         iop_base = asc_dvc->iop_base;
13493
13494         warn_code = 0;
13495
13496         /*
13497          * Read the board's EEPROM configuration.
13498          *
13499          * Set default values if a bad checksum is found.
13500          */
13501         if (AdvGet38C1600EEPConfig(iop_base, &eep_config) !=
13502             eep_config.check_sum) {
13503                 struct pci_dev *pdev = adv_dvc_to_pdev(asc_dvc);
13504                 warn_code |= ASC_WARN_EEPROM_CHKSUM;
13505
13506                 /*
13507                  * Set EEPROM default values.
13508                  */
13509                 memcpy(&eep_config, &Default_38C1600_EEPROM_Config,
13510                         sizeof(ADVEEP_38C1600_CONFIG));
13511
13512                 if (PCI_FUNC(pdev->devfn) != 0) {
13513                         u8 ints;
13514                         /*
13515                          * Disable Bit 14 (BIOS_ENABLE) to fix SPARC Ultra 60
13516                          * and old Mac system booting problem. The Expansion
13517                          * ROM must be disabled in Function 1 for these systems
13518                          */
13519                         eep_config.cfg_lsw &= ~ADV_EEPROM_BIOS_ENABLE;
13520                         /*
13521                          * Clear the INTAB (bit 11) if the GPIO 0 input
13522                          * indicates the Function 1 interrupt line is wired
13523                          * to INTB.
13524                          *
13525                          * Set/Clear Bit 11 (INTAB) from the GPIO bit 0 input:
13526                          *   1 - Function 1 interrupt line wired to INT A.
13527                          *   0 - Function 1 interrupt line wired to INT B.
13528                          *
13529                          * Note: Function 0 is always wired to INTA.
13530                          * Put all 5 GPIO bits in input mode and then read
13531                          * their input values.
13532                          */
13533                         AdvWriteByteRegister(iop_base, IOPB_GPIO_CNTL, 0);
13534                         ints = AdvReadByteRegister(iop_base, IOPB_GPIO_DATA);
13535                         if ((ints & 0x01) == 0)
13536                                 eep_config.cfg_lsw &= ~ADV_EEPROM_INTAB;
13537                 }
13538
13539                 /*
13540                  * Assume the 6 byte board serial number that was read from
13541                  * EEPROM is correct even if the EEPROM checksum failed.
13542                  */
13543                 eep_config.serial_number_word3 =
13544                         AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 1);
13545                 eep_config.serial_number_word2 =
13546                         AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 2);
13547                 eep_config.serial_number_word1 =
13548                         AdvReadEEPWord(iop_base, ADV_EEP_DVC_CFG_END - 3);
13549
13550                 AdvSet38C1600EEPConfig(iop_base, &eep_config);
13551         }
13552
13553         /*
13554          * Set ASC_DVC_VAR and ASC_DVC_CFG variables from the
13555          * EEPROM configuration that was read.
13556          *
13557          * This is the mapping of EEPROM fields to Adv Library fields.
13558          */
13559         asc_dvc->wdtr_able = eep_config.wdtr_able;
13560         asc_dvc->sdtr_speed1 = eep_config.sdtr_speed1;
13561         asc_dvc->sdtr_speed2 = eep_config.sdtr_speed2;
13562         asc_dvc->sdtr_speed3 = eep_config.sdtr_speed3;
13563         asc_dvc->sdtr_speed4 = eep_config.sdtr_speed4;
13564         asc_dvc->ppr_able = 0;
13565         asc_dvc->tagqng_able = eep_config.tagqng_able;
13566         asc_dvc->cfg->disc_enable = eep_config.disc_enable;
13567         asc_dvc->max_host_qng = eep_config.max_host_qng;
13568         asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
13569         asc_dvc->chip_scsi_id = (eep_config.adapter_scsi_id & ASC_MAX_TID);
13570         asc_dvc->start_motor = eep_config.start_motor;
13571         asc_dvc->scsi_reset_wait = eep_config.scsi_reset_delay;
13572         asc_dvc->bios_ctrl = eep_config.bios_ctrl;
13573         asc_dvc->no_scam = eep_config.scam_tolerant;
13574
13575         /*
13576          * For every Target ID if any of its 'sdtr_speed[1234]' bits
13577          * are set, then set an 'sdtr_able' bit for it.
13578          */
13579         asc_dvc->sdtr_able = 0;
13580         for (tid = 0; tid <= ASC_MAX_TID; tid++) {
13581                 if (tid == 0) {
13582                         sdtr_speed = asc_dvc->sdtr_speed1;
13583                 } else if (tid == 4) {
13584                         sdtr_speed = asc_dvc->sdtr_speed2;
13585                 } else if (tid == 8) {
13586                         sdtr_speed = asc_dvc->sdtr_speed3;
13587                 } else if (tid == 12) {
13588                         sdtr_speed = asc_dvc->sdtr_speed4;
13589                 }
13590                 if (sdtr_speed & ASC_MAX_TID) {
13591                         asc_dvc->sdtr_able |= (1 << tid);
13592                 }
13593                 sdtr_speed >>= 4;
13594         }
13595
13596         /*
13597          * Set the host maximum queuing (max. 253, min. 16) and the per device
13598          * maximum queuing (max. 63, min. 4).
13599          */
13600         if (eep_config.max_host_qng > ASC_DEF_MAX_HOST_QNG) {
13601                 eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
13602         } else if (eep_config.max_host_qng < ASC_DEF_MIN_HOST_QNG) {
13603                 /* If the value is zero, assume it is uninitialized. */
13604                 if (eep_config.max_host_qng == 0) {
13605                         eep_config.max_host_qng = ASC_DEF_MAX_HOST_QNG;
13606                 } else {
13607                         eep_config.max_host_qng = ASC_DEF_MIN_HOST_QNG;
13608                 }
13609         }
13610
13611         if (eep_config.max_dvc_qng > ASC_DEF_MAX_DVC_QNG) {
13612                 eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
13613         } else if (eep_config.max_dvc_qng < ASC_DEF_MIN_DVC_QNG) {
13614                 /* If the value is zero, assume it is uninitialized. */
13615                 if (eep_config.max_dvc_qng == 0) {
13616                         eep_config.max_dvc_qng = ASC_DEF_MAX_DVC_QNG;
13617                 } else {
13618                         eep_config.max_dvc_qng = ASC_DEF_MIN_DVC_QNG;
13619                 }
13620         }
13621
13622         /*
13623          * If 'max_dvc_qng' is greater than 'max_host_qng', then
13624          * set 'max_dvc_qng' to 'max_host_qng'.
13625          */
13626         if (eep_config.max_dvc_qng > eep_config.max_host_qng) {
13627                 eep_config.max_dvc_qng = eep_config.max_host_qng;
13628         }
13629
13630         /*
13631          * Set ASC_DVC_VAR 'max_host_qng' and ASC_DVC_VAR 'max_dvc_qng'
13632          * values based on possibly adjusted EEPROM values.
13633          */
13634         asc_dvc->max_host_qng = eep_config.max_host_qng;
13635         asc_dvc->max_dvc_qng = eep_config.max_dvc_qng;
13636
13637         /*
13638          * If the EEPROM 'termination' field is set to automatic (0), then set
13639          * the ASC_DVC_CFG 'termination' field to automatic also.
13640          *
13641          * If the termination is specified with a non-zero 'termination'
13642          * value check that a legal value is set and set the ASC_DVC_CFG
13643          * 'termination' field appropriately.
13644          */
13645         if (eep_config.termination_se == 0) {
13646                 termination = 0;        /* auto termination for SE */
13647         } else {
13648                 /* Enable manual control with low off / high off. */
13649                 if (eep_config.termination_se == 1) {
13650                         termination = 0;
13651
13652                         /* Enable manual control with low off / high on. */
13653                 } else if (eep_config.termination_se == 2) {
13654                         termination = TERM_SE_HI;
13655
13656                         /* Enable manual control with low on / high on. */
13657                 } else if (eep_config.termination_se == 3) {
13658                         termination = TERM_SE;
13659                 } else {
13660                         /*
13661                          * The EEPROM 'termination_se' field contains a bad value.
13662                          * Use automatic termination instead.
13663                          */
13664                         termination = 0;
13665                         warn_code |= ASC_WARN_EEPROM_TERMINATION;
13666                 }
13667         }
13668
13669         if (eep_config.termination_lvd == 0) {
13670                 asc_dvc->cfg->termination = termination;        /* auto termination for LVD */
13671         } else {
13672                 /* Enable manual control with low off / high off. */
13673                 if (eep_config.termination_lvd == 1) {
13674                         asc_dvc->cfg->termination = termination;
13675
13676                         /* Enable manual control with low off / high on. */
13677                 } else if (eep_config.termination_lvd == 2) {
13678                         asc_dvc->cfg->termination = termination | TERM_LVD_HI;
13679
13680                         /* Enable manual control with low on / high on. */
13681                 } else if (eep_config.termination_lvd == 3) {
13682                         asc_dvc->cfg->termination = termination | TERM_LVD;
13683                 } else {
13684                         /*
13685                          * The EEPROM 'termination_lvd' field contains a bad value.
13686                          * Use automatic termination instead.
13687                          */
13688                         asc_dvc->cfg->termination = termination;
13689                         warn_code |= ASC_WARN_EEPROM_TERMINATION;
13690                 }
13691         }
13692
13693         return warn_code;
13694 }
13695
13696 /*
13697  * Initialize the ADV_DVC_VAR structure.
13698  *
13699  * On failure set the ADV_DVC_VAR field 'err_code' and return ADV_ERROR.
13700  *
13701  * For a non-fatal error return a warning code. If there are no warnings
13702  * then 0 is returned.
13703  */
13704 static int __devinit
13705 AdvInitGetConfig(struct pci_dev *pdev, asc_board_t *boardp)
13706 {
13707         ADV_DVC_VAR *asc_dvc = &boardp->dvc_var.adv_dvc_var;
13708         unsigned short warn_code = 0;
13709         AdvPortAddr iop_base = asc_dvc->iop_base;
13710         u16 cmd;
13711         int status;
13712
13713         asc_dvc->err_code = 0;
13714
13715         /*
13716          * Save the state of the PCI Configuration Command Register
13717          * "Parity Error Response Control" Bit. If the bit is clear (0),
13718          * in AdvInitAsc3550/38C0800Driver() tell the microcode to ignore
13719          * DMA parity errors.
13720          */
13721         asc_dvc->cfg->control_flag = 0;
13722         pci_read_config_word(pdev, PCI_COMMAND, &cmd);
13723         if ((cmd & PCI_COMMAND_PARITY) == 0)
13724                 asc_dvc->cfg->control_flag |= CONTROL_FLAG_IGNORE_PERR;
13725
13726         asc_dvc->cfg->lib_version = (ADV_LIB_VERSION_MAJOR << 8) |
13727             ADV_LIB_VERSION_MINOR;
13728         asc_dvc->cfg->chip_version =
13729             AdvGetChipVersion(iop_base, asc_dvc->bus_type);
13730
13731         ASC_DBG2(1, "AdvInitGetConfig: iopb_chip_id_1: 0x%x 0x%x\n",
13732                  (ushort)AdvReadByteRegister(iop_base, IOPB_CHIP_ID_1),
13733                  (ushort)ADV_CHIP_ID_BYTE);
13734
13735         ASC_DBG2(1, "AdvInitGetConfig: iopw_chip_id_0: 0x%x 0x%x\n",
13736                  (ushort)AdvReadWordRegister(iop_base, IOPW_CHIP_ID_0),
13737                  (ushort)ADV_CHIP_ID_WORD);
13738
13739         /*
13740          * Reset the chip to start and allow register writes.
13741          */
13742         if (AdvFindSignature(iop_base) == 0) {
13743                 asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
13744                 return ADV_ERROR;
13745         } else {
13746                 /*
13747                  * The caller must set 'chip_type' to a valid setting.
13748                  */
13749                 if (asc_dvc->chip_type != ADV_CHIP_ASC3550 &&
13750                     asc_dvc->chip_type != ADV_CHIP_ASC38C0800 &&
13751                     asc_dvc->chip_type != ADV_CHIP_ASC38C1600) {
13752                         asc_dvc->err_code |= ASC_IERR_BAD_CHIPTYPE;
13753                         return ADV_ERROR;
13754                 }
13755
13756                 /*
13757                  * Reset Chip.
13758                  */
13759                 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
13760                                      ADV_CTRL_REG_CMD_RESET);
13761                 mdelay(100);
13762                 AdvWriteWordRegister(iop_base, IOPW_CTRL_REG,
13763                                      ADV_CTRL_REG_CMD_WR_IO_REG);
13764
13765                 if (asc_dvc->chip_type == ADV_CHIP_ASC38C1600) {
13766                         status = AdvInitFrom38C1600EEP(asc_dvc);
13767                 } else if (asc_dvc->chip_type == ADV_CHIP_ASC38C0800) {
13768                         status = AdvInitFrom38C0800EEP(asc_dvc);
13769                 } else {
13770                         status = AdvInitFrom3550EEP(asc_dvc);
13771                 }
13772                 warn_code |= status;
13773         }
13774
13775         if (warn_code != 0) {
13776                 ASC_PRINT2("AdvInitGetConfig: board %d: warning: 0x%x\n",
13777                            boardp->id, warn_code);
13778         }
13779
13780         if (asc_dvc->err_code) {
13781                 ASC_PRINT2("AdvInitGetConfig: board %d error: err_code 0x%x\n",
13782                      boardp->id, asc_dvc->err_code);
13783         }
13784
13785         return asc_dvc->err_code;
13786 }
13787 #endif
13788
13789 static struct scsi_host_template advansys_template = {
13790         .proc_name = DRV_NAME,
13791 #ifdef CONFIG_PROC_FS
13792         .proc_info = advansys_proc_info,
13793 #endif
13794         .name = DRV_NAME,
13795         .info = advansys_info,
13796         .queuecommand = advansys_queuecommand,
13797         .eh_bus_reset_handler = advansys_reset,
13798         .bios_param = advansys_biosparam,
13799         .slave_configure = advansys_slave_configure,
13800         /*
13801          * Because the driver may control an ISA adapter 'unchecked_isa_dma'
13802          * must be set. The flag will be cleared in advansys_board_found
13803          * for non-ISA adapters.
13804          */
13805         .unchecked_isa_dma = 1,
13806         /*
13807          * All adapters controlled by this driver are capable of large
13808          * scatter-gather lists. According to the mid-level SCSI documentation
13809          * this obviates any performance gain provided by setting
13810          * 'use_clustering'. But empirically while CPU utilization is increased
13811          * by enabling clustering, I/O throughput increases as well.
13812          */
13813         .use_clustering = ENABLE_CLUSTERING,
13814 };
13815
13816 static int __devinit
13817 advansys_wide_init_chip(asc_board_t *boardp, ADV_DVC_VAR *adv_dvc_varp)
13818 {
13819         int req_cnt = 0;
13820         adv_req_t *reqp = NULL;
13821         int sg_cnt = 0;
13822         adv_sgblk_t *sgp;
13823         int warn_code, err_code;
13824
13825         /*
13826          * Allocate buffer carrier structures. The total size
13827          * is about 4 KB, so allocate all at once.
13828          */
13829         boardp->carrp = kmalloc(ADV_CARRIER_BUFSIZE, GFP_KERNEL);
13830         ASC_DBG1(1, "advansys_wide_init_chip: carrp 0x%p\n", boardp->carrp);
13831
13832         if (!boardp->carrp)
13833                 goto kmalloc_failed;
13834
13835         /*
13836          * Allocate up to 'max_host_qng' request structures for the Wide
13837          * board. The total size is about 16 KB, so allocate all at once.
13838          * If the allocation fails decrement and try again.
13839          */
13840         for (req_cnt = adv_dvc_varp->max_host_qng; req_cnt > 0; req_cnt--) {
13841                 reqp = kmalloc(sizeof(adv_req_t) * req_cnt, GFP_KERNEL);
13842
13843                 ASC_DBG3(1, "advansys_wide_init_chip: reqp 0x%p, req_cnt %d, "
13844                          "bytes %lu\n", reqp, req_cnt,
13845                          (ulong)sizeof(adv_req_t) * req_cnt);
13846
13847                 if (reqp)
13848                         break;
13849         }
13850
13851         if (!reqp)
13852                 goto kmalloc_failed;
13853
13854         boardp->orig_reqp = reqp;
13855
13856         /*
13857          * Allocate up to ADV_TOT_SG_BLOCK request structures for
13858          * the Wide board. Each structure is about 136 bytes.
13859          */
13860         boardp->adv_sgblkp = NULL;
13861         for (sg_cnt = 0; sg_cnt < ADV_TOT_SG_BLOCK; sg_cnt++) {
13862                 sgp = kmalloc(sizeof(adv_sgblk_t), GFP_KERNEL);
13863
13864                 if (!sgp)
13865                         break;
13866
13867                 sgp->next_sgblkp = boardp->adv_sgblkp;
13868                 boardp->adv_sgblkp = sgp;
13869
13870         }
13871
13872         ASC_DBG3(1, "advansys_wide_init_chip: sg_cnt %d * %u = %u bytes\n",
13873                  sg_cnt, sizeof(adv_sgblk_t),
13874                  (unsigned)(sizeof(adv_sgblk_t) * sg_cnt));
13875
13876         if (!boardp->adv_sgblkp)
13877                 goto kmalloc_failed;
13878
13879         adv_dvc_varp->carrier_buf = boardp->carrp;
13880
13881         /*
13882          * Point 'adv_reqp' to the request structures and
13883          * link them together.
13884          */
13885         req_cnt--;
13886         reqp[req_cnt].next_reqp = NULL;
13887         for (; req_cnt > 0; req_cnt--) {
13888                 reqp[req_cnt - 1].next_reqp = &reqp[req_cnt];
13889         }
13890         boardp->adv_reqp = &reqp[0];
13891
13892         if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
13893                 ASC_DBG(2, "advansys_wide_init_chip: AdvInitAsc3550Driver()\n");
13894                 warn_code = AdvInitAsc3550Driver(adv_dvc_varp);
13895         } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
13896                 ASC_DBG(2, "advansys_wide_init_chip: AdvInitAsc38C0800Driver()"
13897                            "\n");
13898                 warn_code = AdvInitAsc38C0800Driver(adv_dvc_varp);
13899         } else {
13900                 ASC_DBG(2, "advansys_wide_init_chip: AdvInitAsc38C1600Driver()"
13901                            "\n");
13902                 warn_code = AdvInitAsc38C1600Driver(adv_dvc_varp);
13903         }
13904         err_code = adv_dvc_varp->err_code;
13905
13906         if (warn_code || err_code) {
13907                 ASC_PRINT3("advansys_wide_init_chip: board %d error: warn 0x%x,"
13908                            " error 0x%x\n", boardp->id, warn_code, err_code);
13909         }
13910
13911         goto exit;
13912
13913  kmalloc_failed:
13914         ASC_PRINT1("advansys_wide_init_chip: board %d error: kmalloc() "
13915                    "failed\n", boardp->id);
13916         err_code = ADV_ERROR;
13917  exit:
13918         return err_code;
13919 }
13920
13921 static void advansys_wide_free_mem(asc_board_t *boardp)
13922 {
13923         kfree(boardp->carrp);
13924         boardp->carrp = NULL;
13925         kfree(boardp->orig_reqp);
13926         boardp->orig_reqp = boardp->adv_reqp = NULL;
13927         while (boardp->adv_sgblkp) {
13928                 adv_sgblk_t *sgp = boardp->adv_sgblkp;
13929                 boardp->adv_sgblkp = sgp->next_sgblkp;
13930                 kfree(sgp);
13931         }
13932 }
13933
13934 static struct Scsi_Host *__devinit
13935 advansys_board_found(int iop, struct device *dev, int bus_type)
13936 {
13937         struct Scsi_Host *shost;
13938         struct pci_dev *pdev = bus_type == ASC_IS_PCI ? to_pci_dev(dev) : NULL;
13939         asc_board_t *boardp;
13940         ASC_DVC_VAR *asc_dvc_varp = NULL;
13941         ADV_DVC_VAR *adv_dvc_varp = NULL;
13942         int share_irq;
13943         int warn_code, err_code;
13944         int ret;
13945
13946         /*
13947          * Register the adapter, get its configuration, and
13948          * initialize it.
13949          */
13950         ASC_DBG(2, "advansys_board_found: scsi_host_alloc()\n");
13951         shost = scsi_host_alloc(&advansys_template, sizeof(asc_board_t));
13952         if (!shost)
13953                 return NULL;
13954
13955         /* Initialize private per board data */
13956         boardp = ASC_BOARDP(shost);
13957         memset(boardp, 0, sizeof(asc_board_t));
13958         boardp->id = asc_board_count++;
13959         spin_lock_init(&boardp->lock);
13960         boardp->dev = dev;
13961
13962         /*
13963          * Handle both narrow and wide boards.
13964          *
13965          * If a Wide board was detected, set the board structure
13966          * wide board flag. Set-up the board structure based on
13967          * the board type.
13968          */
13969 #ifdef CONFIG_PCI
13970         if (bus_type == ASC_IS_PCI &&
13971             (pdev->device == PCI_DEVICE_ID_ASP_ABP940UW ||
13972              pdev->device == PCI_DEVICE_ID_38C0800_REV1 ||
13973              pdev->device == PCI_DEVICE_ID_38C1600_REV1)) {
13974                 boardp->flags |= ASC_IS_WIDE_BOARD;
13975         }
13976 #endif /* CONFIG_PCI */
13977
13978         if (ASC_NARROW_BOARD(boardp)) {
13979                 ASC_DBG(1, "advansys_board_found: narrow board\n");
13980                 asc_dvc_varp = &boardp->dvc_var.asc_dvc_var;
13981                 asc_dvc_varp->bus_type = bus_type;
13982                 asc_dvc_varp->drv_ptr = boardp;
13983                 asc_dvc_varp->cfg = &boardp->dvc_cfg.asc_dvc_cfg;
13984                 asc_dvc_varp->cfg->overrun_buf = &overrun_buf[0];
13985                 asc_dvc_varp->iop_base = iop;
13986         } else {
13987 #ifdef CONFIG_PCI
13988                 ASC_DBG(1, "advansys_board_found: wide board\n");
13989                 adv_dvc_varp = &boardp->dvc_var.adv_dvc_var;
13990                 adv_dvc_varp->drv_ptr = boardp;
13991                 adv_dvc_varp->cfg = &boardp->dvc_cfg.adv_dvc_cfg;
13992                 if (pdev->device == PCI_DEVICE_ID_ASP_ABP940UW) {
13993                         ASC_DBG(1, "advansys_board_found: ASC-3550\n");
13994                         adv_dvc_varp->chip_type = ADV_CHIP_ASC3550;
13995                 } else if (pdev->device == PCI_DEVICE_ID_38C0800_REV1) {
13996                         ASC_DBG(1, "advansys_board_found: ASC-38C0800\n");
13997                         adv_dvc_varp->chip_type = ADV_CHIP_ASC38C0800;
13998                 } else {
13999                         ASC_DBG(1, "advansys_board_found: ASC-38C1600\n");
14000                         adv_dvc_varp->chip_type = ADV_CHIP_ASC38C1600;
14001                 }
14002
14003                 boardp->asc_n_io_port = pci_resource_len(pdev, 1);
14004                 boardp->ioremap_addr = ioremap(pci_resource_start(pdev, 1),
14005                                                boardp->asc_n_io_port);
14006                 if (!boardp->ioremap_addr) {
14007                         ASC_PRINT3
14008                             ("advansys_board_found: board %d: ioremap(%x, %d) returned NULL\n",
14009                              boardp->id, pci_resource_start(pdev, 1),
14010                              boardp->asc_n_io_port);
14011                         goto err_shost;
14012                 }
14013                 adv_dvc_varp->iop_base = (AdvPortAddr)boardp->ioremap_addr
14014                 ASC_DBG1(1, "advansys_board_found: iop_base: 0x%lx\n",
14015                          adv_dvc_varp->iop_base);
14016
14017                 /*
14018                  * Even though it isn't used to access wide boards, other
14019                  * than for the debug line below, save I/O Port address so
14020                  * that it can be reported.
14021                  */
14022                 boardp->ioport = iop;
14023
14024                 ASC_DBG2(1, "advansys_board_found: iopb_chip_id_1 0x%x, "
14025                          "iopw_chip_id_0 0x%x\n", (ushort)inp(iop + 1),
14026                          (ushort)inpw(iop));
14027 #endif /* CONFIG_PCI */
14028         }
14029
14030 #ifdef CONFIG_PROC_FS
14031         /*
14032          * Allocate buffer for printing information from
14033          * /proc/scsi/advansys/[0...].
14034          */
14035         boardp->prtbuf = kmalloc(ASC_PRTBUF_SIZE, GFP_KERNEL);
14036         if (!boardp->prtbuf) {
14037                 ASC_PRINT2("advansys_board_found: board %d: kmalloc(%d) "
14038                            "returned NULL\n", boardp->id, ASC_PRTBUF_SIZE);
14039                 goto err_unmap;
14040         }
14041 #endif /* CONFIG_PROC_FS */
14042
14043         if (ASC_NARROW_BOARD(boardp)) {
14044                 /*
14045                  * Set the board bus type and PCI IRQ before
14046                  * calling AscInitGetConfig().
14047                  */
14048                 switch (asc_dvc_varp->bus_type) {
14049 #ifdef CONFIG_ISA
14050                 case ASC_IS_ISA:
14051                         shost->unchecked_isa_dma = TRUE;
14052                         share_irq = 0;
14053                         break;
14054                 case ASC_IS_VL:
14055                         shost->unchecked_isa_dma = FALSE;
14056                         share_irq = 0;
14057                         break;
14058                 case ASC_IS_EISA:
14059                         shost->unchecked_isa_dma = FALSE;
14060                         share_irq = IRQF_SHARED;
14061                         break;
14062 #endif /* CONFIG_ISA */
14063 #ifdef CONFIG_PCI
14064                 case ASC_IS_PCI:
14065                         shost->irq = asc_dvc_varp->irq_no = pdev->irq;
14066                         shost->unchecked_isa_dma = FALSE;
14067                         share_irq = IRQF_SHARED;
14068                         break;
14069 #endif /* CONFIG_PCI */
14070                 default:
14071                         ASC_PRINT2
14072                             ("advansys_board_found: board %d: unknown adapter type: %d\n",
14073                              boardp->id, asc_dvc_varp->bus_type);
14074                         shost->unchecked_isa_dma = TRUE;
14075                         share_irq = 0;
14076                         break;
14077                 }
14078
14079                 /*
14080                  * NOTE: AscInitGetConfig() may change the board's
14081                  * bus_type value. The bus_type value should no
14082                  * longer be used. If the bus_type field must be
14083                  * referenced only use the bit-wise AND operator "&".
14084                  */
14085                 ASC_DBG(2, "advansys_board_found: AscInitGetConfig()\n");
14086                 err_code = AscInitGetConfig(boardp);
14087         } else {
14088 #ifdef CONFIG_PCI
14089                 /*
14090                  * For Wide boards set PCI information before calling
14091                  * AdvInitGetConfig().
14092                  */
14093                 shost->irq = adv_dvc_varp->irq_no = pdev->irq;
14094                 shost->unchecked_isa_dma = FALSE;
14095                 share_irq = IRQF_SHARED;
14096                 ASC_DBG(2, "advansys_board_found: AdvInitGetConfig()\n");
14097
14098                 err_code = AdvInitGetConfig(pdev, boardp);
14099 #endif /* CONFIG_PCI */
14100         }
14101
14102         if (err_code != 0)
14103                 goto err_free_proc;
14104
14105         /*
14106          * Save the EEPROM configuration so that it can be displayed
14107          * from /proc/scsi/advansys/[0...].
14108          */
14109         if (ASC_NARROW_BOARD(boardp)) {
14110
14111                 ASCEEP_CONFIG *ep;
14112
14113                 /*
14114                  * Set the adapter's target id bit in the 'init_tidmask' field.
14115                  */
14116                 boardp->init_tidmask |=
14117                     ADV_TID_TO_TIDMASK(asc_dvc_varp->cfg->chip_scsi_id);
14118
14119                 /*
14120                  * Save EEPROM settings for the board.
14121                  */
14122                 ep = &boardp->eep_config.asc_eep;
14123
14124                 ep->init_sdtr = asc_dvc_varp->cfg->sdtr_enable;
14125                 ep->disc_enable = asc_dvc_varp->cfg->disc_enable;
14126                 ep->use_cmd_qng = asc_dvc_varp->cfg->cmd_qng_enabled;
14127                 ASC_EEP_SET_DMA_SPD(ep, asc_dvc_varp->cfg->isa_dma_speed);
14128                 ep->start_motor = asc_dvc_varp->start_motor;
14129                 ep->cntl = asc_dvc_varp->dvc_cntl;
14130                 ep->no_scam = asc_dvc_varp->no_scam;
14131                 ep->max_total_qng = asc_dvc_varp->max_total_qng;
14132                 ASC_EEP_SET_CHIP_ID(ep, asc_dvc_varp->cfg->chip_scsi_id);
14133                 /* 'max_tag_qng' is set to the same value for every device. */
14134                 ep->max_tag_qng = asc_dvc_varp->cfg->max_tag_qng[0];
14135                 ep->adapter_info[0] = asc_dvc_varp->cfg->adapter_info[0];
14136                 ep->adapter_info[1] = asc_dvc_varp->cfg->adapter_info[1];
14137                 ep->adapter_info[2] = asc_dvc_varp->cfg->adapter_info[2];
14138                 ep->adapter_info[3] = asc_dvc_varp->cfg->adapter_info[3];
14139                 ep->adapter_info[4] = asc_dvc_varp->cfg->adapter_info[4];
14140                 ep->adapter_info[5] = asc_dvc_varp->cfg->adapter_info[5];
14141
14142                 /*
14143                  * Modify board configuration.
14144                  */
14145                 ASC_DBG(2, "advansys_board_found: AscInitSetConfig()\n");
14146                 err_code = AscInitSetConfig(pdev, boardp);
14147                 if (err_code)
14148                         goto err_free_proc;
14149
14150                 /*
14151                  * Finish initializing the 'Scsi_Host' structure.
14152                  */
14153                 /* AscInitSetConfig() will set the IRQ for non-PCI boards. */
14154                 if ((asc_dvc_varp->bus_type & ASC_IS_PCI) == 0) {
14155                         shost->irq = asc_dvc_varp->irq_no;
14156                 }
14157         } else {
14158                 ADVEEP_3550_CONFIG *ep_3550;
14159                 ADVEEP_38C0800_CONFIG *ep_38C0800;
14160                 ADVEEP_38C1600_CONFIG *ep_38C1600;
14161
14162                 /*
14163                  * Save Wide EEP Configuration Information.
14164                  */
14165                 if (adv_dvc_varp->chip_type == ADV_CHIP_ASC3550) {
14166                         ep_3550 = &boardp->eep_config.adv_3550_eep;
14167
14168                         ep_3550->adapter_scsi_id = adv_dvc_varp->chip_scsi_id;
14169                         ep_3550->max_host_qng = adv_dvc_varp->max_host_qng;
14170                         ep_3550->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
14171                         ep_3550->termination = adv_dvc_varp->cfg->termination;
14172                         ep_3550->disc_enable = adv_dvc_varp->cfg->disc_enable;
14173                         ep_3550->bios_ctrl = adv_dvc_varp->bios_ctrl;
14174                         ep_3550->wdtr_able = adv_dvc_varp->wdtr_able;
14175                         ep_3550->sdtr_able = adv_dvc_varp->sdtr_able;
14176                         ep_3550->ultra_able = adv_dvc_varp->ultra_able;
14177                         ep_3550->tagqng_able = adv_dvc_varp->tagqng_able;
14178                         ep_3550->start_motor = adv_dvc_varp->start_motor;
14179                         ep_3550->scsi_reset_delay =
14180                             adv_dvc_varp->scsi_reset_wait;
14181                         ep_3550->serial_number_word1 =
14182                             adv_dvc_varp->cfg->serial1;
14183                         ep_3550->serial_number_word2 =
14184                             adv_dvc_varp->cfg->serial2;
14185                         ep_3550->serial_number_word3 =
14186                             adv_dvc_varp->cfg->serial3;
14187                 } else if (adv_dvc_varp->chip_type == ADV_CHIP_ASC38C0800) {
14188                         ep_38C0800 = &boardp->eep_config.adv_38C0800_eep;
14189
14190                         ep_38C0800->adapter_scsi_id =
14191                             adv_dvc_varp->chip_scsi_id;
14192                         ep_38C0800->max_host_qng = adv_dvc_varp->max_host_qng;
14193                         ep_38C0800->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
14194                         ep_38C0800->termination_lvd =
14195                             adv_dvc_varp->cfg->termination;
14196                         ep_38C0800->disc_enable =
14197                             adv_dvc_varp->cfg->disc_enable;
14198                         ep_38C0800->bios_ctrl = adv_dvc_varp->bios_ctrl;
14199                         ep_38C0800->wdtr_able = adv_dvc_varp->wdtr_able;
14200                         ep_38C0800->tagqng_able = adv_dvc_varp->tagqng_able;
14201                         ep_38C0800->sdtr_speed1 = adv_dvc_varp->sdtr_speed1;
14202                         ep_38C0800->sdtr_speed2 = adv_dvc_varp->sdtr_speed2;
14203                         ep_38C0800->sdtr_speed3 = adv_dvc_varp->sdtr_speed3;
14204                         ep_38C0800->sdtr_speed4 = adv_dvc_varp->sdtr_speed4;
14205                         ep_38C0800->tagqng_able = adv_dvc_varp->tagqng_able;
14206                         ep_38C0800->start_motor = adv_dvc_varp->start_motor;
14207                         ep_38C0800->scsi_reset_delay =
14208                             adv_dvc_varp->scsi_reset_wait;
14209                         ep_38C0800->serial_number_word1 =
14210                             adv_dvc_varp->cfg->serial1;
14211                         ep_38C0800->serial_number_word2 =
14212                             adv_dvc_varp->cfg->serial2;
14213                         ep_38C0800->serial_number_word3 =
14214                             adv_dvc_varp->cfg->serial3;
14215                 } else {
14216                         ep_38C1600 = &boardp->eep_config.adv_38C1600_eep;
14217
14218                         ep_38C1600->adapter_scsi_id =
14219                             adv_dvc_varp->chip_scsi_id;
14220                         ep_38C1600->max_host_qng = adv_dvc_varp->max_host_qng;
14221                         ep_38C1600->max_dvc_qng = adv_dvc_varp->max_dvc_qng;
14222                         ep_38C1600->termination_lvd =
14223                             adv_dvc_varp->cfg->termination;
14224                         ep_38C1600->disc_enable =
14225                             adv_dvc_varp->cfg->disc_enable;
14226                         ep_38C1600->bios_ctrl = adv_dvc_varp->bios_ctrl;
14227                         ep_38C1600->wdtr_able = adv_dvc_varp->wdtr_able;
14228                         ep_38C1600->tagqng_able = adv_dvc_varp->tagqng_able;
14229                         ep_38C1600->sdtr_speed1 = adv_dvc_varp->sdtr_speed1;
14230                         ep_38C1600->sdtr_speed2 = adv_dvc_varp->sdtr_speed2;
14231                         ep_38C1600->sdtr_speed3 = adv_dvc_varp->sdtr_speed3;
14232                         ep_38C1600->sdtr_speed4 = adv_dvc_varp->sdtr_speed4;
14233                         ep_38C1600->tagqng_able = adv_dvc_varp->tagqng_able;
14234                         ep_38C1600->start_motor = adv_dvc_varp->start_motor;
14235                         ep_38C1600->scsi_reset_delay =
14236                             adv_dvc_varp->scsi_reset_wait;
14237                         ep_38C1600->serial_number_word1 =
14238                             adv_dvc_varp->cfg->serial1;
14239                         ep_38C1600->serial_number_word2 =
14240                             adv_dvc_varp->cfg->serial2;
14241                         ep_38C1600->serial_number_word3 =
14242                             adv_dvc_varp->cfg->serial3;
14243                 }
14244
14245                 /*
14246                  * Set the adapter's target id bit in the 'init_tidmask' field.
14247                  */
14248                 boardp->init_tidmask |=
14249                     ADV_TID_TO_TIDMASK(adv_dvc_varp->chip_scsi_id);
14250         }
14251
14252         /*
14253          * Channels are numbered beginning with 0. For AdvanSys one host
14254          * structure supports one channel. Multi-channel boards have a
14255          * separate host structure for each channel.
14256          */
14257         shost->max_channel = 0;
14258         if (ASC_NARROW_BOARD(boardp)) {
14259                 shost->max_id = ASC_MAX_TID + 1;
14260                 shost->max_lun = ASC_MAX_LUN + 1;
14261                 shost->max_cmd_len = ASC_MAX_CDB_LEN;
14262
14263                 shost->io_port = asc_dvc_varp->iop_base;
14264                 boardp->asc_n_io_port = ASC_IOADR_GAP;
14265                 shost->this_id = asc_dvc_varp->cfg->chip_scsi_id;
14266
14267                 /* Set maximum number of queues the adapter can handle. */
14268                 shost->can_queue = asc_dvc_varp->max_total_qng;
14269         } else {
14270                 shost->max_id = ADV_MAX_TID + 1;
14271                 shost->max_lun = ADV_MAX_LUN + 1;
14272                 shost->max_cmd_len = ADV_MAX_CDB_LEN;
14273
14274                 /*
14275                  * Save the I/O Port address and length even though
14276                  * I/O ports are not used to access Wide boards.
14277                  * Instead the Wide boards are accessed with
14278                  * PCI Memory Mapped I/O.
14279                  */
14280                 shost->io_port = iop;
14281
14282                 shost->this_id = adv_dvc_varp->chip_scsi_id;
14283
14284                 /* Set maximum number of queues the adapter can handle. */
14285                 shost->can_queue = adv_dvc_varp->max_host_qng;
14286         }
14287
14288         /*
14289          * Following v1.3.89, 'cmd_per_lun' is no longer needed
14290          * and should be set to zero.
14291          *
14292          * But because of a bug introduced in v1.3.89 if the driver is
14293          * compiled as a module and 'cmd_per_lun' is zero, the Mid-Level
14294          * SCSI function 'allocate_device' will panic. To allow the driver
14295          * to work as a module in these kernels set 'cmd_per_lun' to 1.
14296          *
14297          * Note: This is wrong.  cmd_per_lun should be set to the depth
14298          * you want on untagged devices always.
14299          #ifdef MODULE
14300          */
14301         shost->cmd_per_lun = 1;
14302 /* #else
14303             shost->cmd_per_lun = 0;
14304 #endif */
14305
14306         /*
14307          * Set the maximum number of scatter-gather elements the
14308          * adapter can handle.
14309          */
14310         if (ASC_NARROW_BOARD(boardp)) {
14311                 /*
14312                  * Allow two commands with 'sg_tablesize' scatter-gather
14313                  * elements to be executed simultaneously. This value is
14314                  * the theoretical hardware limit. It may be decreased
14315                  * below.
14316                  */
14317                 shost->sg_tablesize =
14318                     (((asc_dvc_varp->max_total_qng - 2) / 2) *
14319                      ASC_SG_LIST_PER_Q) + 1;
14320         } else {
14321                 shost->sg_tablesize = ADV_MAX_SG_LIST;
14322         }
14323
14324         /*
14325          * The value of 'sg_tablesize' can not exceed the SCSI
14326          * mid-level driver definition of SG_ALL. SG_ALL also
14327          * must not be exceeded, because it is used to define the
14328          * size of the scatter-gather table in 'struct asc_sg_head'.
14329          */
14330         if (shost->sg_tablesize > SG_ALL) {
14331                 shost->sg_tablesize = SG_ALL;
14332         }
14333
14334         ASC_DBG1(1, "advansys_board_found: sg_tablesize: %d\n", shost->sg_tablesize);
14335
14336         /* BIOS start address. */
14337         if (ASC_NARROW_BOARD(boardp)) {
14338                 shost->base = AscGetChipBiosAddress(asc_dvc_varp->iop_base,
14339                                                     asc_dvc_varp->bus_type);
14340         } else {
14341                 /*
14342                  * Fill-in BIOS board variables. The Wide BIOS saves
14343                  * information in LRAM that is used by the driver.
14344                  */
14345                 AdvReadWordLram(adv_dvc_varp->iop_base,
14346                                 BIOS_SIGNATURE, boardp->bios_signature);
14347                 AdvReadWordLram(adv_dvc_varp->iop_base,
14348                                 BIOS_VERSION, boardp->bios_version);
14349                 AdvReadWordLram(adv_dvc_varp->iop_base,
14350                                 BIOS_CODESEG, boardp->bios_codeseg);
14351                 AdvReadWordLram(adv_dvc_varp->iop_base,
14352                                 BIOS_CODELEN, boardp->bios_codelen);
14353
14354                 ASC_DBG2(1,
14355                          "advansys_board_found: bios_signature 0x%x, bios_version 0x%x\n",
14356                          boardp->bios_signature, boardp->bios_version);
14357
14358                 ASC_DBG2(1,
14359                          "advansys_board_found: bios_codeseg 0x%x, bios_codelen 0x%x\n",
14360                          boardp->bios_codeseg, boardp->bios_codelen);
14361
14362                 /*
14363                  * If the BIOS saved a valid signature, then fill in
14364                  * the BIOS code segment base address.
14365                  */
14366                 if (boardp->bios_signature == 0x55AA) {
14367                         /*
14368                          * Convert x86 realmode code segment to a linear
14369                          * address by shifting left 4.
14370                          */
14371                         shost->base = ((ulong)boardp->bios_codeseg << 4);
14372                 } else {
14373                         shost->base = 0;
14374                 }
14375         }
14376
14377         /*
14378          * Register Board Resources - I/O Port, DMA, IRQ
14379          */
14380
14381         /* Register DMA Channel for Narrow boards. */
14382         shost->dma_channel = NO_ISA_DMA;        /* Default to no ISA DMA. */
14383 #ifdef CONFIG_ISA
14384         if (ASC_NARROW_BOARD(boardp)) {
14385                 /* Register DMA channel for ISA bus. */
14386                 if (asc_dvc_varp->bus_type & ASC_IS_ISA) {
14387                         shost->dma_channel = asc_dvc_varp->cfg->isa_dma_channel;
14388                         ret = request_dma(shost->dma_channel, DRV_NAME);
14389                         if (ret) {
14390                                 ASC_PRINT3
14391                                     ("advansys_board_found: board %d: request_dma() %d failed %d\n",
14392                                      boardp->id, shost->dma_channel, ret);
14393                                 goto err_free_proc;
14394                         }
14395                         AscEnableIsaDma(shost->dma_channel);
14396                 }
14397         }
14398 #endif /* CONFIG_ISA */
14399
14400         /* Register IRQ Number. */
14401         ASC_DBG1(2, "advansys_board_found: request_irq() %d\n", shost->irq);
14402
14403         ret = request_irq(shost->irq, advansys_interrupt, share_irq,
14404                           DRV_NAME, shost);
14405
14406         if (ret) {
14407                 if (ret == -EBUSY) {
14408                         ASC_PRINT2
14409                             ("advansys_board_found: board %d: request_irq(): IRQ 0x%x already in use.\n",
14410                              boardp->id, shost->irq);
14411                 } else if (ret == -EINVAL) {
14412                         ASC_PRINT2
14413                             ("advansys_board_found: board %d: request_irq(): IRQ 0x%x not valid.\n",
14414                              boardp->id, shost->irq);
14415                 } else {
14416                         ASC_PRINT3
14417                             ("advansys_board_found: board %d: request_irq(): IRQ 0x%x failed with %d\n",
14418                              boardp->id, shost->irq, ret);
14419                 }
14420                 goto err_free_dma;
14421         }
14422
14423         /*
14424          * Initialize board RISC chip and enable interrupts.
14425          */
14426         if (ASC_NARROW_BOARD(boardp)) {
14427                 ASC_DBG(2, "advansys_board_found: AscInitAsc1000Driver()\n");
14428                 warn_code = AscInitAsc1000Driver(asc_dvc_varp);
14429                 err_code = asc_dvc_varp->err_code;
14430
14431                 if (warn_code || err_code) {
14432                         ASC_PRINT4
14433                             ("advansys_board_found: board %d error: init_state 0x%x, warn 0x%x, error 0x%x\n",
14434                              boardp->id,
14435                              asc_dvc_varp->init_state, warn_code, err_code);
14436                 }
14437         } else {
14438                 err_code = advansys_wide_init_chip(boardp, adv_dvc_varp);
14439         }
14440
14441         if (err_code != 0)
14442                 goto err_free_wide_mem;
14443
14444         ASC_DBG_PRT_SCSI_HOST(2, shost);
14445
14446         ret = scsi_add_host(shost, dev);
14447         if (ret)
14448                 goto err_free_wide_mem;
14449
14450         scsi_scan_host(shost);
14451         return shost;
14452
14453  err_free_wide_mem:
14454         advansys_wide_free_mem(boardp);
14455         free_irq(shost->irq, shost);
14456  err_free_dma:
14457         if (shost->dma_channel != NO_ISA_DMA)
14458                 free_dma(shost->dma_channel);
14459  err_free_proc:
14460         kfree(boardp->prtbuf);
14461  err_unmap:
14462         if (boardp->ioremap_addr)
14463                 iounmap(boardp->ioremap_addr);
14464  err_shost:
14465         scsi_host_put(shost);
14466         return NULL;
14467 }
14468
14469 /*
14470  * advansys_release()
14471  *
14472  * Release resources allocated for a single AdvanSys adapter.
14473  */
14474 static int advansys_release(struct Scsi_Host *shost)
14475 {
14476         asc_board_t *boardp;
14477
14478         ASC_DBG(1, "advansys_release: begin\n");
14479         scsi_remove_host(shost);
14480         boardp = ASC_BOARDP(shost);
14481         free_irq(shost->irq, shost);
14482         if (shost->dma_channel != NO_ISA_DMA) {
14483                 ASC_DBG(1, "advansys_release: free_dma()\n");
14484                 free_dma(shost->dma_channel);
14485         }
14486         if (ASC_WIDE_BOARD(boardp)) {
14487                 iounmap(boardp->ioremap_addr);
14488                 advansys_wide_free_mem(boardp);
14489         }
14490         kfree(boardp->prtbuf);
14491         scsi_host_put(shost);
14492         ASC_DBG(1, "advansys_release: end\n");
14493         return 0;
14494 }
14495
14496 #define ASC_IOADR_TABLE_MAX_IX  11
14497
14498 static PortAddr _asc_def_iop_base[ASC_IOADR_TABLE_MAX_IX] __devinitdata = {
14499         0x100, 0x0110, 0x120, 0x0130, 0x140, 0x0150, 0x0190,
14500         0x0210, 0x0230, 0x0250, 0x0330
14501 };
14502
14503 static int __devinit advansys_isa_probe(struct device *dev, unsigned int id)
14504 {
14505         PortAddr iop_base = _asc_def_iop_base[id];
14506         struct Scsi_Host *shost;
14507
14508         if (!request_region(iop_base, ASC_IOADR_GAP, DRV_NAME)) {
14509                 ASC_DBG1(1, "advansys_isa_match: I/O port 0x%x busy\n",
14510                          iop_base);
14511                 return -ENODEV;
14512         }
14513         ASC_DBG1(1, "advansys_isa_match: probing I/O port 0x%x\n", iop_base);
14514         if (!AscFindSignature(iop_base))
14515                 goto nodev;
14516         if (!(AscGetChipVersion(iop_base, ASC_IS_ISA) & ASC_CHIP_VER_ISA_BIT))
14517                 goto nodev;
14518
14519         shost = advansys_board_found(iop_base, dev, ASC_IS_ISA);
14520         if (!shost)
14521                 goto nodev;
14522
14523         dev_set_drvdata(dev, shost);
14524         return 0;
14525
14526  nodev:
14527         release_region(iop_base, ASC_IOADR_GAP);
14528         return -ENODEV;
14529 }
14530
14531 static int __devexit advansys_isa_remove(struct device *dev, unsigned int id)
14532 {
14533         int ioport = _asc_def_iop_base[id];
14534         advansys_release(dev_get_drvdata(dev));
14535         release_region(ioport, ASC_IOADR_GAP);
14536         return 0;
14537 }
14538
14539 static struct isa_driver advansys_isa_driver = {
14540         .probe          = advansys_isa_probe,
14541         .remove         = __devexit_p(advansys_isa_remove),
14542         .driver = {
14543                 .owner  = THIS_MODULE,
14544                 .name   = DRV_NAME,
14545         },
14546 };
14547
14548 static int __devinit advansys_vlb_probe(struct device *dev, unsigned int id)
14549 {
14550         PortAddr iop_base = _asc_def_iop_base[id];
14551         struct Scsi_Host *shost;
14552
14553         if (!request_region(iop_base, ASC_IOADR_GAP, DRV_NAME)) {
14554                 ASC_DBG1(1, "advansys_vlb_match: I/O port 0x%x busy\n",
14555                          iop_base);
14556                 return -ENODEV;
14557         }
14558         ASC_DBG1(1, "advansys_vlb_match: probing I/O port 0x%x\n", iop_base);
14559         if (!AscFindSignature(iop_base))
14560                 goto nodev;
14561         /*
14562          * I don't think this condition can actually happen, but the old
14563          * driver did it, and the chances of finding a VLB setup in 2007
14564          * to do testing with is slight to none.
14565          */
14566         if (AscGetChipVersion(iop_base, ASC_IS_VL) > ASC_CHIP_MAX_VER_VL)
14567                 goto nodev;
14568
14569         shost = advansys_board_found(iop_base, dev, ASC_IS_VL);
14570         if (!shost)
14571                 goto nodev;
14572
14573         dev_set_drvdata(dev, shost);
14574         return 0;
14575
14576  nodev:
14577         release_region(iop_base, ASC_IOADR_GAP);
14578         return -ENODEV;
14579 }
14580
14581 static struct isa_driver advansys_vlb_driver = {
14582         .probe          = advansys_vlb_probe,
14583         .remove         = __devexit_p(advansys_isa_remove),
14584         .driver = {
14585                 .owner  = THIS_MODULE,
14586                 .name   = "advansys_vlb",
14587         },
14588 };
14589
14590 static struct eisa_device_id advansys_eisa_table[] __devinitdata = {
14591         { "ABP7401" },
14592         { "ABP7501" },
14593         { "" }
14594 };
14595
14596 MODULE_DEVICE_TABLE(eisa, advansys_eisa_table);
14597
14598 /*
14599  * EISA is a little more tricky than PCI; each EISA device may have two
14600  * channels, and this driver is written to make each channel its own Scsi_Host
14601  */
14602 struct eisa_scsi_data {
14603         struct Scsi_Host *host[2];
14604 };
14605
14606 static int __devinit advansys_eisa_probe(struct device *dev)
14607 {
14608         int i, ioport;
14609         int err;
14610         struct eisa_device *edev = to_eisa_device(dev);
14611         struct eisa_scsi_data *data;
14612
14613         err = -ENOMEM;
14614         data = kzalloc(sizeof(*data), GFP_KERNEL);
14615         if (!data)
14616                 goto fail;
14617         ioport = edev->base_addr + 0xc30;
14618
14619         err = -ENODEV;
14620         for (i = 0; i < 2; i++, ioport += 0x20) {
14621                 if (!request_region(ioport, ASC_IOADR_GAP, DRV_NAME)) {
14622                         printk(KERN_WARNING "Region %x-%x busy\n", ioport,
14623                                ioport + ASC_IOADR_GAP - 1);
14624                         continue;
14625                 }
14626                 if (!AscFindSignature(ioport)) {
14627                         release_region(ioport, ASC_IOADR_GAP);
14628                         continue;
14629                 }
14630
14631                 /*
14632                  * I don't know why we need to do this for EISA chips, but
14633                  * not for any others.  It looks to be equivalent to
14634                  * AscGetChipCfgMsw, but I may have overlooked something,
14635                  * so I'm not converting it until I get an EISA board to
14636                  * test with.
14637                  */
14638                 inw(ioport + 4);
14639                 data->host[i] = advansys_board_found(ioport, dev, ASC_IS_EISA);
14640                 if (data->host[i]) {
14641                         err = 0;
14642                 } else {
14643                         release_region(ioport, ASC_IOADR_GAP);
14644                 }
14645         }
14646
14647         if (err) {
14648                 kfree(data);
14649         } else {
14650                 dev_set_drvdata(dev, data);
14651         }
14652
14653  fail:
14654         return err;
14655 }
14656
14657 static __devexit int advansys_eisa_remove(struct device *dev)
14658 {
14659         int i;
14660         struct eisa_scsi_data *data = dev_get_drvdata(dev);
14661
14662         for (i = 0; i < 2; i++) {
14663                 int ioport;
14664                 struct Scsi_Host *shost = data->host[i];
14665                 if (!shost)
14666                         continue;
14667                 ioport = shost->io_port;
14668                 advansys_release(shost);
14669                 release_region(ioport, ASC_IOADR_GAP);
14670         }
14671
14672         kfree(data);
14673         return 0;
14674 }
14675
14676 static struct eisa_driver advansys_eisa_driver = {
14677         .id_table =             advansys_eisa_table,
14678         .driver = {
14679                 .name =         DRV_NAME,
14680                 .probe =        advansys_eisa_probe,
14681                 .remove =       __devexit_p(advansys_eisa_remove),
14682         }
14683 };
14684
14685 /* PCI Devices supported by this driver */
14686 static struct pci_device_id advansys_pci_tbl[] __devinitdata = {
14687         {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_1200A,
14688          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
14689         {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940,
14690          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
14691         {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940U,
14692          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
14693         {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_ASP_ABP940UW,
14694          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
14695         {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_38C0800_REV1,
14696          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
14697         {PCI_VENDOR_ID_ASP, PCI_DEVICE_ID_38C1600_REV1,
14698          PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
14699         {}
14700 };
14701
14702 MODULE_DEVICE_TABLE(pci, advansys_pci_tbl);
14703
14704 static void __devinit advansys_set_latency(struct pci_dev *pdev)
14705 {
14706         if ((pdev->device == PCI_DEVICE_ID_ASP_1200A) ||
14707             (pdev->device == PCI_DEVICE_ID_ASP_ABP940)) {
14708                 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0);
14709         } else {
14710                 u8 latency;
14711                 pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency);
14712                 if (latency < 0x20)
14713                         pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x20);
14714         }
14715 }
14716
14717 static int __devinit
14718 advansys_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
14719 {
14720         int err, ioport;
14721         struct Scsi_Host *shost;
14722
14723         err = pci_enable_device(pdev);
14724         if (err)
14725                 goto fail;
14726         err = pci_request_regions(pdev, DRV_NAME);
14727         if (err)
14728                 goto disable_device;
14729         pci_set_master(pdev);
14730         advansys_set_latency(pdev);
14731
14732         if (pci_resource_len(pdev, 0) == 0)
14733                 goto nodev;
14734
14735         ioport = pci_resource_start(pdev, 0);
14736         shost = advansys_board_found(ioport, &pdev->dev, ASC_IS_PCI);
14737
14738         if (!shost)
14739                 goto nodev;
14740
14741         pci_set_drvdata(pdev, shost);
14742         return 0;
14743
14744  nodev:
14745         err = -ENODEV;
14746         pci_release_regions(pdev);
14747  disable_device:
14748         pci_disable_device(pdev);
14749  fail:
14750         return err;
14751 }
14752
14753 static void __devexit advansys_pci_remove(struct pci_dev *pdev)
14754 {
14755         advansys_release(pci_get_drvdata(pdev));
14756         pci_release_regions(pdev);
14757         pci_disable_device(pdev);
14758 }
14759
14760 static struct pci_driver advansys_pci_driver = {
14761         .name =         DRV_NAME,
14762         .id_table =     advansys_pci_tbl,
14763         .probe =        advansys_pci_probe,
14764         .remove =       __devexit_p(advansys_pci_remove),
14765 };
14766
14767 static int __init advansys_init(void)
14768 {
14769         int error;
14770
14771         error = isa_register_driver(&advansys_isa_driver,
14772                                     ASC_IOADR_TABLE_MAX_IX);
14773         if (error)
14774                 goto fail;
14775
14776         error = isa_register_driver(&advansys_vlb_driver,
14777                                     ASC_IOADR_TABLE_MAX_IX);
14778         if (error)
14779                 goto unregister_isa;
14780
14781         error = eisa_driver_register(&advansys_eisa_driver);
14782         if (error)
14783                 goto unregister_vlb;
14784
14785         error = pci_register_driver(&advansys_pci_driver);
14786         if (error)
14787                 goto unregister_eisa;
14788
14789         return 0;
14790
14791  unregister_eisa:
14792         eisa_driver_unregister(&advansys_eisa_driver);
14793  unregister_vlb:
14794         isa_unregister_driver(&advansys_vlb_driver);
14795  unregister_isa:
14796         isa_unregister_driver(&advansys_isa_driver);
14797  fail:
14798         return error;
14799 }
14800
14801 static void __exit advansys_exit(void)
14802 {
14803         pci_unregister_driver(&advansys_pci_driver);
14804         eisa_driver_unregister(&advansys_eisa_driver);
14805         isa_unregister_driver(&advansys_vlb_driver);
14806         isa_unregister_driver(&advansys_isa_driver);
14807 }
14808
14809 module_init(advansys_init);
14810 module_exit(advansys_exit);
14811
14812 MODULE_LICENSE("GPL");