advansys.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:724k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1.                     ASC_TENTHS(s->sg_xfer, 2));
  2.         ASC_PRT_NEXT();
  3.         /* Scatter gather transfer statistics */
  4.         len = asc_prt_line(cp, leftlen, " avg_num_elem %lu.%01lu, ",
  5.                     s->sg_elem/s->sg_cnt,
  6.                     ASC_TENTHS(s->sg_elem, s->sg_cnt));
  7.         ASC_PRT_NEXT();
  8.         len = asc_prt_line(cp, leftlen, "avg_elem_size %lu.%01lu kb, ",
  9.                     (s->sg_xfer/2)/s->sg_elem,
  10.                     ASC_TENTHS((s->sg_xfer/2), s->sg_elem));
  11.         ASC_PRT_NEXT();
  12.         len = asc_prt_line(cp, leftlen, "avg_xfer_size %lu.%01lu kbn",
  13.                     (s->sg_xfer/2)/s->sg_cnt,
  14.                     ASC_TENTHS((s->sg_xfer/2), s->sg_cnt));
  15.         ASC_PRT_NEXT();
  16.     }
  17.     /*
  18.      * Display request queuing statistics.
  19.      */
  20.     len = asc_prt_line(cp, leftlen,
  21. " Active and Waiting Request Queues (Time Unit: %d HZ):n", HZ);
  22.     ASC_PRT_NEXT();
  23.      return totlen;
  24. }
  25. /*
  26.  * asc_prt_target_stats()
  27.  *
  28.  * Note: no single line should be greater than ASC_PRTLINE_SIZE,
  29.  * cf. asc_prt_line().
  30.  *
  31.  * This is separated from asc_prt_board_stats because a full set
  32.  * of targets will overflow ASC_PRTBUF_SIZE.
  33.  *
  34.  * Return the number of characters copied into 'cp'. No more than
  35.  * 'cplen' characters will be copied to 'cp'.
  36.  */
  37. STATIC int
  38. asc_prt_target_stats(struct Scsi_Host *shp, int tgt_id, char *cp, int cplen)
  39. {
  40.     int                    leftlen;
  41.     int                    totlen;
  42.     int                    len;
  43.     struct asc_stats       *s;
  44.     ushort                 chip_scsi_id;
  45.     asc_board_t            *boardp;
  46.     asc_queue_t            *active;
  47.     asc_queue_t            *waiting;
  48.     leftlen = cplen;
  49.     totlen = len = 0;
  50.     boardp = ASC_BOARDP(shp);
  51.     s = &boardp->asc_stats;
  52.     active = &ASC_BOARDP(shp)->active;
  53.     waiting = &ASC_BOARDP(shp)->waiting;
  54.     if (ASC_NARROW_BOARD(boardp)) {
  55.         chip_scsi_id = boardp->dvc_cfg.asc_dvc_cfg.chip_scsi_id;
  56.     } else {
  57.         chip_scsi_id = boardp->dvc_var.adv_dvc_var.chip_scsi_id;
  58.     }
  59.     if ((chip_scsi_id == tgt_id) ||
  60.         ((boardp->init_tidmask & ADV_TID_TO_TIDMASK(tgt_id)) == 0)) {
  61.         return 0;
  62.     }
  63.     do {
  64.         if (active->q_tot_cnt[tgt_id] > 0 || waiting->q_tot_cnt[tgt_id] > 0) {
  65.             len = asc_prt_line(cp, leftlen, " target %dn", tgt_id);
  66.             ASC_PRT_NEXT();
  67.             len = asc_prt_line(cp, leftlen,
  68. "   active: cnt [cur %d, max %d, tot %u], time [min %d, max %d, avg %lu.%01lu]n",
  69.                 active->q_cur_cnt[tgt_id], active->q_max_cnt[tgt_id],
  70.                 active->q_tot_cnt[tgt_id],
  71.                 active->q_min_tim[tgt_id], active->q_max_tim[tgt_id],
  72.                 (active->q_tot_cnt[tgt_id] == 0) ? 0 :
  73.                 (active->q_tot_tim[tgt_id]/active->q_tot_cnt[tgt_id]),
  74.                 (active->q_tot_cnt[tgt_id] == 0) ? 0 :
  75.                 ASC_TENTHS(active->q_tot_tim[tgt_id],
  76.                 active->q_tot_cnt[tgt_id]));
  77.              ASC_PRT_NEXT();
  78.              len = asc_prt_line(cp, leftlen,
  79. "   waiting: cnt [cur %d, max %d, tot %u], time [min %u, max %u, avg %lu.%01lu]n",
  80.                 waiting->q_cur_cnt[tgt_id], waiting->q_max_cnt[tgt_id],
  81.                 waiting->q_tot_cnt[tgt_id],
  82.                 waiting->q_min_tim[tgt_id], waiting->q_max_tim[tgt_id],
  83.                 (waiting->q_tot_cnt[tgt_id] == 0) ? 0 :
  84.                 (waiting->q_tot_tim[tgt_id]/waiting->q_tot_cnt[tgt_id]),
  85.                 (waiting->q_tot_cnt[tgt_id] == 0) ? 0 :
  86.                 ASC_TENTHS(waiting->q_tot_tim[tgt_id],
  87.                 waiting->q_tot_cnt[tgt_id]));
  88.              ASC_PRT_NEXT();
  89.         }
  90.     } while (0);
  91.      return totlen;
  92. }
  93. #endif /* CONFIG_PROC_FS */
  94. #endif /* ADVANSYS_STATS */
  95. #ifdef ADVANSYS_DEBUG
  96. /*
  97.  * asc_prt_scsi_host()
  98.  */
  99. STATIC void
  100. asc_prt_scsi_host(struct Scsi_Host *s)
  101. {
  102.     asc_board_t         *boardp;
  103.     boardp = ASC_BOARDP(s);
  104.     printk("Scsi_Host at addr 0x%lxn", (ulong) s);
  105.     printk(
  106. " next 0x%lx, extra_bytes %u, host_busy %u, host_no %d, last_reset %d,n",
  107.         (ulong) s->next, s->extra_bytes, s->host_busy, s->host_no,
  108.         (unsigned) s->last_reset);
  109. #if ASC_LINUX_KERNEL24
  110.     printk(
  111. " host_queue 0x%lx, hostt 0x%lxn",
  112.         (ulong) s->host_queue, (ulong) s->hostt);
  113. #elif ASC_LINUX_KERNEL22
  114.     printk(
  115. " host_queue 0x%lx, hostt 0x%lx, block 0x%lx,n",
  116.         (ulong) s->host_queue, (ulong) s->hostt, (ulong) s->block);
  117. #endif
  118.     printk(
  119. " base 0x%lx, io_port 0x%lx, n_io_port %u, irq 0x%x,n",
  120.         (ulong) s->base, (ulong) s->io_port, s->n_io_port, s->irq);
  121.     printk(
  122. " dma_channel %d, this_id %d, can_queue %d,n",
  123.         s->dma_channel, s->this_id, s->can_queue);
  124.     printk(
  125. " cmd_per_lun %d, sg_tablesize %d, unchecked_isa_dma %d, loaded_as_module %dn",
  126.         s->cmd_per_lun, s->sg_tablesize, s->unchecked_isa_dma,
  127.         s->loaded_as_module);
  128.     if (ASC_NARROW_BOARD(boardp)) {
  129.         asc_prt_asc_dvc_var(&ASC_BOARDP(s)->dvc_var.asc_dvc_var);
  130.         asc_prt_asc_dvc_cfg(&ASC_BOARDP(s)->dvc_cfg.asc_dvc_cfg);
  131.     } else {
  132.         asc_prt_adv_dvc_var(&ASC_BOARDP(s)->dvc_var.adv_dvc_var);
  133.         asc_prt_adv_dvc_cfg(&ASC_BOARDP(s)->dvc_cfg.adv_dvc_cfg);
  134.     }
  135. }
  136. /*
  137.  * asc_prt_scsi_cmnd()
  138.  */
  139. STATIC void
  140. asc_prt_scsi_cmnd(Scsi_Cmnd *s)
  141. {
  142.     printk("Scsi_Cmnd at addr 0x%lxn", (ulong) s);
  143.     printk(
  144. " host 0x%lx, device 0x%lx, target %u, lun %u, channel %u,n",
  145.         (ulong) s->host, (ulong) s->device, s->target, s->lun,
  146.         s->channel);
  147.     asc_prt_hex(" CDB", s->cmnd, s->cmd_len);
  148. #if ASC_LINUX_KERNEL24
  149.     printk (
  150. "sc_data_direction %u, resid %dn",
  151.         s->sc_data_direction, s->resid);
  152. #endif
  153.     printk(
  154. " use_sg %u, sglist_len %u, abort_reason 0x%xn",
  155.         s->use_sg, s->sglist_len, s->abort_reason);
  156.     printk(
  157. " serial_number 0x%x, serial_number_at_timeout 0x%x, retries %d, allowed %dn",
  158.         (unsigned) s->serial_number, (unsigned) s->serial_number_at_timeout,
  159.          s->retries, s->allowed);
  160.     printk(
  161. " timeout_per_command %d, timeout_total %d, timeout %dn",
  162.         s->timeout_per_command, s->timeout_total, s->timeout);
  163. #if ASC_LINUX_KERNEL24
  164.     printk(
  165. " internal_timeout %u, flags %un",
  166.         s->internal_timeout, s->flags);
  167. #elif ASC_LINUX_KERNEL22
  168.     printk(
  169. " internal_timeout %u, flags %u, this_count %dn",
  170.         s->internal_timeout, s->flags,s->this_count);
  171. #endif
  172.     printk(
  173. " scsi_done 0x%lx, done 0x%lx, host_scribble 0x%lx, result 0x%xn",
  174.         (ulong) s->scsi_done, (ulong) s->done,
  175.         (ulong) s->host_scribble, s->result);
  176.     printk(
  177. " tag %u, pid %un",
  178.         (unsigned) s->tag, (unsigned) s->pid);
  179. }
  180. /*
  181.  * asc_prt_asc_dvc_var()
  182.  */
  183. STATIC void
  184. asc_prt_asc_dvc_var(ASC_DVC_VAR *h)
  185. {
  186.     printk("ASC_DVC_VAR at addr 0x%lxn", (ulong) h);
  187.     printk(
  188. " iop_base 0x%x, err_code 0x%x, dvc_cntl 0x%x, bug_fix_cntl %d,n",
  189.         h->iop_base, h->err_code, h->dvc_cntl, h->bug_fix_cntl);
  190.     printk(
  191. " bus_type %d, isr_callback 0x%lx, exe_callback 0x%lx, init_sdtr 0x%x,n",
  192.         h->bus_type, (ulong) h->isr_callback, (ulong) h->exe_callback,
  193.         (unsigned) h->init_sdtr);
  194.     printk(
  195. " sdtr_done 0x%x, use_tagged_qng 0x%x, unit_not_ready 0x%x, chip_no 0x%x,n",
  196.         (unsigned) h->sdtr_done, (unsigned) h->use_tagged_qng,
  197.         (unsigned) h->unit_not_ready, (unsigned) h->chip_no);
  198.     printk(
  199. " queue_full_or_busy 0x%x, start_motor 0x%x, scsi_reset_wait %u,n",
  200.         (unsigned) h->queue_full_or_busy, (unsigned) h->start_motor,
  201.         (unsigned) h->scsi_reset_wait);
  202.     printk(
  203. " is_in_int %u, max_total_qng %u, cur_total_qng %u, in_critical_cnt %u,n",
  204.         (unsigned) h->is_in_int, (unsigned) h->max_total_qng,
  205.         (unsigned) h->cur_total_qng, (unsigned) h->in_critical_cnt);
  206.     printk(
  207. " last_q_shortage %u, init_state 0x%x, no_scam 0x%x, pci_fix_asyn_xfer 0x%x,n",
  208.         (unsigned) h->last_q_shortage, (unsigned) h->init_state,
  209.         (unsigned) h->no_scam, (unsigned) h->pci_fix_asyn_xfer);
  210.     printk(
  211. " cfg 0x%lx, irq_no 0x%xn",
  212.         (ulong) h->cfg, (unsigned) h->irq_no);
  213. }
  214. /*
  215.  * asc_prt_asc_dvc_cfg()
  216.  */
  217. STATIC void
  218. asc_prt_asc_dvc_cfg(ASC_DVC_CFG *h)
  219. {
  220.     printk("ASC_DVC_CFG at addr 0x%lxn", (ulong) h);
  221.     printk(
  222. " can_tagged_qng 0x%x, cmd_qng_enabled 0x%x,n",
  223.             h->can_tagged_qng, h->cmd_qng_enabled);
  224.     printk(
  225. " disc_enable 0x%x, sdtr_enable 0x%x,n",
  226.             h->disc_enable, h->sdtr_enable);
  227.     printk(
  228. " chip_scsi_id %d, isa_dma_speed %d, isa_dma_channel %d, chip_version %d,n",
  229.              h->chip_scsi_id, h->isa_dma_speed, h->isa_dma_channel,
  230.              h->chip_version);
  231.     printk(
  232. " pci_device_id %d, lib_serial_no %u, lib_version %u, mcode_date 0x%x,n",
  233.           h->pci_device_id, h->lib_serial_no, h->lib_version, h->mcode_date);
  234.     printk(
  235. " mcode_version %d, overrun_buf 0x%lxn",
  236.             h->mcode_version, (ulong) h->overrun_buf);
  237. }
  238. /*
  239.  * asc_prt_asc_scsi_q()
  240.  */
  241. STATIC void
  242. asc_prt_asc_scsi_q(ASC_SCSI_Q *q)
  243. {
  244.     ASC_SG_HEAD    *sgp;
  245.     int i;
  246.     printk("ASC_SCSI_Q at addr 0x%lxn", (ulong) q);
  247.     printk(
  248. " target_ix 0x%x, target_lun %u, srb_ptr 0x%lx, tag_code 0x%x,n",
  249.             q->q2.target_ix, q->q1.target_lun,
  250.             (ulong) q->q2.srb_ptr, q->q2.tag_code);
  251.     printk(
  252. " data_addr 0x%lx, data_cnt %lu, sense_addr 0x%lx, sense_len %u,n",
  253.             (ulong) le32_to_cpu(q->q1.data_addr),
  254.             (ulong) le32_to_cpu(q->q1.data_cnt),
  255.             (ulong) le32_to_cpu(q->q1.sense_addr), q->q1.sense_len);
  256.     printk(
  257. " cdbptr 0x%lx, cdb_len %u, sg_head 0x%lx, sg_queue_cnt %un",
  258.             (ulong) q->cdbptr, q->q2.cdb_len,
  259.             (ulong) q->sg_head, q->q1.sg_queue_cnt);
  260.     if (q->sg_head) {
  261.         sgp = q->sg_head;
  262.         printk("ASC_SG_HEAD at addr 0x%lxn", (ulong) sgp);
  263.         printk(" entry_cnt %u, queue_cnt %un", sgp->entry_cnt, sgp->queue_cnt);
  264.         for (i = 0; i < sgp->entry_cnt; i++) {
  265.             printk(" [%u]: addr 0x%lx, bytes %lun",
  266.                 i, (ulong) le32_to_cpu(sgp->sg_list[i].addr),
  267.                 (ulong) le32_to_cpu(sgp->sg_list[i].bytes));
  268.         }
  269.     }
  270. }
  271. /*
  272.  * asc_prt_asc_qdone_info()
  273.  */
  274. STATIC void
  275. asc_prt_asc_qdone_info(ASC_QDONE_INFO *q)
  276. {
  277.     printk("ASC_QDONE_INFO at addr 0x%lxn", (ulong) q);
  278.     printk(
  279. " srb_ptr 0x%lx, target_ix %u, cdb_len %u, tag_code %u,n",
  280.             (ulong) q->d2.srb_ptr, q->d2.target_ix, q->d2.cdb_len,
  281.             q->d2.tag_code);
  282.     printk(
  283. " done_stat 0x%x, host_stat 0x%x, scsi_stat 0x%x, scsi_msg 0x%xn",
  284.             q->d3.done_stat, q->d3.host_stat, q->d3.scsi_stat, q->d3.scsi_msg);
  285. }
  286. /*
  287.  * asc_prt_adv_dvc_var()
  288.  *
  289.  * Display an ADV_DVC_VAR structure.
  290.  */
  291. STATIC void
  292. asc_prt_adv_dvc_var(ADV_DVC_VAR *h)
  293. {
  294.     printk(" ADV_DVC_VAR at addr 0x%lxn", (ulong) h);
  295.     printk(
  296. "  iop_base 0x%lx, err_code 0x%x, ultra_able 0x%xn",
  297.         (ulong) h->iop_base, h->err_code, (unsigned) h->ultra_able);
  298.     printk(
  299. "  isr_callback 0x%lx, sdtr_able 0x%x, wdtr_able 0x%xn",
  300.         (ulong) h->isr_callback, (unsigned) h->sdtr_able,
  301.         (unsigned) h->wdtr_able);
  302.     printk(
  303. "  start_motor 0x%x, scsi_reset_wait 0x%x, irq_no 0x%x,n",
  304.         (unsigned) h->start_motor,
  305.         (unsigned) h->scsi_reset_wait, (unsigned) h->irq_no);
  306.     printk(
  307. "  max_host_qng %u, max_dvc_qng %u, carr_freelist 0x%lxnn",
  308.         (unsigned) h->max_host_qng, (unsigned) h->max_dvc_qng,
  309.         (ulong) h->carr_freelist);
  310.     printk(
  311. "  icq_sp 0x%lx, irq_sp 0x%lxn",
  312.         (ulong) h->icq_sp, (ulong) h->irq_sp);
  313.     printk(
  314. "  no_scam 0x%x, tagqng_able 0x%xn",
  315.         (unsigned) h->no_scam, (unsigned) h->tagqng_able);
  316.     printk(
  317. "  chip_scsi_id 0x%x, cfg 0x%lxn",
  318.         (unsigned) h->chip_scsi_id, (ulong) h->cfg);
  319. }
  320. /*
  321.  * asc_prt_adv_dvc_cfg()
  322.  *
  323.  * Display an ADV_DVC_CFG structure.
  324.  */
  325. STATIC void
  326. asc_prt_adv_dvc_cfg(ADV_DVC_CFG *h)
  327. {
  328.     printk(" ADV_DVC_CFG at addr 0x%lxn", (ulong) h);
  329.     printk(
  330. "  disc_enable 0x%x, termination 0x%xn",
  331.         h->disc_enable, h->termination);
  332.     printk(
  333. "  chip_version 0x%x, mcode_date 0x%xn",
  334.         h->chip_version, h->mcode_date);
  335.     printk(
  336. "  mcode_version 0x%x, pci_device_id 0x%x, lib_version %un",
  337.        h->mcode_version, h->pci_device_id, h->lib_version);
  338.     printk(
  339. "  control_flag 0x%x, pci_slot_info 0x%xn",
  340.        h->control_flag, h->pci_slot_info);
  341. }
  342. /*
  343.  * asc_prt_adv_scsi_req_q()
  344.  *
  345.  * Display an ADV_SCSI_REQ_Q structure.
  346.  */
  347. STATIC void
  348. asc_prt_adv_scsi_req_q(ADV_SCSI_REQ_Q *q)
  349. {
  350.     int                 sg_blk_cnt;
  351.     struct asc_sg_block *sg_ptr;
  352.     printk("ADV_SCSI_REQ_Q at addr 0x%lxn", (ulong) q);
  353.     printk(
  354. "  target_id %u, target_lun %u, srb_ptr 0x%lx, a_flag 0x%xn",
  355.             q->target_id, q->target_lun, (ulong) q->srb_ptr, q->a_flag);
  356.     printk("  cntl 0x%x, data_addr 0x%lx, vdata_addr 0x%lxn",
  357.             q->cntl, (ulong) le32_to_cpu(q->data_addr), (ulong) q->vdata_addr);
  358.     printk(
  359. "  data_cnt %lu, sense_addr 0x%lx, sense_len %u,n",
  360.             (ulong) le32_to_cpu(q->data_cnt),
  361.             (ulong) le32_to_cpu(q->sense_addr), q->sense_len);
  362.     printk(
  363. "  cdb_len %u, done_status 0x%x, host_status 0x%x, scsi_status 0x%xn",
  364.             q->cdb_len, q->done_status, q->host_status, q->scsi_status);
  365.     printk(
  366. "  sg_working_ix 0x%x, target_cmd %un",
  367.             q->sg_working_ix, q->target_cmd);
  368.     printk(
  369. "  scsiq_rptr 0x%lx, sg_real_addr 0x%lx, sg_list_ptr 0x%lxn",
  370.             (ulong) le32_to_cpu(q->scsiq_rptr),
  371.             (ulong) le32_to_cpu(q->sg_real_addr), (ulong) q->sg_list_ptr);
  372.     /* Display the request's ADV_SG_BLOCK structures. */
  373.     if (q->sg_list_ptr != NULL)
  374.     {
  375.         sg_blk_cnt = 0;
  376.         while (1) {
  377.             /*
  378.              * 'sg_ptr' is a physical address. Convert it to a virtual
  379.              * address by indexing 'sg_blk_cnt' into the virtual address
  380.              * array 'sg_list_ptr'.
  381.              *
  382.              * XXX - Assumes all SG physical blocks are virtually contiguous.
  383.              */
  384.             sg_ptr = &(((ADV_SG_BLOCK *) (q->sg_list_ptr))[sg_blk_cnt]);
  385.             asc_prt_adv_sgblock(sg_blk_cnt, sg_ptr);
  386.             if (sg_ptr->sg_ptr == 0)
  387.             {
  388.                 break;
  389.             }
  390.             sg_blk_cnt++;
  391.         }
  392.     }
  393. }
  394. /*
  395.  * asc_prt_adv_sgblock()
  396.  *
  397.  * Display an ADV_SG_BLOCK structure.
  398.  */
  399. STATIC void
  400. asc_prt_adv_sgblock(int sgblockno, ADV_SG_BLOCK *b)
  401. {
  402.     int i;
  403.     printk(" ASC_SG_BLOCK at addr 0x%lx (sgblockno %d)n",
  404.         (ulong) b, sgblockno);
  405.     printk("  sg_cnt %u, sg_ptr 0x%lxn",
  406.         b->sg_cnt, (ulong) le32_to_cpu(b->sg_ptr));
  407.     ASC_ASSERT(b->sg_cnt <= NO_OF_SG_PER_BLOCK);
  408.     if (b->sg_ptr != 0)
  409.     {
  410.         ASC_ASSERT(b->sg_cnt == NO_OF_SG_PER_BLOCK);
  411.     }
  412.     for (i = 0; i < b->sg_cnt; i++) {
  413.         printk("  [%u]: sg_addr 0x%lx, sg_count 0x%lxn",
  414.             i, (ulong) b->sg_list[i].sg_addr, (ulong) b->sg_list[i].sg_count);
  415.     }
  416. }
  417. /*
  418.  * asc_prt_hex()
  419.  *
  420.  * Print hexadecimal output in 4 byte groupings 32 bytes
  421.  * or 8 double-words per line.
  422.  */
  423. STATIC void
  424. asc_prt_hex(char *f, uchar *s, int l)
  425. {
  426.     int            i;
  427.     int            j;
  428.     int            k;
  429.     int            m;
  430.     printk("%s: (%d bytes)n", f, l);
  431.     for (i = 0; i < l; i += 32) {
  432.         /* Display a maximum of 8 double-words per line. */
  433.         if ((k = (l - i) / 4) >= 8) {
  434.             k = 8;
  435.             m = 0;
  436.         } else {
  437.             m = (l - i) % 4;
  438.         }
  439.         for (j = 0; j < k; j++) {
  440.             printk(" %2.2X%2.2X%2.2X%2.2X",
  441.                 (unsigned) s[i+(j*4)], (unsigned) s[i+(j*4)+1],
  442.                 (unsigned) s[i+(j*4)+2], (unsigned) s[i+(j*4)+3]);
  443.         }
  444.         switch (m) {
  445.         case 0:
  446.         default:
  447.             break;
  448.         case 1:
  449.             printk(" %2.2X",
  450.                 (unsigned) s[i+(j*4)]);
  451.             break;
  452.         case 2:
  453.             printk(" %2.2X%2.2X",
  454.                 (unsigned) s[i+(j*4)],
  455.                 (unsigned) s[i+(j*4)+1]);
  456.             break;
  457.         case 3:
  458.             printk(" %2.2X%2.2X%2.2X",
  459.                 (unsigned) s[i+(j*4)+1],
  460.                 (unsigned) s[i+(j*4)+2],
  461.                 (unsigned) s[i+(j*4)+3]);
  462.             break;
  463.         }
  464.         printk("n");
  465.     }
  466. }
  467. #endif /* ADVANSYS_DEBUG */
  468. /*
  469.  * --- Asc Library Functions
  470.  */
  471. ASC_INITFUNC(
  472. STATIC ushort,
  473. AscGetEisaChipCfg(
  474.                      PortAddr iop_base
  475. )
  476. )
  477. {
  478.     PortAddr            eisa_cfg_iop;
  479.     eisa_cfg_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
  480.       (PortAddr) (ASC_EISA_CFG_IOP_MASK);
  481.     return (inpw(eisa_cfg_iop));
  482. }
  483. ASC_INITFUNC(
  484. STATIC uchar,
  485. AscSetChipScsiID(
  486.                     PortAddr iop_base,
  487.                     uchar new_host_id
  488. )
  489. )
  490. {
  491.     ushort              cfg_lsw;
  492.     if (AscGetChipScsiID(iop_base) == new_host_id) {
  493.         return (new_host_id);
  494.     }
  495.     cfg_lsw = AscGetChipCfgLsw(iop_base);
  496.     cfg_lsw &= 0xF8FF;
  497.     cfg_lsw |= (ushort) ((new_host_id & ASC_MAX_TID) << 8);
  498.     AscSetChipCfgLsw(iop_base, cfg_lsw);
  499.     return (AscGetChipScsiID(iop_base));
  500. }
  501. ASC_INITFUNC(
  502. STATIC uchar,
  503. AscGetChipScsiCtrl(
  504.                       PortAddr iop_base
  505. )
  506. )
  507. {
  508.     uchar               sc;
  509.     AscSetBank(iop_base, 1);
  510.     sc = inp(iop_base + IOP_REG_SC);
  511.     AscSetBank(iop_base, 0);
  512.     return (sc);
  513. }
  514. ASC_INITFUNC(
  515. STATIC uchar,
  516. AscGetChipVersion(
  517.                      PortAddr iop_base,
  518.                      ushort bus_type
  519. )
  520. )
  521. {
  522.     if ((bus_type & ASC_IS_EISA) != 0) {
  523.         PortAddr            eisa_iop;
  524.         uchar               revision;
  525.         eisa_iop = (PortAddr) ASC_GET_EISA_SLOT(iop_base) |
  526.           (PortAddr) ASC_EISA_REV_IOP_MASK;
  527.         revision = inp(eisa_iop);
  528.         return ((uchar) ((ASC_CHIP_MIN_VER_EISA - 1) + revision));
  529.     }
  530.     return (AscGetChipVerNo(iop_base));
  531. }
  532. ASC_INITFUNC(
  533. STATIC ushort,
  534. AscGetChipBusType(
  535.                      PortAddr iop_base
  536. )
  537. )
  538. {
  539.     ushort              chip_ver;
  540.     chip_ver = AscGetChipVerNo(iop_base);
  541.     if (
  542.            (chip_ver >= ASC_CHIP_MIN_VER_VL)
  543.            && (chip_ver <= ASC_CHIP_MAX_VER_VL)
  544. ) {
  545.         if (
  546.                ((iop_base & 0x0C30) == 0x0C30)
  547.                || ((iop_base & 0x0C50) == 0x0C50)
  548. ) {
  549.             return (ASC_IS_EISA);
  550.         }
  551.         return (ASC_IS_VL);
  552.     }
  553.     if ((chip_ver >= ASC_CHIP_MIN_VER_ISA) &&
  554.         (chip_ver <= ASC_CHIP_MAX_VER_ISA)) {
  555.         if (chip_ver >= ASC_CHIP_MIN_VER_ISA_PNP) {
  556.             return (ASC_IS_ISAPNP);
  557.         }
  558.         return (ASC_IS_ISA);
  559.     } else if ((chip_ver >= ASC_CHIP_MIN_VER_PCI) &&
  560.                (chip_ver <= ASC_CHIP_MAX_VER_PCI)) {
  561.         return (ASC_IS_PCI);
  562.     }
  563.     return (0);
  564. }
  565. STATIC ASC_DCNT
  566. AscLoadMicroCode(
  567.                     PortAddr iop_base,
  568.                     ushort s_addr,
  569.                     uchar *mcode_buf,
  570.                     ushort mcode_size
  571. )
  572. {
  573.     ASC_DCNT            chksum;
  574.     ushort              mcode_word_size;
  575.     ushort              mcode_chksum;
  576.     /* Write the microcode buffer starting at LRAM address 0. */
  577.     mcode_word_size = (ushort) (mcode_size >> 1);
  578.     AscMemWordSetLram(iop_base, s_addr, 0, mcode_word_size);
  579.     AscMemWordCopyPtrToLram(iop_base, s_addr, mcode_buf, mcode_word_size);
  580.     chksum = AscMemSumLramWord(iop_base, s_addr, mcode_word_size);
  581.     ASC_DBG1(1, "AscLoadMicroCode: chksum 0x%lxn", (ulong) chksum);
  582.     mcode_chksum = (ushort) AscMemSumLramWord(iop_base,
  583.           (ushort) ASC_CODE_SEC_BEG,
  584.           (ushort) ((mcode_size - s_addr - (ushort) ASC_CODE_SEC_BEG) / 2));
  585.     ASC_DBG1(1, "AscLoadMicroCode: mcode_chksum 0x%lxn",
  586.         (ulong) mcode_chksum);
  587.     AscWriteLramWord(iop_base, ASCV_MCODE_CHKSUM_W, mcode_chksum);
  588.     AscWriteLramWord(iop_base, ASCV_MCODE_SIZE_W, mcode_size);
  589.     return (chksum);
  590. }
  591. STATIC int
  592. AscFindSignature(
  593.                     PortAddr iop_base
  594. )
  595. {
  596.     ushort              sig_word;
  597.     ASC_DBG2(1, "AscFindSignature: AscGetChipSignatureByte(0x%x) 0x%xn",
  598.         iop_base, AscGetChipSignatureByte(iop_base));
  599.     if (AscGetChipSignatureByte(iop_base) == (uchar) ASC_1000_ID1B) {
  600.         ASC_DBG2(1, "AscFindSignature: AscGetChipSignatureWord(0x%x) 0x%xn",
  601.             iop_base, AscGetChipSignatureWord(iop_base));
  602.         sig_word = AscGetChipSignatureWord(iop_base);
  603.         if ((sig_word == (ushort) ASC_1000_ID0W) ||
  604.             (sig_word == (ushort) ASC_1000_ID0W_FIX)) {
  605.             return (1);
  606.         }
  607.     }
  608.     return (0);
  609. }
  610. STATIC PortAddr _asc_def_iop_base[ASC_IOADR_TABLE_MAX_IX] ASC_INITDATA =
  611. {
  612.     0x100, ASC_IOADR_1, 0x120, ASC_IOADR_2, 0x140, ASC_IOADR_3, ASC_IOADR_4,
  613.     ASC_IOADR_5, ASC_IOADR_6, ASC_IOADR_7, ASC_IOADR_8
  614. };
  615. #ifdef CONFIG_ISA
  616. STATIC uchar _isa_pnp_inited ASC_INITDATA = 0;
  617. ASC_INITFUNC(
  618. STATIC PortAddr,
  619. AscSearchIOPortAddr(
  620.                        PortAddr iop_beg,
  621.                        ushort bus_type
  622. )
  623. )
  624. {
  625.     if (bus_type & ASC_IS_VL) {
  626.         while ((iop_beg = AscSearchIOPortAddr11(iop_beg)) != 0) {
  627.             if (AscGetChipVersion(iop_beg, bus_type) <= ASC_CHIP_MAX_VER_VL) {
  628.                 return (iop_beg);
  629.             }
  630.         }
  631.         return (0);
  632.     }
  633.     if (bus_type & ASC_IS_ISA) {
  634.         if (_isa_pnp_inited == 0) {
  635.             AscSetISAPNPWaitForKey();
  636.             _isa_pnp_inited++;
  637.         }
  638.         while ((iop_beg = AscSearchIOPortAddr11(iop_beg)) != 0) {
  639.             if ((AscGetChipVersion(iop_beg, bus_type) & ASC_CHIP_VER_ISA_BIT) != 0) {
  640.                 return (iop_beg);
  641.             }
  642.         }
  643.         return (0);
  644.     }
  645.     if (bus_type & ASC_IS_EISA) {
  646.         if ((iop_beg = AscSearchIOPortAddrEISA(iop_beg)) != 0) {
  647.             return (iop_beg);
  648.         }
  649.         return (0);
  650.     }
  651.     return (0);
  652. }
  653. ASC_INITFUNC(
  654. STATIC PortAddr,
  655. AscSearchIOPortAddr11(
  656.                          PortAddr s_addr
  657. )
  658. )
  659. {
  660.     int                 i;
  661.     PortAddr            iop_base;
  662.     for (i = 0; i < ASC_IOADR_TABLE_MAX_IX; i++) {
  663.         if (_asc_def_iop_base[i] > s_addr) {
  664.             break;
  665.         }
  666.     }
  667.     for (; i < ASC_IOADR_TABLE_MAX_IX; i++) {
  668.         iop_base = _asc_def_iop_base[i];
  669.         if (check_region(iop_base, ASC_IOADR_GAP) != 0) {
  670.             ASC_DBG1(1,
  671.                "AscSearchIOPortAddr11: check_region() failed I/O port 0x%xn",
  672.                      iop_base);
  673.             continue;
  674.         }
  675.         ASC_DBG1(1, "AscSearchIOPortAddr11: probing I/O port 0x%xn", iop_base);
  676.         if (AscFindSignature(iop_base)) {
  677.             return (iop_base);
  678.         }
  679.     }
  680.     return (0);
  681. }
  682. ASC_INITFUNC(
  683. STATIC void,
  684. AscSetISAPNPWaitForKey(
  685.     void)
  686. )
  687. {
  688.     outp(ASC_ISA_PNP_PORT_ADDR, 0x02);
  689.     outp(ASC_ISA_PNP_PORT_WRITE, 0x02);
  690.     return;
  691. }
  692. #endif /* CONFIG_ISA */
  693. ASC_INITFUNC(
  694. STATIC void,
  695. AscToggleIRQAct(
  696.                    PortAddr iop_base
  697. )
  698. )
  699. {
  700.     AscSetChipStatus(iop_base, CIW_IRQ_ACT);
  701.     AscSetChipStatus(iop_base, 0);
  702.     return;
  703. }
  704. ASC_INITFUNC(
  705. STATIC uchar,
  706. AscGetChipIRQ(
  707.                  PortAddr iop_base,
  708.                  ushort bus_type
  709. )
  710. )
  711. {
  712.     ushort              cfg_lsw;
  713.     uchar               chip_irq;
  714.     if ((bus_type & ASC_IS_EISA) != 0) {
  715.         cfg_lsw = AscGetEisaChipCfg(iop_base);
  716.         chip_irq = (uchar) (((cfg_lsw >> 8) & 0x07) + 10);
  717.         if ((chip_irq == 13) || (chip_irq > 15)) {
  718.             return (0);
  719.         }
  720.         return (chip_irq);
  721.     }
  722.     if ((bus_type & ASC_IS_VL) != 0) {
  723.         cfg_lsw = AscGetChipCfgLsw(iop_base);
  724.         chip_irq = (uchar) (((cfg_lsw >> 2) & 0x07));
  725.         if ((chip_irq == 0) ||
  726.             (chip_irq == 4) ||
  727.             (chip_irq == 7)) {
  728.             return (0);
  729.         }
  730.         return ((uchar) (chip_irq + (ASC_MIN_IRQ_NO - 1)));
  731.     }
  732.     cfg_lsw = AscGetChipCfgLsw(iop_base);
  733.     chip_irq = (uchar) (((cfg_lsw >> 2) & 0x03));
  734.     if (chip_irq == 3)
  735.         chip_irq += (uchar) 2;
  736.     return ((uchar) (chip_irq + ASC_MIN_IRQ_NO));
  737. }
  738. ASC_INITFUNC(
  739. STATIC uchar,
  740. AscSetChipIRQ(
  741.                  PortAddr iop_base,
  742.                  uchar irq_no,
  743.                  ushort bus_type
  744. )
  745. )
  746. {
  747.     ushort              cfg_lsw;
  748.     if ((bus_type & ASC_IS_VL) != 0) {
  749.         if (irq_no != 0) {
  750.             if ((irq_no < ASC_MIN_IRQ_NO) || (irq_no > ASC_MAX_IRQ_NO)) {
  751.                 irq_no = 0;
  752.             } else {
  753.                 irq_no -= (uchar) ((ASC_MIN_IRQ_NO - 1));
  754.             }
  755.         }
  756.         cfg_lsw = (ushort) (AscGetChipCfgLsw(iop_base) & 0xFFE3);
  757.         cfg_lsw |= (ushort) 0x0010;
  758.         AscSetChipCfgLsw(iop_base, cfg_lsw);
  759.         AscToggleIRQAct(iop_base);
  760.         cfg_lsw = (ushort) (AscGetChipCfgLsw(iop_base) & 0xFFE0);
  761.         cfg_lsw |= (ushort) ((irq_no & 0x07) << 2);
  762.         AscSetChipCfgLsw(iop_base, cfg_lsw);
  763.         AscToggleIRQAct(iop_base);
  764.         return (AscGetChipIRQ(iop_base, bus_type));
  765.     }
  766.     if ((bus_type & (ASC_IS_ISA)) != 0) {
  767.         if (irq_no == 15)
  768.             irq_no -= (uchar) 2;
  769.         irq_no -= (uchar) ASC_MIN_IRQ_NO;
  770.         cfg_lsw = (ushort) (AscGetChipCfgLsw(iop_base) & 0xFFF3);
  771.         cfg_lsw |= (ushort) ((irq_no & 0x03) << 2);
  772.         AscSetChipCfgLsw(iop_base, cfg_lsw);
  773.         return (AscGetChipIRQ(iop_base, bus_type));
  774.     }
  775.     return (0);
  776. }
  777. #ifdef CONFIG_ISA
  778. ASC_INITFUNC(
  779. STATIC void,
  780. AscEnableIsaDma(
  781.                    uchar dma_channel
  782. )
  783. )
  784. {
  785.     if (dma_channel < 4) {
  786.         outp(0x000B, (ushort) (0xC0 | dma_channel));
  787.         outp(0x000A, dma_channel);
  788.     } else if (dma_channel < 8) {
  789.         outp(0x00D6, (ushort) (0xC0 | (dma_channel - 4)));
  790.         outp(0x00D4, (ushort) (dma_channel - 4));
  791.     }
  792.     return;
  793. }
  794. #endif /* CONFIG_ISA */
  795. STATIC int
  796. AscIsrChipHalted(
  797.                     ASC_DVC_VAR *asc_dvc
  798. )
  799. {
  800.     EXT_MSG             ext_msg;
  801.     EXT_MSG             out_msg;
  802.     ushort              halt_q_addr;
  803.     int                 sdtr_accept;
  804.     ushort              int_halt_code;
  805.     ASC_SCSI_BIT_ID_TYPE scsi_busy;
  806.     ASC_SCSI_BIT_ID_TYPE target_id;
  807.     PortAddr            iop_base;
  808.     uchar               tag_code;
  809.     uchar               q_status;
  810.     uchar               halt_qp;
  811.     uchar               sdtr_data;
  812.     uchar               target_ix;
  813.     uchar               q_cntl, tid_no;
  814.     uchar               cur_dvc_qng;
  815.     uchar               asyn_sdtr;
  816.     uchar               scsi_status;
  817.     asc_board_t         *boardp;
  818.     ASC_ASSERT(asc_dvc->drv_ptr != NULL);
  819.     boardp = asc_dvc->drv_ptr;
  820.     iop_base = asc_dvc->iop_base;
  821.     int_halt_code = AscReadLramWord(iop_base, ASCV_HALTCODE_W);
  822.     halt_qp = AscReadLramByte(iop_base, ASCV_CURCDB_B);
  823.     halt_q_addr = ASC_QNO_TO_QADDR(halt_qp);
  824.     target_ix = AscReadLramByte(iop_base,
  825.                    (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_TARGET_IX));
  826.     q_cntl = AscReadLramByte(iop_base,
  827.                         (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_CNTL));
  828.     tid_no = ASC_TIX_TO_TID(target_ix);
  829.     target_id = (uchar) ASC_TID_TO_TARGET_ID(tid_no);
  830.     if (asc_dvc->pci_fix_asyn_xfer & target_id) {
  831.         asyn_sdtr = ASYN_SDTR_DATA_FIX_PCI_REV_AB;
  832.     } else {
  833.         asyn_sdtr = 0;
  834.     }
  835.     if (int_halt_code == ASC_HALT_DISABLE_ASYN_USE_SYN_FIX) {
  836.         if (asc_dvc->pci_fix_asyn_xfer & target_id) {
  837.             AscSetChipSDTR(iop_base, 0, tid_no);
  838.             boardp->sdtr_data[tid_no] = 0;
  839.         }
  840.         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  841.         return (0);
  842.     } else if (int_halt_code == ASC_HALT_ENABLE_ASYN_USE_SYN_FIX) {
  843.         if (asc_dvc->pci_fix_asyn_xfer & target_id) {
  844.             AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
  845.             boardp->sdtr_data[tid_no] = asyn_sdtr;
  846.         }
  847.         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  848.         return (0);
  849.     } else if (int_halt_code == ASC_HALT_EXTMSG_IN) {
  850.         AscMemWordCopyPtrFromLram(iop_base,
  851.                                ASCV_MSGIN_BEG,
  852.                                (uchar *) &ext_msg,
  853.                                sizeof(EXT_MSG) >> 1);
  854.         if (ext_msg.msg_type == MS_EXTEND &&
  855.             ext_msg.msg_req == MS_SDTR_CODE &&
  856.             ext_msg.msg_len == MS_SDTR_LEN) {
  857.             sdtr_accept = TRUE;
  858.             if ((ext_msg.req_ack_offset > ASC_SYN_MAX_OFFSET)) {
  859.                 sdtr_accept = FALSE;
  860.                 ext_msg.req_ack_offset = ASC_SYN_MAX_OFFSET;
  861.             }
  862.             if ((ext_msg.xfer_period <
  863.                  asc_dvc->sdtr_period_tbl[asc_dvc->host_init_sdtr_index]) ||
  864.                 (ext_msg.xfer_period >
  865.                  asc_dvc->sdtr_period_tbl[asc_dvc->max_sdtr_index])) {
  866.                 sdtr_accept = FALSE;
  867.                 ext_msg.xfer_period =
  868.                     asc_dvc->sdtr_period_tbl[asc_dvc->host_init_sdtr_index];
  869.             }
  870.             if (sdtr_accept) {
  871.                 sdtr_data = AscCalSDTRData(asc_dvc, ext_msg.xfer_period,
  872.                                            ext_msg.req_ack_offset);
  873.                 if ((sdtr_data == 0xFF)) {
  874.                     q_cntl |= QC_MSG_OUT;
  875.                     asc_dvc->init_sdtr &= ~target_id;
  876.                     asc_dvc->sdtr_done &= ~target_id;
  877.                     AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
  878.                     boardp->sdtr_data[tid_no] = asyn_sdtr;
  879.                 }
  880.             }
  881.             if (ext_msg.req_ack_offset == 0) {
  882.                 q_cntl &= ~QC_MSG_OUT;
  883.                 asc_dvc->init_sdtr &= ~target_id;
  884.                 asc_dvc->sdtr_done &= ~target_id;
  885.                 AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
  886.             } else {
  887.                 if (sdtr_accept && (q_cntl & QC_MSG_OUT)) {
  888.                     q_cntl &= ~QC_MSG_OUT;
  889.                     asc_dvc->sdtr_done |= target_id;
  890.                     asc_dvc->init_sdtr |= target_id;
  891.                     asc_dvc->pci_fix_asyn_xfer &= ~target_id;
  892.                     sdtr_data = AscCalSDTRData(asc_dvc, ext_msg.xfer_period,
  893.                                                ext_msg.req_ack_offset);
  894.                     AscSetChipSDTR(iop_base, sdtr_data, tid_no);
  895.                     boardp->sdtr_data[tid_no] = sdtr_data;
  896.                 } else {
  897.                     q_cntl |= QC_MSG_OUT;
  898.                     AscMsgOutSDTR(asc_dvc,
  899.                                   ext_msg.xfer_period,
  900.                                   ext_msg.req_ack_offset);
  901.                     asc_dvc->pci_fix_asyn_xfer &= ~target_id;
  902.                     sdtr_data = AscCalSDTRData(asc_dvc, ext_msg.xfer_period,
  903.                                                ext_msg.req_ack_offset);
  904.                     AscSetChipSDTR(iop_base, sdtr_data, tid_no);
  905.                     boardp->sdtr_data[tid_no] = sdtr_data;
  906.                     asc_dvc->sdtr_done |= target_id;
  907.                     asc_dvc->init_sdtr |= target_id;
  908.                 }
  909.             }
  910.             AscWriteLramByte(iop_base,
  911.                          (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_CNTL),
  912.                              q_cntl);
  913.             AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  914.             return (0);
  915.         } else if (ext_msg.msg_type == MS_EXTEND &&
  916.                    ext_msg.msg_req == MS_WDTR_CODE &&
  917.                    ext_msg.msg_len == MS_WDTR_LEN) {
  918.             ext_msg.wdtr_width = 0;
  919.             AscMemWordCopyPtrToLram(iop_base,
  920.                                  ASCV_MSGOUT_BEG,
  921.                                  (uchar *) &ext_msg,
  922.                                  sizeof(EXT_MSG) >> 1);
  923.             q_cntl |= QC_MSG_OUT;
  924.             AscWriteLramByte(iop_base,
  925.                          (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_CNTL),
  926.                              q_cntl);
  927.             AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  928.             return (0);
  929.         } else {
  930.             ext_msg.msg_type = M1_MSG_REJECT;
  931.             AscMemWordCopyPtrToLram(iop_base,
  932.                                  ASCV_MSGOUT_BEG,
  933.                                  (uchar *) &ext_msg,
  934.                                  sizeof(EXT_MSG) >> 1);
  935.             q_cntl |= QC_MSG_OUT;
  936.             AscWriteLramByte(iop_base,
  937.                          (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_CNTL),
  938.                              q_cntl);
  939.             AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  940.             return (0);
  941.         }
  942.     } else if (int_halt_code == ASC_HALT_CHK_CONDITION) {
  943.         q_cntl |= QC_REQ_SENSE;
  944.         if ((asc_dvc->init_sdtr & target_id) != 0) {
  945.             asc_dvc->sdtr_done &= ~target_id;
  946.             sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
  947.             q_cntl |= QC_MSG_OUT;
  948.             AscMsgOutSDTR(asc_dvc,
  949.                           asc_dvc->sdtr_period_tbl[(sdtr_data >> 4) &
  950.                            (uchar) (asc_dvc->max_sdtr_index - 1)],
  951.                           (uchar) (sdtr_data & (uchar) ASC_SYN_MAX_OFFSET));
  952.         }
  953.         AscWriteLramByte(iop_base,
  954.                          (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_CNTL),
  955.                          q_cntl);
  956.         tag_code = AscReadLramByte(iop_base,
  957.                     (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_TAG_CODE));
  958.         tag_code &= 0xDC;
  959.         if (
  960.                (asc_dvc->pci_fix_asyn_xfer & target_id)
  961.                && !(asc_dvc->pci_fix_asyn_xfer_always & target_id)
  962. ) {
  963.             tag_code |= (ASC_TAG_FLAG_DISABLE_DISCONNECT
  964.                          | ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX);
  965.         }
  966.         AscWriteLramByte(iop_base,
  967.                      (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_TAG_CODE),
  968.                          tag_code);
  969.         q_status = AscReadLramByte(iop_base,
  970.                       (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_STATUS));
  971.         q_status |= (QS_READY | QS_BUSY);
  972.         AscWriteLramByte(iop_base,
  973.                        (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_STATUS),
  974.                          q_status);
  975.         scsi_busy = AscReadLramByte(iop_base,
  976.                                     (ushort) ASCV_SCSIBUSY_B);
  977.         scsi_busy &= ~target_id;
  978.         AscWriteLramByte(iop_base, (ushort) ASCV_SCSIBUSY_B, scsi_busy);
  979.         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  980.         return (0);
  981.     } else if (int_halt_code == ASC_HALT_SDTR_REJECTED) {
  982.         AscMemWordCopyPtrFromLram(iop_base,
  983.                                ASCV_MSGOUT_BEG,
  984.                                (uchar *) &out_msg,
  985.                                sizeof(EXT_MSG) >> 1);
  986.         if ((out_msg.msg_type == MS_EXTEND) &&
  987.             (out_msg.msg_len == MS_SDTR_LEN) &&
  988.             (out_msg.msg_req == MS_SDTR_CODE)) {
  989.             asc_dvc->init_sdtr &= ~target_id;
  990.             asc_dvc->sdtr_done &= ~target_id;
  991.             AscSetChipSDTR(iop_base, asyn_sdtr, tid_no);
  992.             boardp->sdtr_data[tid_no] = asyn_sdtr;
  993.         }
  994.         q_cntl &= ~QC_MSG_OUT;
  995.         AscWriteLramByte(iop_base,
  996.                          (ushort) (halt_q_addr + (ushort) ASC_SCSIQ_B_CNTL),
  997.                          q_cntl);
  998.         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  999.         return (0);
  1000.     } else if (int_halt_code == ASC_HALT_SS_QUEUE_FULL) {
  1001.         scsi_status = AscReadLramByte(iop_base,
  1002.           (ushort) ((ushort) halt_q_addr + (ushort) ASC_SCSIQ_SCSI_STATUS));
  1003.         cur_dvc_qng = AscReadLramByte(iop_base,
  1004.                      (ushort) ((ushort) ASC_QADR_BEG + (ushort) target_ix));
  1005.         if ((cur_dvc_qng > 0) &&
  1006.             (asc_dvc->cur_dvc_qng[tid_no] > 0)) {
  1007.             scsi_busy = AscReadLramByte(iop_base,
  1008.                                         (ushort) ASCV_SCSIBUSY_B);
  1009.             scsi_busy |= target_id;
  1010.             AscWriteLramByte(iop_base,
  1011.                              (ushort) ASCV_SCSIBUSY_B, scsi_busy);
  1012.             asc_dvc->queue_full_or_busy |= target_id;
  1013.             if (scsi_status == SS_QUEUE_FULL) {
  1014.                 if (cur_dvc_qng > ASC_MIN_TAGGED_CMD) {
  1015.                     cur_dvc_qng -= 1;
  1016.                     asc_dvc->max_dvc_qng[tid_no] = cur_dvc_qng;
  1017.                     AscWriteLramByte(iop_base,
  1018.                           (ushort) ((ushort) ASCV_MAX_DVC_QNG_BEG +
  1019.                            (ushort) tid_no),
  1020.                           cur_dvc_qng);
  1021.                     /*
  1022.                      * Set the device queue depth to the number of
  1023.                      * active requests when the QUEUE FULL condition
  1024.                      * was encountered.
  1025.                      */
  1026.                     boardp->queue_full |= target_id;
  1027.                     boardp->queue_full_cnt[tid_no] = cur_dvc_qng;
  1028.                 }
  1029.             }
  1030.         }
  1031.         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  1032.         return (0);
  1033.     }
  1034. #if CC_VERY_LONG_SG_LIST
  1035.     else if (int_halt_code == ASC_HALT_HOST_COPY_SG_LIST_TO_RISC)
  1036.     {
  1037.         uchar              q_no;
  1038.         ushort             q_addr;
  1039.         uchar              sg_wk_q_no;
  1040.         uchar              first_sg_wk_q_no;
  1041.         ASC_SCSI_Q         *scsiq; /* Ptr to driver request. */
  1042.         ASC_SG_HEAD        *sg_head; /* Ptr to driver SG request. */
  1043.         ASC_SG_LIST_Q      scsi_sg_q; /* Structure written to queue. */
  1044.         ushort             sg_list_dwords;
  1045.         ushort             sg_entry_cnt;
  1046.         uchar              next_qp;
  1047.         int                i;
  1048.         q_no = AscReadLramByte(iop_base, (ushort) ASCV_REQ_SG_LIST_QP);
  1049.         if (q_no == ASC_QLINK_END)
  1050.         {
  1051.             return(0);
  1052.         }
  1053.         q_addr = ASC_QNO_TO_QADDR(q_no);
  1054.         /*
  1055.          * Convert the request's SRB pointer to a host ASC_SCSI_REQ
  1056.          * structure pointer using a macro provided by the driver.
  1057.          * The ASC_SCSI_REQ pointer provides a pointer to the
  1058.          * host ASC_SG_HEAD structure.
  1059.          */
  1060.         /* Read request's SRB pointer. */
  1061.         scsiq = (ASC_SCSI_Q *)
  1062.            ASC_SRB2SCSIQ(
  1063.                ASC_U32_TO_VADDR(AscReadLramDWord(iop_base,
  1064.                (ushort) (q_addr + ASC_SCSIQ_D_SRBPTR))));
  1065.         /*
  1066.          * Get request's first and working SG queue.
  1067.          */
  1068.         sg_wk_q_no = AscReadLramByte(iop_base,
  1069.             (ushort) (q_addr + ASC_SCSIQ_B_SG_WK_QP));
  1070.         first_sg_wk_q_no = AscReadLramByte(iop_base,
  1071.             (ushort) (q_addr + ASC_SCSIQ_B_FIRST_SG_WK_QP));
  1072.         /*
  1073.          * Reset request's working SG queue back to the
  1074.          * first SG queue.
  1075.          */
  1076.         AscWriteLramByte(iop_base,
  1077.             (ushort) (q_addr + (ushort) ASC_SCSIQ_B_SG_WK_QP),
  1078.             first_sg_wk_q_no);
  1079.         sg_head = scsiq->sg_head;
  1080.         /*
  1081.          * Set sg_entry_cnt to the number of SG elements
  1082.          * that will be completed on this interrupt.
  1083.          *
  1084.          * Note: The allocated SG queues contain ASC_MAX_SG_LIST - 1
  1085.          * SG elements. The data_cnt and data_addr fields which
  1086.          * add 1 to the SG element capacity are not used when
  1087.          * restarting SG handling after a halt.
  1088.          */
  1089.         if (scsiq->remain_sg_entry_cnt > (ASC_MAX_SG_LIST - 1))
  1090.         {
  1091.              sg_entry_cnt = ASC_MAX_SG_LIST - 1;
  1092.              /*
  1093.               * Keep track of remaining number of SG elements that will
  1094.               * need to be handled on the next interrupt.
  1095.               */
  1096.              scsiq->remain_sg_entry_cnt -= (ASC_MAX_SG_LIST - 1);
  1097.         } else
  1098.         {
  1099.              sg_entry_cnt = scsiq->remain_sg_entry_cnt;
  1100.              scsiq->remain_sg_entry_cnt = 0;
  1101.         }
  1102.         /*
  1103.          * Copy SG elements into the list of allocated SG queues.
  1104.          *
  1105.          * Last index completed is saved in scsiq->next_sg_index.
  1106.          */
  1107.         next_qp = first_sg_wk_q_no;
  1108.         q_addr = ASC_QNO_TO_QADDR(next_qp);
  1109.         scsi_sg_q.sg_head_qp = q_no;
  1110.         scsi_sg_q.cntl = QCSG_SG_XFER_LIST;
  1111.         for( i = 0; i < sg_head->queue_cnt; i++)
  1112.         {
  1113.              scsi_sg_q.seq_no = i + 1;
  1114.              if (sg_entry_cnt > ASC_SG_LIST_PER_Q)
  1115.              {
  1116.                  sg_list_dwords = (uchar) (ASC_SG_LIST_PER_Q * 2);
  1117.                  sg_entry_cnt -= ASC_SG_LIST_PER_Q;
  1118.                  /*
  1119.                   * After very first SG queue RISC FW uses next
  1120.                   * SG queue first element then checks sg_list_cnt
  1121.                   * against zero and then decrements, so set
  1122.                   * sg_list_cnt 1 less than number of SG elements
  1123.                   * in each SG queue.
  1124.                   */
  1125.                  scsi_sg_q.sg_list_cnt = ASC_SG_LIST_PER_Q - 1;
  1126.                  scsi_sg_q.sg_cur_list_cnt = ASC_SG_LIST_PER_Q - 1;
  1127.              } else {
  1128.                  /*
  1129.                   * This is the last SG queue in the list of
  1130.                   * allocated SG queues. If there are more
  1131.                   * SG elements than will fit in the allocated
  1132.                   * queues, then set the QCSG_SG_XFER_MORE flag.
  1133.                   */
  1134.                  if (scsiq->remain_sg_entry_cnt != 0)
  1135.                  {
  1136.                      scsi_sg_q.cntl |= QCSG_SG_XFER_MORE;
  1137.                  } else
  1138.                  {
  1139.                      scsi_sg_q.cntl |= QCSG_SG_XFER_END;
  1140.                  }
  1141.                  /* equals sg_entry_cnt * 2 */
  1142.                  sg_list_dwords = sg_entry_cnt << 1;
  1143.                  scsi_sg_q.sg_list_cnt = sg_entry_cnt - 1;
  1144.                  scsi_sg_q.sg_cur_list_cnt = sg_entry_cnt - 1;
  1145.                  sg_entry_cnt = 0;
  1146.              }
  1147.              scsi_sg_q.q_no = next_qp;
  1148.              AscMemWordCopyPtrToLram(iop_base,
  1149.                           q_addr + ASC_SCSIQ_SGHD_CPY_BEG,
  1150.                           (uchar *) &scsi_sg_q,
  1151.                           sizeof(ASC_SG_LIST_Q) >> 1);
  1152.              AscMemDWordCopyPtrToLram(iop_base,
  1153.                           q_addr + ASC_SGQ_LIST_BEG,
  1154.                           (uchar *) &sg_head->sg_list[scsiq->next_sg_index],
  1155.                           sg_list_dwords);
  1156.              scsiq->next_sg_index += ASC_SG_LIST_PER_Q;
  1157.              /*
  1158.               * If the just completed SG queue contained the
  1159.               * last SG element, then no more SG queues need
  1160.               * to be written.
  1161.               */
  1162.              if (scsi_sg_q.cntl & QCSG_SG_XFER_END)
  1163.              {
  1164.                  break;
  1165.              }
  1166.              next_qp = AscReadLramByte( iop_base,
  1167.                           ( ushort )( q_addr+ASC_SCSIQ_B_FWD ) );
  1168.              q_addr = ASC_QNO_TO_QADDR( next_qp );
  1169.         }
  1170.         /*
  1171.          * Clear the halt condition so the RISC will be restarted
  1172.          * after the return.
  1173.          */
  1174.         AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  1175.         return(0);
  1176.     }
  1177. #endif /* CC_VERY_LONG_SG_LIST */
  1178.     return (0);
  1179. }
  1180. STATIC uchar
  1181. _AscCopyLramScsiDoneQ(
  1182.                          PortAddr iop_base,
  1183.                          ushort q_addr,
  1184.                          ASC_QDONE_INFO * scsiq,
  1185.                          ASC_DCNT max_dma_count
  1186. )
  1187. {
  1188.     ushort              _val;
  1189.     uchar               sg_queue_cnt;
  1190.     DvcGetQinfo(iop_base,
  1191.                 q_addr + ASC_SCSIQ_DONE_INFO_BEG,
  1192.                 (uchar *) scsiq,
  1193.                 (sizeof (ASC_SCSIQ_2) + sizeof (ASC_SCSIQ_3)) / 2);
  1194.     _val = AscReadLramWord(iop_base,
  1195.                            (ushort) (q_addr + (ushort) ASC_SCSIQ_B_STATUS));
  1196.     scsiq->q_status = (uchar) _val;
  1197.     scsiq->q_no = (uchar) (_val >> 8);
  1198.     _val = AscReadLramWord(iop_base,
  1199.                            (ushort) (q_addr + (ushort) ASC_SCSIQ_B_CNTL));
  1200.     scsiq->cntl = (uchar) _val;
  1201.     sg_queue_cnt = (uchar) (_val >> 8);
  1202.     _val = AscReadLramWord(iop_base,
  1203.                         (ushort) (q_addr + (ushort) ASC_SCSIQ_B_SENSE_LEN));
  1204.     scsiq->sense_len = (uchar) _val;
  1205.     scsiq->extra_bytes = (uchar) (_val >> 8);
  1206.     /*
  1207.      * Read high word of remain bytes from alternate location.
  1208.      */
  1209.     scsiq->remain_bytes = (((ADV_DCNT) AscReadLramWord( iop_base,
  1210.                       (ushort) (q_addr+ (ushort) ASC_SCSIQ_W_ALT_DC1))) << 16);
  1211.     /*
  1212.      * Read low word of remain bytes from original location.
  1213.      */
  1214.     scsiq->remain_bytes += AscReadLramWord(iop_base,
  1215.         (ushort) (q_addr+ (ushort) ASC_SCSIQ_DW_REMAIN_XFER_CNT));
  1216.     scsiq->remain_bytes &= max_dma_count;
  1217.     return (sg_queue_cnt);
  1218. }
  1219. STATIC int
  1220. AscIsrQDone(
  1221.                ASC_DVC_VAR *asc_dvc
  1222. )
  1223. {
  1224.     uchar               next_qp;
  1225.     uchar               n_q_used;
  1226.     uchar               sg_list_qp;
  1227.     uchar               sg_queue_cnt;
  1228.     uchar               q_cnt;
  1229.     uchar               done_q_tail;
  1230.     uchar               tid_no;
  1231.     ASC_SCSI_BIT_ID_TYPE scsi_busy;
  1232.     ASC_SCSI_BIT_ID_TYPE target_id;
  1233.     PortAddr            iop_base;
  1234.     ushort              q_addr;
  1235.     ushort              sg_q_addr;
  1236.     uchar               cur_target_qng;
  1237.     ASC_QDONE_INFO      scsiq_buf;
  1238.     ASC_QDONE_INFO *scsiq;
  1239.     int                 false_overrun;
  1240.     ASC_ISR_CALLBACK    asc_isr_callback;
  1241.     iop_base = asc_dvc->iop_base;
  1242.     asc_isr_callback = asc_dvc->isr_callback;
  1243.     n_q_used = 1;
  1244.     scsiq = (ASC_QDONE_INFO *) & scsiq_buf;
  1245.     done_q_tail = (uchar) AscGetVarDoneQTail(iop_base);
  1246.     q_addr = ASC_QNO_TO_QADDR(done_q_tail);
  1247.     next_qp = AscReadLramByte(iop_base,
  1248.                               (ushort) (q_addr + (ushort) ASC_SCSIQ_B_FWD));
  1249.     if (next_qp != ASC_QLINK_END) {
  1250.         AscPutVarDoneQTail(iop_base, next_qp);
  1251.         q_addr = ASC_QNO_TO_QADDR(next_qp);
  1252.         sg_queue_cnt = _AscCopyLramScsiDoneQ(iop_base, q_addr, scsiq,
  1253.             asc_dvc->max_dma_count);
  1254.         AscWriteLramByte(iop_base,
  1255.                          (ushort) (q_addr + (ushort) ASC_SCSIQ_B_STATUS),
  1256.              (uchar) (scsiq->q_status & (uchar) ~ (QS_READY | QS_ABORTED)));
  1257.         tid_no = ASC_TIX_TO_TID(scsiq->d2.target_ix);
  1258.         target_id = ASC_TIX_TO_TARGET_ID(scsiq->d2.target_ix);
  1259.         if ((scsiq->cntl & QC_SG_HEAD) != 0) {
  1260.             sg_q_addr = q_addr;
  1261.             sg_list_qp = next_qp;
  1262.             for (q_cnt = 0; q_cnt < sg_queue_cnt; q_cnt++) {
  1263.                 sg_list_qp = AscReadLramByte(iop_base,
  1264.                            (ushort) (sg_q_addr + (ushort) ASC_SCSIQ_B_FWD));
  1265.                 sg_q_addr = ASC_QNO_TO_QADDR(sg_list_qp);
  1266.                 if (sg_list_qp == ASC_QLINK_END) {
  1267.                     AscSetLibErrorCode(asc_dvc, ASCQ_ERR_SG_Q_LINKS);
  1268.                     scsiq->d3.done_stat = QD_WITH_ERROR;
  1269.                     scsiq->d3.host_stat = QHSTA_D_QDONE_SG_LIST_CORRUPTED;
  1270.                     goto FATAL_ERR_QDONE;
  1271.                 }
  1272.                 AscWriteLramByte(iop_base,
  1273.                          (ushort) (sg_q_addr + (ushort) ASC_SCSIQ_B_STATUS),
  1274.                                  QS_FREE);
  1275.             }
  1276.             n_q_used = sg_queue_cnt + 1;
  1277.             AscPutVarDoneQTail(iop_base, sg_list_qp);
  1278.         }
  1279.         if (asc_dvc->queue_full_or_busy & target_id) {
  1280.             cur_target_qng = AscReadLramByte(iop_base,
  1281.             (ushort) ((ushort) ASC_QADR_BEG + (ushort) scsiq->d2.target_ix));
  1282.             if (cur_target_qng < asc_dvc->max_dvc_qng[tid_no]) {
  1283.                 scsi_busy = AscReadLramByte(iop_base,
  1284.                                             (ushort) ASCV_SCSIBUSY_B);
  1285.                 scsi_busy &= ~target_id;
  1286.                 AscWriteLramByte(iop_base,
  1287.                                  (ushort) ASCV_SCSIBUSY_B, scsi_busy);
  1288.                 asc_dvc->queue_full_or_busy &= ~target_id;
  1289.             }
  1290.         }
  1291.         if (asc_dvc->cur_total_qng >= n_q_used) {
  1292.             asc_dvc->cur_total_qng -= n_q_used;
  1293.             if (asc_dvc->cur_dvc_qng[tid_no] != 0) {
  1294.                 asc_dvc->cur_dvc_qng[tid_no]--;
  1295.             }
  1296.         } else {
  1297.             AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CUR_QNG);
  1298.             scsiq->d3.done_stat = QD_WITH_ERROR;
  1299.             goto FATAL_ERR_QDONE;
  1300.         }
  1301.         if ((scsiq->d2.srb_ptr == 0UL) ||
  1302.             ((scsiq->q_status & QS_ABORTED) != 0)) {
  1303.             return (0x11);
  1304.         } else if (scsiq->q_status == QS_DONE) {
  1305.             false_overrun = FALSE;
  1306.             if (scsiq->extra_bytes != 0) {
  1307.                 scsiq->remain_bytes += (ADV_DCNT) scsiq->extra_bytes;
  1308.             }
  1309.             if (scsiq->d3.done_stat == QD_WITH_ERROR) {
  1310.                 if (scsiq->d3.host_stat == QHSTA_M_DATA_OVER_RUN) {
  1311.                     if ((scsiq->cntl & (QC_DATA_IN | QC_DATA_OUT)) == 0) {
  1312.                         scsiq->d3.done_stat = QD_NO_ERROR;
  1313.                         scsiq->d3.host_stat = QHSTA_NO_ERROR;
  1314.                     } else if (false_overrun) {
  1315.                         scsiq->d3.done_stat = QD_NO_ERROR;
  1316.                         scsiq->d3.host_stat = QHSTA_NO_ERROR;
  1317.                     }
  1318.                 } else if (scsiq->d3.host_stat ==
  1319.                            QHSTA_M_HUNG_REQ_SCSI_BUS_RESET) {
  1320.                     AscStopChip(iop_base);
  1321.                     AscSetChipControl(iop_base,
  1322.                         (uchar) (CC_SCSI_RESET | CC_HALT));
  1323.                     DvcDelayNanoSecond(asc_dvc, 60000);
  1324.                     AscSetChipControl(iop_base, CC_HALT);
  1325.                     AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
  1326.                     AscSetChipStatus(iop_base, 0);
  1327.                     AscSetChipControl(iop_base, 0);
  1328.                 }
  1329.             }
  1330.             if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
  1331.                 (*asc_isr_callback) (asc_dvc, scsiq);
  1332.             } else {
  1333.                 if ((AscReadLramByte(iop_base,
  1334.                           (ushort) (q_addr + (ushort) ASC_SCSIQ_CDB_BEG)) ==
  1335.                      SCSICMD_StartStopUnit)) {
  1336.                     asc_dvc->unit_not_ready &= ~target_id;
  1337.                     if (scsiq->d3.done_stat != QD_NO_ERROR) {
  1338.                         asc_dvc->start_motor &= ~target_id;
  1339.                     }
  1340.                 }
  1341.             }
  1342.             return (1);
  1343.         } else {
  1344.             AscSetLibErrorCode(asc_dvc, ASCQ_ERR_Q_STATUS);
  1345.           FATAL_ERR_QDONE:
  1346.             if ((scsiq->cntl & QC_NO_CALLBACK) == 0) {
  1347.                 (*asc_isr_callback) (asc_dvc, scsiq);
  1348.             }
  1349.             return (0x80);
  1350.         }
  1351.     }
  1352.     return (0);
  1353. }
  1354. STATIC int
  1355. AscISR(
  1356.           ASC_DVC_VAR *asc_dvc
  1357. )
  1358. {
  1359.     ASC_CS_TYPE         chipstat;
  1360.     PortAddr            iop_base;
  1361.     ushort              saved_ram_addr;
  1362.     uchar               ctrl_reg;
  1363.     uchar               saved_ctrl_reg;
  1364.     int                 int_pending;
  1365.     int                 status;
  1366.     uchar               host_flag;
  1367.     iop_base = asc_dvc->iop_base;
  1368.     int_pending = FALSE;
  1369.     if (AscIsIntPending(iop_base) == 0)
  1370.     {
  1371.         return int_pending;
  1372.     }
  1373.     if (((asc_dvc->init_state & ASC_INIT_STATE_END_LOAD_MC) == 0)
  1374.         || (asc_dvc->isr_callback == 0)
  1375. ) {
  1376.         return (ERR);
  1377.     }
  1378.     if (asc_dvc->in_critical_cnt != 0) {
  1379.         AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_ON_CRITICAL);
  1380.         return (ERR);
  1381.     }
  1382.     if (asc_dvc->is_in_int) {
  1383.         AscSetLibErrorCode(asc_dvc, ASCQ_ERR_ISR_RE_ENTRY);
  1384.         return (ERR);
  1385.     }
  1386.     asc_dvc->is_in_int = TRUE;
  1387.     ctrl_reg = AscGetChipControl(iop_base);
  1388.     saved_ctrl_reg = ctrl_reg & (~(CC_SCSI_RESET | CC_CHIP_RESET |
  1389.                                    CC_SINGLE_STEP | CC_DIAG | CC_TEST));
  1390.     chipstat = AscGetChipStatus(iop_base);
  1391.     if (chipstat & CSW_SCSI_RESET_LATCH) {
  1392.         if (!(asc_dvc->bus_type & (ASC_IS_VL | ASC_IS_EISA))) {
  1393.             int i = 10;
  1394.             int_pending = TRUE;
  1395.             asc_dvc->sdtr_done = 0;
  1396.             saved_ctrl_reg &= (uchar) (~CC_HALT);
  1397.             while ((AscGetChipStatus(iop_base) & CSW_SCSI_RESET_ACTIVE) &&
  1398.                    (i-- > 0))
  1399.             {
  1400.                   DvcSleepMilliSecond(100);
  1401.             }
  1402.             AscSetChipControl(iop_base, (CC_CHIP_RESET | CC_HALT));
  1403.             AscSetChipControl(iop_base, CC_HALT);
  1404.             AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
  1405.             AscSetChipStatus(iop_base, 0);
  1406.             chipstat = AscGetChipStatus(iop_base);
  1407.         }
  1408.     }
  1409.     saved_ram_addr = AscGetChipLramAddr(iop_base);
  1410.     host_flag = AscReadLramByte(iop_base,
  1411.         ASCV_HOST_FLAG_B) & (uchar) (~ASC_HOST_FLAG_IN_ISR);
  1412.     AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
  1413.                      (uchar) (host_flag | (uchar) ASC_HOST_FLAG_IN_ISR));
  1414.     if ((chipstat & CSW_INT_PENDING)
  1415.         || (int_pending)
  1416. ) {
  1417.         AscAckInterrupt(iop_base);
  1418.         int_pending = TRUE;
  1419.         if ((chipstat & CSW_HALTED) &&
  1420.             (ctrl_reg & CC_SINGLE_STEP)) {
  1421.             if (AscIsrChipHalted(asc_dvc) == ERR) {
  1422.                 goto ISR_REPORT_QDONE_FATAL_ERROR;
  1423.             } else {
  1424.                 saved_ctrl_reg &= (uchar) (~CC_HALT);
  1425.             }
  1426.         } else {
  1427.           ISR_REPORT_QDONE_FATAL_ERROR:
  1428.             if ((asc_dvc->dvc_cntl & ASC_CNTL_INT_MULTI_Q) != 0) {
  1429.                 while (((status = AscIsrQDone(asc_dvc)) & 0x01) != 0) {
  1430.                 }
  1431.             } else {
  1432.                 do {
  1433.                     if ((status = AscIsrQDone(asc_dvc)) == 1) {
  1434.                         break;
  1435.                     }
  1436.                 } while (status == 0x11);
  1437.             }
  1438.             if ((status & 0x80) != 0)
  1439.                 int_pending = ERR;
  1440.         }
  1441.     }
  1442.     AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
  1443.     AscSetChipLramAddr(iop_base, saved_ram_addr);
  1444.     AscSetChipControl(iop_base, saved_ctrl_reg);
  1445.     asc_dvc->is_in_int = FALSE;
  1446.     return (int_pending);
  1447. }
  1448. /* Microcode buffer is kept after initialization for error recovery. */
  1449. STATIC uchar _asc_mcode_buf[] =
  1450. {
  1451.   0x01,  0x03,  0x01,  0x19,  0x0F,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,
  1452.   0x0F,  0x0F,  0x0F,  0x0F,  0x0F,  0x0F,  0x0F,  0x0F,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,
  1453.   0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,
  1454.   0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,
  1455.   0x00,  0x00,  0x00,  0x00,  0xC3,  0x12,  0x0D,  0x05,  0x01,  0x00,  0x00,  0x00,  0x00,  0xFF,  0x00,  0x00,
  1456.   0x00,  0x00,  0x00,  0x00,  0xFF,  0x80,  0xFF,  0xFF,  0x01,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,
  1457.   0x00,  0x00,  0x00,  0x23,  0x00,  0x00,  0x00,  0x00,  0x00,  0x07,  0x00,  0xFF,  0x00,  0x00,  0x00,  0x00,
  1458.   0xFF,  0xFF,  0xFF,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0x00,  0xE4,  0x88,  0x00,  0x00,  0x00,  0x00,
  1459.   0x80,  0x73,  0x48,  0x04,  0x36,  0x00,  0x00,  0xA2,  0xC2,  0x00,  0x80,  0x73,  0x03,  0x23,  0x36,  0x40,
  1460.   0xB6,  0x00,  0x36,  0x00,  0x05,  0xD6,  0x0C,  0xD2,  0x12,  0xDA,  0x00,  0xA2,  0xC2,  0x00,  0x92,  0x80,
  1461.   0x1E,  0x98,  0x50,  0x00,  0xF5,  0x00,  0x48,  0x98,  0xDF,  0x23,  0x36,  0x60,  0xB6,  0x00,  0x92,  0x80,
  1462.   0x4F,  0x00,  0xF5,  0x00,  0x48,  0x98,  0xEF,  0x23,  0x36,  0x60,  0xB6,  0x00,  0x92,  0x80,  0x80,  0x62,
  1463.   0x92,  0x80,  0x00,  0x46,  0x15,  0xEE,  0x13,  0xEA,  0x02,  0x01,  0x09,  0xD8,  0xCD,  0x04,  0x4D,  0x00,
  1464.   0x00,  0xA3,  0xD6,  0x00,  0xA6,  0x97,  0x7F,  0x23,  0x04,  0x61,  0x84,  0x01,  0xE6,  0x84,  0xD2,  0xC1,
  1465.   0x80,  0x73,  0xCD,  0x04,  0x4D,  0x00,  0x00,  0xA3,  0xDA,  0x01,  0xA6,  0x97,  0xC6,  0x81,  0xC2,  0x88,
  1466.   0x80,  0x73,  0x80,  0x77,  0x00,  0x01,  0x01,  0xA1,  0xFE,  0x00,  0x4F,  0x00,  0x84,  0x97,  0x07,  0xA6,
  1467.   0x08,  0x01,  0x00,  0x33,  0x03,  0x00,  0xC2,  0x88,  0x03,  0x03,  0x01,  0xDE,  0xC2,  0x88,  0xCE,  0x00,
  1468.   0x69,  0x60,  0xCE,  0x00,  0x02,  0x03,  0x4A,  0x60,  0x00,  0xA2,  0x78,  0x01,  0x80,  0x63,  0x07,  0xA6,
  1469.   0x24,  0x01,  0x78,  0x81,  0x03,  0x03,  0x80,  0x63,  0xE2,  0x00,  0x07,  0xA6,  0x34,  0x01,  0x00,  0x33,
  1470.   0x04,  0x00,  0xC2,  0x88,  0x03,  0x07,  0x02,  0x01,  0x04,  0xCA,  0x0D,  0x23,  0x68,  0x98,  0x4D,  0x04,
  1471.   0x04,  0x85,  0x05,  0xD8,  0x0D,  0x23,  0x68,  0x98,  0xCD,  0x04,  0x15,  0x23,  0xF8,  0x88,  0xFB,  0x23,
  1472.   0x02,  0x61,  0x82,  0x01,  0x80,  0x63,  0x02,  0x03,  0x06,  0xA3,  0x62,  0x01,  0x00,  0x33,  0x0A,  0x00,
  1473.   0xC2,  0x88,  0x4E,  0x00,  0x07,  0xA3,  0x6E,  0x01,  0x00,  0x33,  0x0B,  0x00,  0xC2,  0x88,  0xCD,  0x04,
  1474.   0x36,  0x2D,  0x00,  0x33,  0x1A,  0x00,  0xC2,  0x88,  0x50,  0x04,  0x88,  0x81,  0x06,  0xAB,  0x82,  0x01,
  1475.   0x88,  0x81,  0x4E,  0x00,  0x07,  0xA3,  0x92,  0x01,  0x50,  0x00,  0x00,  0xA3,  0x3C,  0x01,  0x00,  0x05,
  1476.   0x7C,  0x81,  0x46,  0x97,  0x02,  0x01,  0x05,  0xC6,  0x04,  0x23,  0xA0,  0x01,  0x15,  0x23,  0xA1,  0x01,
  1477.   0xBE,  0x81,  0xFD,  0x23,  0x02,  0x61,  0x82,  0x01,  0x0A,  0xDA,  0x4A,  0x00,  0x06,  0x61,  0x00,  0xA0,
  1478.   0xB4,  0x01,  0x80,  0x63,  0xCD,  0x04,  0x36,  0x2D,  0x00,  0x33,  0x1B,  0x00,  0xC2,  0x88,  0x06,  0x23,
  1479.   0x68,  0x98,  0xCD,  0x04,  0xE6,  0x84,  0x06,  0x01,  0x00,  0xA2,  0xD4,  0x01,  0x57,  0x60,  0x00,  0xA0,
  1480.   0xDA,  0x01,  0xE6,  0x84,  0x80,  0x23,  0xA0,  0x01,  0xE6,  0x84,  0x80,  0x73,  0x4B,  0x00,  0x06,  0x61,
  1481.   0x00,  0xA2,  0x00,  0x02,  0x04,  0x01,  0x0C,  0xDE,  0x02,  0x01,  0x03,  0xCC,  0x4F,  0x00,  0x84,  0x97,
  1482.   0xFC,  0x81,  0x08,  0x23,  0x02,  0x41,  0x82,  0x01,  0x4F,  0x00,  0x62,  0x97,  0x48,  0x04,  0x84,  0x80,
  1483.   0xF0,  0x97,  0x00,  0x46,  0x56,  0x00,  0x03,  0xC0,  0x01,  0x23,  0xE8,  0x00,  0x81,  0x73,  0x06,  0x29,
  1484.   0x03,  0x42,  0x06,  0xE2,  0x03,  0xEE,  0x6B,  0xEB,  0x11,  0x23,  0xF8,  0x88,  0x04,  0x98,  0xF0,  0x80,
  1485.   0x80,  0x73,  0x80,  0x77,  0x07,  0xA4,  0x2A,  0x02,  0x7C,  0x95,  0x06,  0xA6,  0x34,  0x02,  0x03,  0xA6,
  1486.   0x4C,  0x04,  0x46,  0x82,  0x04,  0x01,  0x03,  0xD8,  0xB4,  0x98,  0x6A,  0x96,  0x46,  0x82,  0xFE,  0x95,
  1487.   0x80,  0x67,  0x83,  0x03,  0x80,  0x63,  0xB6,  0x2D,  0x02,  0xA6,  0x6C,  0x02,  0x07,  0xA6,  0x5A,  0x02,
  1488.   0x06,  0xA6,  0x5E,  0x02,  0x03,  0xA6,  0x62,  0x02,  0xC2,  0x88,  0x7C,  0x95,  0x48,  0x82,  0x60,  0x96,
  1489.   0x48,  0x82,  0x04,  0x23,  0xA0,  0x01,  0x14,  0x23,  0xA1,  0x01,  0x3C,  0x84,  0x04,  0x01,  0x0C,  0xDC,
  1490.   0xE0,  0x23,  0x25,  0x61,  0xEF,  0x00,  0x14,  0x01,  0x4F,  0x04,  0xA8,  0x01,  0x6F,  0x00,  0xA5,  0x01,
  1491.   0x03,  0x23,  0xA4,  0x01,  0x06,  0x23,  0x9C,  0x01,  0x24,  0x2B,  0x1C,  0x01,  0x02,  0xA6,  0xAA,  0x02,
  1492.   0x07,  0xA6,  0x5A,  0x02,  0x06,  0xA6,  0x5E,  0x02,  0x03,  0xA6,  0x20,  0x04,  0x01,  0xA6,  0xB4,  0x02,
  1493.   0x00,  0xA6,  0xB4,  0x02,  0x00,  0x33,  0x12,  0x00,  0xC2,  0x88,  0x00,  0x0E,  0x80,  0x63,  0x00,  0x43,
  1494.   0x00,  0xA0,  0x8C,  0x02,  0x4D,  0x04,  0x04,  0x01,  0x0B,  0xDC,  0xE7,  0x23,  0x04,  0x61,  0x84,  0x01,
  1495.   0x10,  0x31,  0x12,  0x35,  0x14,  0x01,  0xEC,  0x00,  0x6C,  0x38,  0x00,  0x3F,  0x00,  0x00,  0xEA,  0x82,
  1496.   0x18,  0x23,  0x04,  0x61,  0x18,  0xA0,  0xE2,  0x02,  0x04,  0x01,  0xA2,  0xC8,  0x00,  0x33,  0x1F,  0x00,
  1497.   0xC2,  0x88,  0x08,  0x31,  0x0A,  0x35,  0x0C,  0x39,  0x0E,  0x3D,  0x7E,  0x98,  0xB6,  0x2D,  0x01,  0xA6,
  1498.   0x14,  0x03,  0x00,  0xA6,  0x14,  0x03,  0x07,  0xA6,  0x0C,  0x03,  0x06,  0xA6,  0x10,  0x03,  0x03,  0xA6,
  1499.   0x20,  0x04,  0x02,  0xA6,  0x6C,  0x02,  0x00,  0x33,  0x33,  0x00,  0xC2,  0x88,  0x7C,  0x95,  0xEE,  0x82,
  1500.   0x60,  0x96,  0xEE,  0x82,  0x82,  0x98,  0x80,  0x42,  0x7E,  0x98,  0x64,  0xE4,  0x04,  0x01,  0x2D,  0xC8,
  1501.   0x31,  0x05,  0x07,  0x01,  0x00,  0xA2,  0x54,  0x03,  0x00,  0x43,  0x87,  0x01,  0x05,  0x05,  0x86,  0x98,
  1502.   0x7E,  0x98,  0x00,  0xA6,  0x16,  0x03,  0x07,  0xA6,  0x4C,  0x03,  0x03,  0xA6,  0x3C,  0x04,  0x06,  0xA6,
  1503.   0x50,  0x03,  0x01,  0xA6,  0x16,  0x03,  0x00,  0x33,  0x25,  0x00,  0xC2,  0x88,  0x7C,  0x95,  0x32,  0x83,
  1504.   0x60,  0x96,  0x32,  0x83,  0x04,  0x01,  0x10,  0xCE,  0x07,  0xC8,  0x05,  0x05,  0xEB,  0x04,  0x00,  0x33,
  1505.   0x00,  0x20,  0xC0,  0x20,  0x81,  0x62,  0x72,  0x83,  0x00,  0x01,  0x05,  0x05,  0xFF,  0xA2,  0x7A,  0x03,
  1506.   0xB1,  0x01,  0x08,  0x23,  0xB2,  0x01,  0x2E,  0x83,  0x05,  0x05,  0x15,  0x01,  0x00,  0xA2,  0x9A,  0x03,
  1507.   0xEC,  0x00,  0x6E,  0x00,  0x95,  0x01,  0x6C,  0x38,  0x00,  0x3F,  0x00,  0x00,  0x01,  0xA6,  0x96,  0x03,
  1508.   0x00,  0xA6,  0x96,  0x03,  0x10,  0x84,  0x80,  0x42,  0x7E,  0x98,  0x01,  0xA6,  0xA4,  0x03,  0x00,  0xA6,
  1509.   0xBC,  0x03,  0x10,  0x84,  0xA8,  0x98,  0x80,  0x42,  0x01,  0xA6,  0xA4,  0x03,  0x07,  0xA6,  0xB2,  0x03,
  1510.   0xD4,  0x83,  0x7C,  0x95,  0xA8,  0x83,  0x00,  0x33,  0x2F,  0x00,  0xC2,  0x88,  0xA8,  0x98,  0x80,  0x42,
  1511.   0x00,  0xA6,  0xBC,  0x03,  0x07,  0xA6,  0xCA,  0x03,  0xD4,  0x83,  0x7C,  0x95,  0xC0,  0x83,  0x00,  0x33,
  1512.   0x26,  0x00,  0xC2,  0x88,  0x38,  0x2B,  0x80,  0x32,  0x80,  0x36,  0x04,  0x23,  0xA0,  0x01,  0x12,  0x23,
  1513.   0xA1,  0x01,  0x10,  0x84,  0x07,  0xF0,  0x06,  0xA4,  0xF4,  0x03,  0x80,  0x6B,  0x80,  0x67,  0x05,  0x23,
  1514.   0x83,  0x03,  0x80,  0x63,  0x03,  0xA6,  0x0E,  0x04,  0x07,  0xA6,  0x06,  0x04,  0x06,  0xA6,  0x0A,  0x04,
  1515.   0x00,  0x33,  0x17,  0x00,  0xC2,  0x88,  0x7C,  0x95,  0xF4,  0x83,  0x60,  0x96,  0xF4,  0x83,  0x20,  0x84,
  1516.   0x07,  0xF0,  0x06,  0xA4,  0x20,  0x04,  0x80,  0x6B,  0x80,  0x67,  0x05,  0x23,  0x83,  0x03,  0x80,  0x63,
  1517.   0xB6,  0x2D,  0x03,  0xA6,  0x3C,  0x04,  0x07,  0xA6,  0x34,  0x04,  0x06,  0xA6,  0x38,  0x04,  0x00,  0x33,
  1518.   0x30,  0x00,  0xC2,  0x88,  0x7C,  0x95,  0x20,  0x84,  0x60,  0x96,  0x20,  0x84,  0x1D,  0x01,  0x06,  0xCC,
  1519.   0x00,  0x33,  0x00,  0x84,  0xC0,  0x20,  0x00,  0x23,  0xEA,  0x00,  0x81,  0x62,  0xA2,  0x0D,  0x80,  0x63,
  1520.   0x07,  0xA6,  0x5A,  0x04,  0x00,  0x33,  0x18,  0x00,  0xC2,  0x88,  0x03,  0x03,  0x80,  0x63,  0xA3,  0x01,
  1521.   0x07,  0xA4,  0x64,  0x04,  0x23,  0x01,  0x00,  0xA2,  0x86,  0x04,  0x0A,  0xA0,  0x76,  0x04,  0xE0,  0x00,
  1522.   0x00,  0x33,  0x1D,  0x00,  0xC2,  0x88,  0x0B,  0xA0,  0x82,  0x04,  0xE0,  0x00,  0x00,  0x33,  0x1E,  0x00,
  1523.   0xC2,  0x88,  0x42,  0x23,  0xF8,  0x88,  0x00,  0x23,  0x22,  0xA3,  0xE6,  0x04,  0x08,  0x23,  0x22,  0xA3,
  1524.   0xA2,  0x04,  0x28,  0x23,  0x22,  0xA3,  0xAE,  0x04,  0x02,  0x23,  0x22,  0xA3,  0xC4,  0x04,  0x42,  0x23,
  1525.   0xF8,  0x88,  0x4A,  0x00,  0x06,  0x61,  0x00,  0xA0,  0xAE,  0x04,  0x45,  0x23,  0xF8,  0x88,  0x04,  0x98,
  1526.   0x00,  0xA2,  0xC0,  0x04,  0xB4,  0x98,  0x00,  0x33,  0x00,  0x82,  0xC0,  0x20,  0x81,  0x62,  0xE8,  0x81,
  1527.   0x47,  0x23,  0xF8,  0x88,  0x04,  0x01,  0x0B,  0xDE,  0x04,  0x98,  0xB4,  0x98,  0x00,  0x33,  0x00,  0x81,
  1528.   0xC0,  0x20,  0x81,  0x62,  0x14,  0x01,  0x00,  0xA0,  0x00,  0x02,  0x43,  0x23,  0xF8,  0x88,  0x04,  0x23,
  1529.   0xA0,  0x01,  0x44,  0x23,  0xA1,  0x01,  0x80,  0x73,  0x4D,  0x00,  0x03,  0xA3,  0xF4,  0x04,  0x00,  0x33,
  1530.   0x27,  0x00,  0xC2,  0x88,  0x04,  0x01,  0x04,  0xDC,  0x02,  0x23,  0xA2,  0x01,  0x04,  0x23,  0xA0,  0x01,
  1531.   0x04,  0x98,  0x26,  0x95,  0x4B,  0x00,  0xF6,  0x00,  0x4F,  0x04,  0x4F,  0x00,  0x00,  0xA3,  0x22,  0x05,
  1532.   0x00,  0x05,  0x76,  0x00,  0x06,  0x61,  0x00,  0xA2,  0x1C,  0x05,  0x0A,  0x85,  0x46,  0x97,  0xCD,  0x04,
  1533.   0x24,  0x85,  0x48,  0x04,  0x84,  0x80,  0x02,  0x01,  0x03,  0xDA,  0x80,  0x23,  0x82,  0x01,  0x34,  0x85,
  1534.   0x02,  0x23,  0xA0,  0x01,  0x4A,  0x00,  0x06,  0x61,  0x00,  0xA2,  0x40,  0x05,  0x1D,  0x01,  0x04,  0xD6,
  1535.   0xFF,  0x23,  0x86,  0x41,  0x4B,  0x60,  0xCB,  0x00,  0xFF,  0x23,  0x80,  0x01,  0x49,  0x00,  0x81,  0x01,
  1536.   0x04,  0x01,  0x02,  0xC8,  0x30,  0x01,  0x80,  0x01,  0xF7,  0x04,  0x03,  0x01,  0x49,  0x04,  0x80,  0x01,
  1537.   0xC9,  0x00,  0x00,  0x05,  0x00,  0x01,  0xFF,  0xA0,  0x60,  0x05,  0x77,  0x04,  0x01,  0x23,  0xEA,  0x00,
  1538.   0x5D,  0x00,  0xFE,  0xC7,  0x00,  0x62,  0x00,  0x23,  0xEA,  0x00,  0x00,  0x63,  0x07,  0xA4,  0xF8,  0x05,
  1539.   0x03,  0x03,  0x02,  0xA0,  0x8E,  0x05,  0xF4,  0x85,  0x00,  0x33,  0x2D,  0x00,  0xC2,  0x88,  0x04,  0xA0,
  1540.   0xB8,  0x05,  0x80,  0x63,  0x00,  0x23,  0xDF,  0x00,  0x4A,  0x00,  0x06,  0x61,  0x00,  0xA2,  0xA4,  0x05,
  1541.   0x1D,  0x01,  0x06,  0xD6,  0x02,  0x23,  0x02,  0x41,  0x82,  0x01,  0x50,  0x00,  0x62,  0x97,  0x04,  0x85,
  1542.   0x04,  0x23,  0x02,  0x41,  0x82,  0x01,  0x04,  0x85,  0x08,  0xA0,  0xBE,  0x05,  0xF4,  0x85,  0x03,  0xA0,
  1543.   0xC4,  0x05,  0xF4,  0x85,  0x01,  0xA0,  0xCE,  0x05,  0x88,  0x00,  0x80,  0x63,  0xCC,  0x86,  0x07,  0xA0,
  1544.   0xEE,  0x05,  0x5F,  0x00,  0x00,  0x2B,  0xDF,  0x08,  0x00,  0xA2,  0xE6,  0x05,  0x80,  0x67,  0x80,  0x63,
  1545.   0x01,  0xA2,  0x7A,  0x06,  0x7C,  0x85,  0x06,  0x23,  0x68,  0x98,  0x48,  0x23,  0xF8,  0x88,  0x07,  0x23,
  1546.   0x80,  0x00,  0x06,  0x87,  0x80,  0x63,  0x7C,  0x85,  0x00,  0x23,  0xDF,  0x00,  0x00,  0x63,  0x4A,  0x00,
  1547.   0x06,  0x61,  0x00,  0xA2,  0x36,  0x06,  0x1D,  0x01,  0x16,  0xD4,  0xC0,  0x23,  0x07,  0x41,  0x83,  0x03,
  1548.   0x80,  0x63,  0x06,  0xA6,  0x1C,  0x06,  0x00,  0x33,  0x37,  0x00,  0xC2,  0x88,  0x1D,  0x01,  0x01,  0xD6,
  1549.   0x20,  0x23,  0x63,  0x60,  0x83,  0x03,  0x80,  0x63,  0x02,  0x23,  0xDF,  0x00,  0x07,  0xA6,  0x7C,  0x05,
  1550.   0xEF,  0x04,  0x6F,  0x00,  0x00,  0x63,  0x4B,  0x00,  0x06,  0x41,  0xCB,  0x00,  0x52,  0x00,  0x06,  0x61,
  1551.   0x00,  0xA2,  0x4E,  0x06,  0x1D,  0x01,  0x03,  0xCA,  0xC0,  0x23,  0x07,  0x41,  0x00,  0x63,  0x1D,  0x01,
  1552.   0x04,  0xCC,  0x00,  0x33,  0x00,  0x83,  0xC0,  0x20,  0x81,  0x62,  0x80,  0x23,  0x07,  0x41,  0x00,  0x63,
  1553.   0x80,  0x67,  0x08,  0x23,  0x83,  0x03,  0x80,  0x63,  0x00,  0x63,  0x01,  0x23,  0xDF,  0x00,  0x06,  0xA6,
  1554.   0x84,  0x06,  0x07,  0xA6,  0x7C,  0x05,  0x80,  0x67,  0x80,  0x63,  0x00,  0x33,  0x00,  0x40,  0xC0,  0x20,
  1555.   0x81,  0x62,  0x00,  0x63,  0x00,  0x00,  0xFE,  0x95,  0x83,  0x03,  0x80,  0x63,  0x06,  0xA6,  0x94,  0x06,
  1556.   0x07,  0xA6,  0x7C,  0x05,  0x00,  0x00,  0x01,  0xA0,  0x14,  0x07,  0x00,  0x2B,  0x40,  0x0E,  0x80,  0x63,
  1557.   0x01,  0x00,  0x06,  0xA6,  0xAA,  0x06,  0x07,  0xA6,  0x7C,  0x05,  0x40,  0x0E,  0x80,  0x63,  0x00,  0x43,
  1558.   0x00,  0xA0,  0xA2,  0x06,  0x06,  0xA6,  0xBC,  0x06,  0x07,  0xA6,  0x7C,  0x05,  0x80,  0x67,  0x40,  0x0E,
  1559.   0x80,  0x63,  0x07,  0xA6,  0x7C,  0x05,  0x00,  0x23,  0xDF,  0x00,  0x00,  0x63,  0x07,  0xA6,  0xD6,  0x06,
  1560.   0x00,  0x33,  0x2A,  0x00,  0xC2,  0x88,  0x03,  0x03,  0x80,  0x63,  0x89,  0x00,  0x0A,  0x2B,  0x07,  0xA6,
  1561.   0xE8,  0x06,  0x00,  0x33,  0x29,  0x00,  0xC2,  0x88,  0x00,  0x43,  0x00,  0xA2,  0xF4,  0x06,  0xC0,  0x0E,
  1562.   0x80,  0x63,  0xDE,  0x86,  0xC0,  0x0E,  0x00,  0x33,  0x00,  0x80,  0xC0,  0x20,  0x81,  0x62,  0x04,  0x01,
  1563.   0x02,  0xDA,  0x80,  0x63,  0x7C,  0x85,  0x80,  0x7B,  0x80,  0x63,  0x06,  0xA6,  0x8C,  0x06,  0x00,  0x33,
  1564.   0x2C,  0x00,  0xC2,  0x88,  0x0C,  0xA2,  0x2E,  0x07,  0xFE,  0x95,  0x83,  0x03,  0x80,  0x63,  0x06,  0xA6,
  1565.   0x2C,  0x07,  0x07,  0xA6,  0x7C,  0x05,  0x00,  0x33,  0x3D,  0x00,  0xC2,  0x88,  0x00,  0x00,  0x80,  0x67,
  1566.   0x83,  0x03,  0x80,  0x63,  0x0C,  0xA0,  0x44,  0x07,  0x07,  0xA6,  0x7C,  0x05,  0xBF,  0x23,  0x04,  0x61,
  1567.   0x84,  0x01,  0xE6,  0x84,  0x00,  0x63,  0xF0,  0x04,  0x01,  0x01,  0xF1,  0x00,  0x00,  0x01,  0xF2,  0x00,
  1568.   0x01,  0x05,  0x80,  0x01,  0x72,  0x04,  0x71,  0x00,  0x81,  0x01,  0x70,  0x04,  0x80,  0x05,  0x81,  0x05,
  1569.   0x00,  0x63,  0xF0,  0x04,  0xF2,  0x00,  0x72,  0x04,  0x01,  0x01,  0xF1,  0x00,  0x70,  0x00,  0x81,  0x01,
  1570.   0x70,  0x04,  0x71,  0x00,  0x81,  0x01,  0x72,  0x00,  0x80,  0x01,  0x71,  0x04,  0x70,  0x00,  0x80,  0x01,
  1571.   0x70,  0x04,  0x00,  0x63,  0xF0,  0x04,  0xF2,  0x00,  0x72,  0x04,  0x00,  0x01,  0xF1,  0x00,  0x70,  0x00,
  1572.   0x80,  0x01,  0x70,  0x04,  0x71,  0x00,  0x80,  0x01,  0x72,  0x00,  0x81,  0x01,  0x71,  0x04,  0x70,  0x00,
  1573.   0x81,  0x01,  0x70,  0x04,  0x00,  0x63,  0x00,  0x23,  0xB3,  0x01,  0x83,  0x05,  0xA3,  0x01,  0xA2,  0x01,
  1574.   0xA1,  0x01,  0x01,  0x23,  0xA0,  0x01,  0x00,  0x01,  0xC8,  0x00,  0x03,  0xA1,  0xC4,  0x07,  0x00,  0x33,
  1575.   0x07,  0x00,  0xC2,  0x88,  0x80,  0x05,  0x81,  0x05,  0x04,  0x01,  0x11,  0xC8,  0x48,  0x00,  0xB0,  0x01,
  1576.   0xB1,  0x01,  0x08,  0x23,  0xB2,  0x01,  0x05,  0x01,  0x48,  0x04,  0x00,  0x43,  0x00,  0xA2,  0xE4,  0x07,
  1577.   0x00,  0x05,  0xDA,  0x87,  0x00,  0x01,  0xC8,  0x00,  0xFF,  0x23,  0x80,  0x01,  0x05,  0x05,  0x00,  0x63,
  1578.   0xF7,  0x04,  0x1A,  0x09,  0xF6,  0x08,  0x6E,  0x04,  0x00,  0x02,  0x80,  0x43,  0x76,  0x08,  0x80,  0x02,
  1579.   0x77,  0x04,  0x00,  0x63,  0xF7,  0x04,  0x1A,  0x09,  0xF6,  0x08,  0x6E,  0x04,  0x00,  0x02,  0x00,  0xA0,
  1580.   0x14,  0x08,  0x16,  0x88,  0x00,  0x43,  0x76,  0x08,  0x80,  0x02,  0x77,  0x04,  0x00,  0x63,  0xF3,  0x04,
  1581.   0x00,  0x23,  0xF4,  0x00,  0x74,  0x00,  0x80,  0x43,  0xF4,  0x00,  0xCF,  0x40,  0x00,  0xA2,  0x44,  0x08,
  1582.   0x74,  0x04,  0x02,  0x01,  0xF7,  0xC9,  0xF6,  0xD9,  0x00,  0x01,  0x01,  0xA1,  0x24,  0x08,  0x04,  0x98,
  1583.   0x26,  0x95,  0x24,  0x88,  0x73,  0x04,  0x00,  0x63,  0xF3,  0x04,  0x75,  0x04,  0x5A,  0x88,  0x02,  0x01,
  1584.   0x04,  0xD8,  0x46,  0x97,  0x04,  0x98,  0x26,  0x95,  0x4A,  0x88,  0x75,  0x00,  0x00,  0xA3,  0x64,  0x08,
  1585.   0x00,  0x05,  0x4E,  0x88,  0x73,  0x04,  0x00,  0x63,  0x80,  0x7B,  0x80,  0x63,  0x06,  0xA6,  0x76,  0x08,
  1586.   0x00,  0x33,  0x3E,  0x00,  0xC2,  0x88,  0x80,  0x67,  0x83,  0x03,  0x80,  0x63,  0x00,  0x63,  0x38,  0x2B,
  1587.   0x9C,  0x88,  0x38,  0x2B,  0x92,  0x88,  0x32,  0x09,  0x31,  0x05,  0x92,  0x98,  0x05,  0x05,  0xB2,  0x09,
  1588.   0x00,  0x63,  0x00,  0x32,  0x00,  0x36,  0x00,  0x3A,  0x00,  0x3E,  0x00,  0x63,  0x80,  0x32,  0x80,  0x36,
  1589.   0x80,  0x3A,  0x80,  0x3E,  0xB4,  0x3D,  0x00,  0x63,  0x38,  0x2B,  0x40,  0x32,  0x40,  0x36,  0x40,  0x3A,
  1590.   0x40,  0x3E,  0x00,  0x63,  0x5A,  0x20,  0xC9,  0x40,  0x00,  0xA0,  0xB4,  0x08,  0x5D,  0x00,  0xFE,  0xC3,
  1591.   0x00,  0x63,  0x80,  0x73,  0xE6,  0x20,  0x02,  0x23,  0xE8,  0x00,  0x82,  0x73,  0xFF,  0xFD,  0x80,  0x73,
  1592.   0x13,  0x23,  0xF8,  0x88,  0x66,  0x20,  0xC0,  0x20,  0x04,  0x23,  0xA0,  0x01,  0xA1,  0x23,  0xA1,  0x01,
  1593.   0x81,  0x62,  0xE2,  0x88,  0x80,  0x73,  0x80,  0x77,  0x68,  0x00,  0x00,  0xA2,  0x80,  0x00,  0x03,  0xC2,
  1594.   0xF1,  0xC7,  0x41,  0x23,  0xF8,  0x88,  0x11,  0x23,  0xA1,  0x01,  0x04,  0x23,  0xA0,  0x01,  0xE6,  0x84,
  1595. };
  1596. STATIC ushort _asc_mcode_size = sizeof(_asc_mcode_buf);
  1597. STATIC ADV_DCNT _asc_mcode_chksum = 0x012C453FUL;
  1598. #define ASC_SYN_OFFSET_ONE_DISABLE_LIST  16
  1599. STATIC uchar _syn_offset_one_disable_cmd[ASC_SYN_OFFSET_ONE_DISABLE_LIST] =
  1600. {
  1601.     SCSICMD_Inquiry,
  1602.     SCSICMD_RequestSense,
  1603.     SCSICMD_ReadCapacity,
  1604.     SCSICMD_ReadTOC,
  1605.     SCSICMD_ModeSelect6,
  1606.     SCSICMD_ModeSense6,
  1607.     SCSICMD_ModeSelect10,
  1608.     SCSICMD_ModeSense10,
  1609.     0xFF,
  1610.     0xFF,
  1611.     0xFF,
  1612.     0xFF,
  1613.     0xFF,
  1614.     0xFF,
  1615.     0xFF,
  1616.     0xFF
  1617. };
  1618. STATIC int
  1619. AscExeScsiQueue(
  1620.                    ASC_DVC_VAR *asc_dvc,
  1621.                    ASC_SCSI_Q *scsiq
  1622. )
  1623. {
  1624.     PortAddr            iop_base;
  1625.     ulong               last_int_level;
  1626.     int                 sta;
  1627.     int                 n_q_required;
  1628.     int                 disable_syn_offset_one_fix;
  1629.     int                 i;
  1630.     ASC_PADDR           addr;
  1631.     ASC_EXE_CALLBACK    asc_exe_callback;
  1632.     ushort              sg_entry_cnt = 0;
  1633.     ushort              sg_entry_cnt_minus_one = 0;
  1634.     uchar               target_ix;
  1635.     uchar               tid_no;
  1636.     uchar               sdtr_data;
  1637.     uchar               extra_bytes;
  1638.     uchar               scsi_cmd;
  1639.     uchar               disable_cmd;
  1640.     ASC_SG_HEAD         *sg_head;
  1641.     ASC_DCNT            data_cnt;
  1642.     iop_base = asc_dvc->iop_base;
  1643.     sg_head = scsiq->sg_head;
  1644.     asc_exe_callback = asc_dvc->exe_callback;
  1645.     if (asc_dvc->err_code != 0)
  1646.         return (ERR);
  1647.     if (scsiq == (ASC_SCSI_Q *) 0L) {
  1648.         AscSetLibErrorCode(asc_dvc, ASCQ_ERR_SCSIQ_NULL_PTR);
  1649.         return (ERR);
  1650.     }
  1651.     scsiq->q1.q_no = 0;
  1652.     if ((scsiq->q2.tag_code & ASC_TAG_FLAG_EXTRA_BYTES) == 0) {
  1653.         scsiq->q1.extra_bytes = 0;
  1654.     }
  1655.     sta = 0;
  1656.     target_ix = scsiq->q2.target_ix;
  1657.     tid_no = ASC_TIX_TO_TID(target_ix);
  1658.     n_q_required = 1;
  1659.     if (scsiq->cdbptr[0] == SCSICMD_RequestSense) {
  1660.         if ((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) {
  1661.             asc_dvc->sdtr_done &= ~scsiq->q1.target_id;
  1662.             sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
  1663.             AscMsgOutSDTR(asc_dvc,
  1664.                           asc_dvc->sdtr_period_tbl[(sdtr_data >> 4) &
  1665.                           (uchar) (asc_dvc->max_sdtr_index - 1)],
  1666.                           (uchar) (sdtr_data & (uchar) ASC_SYN_MAX_OFFSET));
  1667.             scsiq->q1.cntl |= (QC_MSG_OUT | QC_URGENT);
  1668.         }
  1669.     }
  1670.     last_int_level = DvcEnterCritical();
  1671.     if (asc_dvc->in_critical_cnt != 0) {
  1672.         DvcLeaveCritical(last_int_level);
  1673.         AscSetLibErrorCode(asc_dvc, ASCQ_ERR_CRITICAL_RE_ENTRY);
  1674.         return (ERR);
  1675.     }
  1676.     asc_dvc->in_critical_cnt++;
  1677.     if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
  1678.         if ((sg_entry_cnt = sg_head->entry_cnt) == 0) {
  1679.             asc_dvc->in_critical_cnt--;
  1680.             DvcLeaveCritical(last_int_level);
  1681.             return (ERR);
  1682.         }
  1683. #if !CC_VERY_LONG_SG_LIST
  1684.         if (sg_entry_cnt > ASC_MAX_SG_LIST)
  1685.         {
  1686.             asc_dvc->in_critical_cnt--;
  1687.             DvcLeaveCritical(last_int_level);
  1688.             return(ERR);
  1689.         }
  1690. #endif /* !CC_VERY_LONG_SG_LIST */
  1691.         if (sg_entry_cnt == 1) {
  1692.             scsiq->q1.data_addr = (ADV_PADDR) sg_head->sg_list[0].addr;
  1693.             scsiq->q1.data_cnt = (ADV_DCNT) sg_head->sg_list[0].bytes;
  1694.             scsiq->q1.cntl &= ~(QC_SG_HEAD | QC_SG_SWAP_QUEUE);
  1695.         }
  1696.         sg_entry_cnt_minus_one = sg_entry_cnt - 1;
  1697.     }
  1698.     scsi_cmd = scsiq->cdbptr[0];
  1699.     disable_syn_offset_one_fix = FALSE;
  1700.     if ((asc_dvc->pci_fix_asyn_xfer & scsiq->q1.target_id) &&
  1701.         !(asc_dvc->pci_fix_asyn_xfer_always & scsiq->q1.target_id)) {
  1702.         if (scsiq->q1.cntl & QC_SG_HEAD) {
  1703.             data_cnt = 0;
  1704.             for (i = 0; i < sg_entry_cnt; i++) {
  1705.                 data_cnt += (ADV_DCNT) le32_to_cpu(sg_head->sg_list[i].bytes);
  1706.             }
  1707.         } else {
  1708.             data_cnt = le32_to_cpu(scsiq->q1.data_cnt);
  1709.         }
  1710.         if (data_cnt != 0UL) {
  1711.             if (data_cnt < 512UL) {
  1712.                 disable_syn_offset_one_fix = TRUE;
  1713.             } else {
  1714.                 for (i = 0; i < ASC_SYN_OFFSET_ONE_DISABLE_LIST; i++) {
  1715.                     disable_cmd = _syn_offset_one_disable_cmd[i];
  1716.                     if (disable_cmd == 0xFF) {
  1717.                         break;
  1718.                     }
  1719.                     if (scsi_cmd == disable_cmd) {
  1720.                         disable_syn_offset_one_fix = TRUE;
  1721.                         break;
  1722.                     }
  1723.                 }
  1724.             }
  1725.         }
  1726.     }
  1727.     if (disable_syn_offset_one_fix) {
  1728.         scsiq->q2.tag_code &= ~M2_QTAG_MSG_SIMPLE;
  1729.         scsiq->q2.tag_code |= (ASC_TAG_FLAG_DISABLE_ASYN_USE_SYN_FIX |
  1730.                                ASC_TAG_FLAG_DISABLE_DISCONNECT);
  1731.     } else {
  1732.         scsiq->q2.tag_code &= 0x27;
  1733.     }
  1734.     if ((scsiq->q1.cntl & QC_SG_HEAD) != 0) {
  1735.         if (asc_dvc->bug_fix_cntl) {
  1736.             if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
  1737.                 if ((scsi_cmd == SCSICMD_Read6) ||
  1738.                     (scsi_cmd == SCSICMD_Read10)) {
  1739.                     addr =
  1740.                         (ADV_PADDR) le32_to_cpu(
  1741.                             sg_head->sg_list[sg_entry_cnt_minus_one].addr) +
  1742.                         (ADV_DCNT) le32_to_cpu(
  1743.                             sg_head->sg_list[sg_entry_cnt_minus_one].bytes);
  1744.                     extra_bytes = (uchar) ((ushort) addr & 0x0003);
  1745.                     if ((extra_bytes != 0) &&
  1746.                         ((scsiq->q2.tag_code & ASC_TAG_FLAG_EXTRA_BYTES)
  1747.                          == 0)) {
  1748.                         scsiq->q2.tag_code |= ASC_TAG_FLAG_EXTRA_BYTES;
  1749.                         scsiq->q1.extra_bytes = extra_bytes;
  1750.                         data_cnt = le32_to_cpu(
  1751.                             sg_head->sg_list[sg_entry_cnt_minus_one].bytes);
  1752.                         data_cnt -= (ASC_DCNT) extra_bytes;
  1753.                         sg_head->sg_list[sg_entry_cnt_minus_one].bytes =
  1754.                             cpu_to_le32(data_cnt);
  1755.                     }
  1756.                 }
  1757.             }
  1758.         }
  1759.         sg_head->entry_to_copy = sg_head->entry_cnt;
  1760. #if CC_VERY_LONG_SG_LIST
  1761.         /*
  1762.          * Set the sg_entry_cnt to the maximum possible. The rest of
  1763.          * the SG elements will be copied when the RISC completes the
  1764.          * SG elements that fit and halts.
  1765.          */
  1766.         if (sg_entry_cnt > ASC_MAX_SG_LIST)
  1767.         {
  1768.              sg_entry_cnt = ASC_MAX_SG_LIST;
  1769.         }
  1770. #endif /* CC_VERY_LONG_SG_LIST */
  1771.         n_q_required = AscSgListToQueue(sg_entry_cnt);
  1772.         if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, n_q_required) >=
  1773.             (uint) n_q_required) || ((scsiq->q1.cntl & QC_URGENT) != 0)) {
  1774.             if ((sta = AscSendScsiQueue(asc_dvc, scsiq,
  1775.                                         n_q_required)) == 1) {
  1776.                 asc_dvc->in_critical_cnt--;
  1777.                 if (asc_exe_callback != 0) {
  1778.                     (*asc_exe_callback) (asc_dvc, scsiq);
  1779.                 }
  1780.                 DvcLeaveCritical(last_int_level);
  1781.                 return (sta);
  1782.             }
  1783.         }
  1784.     } else {
  1785.         if (asc_dvc->bug_fix_cntl) {
  1786.             if (asc_dvc->bug_fix_cntl & ASC_BUG_FIX_IF_NOT_DWB) {
  1787.                 if ((scsi_cmd == SCSICMD_Read6) ||
  1788.                     (scsi_cmd == SCSICMD_Read10)) {
  1789.                     addr = le32_to_cpu(scsiq->q1.data_addr) +
  1790.                         le32_to_cpu(scsiq->q1.data_cnt);
  1791.                     extra_bytes = (uchar) ((ushort) addr & 0x0003);
  1792.                     if ((extra_bytes != 0) &&
  1793.                         ((scsiq->q2.tag_code & ASC_TAG_FLAG_EXTRA_BYTES)
  1794.                           == 0)) {
  1795.                         data_cnt = le32_to_cpu(scsiq->q1.data_cnt);
  1796.                         if (((ushort) data_cnt & 0x01FF) == 0) {
  1797.                             scsiq->q2.tag_code |= ASC_TAG_FLAG_EXTRA_BYTES;
  1798.                             data_cnt -= (ASC_DCNT) extra_bytes;
  1799.                             scsiq->q1.data_cnt = cpu_to_le32(data_cnt);
  1800.                             scsiq->q1.extra_bytes = extra_bytes;
  1801.                         }
  1802.                     }
  1803.                 }
  1804.             }
  1805.         }
  1806.         n_q_required = 1;
  1807.         if ((AscGetNumOfFreeQueue(asc_dvc, target_ix, 1) >= 1) ||
  1808.             ((scsiq->q1.cntl & QC_URGENT) != 0)) {
  1809.             if ((sta = AscSendScsiQueue(asc_dvc, scsiq,
  1810.                                         n_q_required)) == 1) {
  1811.                 asc_dvc->in_critical_cnt--;
  1812.                 if (asc_exe_callback != 0) {
  1813.                     (*asc_exe_callback) (asc_dvc, scsiq);
  1814.                 }
  1815.                 DvcLeaveCritical(last_int_level);
  1816.                 return (sta);
  1817.             }
  1818.         }
  1819.     }
  1820.     asc_dvc->in_critical_cnt--;
  1821.     DvcLeaveCritical(last_int_level);
  1822.     return (sta);
  1823. }
  1824. STATIC int
  1825. AscSendScsiQueue(
  1826.                     ASC_DVC_VAR *asc_dvc,
  1827.                     ASC_SCSI_Q *scsiq,
  1828.                     uchar n_q_required
  1829. )
  1830. {
  1831.     PortAddr            iop_base;
  1832.     uchar               free_q_head;
  1833.     uchar               next_qp;
  1834.     uchar               tid_no;
  1835.     uchar               target_ix;
  1836.     int                 sta;
  1837.     iop_base = asc_dvc->iop_base;
  1838.     target_ix = scsiq->q2.target_ix;
  1839.     tid_no = ASC_TIX_TO_TID(target_ix);
  1840.     sta = 0;
  1841.     free_q_head = (uchar) AscGetVarFreeQHead(iop_base);
  1842.     if (n_q_required > 1) {
  1843.         if ((next_qp = AscAllocMultipleFreeQueue(iop_base,
  1844.                                        free_q_head, (uchar) (n_q_required)))
  1845.             != (uchar) ASC_QLINK_END) {
  1846.             asc_dvc->last_q_shortage = 0;
  1847.             scsiq->sg_head->queue_cnt = n_q_required - 1;
  1848.             scsiq->q1.q_no = free_q_head;
  1849.             if ((sta = AscPutReadySgListQueue(asc_dvc, scsiq,
  1850.                                               free_q_head)) == 1) {
  1851.                 AscPutVarFreeQHead(iop_base, next_qp);
  1852.                 asc_dvc->cur_total_qng += (uchar) (n_q_required);
  1853.                 asc_dvc->cur_dvc_qng[tid_no]++;
  1854.             }
  1855.             return (sta);
  1856.         }
  1857.     } else if (n_q_required == 1) {
  1858.         if ((next_qp = AscAllocFreeQueue(iop_base,
  1859.                                          free_q_head)) != ASC_QLINK_END) {
  1860.             scsiq->q1.q_no = free_q_head;
  1861.             if ((sta = AscPutReadyQueue(asc_dvc, scsiq,
  1862.                                         free_q_head)) == 1) {
  1863.                 AscPutVarFreeQHead(iop_base, next_qp);
  1864.                 asc_dvc->cur_total_qng++;
  1865.                 asc_dvc->cur_dvc_qng[tid_no]++;
  1866.             }
  1867.             return (sta);
  1868.         }
  1869.     }
  1870.     return (sta);
  1871. }
  1872. STATIC int
  1873. AscSgListToQueue(
  1874.                     int sg_list
  1875. )
  1876. {
  1877.     int                 n_sg_list_qs;
  1878.     n_sg_list_qs = ((sg_list - 1) / ASC_SG_LIST_PER_Q);
  1879.     if (((sg_list - 1) % ASC_SG_LIST_PER_Q) != 0)
  1880.         n_sg_list_qs++;
  1881.     return (n_sg_list_qs + 1);
  1882. }
  1883. STATIC uint
  1884. AscGetNumOfFreeQueue(
  1885.                         ASC_DVC_VAR *asc_dvc,
  1886.                         uchar target_ix,
  1887.                         uchar n_qs
  1888. )
  1889. {
  1890.     uint                cur_used_qs;
  1891.     uint                cur_free_qs;
  1892.     ASC_SCSI_BIT_ID_TYPE target_id;
  1893.     uchar               tid_no;
  1894.     target_id = ASC_TIX_TO_TARGET_ID(target_ix);
  1895.     tid_no = ASC_TIX_TO_TID(target_ix);
  1896.     if ((asc_dvc->unit_not_ready & target_id) ||
  1897.         (asc_dvc->queue_full_or_busy & target_id)) {
  1898.         return (0);
  1899.     }
  1900.     if (n_qs == 1) {
  1901.         cur_used_qs = (uint) asc_dvc->cur_total_qng +
  1902.           (uint) asc_dvc->last_q_shortage +
  1903.           (uint) ASC_MIN_FREE_Q;
  1904.     } else {
  1905.         cur_used_qs = (uint) asc_dvc->cur_total_qng +
  1906.           (uint) ASC_MIN_FREE_Q;
  1907.     }
  1908.     if ((uint) (cur_used_qs + n_qs) <= (uint) asc_dvc->max_total_qng) {
  1909.         cur_free_qs = (uint) asc_dvc->max_total_qng - cur_used_qs;
  1910.         if (asc_dvc->cur_dvc_qng[tid_no] >=
  1911.             asc_dvc->max_dvc_qng[tid_no]) {
  1912.             return (0);
  1913.         }
  1914.         return (cur_free_qs);
  1915.     }
  1916.     if (n_qs > 1) {
  1917.         if ((n_qs > asc_dvc->last_q_shortage) && (n_qs <= (asc_dvc->max_total_qng - ASC_MIN_FREE_Q))) {
  1918.             asc_dvc->last_q_shortage = n_qs;
  1919.         }
  1920.     }
  1921.     return (0);
  1922. }
  1923. STATIC int
  1924. AscPutReadyQueue(
  1925.                     ASC_DVC_VAR *asc_dvc,
  1926.                     ASC_SCSI_Q *scsiq,
  1927.                     uchar q_no
  1928. )
  1929. {
  1930.     ushort              q_addr;
  1931.     uchar               tid_no;
  1932.     uchar               sdtr_data;
  1933.     uchar               syn_period_ix;
  1934.     uchar               syn_offset;
  1935.     PortAddr            iop_base;
  1936.     iop_base = asc_dvc->iop_base;
  1937.     if (((asc_dvc->init_sdtr & scsiq->q1.target_id) != 0) &&
  1938.         ((asc_dvc->sdtr_done & scsiq->q1.target_id) == 0)) {
  1939.         tid_no = ASC_TIX_TO_TID(scsiq->q2.target_ix);
  1940.         sdtr_data = AscGetMCodeInitSDTRAtID(iop_base, tid_no);
  1941.         syn_period_ix = (sdtr_data >> 4) & (asc_dvc->max_sdtr_index - 1);
  1942.         syn_offset = sdtr_data & ASC_SYN_MAX_OFFSET;
  1943.         AscMsgOutSDTR(asc_dvc,
  1944.                       asc_dvc->sdtr_period_tbl[syn_period_ix],
  1945.                       syn_offset);
  1946.         scsiq->q1.cntl |= QC_MSG_OUT;
  1947.     }
  1948.     q_addr = ASC_QNO_TO_QADDR(q_no);
  1949.     if ((scsiq->q1.target_id & asc_dvc->use_tagged_qng) == 0) {
  1950.         scsiq->q2.tag_code &= ~M2_QTAG_MSG_SIMPLE;
  1951.     }
  1952.     scsiq->q1.status = QS_FREE;
  1953.     AscMemWordCopyPtrToLram(iop_base,
  1954.                          q_addr + ASC_SCSIQ_CDB_BEG,
  1955.                          (uchar *) scsiq->cdbptr,
  1956.                          scsiq->q2.cdb_len >> 1);
  1957.     DvcPutScsiQ(iop_base,
  1958.                 q_addr + ASC_SCSIQ_CPY_BEG,
  1959.                 (uchar *) &scsiq->q1.cntl,
  1960.                 ((sizeof(ASC_SCSIQ_1) + sizeof(ASC_SCSIQ_2)) / 2) - 1);
  1961.     AscWriteLramWord(iop_base,
  1962.                      (ushort) (q_addr + (ushort) ASC_SCSIQ_B_STATUS),
  1963.              (ushort) (((ushort) scsiq->q1.q_no << 8) | (ushort) QS_READY));
  1964.     return (1);
  1965. }
  1966. STATIC int
  1967. AscPutReadySgListQueue(
  1968.                           ASC_DVC_VAR *asc_dvc,
  1969.                           ASC_SCSI_Q *scsiq,
  1970.                           uchar q_no
  1971. )
  1972. {
  1973.     int                 sta;
  1974.     int                 i;
  1975.     ASC_SG_HEAD *sg_head;
  1976.     ASC_SG_LIST_Q       scsi_sg_q;
  1977.     ASC_DCNT            saved_data_addr;
  1978.     ASC_DCNT            saved_data_cnt;
  1979.     PortAddr            iop_base;
  1980.     ushort              sg_list_dwords;
  1981.     ushort              sg_index;
  1982.     ushort              sg_entry_cnt;
  1983.     ushort              q_addr;
  1984.     uchar               next_qp;
  1985.     iop_base = asc_dvc->iop_base;
  1986.     sg_head = scsiq->sg_head;
  1987.     saved_data_addr = scsiq->q1.data_addr;
  1988.     saved_data_cnt = scsiq->q1.data_cnt;
  1989.     scsiq->q1.data_addr = (ASC_PADDR) sg_head->sg_list[0].addr;
  1990.     scsiq->q1.data_cnt = (ASC_DCNT) sg_head->sg_list[0].bytes;
  1991. #if CC_VERY_LONG_SG_LIST
  1992.     /*
  1993.      * If sg_head->entry_cnt is greater than ASC_MAX_SG_LIST
  1994.      * then not all SG elements will fit in the allocated queues.
  1995.      * The rest of the SG elements will be copied when the RISC
  1996.      * completes the SG elements that fit and halts.
  1997.      */
  1998.     if (sg_head->entry_cnt > ASC_MAX_SG_LIST)
  1999.     {
  2000.          /*
  2001.           * Set sg_entry_cnt to be the number of SG elements that
  2002.           * will fit in the allocated SG queues. It is minus 1, because
  2003.           * the first SG element is handled above. ASC_MAX_SG_LIST is
  2004.           * already inflated by 1 to account for this. For example it
  2005.           * may be 50 which is 1 + 7 queues * 7 SG elements.
  2006.           */
  2007.          sg_entry_cnt = ASC_MAX_SG_LIST - 1;
  2008.          /*
  2009.           * Keep track of remaining number of SG elements that will
  2010.           * need to be handled from a_isr.c.
  2011.           */
  2012.          scsiq->remain_sg_entry_cnt = sg_head->entry_cnt - ASC_MAX_SG_LIST;
  2013.     } else
  2014.     {
  2015. #endif /* CC_VERY_LONG_SG_LIST */
  2016.          /*
  2017.           * Set sg_entry_cnt to be the number of SG elements that
  2018.           * will fit in the allocated SG queues. It is minus 1, because
  2019.           * the first SG element is handled above.
  2020.           */
  2021.          sg_entry_cnt = sg_head->entry_cnt - 1;
  2022. #if CC_VERY_LONG_SG_LIST
  2023.     }
  2024. #endif /* CC_VERY_LONG_SG_LIST */
  2025.     if (sg_entry_cnt != 0) {
  2026.         scsiq->q1.cntl |= QC_SG_HEAD;
  2027.         q_addr = ASC_QNO_TO_QADDR(q_no);
  2028.         sg_index = 1;
  2029.         scsiq->q1.sg_queue_cnt = sg_head->queue_cnt;
  2030.         scsi_sg_q.sg_head_qp = q_no;
  2031.         scsi_sg_q.cntl = QCSG_SG_XFER_LIST;
  2032.         for (i = 0; i < sg_head->queue_cnt; i++) {
  2033.             scsi_sg_q.seq_no = i + 1;
  2034.             if (sg_entry_cnt > ASC_SG_LIST_PER_Q) {
  2035.                 sg_list_dwords = (uchar) (ASC_SG_LIST_PER_Q * 2);
  2036.                 sg_entry_cnt -= ASC_SG_LIST_PER_Q;
  2037.                 if (i == 0) {
  2038.                     scsi_sg_q.sg_list_cnt = ASC_SG_LIST_PER_Q;
  2039.                     scsi_sg_q.sg_cur_list_cnt = ASC_SG_LIST_PER_Q;
  2040.                 } else {
  2041.                     scsi_sg_q.sg_list_cnt = ASC_SG_LIST_PER_Q - 1;
  2042.                     scsi_sg_q.sg_cur_list_cnt = ASC_SG_LIST_PER_Q - 1;
  2043.                 }
  2044.             } else {
  2045. #if CC_VERY_LONG_SG_LIST
  2046.                 /*
  2047.                  * This is the last SG queue in the list of
  2048.                  * allocated SG queues. If there are more
  2049.                  * SG elements than will fit in the allocated
  2050.                  * queues, then set the QCSG_SG_XFER_MORE flag.
  2051.                  */
  2052.                 if (sg_head->entry_cnt > ASC_MAX_SG_LIST)
  2053.                 {
  2054.                     scsi_sg_q.cntl |= QCSG_SG_XFER_MORE;
  2055.                 } else
  2056.                 {
  2057. #endif /* CC_VERY_LONG_SG_LIST */
  2058.                     scsi_sg_q.cntl |= QCSG_SG_XFER_END;
  2059. #if CC_VERY_LONG_SG_LIST
  2060.                 }
  2061. #endif /* CC_VERY_LONG_SG_LIST */
  2062.                 sg_list_dwords = sg_entry_cnt << 1;
  2063.                 if (i == 0) {
  2064.                     scsi_sg_q.sg_list_cnt = sg_entry_cnt;
  2065.                     scsi_sg_q.sg_cur_list_cnt = sg_entry_cnt;
  2066.                 } else {
  2067.                     scsi_sg_q.sg_list_cnt = sg_entry_cnt - 1;
  2068.                     scsi_sg_q.sg_cur_list_cnt = sg_entry_cnt - 1;
  2069.                 }
  2070.                 sg_entry_cnt = 0;
  2071.             }
  2072.             next_qp = AscReadLramByte(iop_base,
  2073.                                       (ushort) (q_addr + ASC_SCSIQ_B_FWD));
  2074.             scsi_sg_q.q_no = next_qp;
  2075.             q_addr = ASC_QNO_TO_QADDR(next_qp);
  2076.             AscMemWordCopyPtrToLram(iop_base,
  2077.                                 q_addr + ASC_SCSIQ_SGHD_CPY_BEG,
  2078.                                 (uchar *) &scsi_sg_q,
  2079.                                 sizeof(ASC_SG_LIST_Q) >> 1);
  2080.             AscMemDWordCopyPtrToLram(iop_base,
  2081.                                 q_addr + ASC_SGQ_LIST_BEG,
  2082.                                 (uchar *) &sg_head->sg_list[sg_index],
  2083.                                 sg_list_dwords);
  2084.             sg_index += ASC_SG_LIST_PER_Q;
  2085.             scsiq->next_sg_index = sg_index;
  2086.         }
  2087.     } else {
  2088.         scsiq->q1.cntl &= ~QC_SG_HEAD;
  2089.     }
  2090.     sta = AscPutReadyQueue(asc_dvc, scsiq, q_no);
  2091.     scsiq->q1.data_addr = saved_data_addr;
  2092.     scsiq->q1.data_cnt = saved_data_cnt;
  2093.     return (sta);
  2094. }
  2095. STATIC int
  2096. AscSetRunChipSynRegAtID(
  2097.                            PortAddr iop_base,
  2098.                            uchar tid_no,
  2099.                            uchar sdtr_data
  2100. )
  2101. {
  2102.     int                 sta = FALSE;
  2103.     if (AscHostReqRiscHalt(iop_base)) {
  2104.         sta = AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
  2105.         AscStartChip(iop_base);
  2106.         return (sta);
  2107.     }
  2108.     return (sta);
  2109. }
  2110. STATIC int
  2111. AscSetChipSynRegAtID(
  2112.                         PortAddr iop_base,
  2113.                         uchar id,
  2114.                         uchar sdtr_data
  2115. )
  2116. {
  2117.     ASC_SCSI_BIT_ID_TYPE org_id;
  2118.     int                 i;
  2119.     int                 sta = TRUE;
  2120.     AscSetBank(iop_base, 1);
  2121.     org_id = AscReadChipDvcID(iop_base);
  2122.     for (i = 0; i <= ASC_MAX_TID; i++) {
  2123.         if (org_id == (0x01 << i))
  2124.             break;
  2125.     }
  2126.     org_id = (ASC_SCSI_BIT_ID_TYPE) i;
  2127.     AscWriteChipDvcID(iop_base, id);
  2128.     if (AscReadChipDvcID(iop_base) == (0x01 << id)) {
  2129.         AscSetBank(iop_base, 0);
  2130.         AscSetChipSyn(iop_base, sdtr_data);
  2131.         if (AscGetChipSyn(iop_base) != sdtr_data) {
  2132.             sta = FALSE;
  2133.         }
  2134.     } else {
  2135.         sta = FALSE;
  2136.     }
  2137.     AscSetBank(iop_base, 1);
  2138.     AscWriteChipDvcID(iop_base, org_id);
  2139.     AscSetBank(iop_base, 0);
  2140.     return (sta);
  2141. }
  2142. STATIC ushort
  2143. AscInitLram(
  2144.                ASC_DVC_VAR *asc_dvc
  2145. )
  2146. {
  2147.     uchar               i;
  2148.     ushort              s_addr;
  2149.     PortAddr            iop_base;
  2150.     ushort              warn_code;
  2151.     iop_base = asc_dvc->iop_base;
  2152.     warn_code = 0;
  2153.     AscMemWordSetLram(iop_base, ASC_QADR_BEG, 0,
  2154.                (ushort) (((int) (asc_dvc->max_total_qng + 2 + 1) * 64) >> 1)
  2155. );
  2156.     i = ASC_MIN_ACTIVE_QNO;
  2157.     s_addr = ASC_QADR_BEG + ASC_QBLK_SIZE;
  2158.     AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_FWD),
  2159.                      (uchar) (i + 1));
  2160.     AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_BWD),
  2161.                      (uchar) (asc_dvc->max_total_qng));
  2162.     AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_QNO),
  2163.                      (uchar) i);
  2164.     i++;
  2165.     s_addr += ASC_QBLK_SIZE;
  2166.     for (; i < asc_dvc->max_total_qng; i++, s_addr += ASC_QBLK_SIZE) {
  2167.         AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_FWD),
  2168.                          (uchar) (i + 1));
  2169.         AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_BWD),
  2170.                          (uchar) (i - 1));
  2171.         AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_QNO),
  2172.                          (uchar) i);
  2173.     }
  2174.     AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_FWD),
  2175.                      (uchar) ASC_QLINK_END);
  2176.     AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_BWD),
  2177.                      (uchar) (asc_dvc->max_total_qng - 1));
  2178.     AscWriteLramByte(iop_base, (ushort) (s_addr + ASC_SCSIQ_B_QNO),
  2179.                      (uchar) asc_dvc->max_total_qng);
  2180.     i++;
  2181.     s_addr += ASC_QBLK_SIZE;
  2182.     for (; i <= (uchar) (asc_dvc->max_total_qng + 3);
  2183.          i++, s_addr += ASC_QBLK_SIZE) {
  2184.         AscWriteLramByte(iop_base,
  2185.                          (ushort) (s_addr + (ushort) ASC_SCSIQ_B_FWD), i);
  2186.         AscWriteLramByte(iop_base,
  2187.                          (ushort) (s_addr + (ushort) ASC_SCSIQ_B_BWD), i);
  2188.         AscWriteLramByte(iop_base,
  2189.                          (ushort) (s_addr + (ushort) ASC_SCSIQ_B_QNO), i);
  2190.     }
  2191.     return (warn_code);
  2192. }
  2193. STATIC ushort
  2194. AscInitQLinkVar(
  2195.                    ASC_DVC_VAR *asc_dvc
  2196. )
  2197. {
  2198.     PortAddr            iop_base;
  2199.     int                 i;
  2200.     ushort              lram_addr;
  2201.     iop_base = asc_dvc->iop_base;
  2202.     AscPutRiscVarFreeQHead(iop_base, 1);
  2203.     AscPutRiscVarDoneQTail(iop_base, asc_dvc->max_total_qng);
  2204.     AscPutVarFreeQHead(iop_base, 1);
  2205.     AscPutVarDoneQTail(iop_base, asc_dvc->max_total_qng);
  2206.     AscWriteLramByte(iop_base, ASCV_BUSY_QHEAD_B,
  2207.                      (uchar) ((int) asc_dvc->max_total_qng + 1));
  2208.     AscWriteLramByte(iop_base, ASCV_DISC1_QHEAD_B,
  2209.                      (uchar) ((int) asc_dvc->max_total_qng + 2));
  2210.     AscWriteLramByte(iop_base, (ushort) ASCV_TOTAL_READY_Q_B,
  2211.                      asc_dvc->max_total_qng);
  2212.     AscWriteLramWord(iop_base, ASCV_ASCDVC_ERR_CODE_W, 0);
  2213.     AscWriteLramWord(iop_base, ASCV_HALTCODE_W, 0);
  2214.     AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, 0);
  2215.     AscWriteLramByte(iop_base, ASCV_SCSIBUSY_B, 0);
  2216.     AscWriteLramByte(iop_base, ASCV_WTM_FLAG_B, 0);
  2217.     AscPutQDoneInProgress(iop_base, 0);
  2218.     lram_addr = ASC_QADR_BEG;
  2219.     for (i = 0; i < 32; i++, lram_addr += 2) {
  2220.         AscWriteLramWord(iop_base, lram_addr, 0);
  2221.     }
  2222.     return (0);
  2223. }
  2224. STATIC int
  2225. AscSetLibErrorCode(
  2226.                       ASC_DVC_VAR *asc_dvc,
  2227.                       ushort err_code
  2228. )
  2229. {
  2230.     if (asc_dvc->err_code == 0) {
  2231.         asc_dvc->err_code = err_code;
  2232.         AscWriteLramWord(asc_dvc->iop_base, ASCV_ASCDVC_ERR_CODE_W,
  2233.                          err_code);
  2234.     }
  2235.     return (err_code);
  2236. }
  2237. STATIC uchar
  2238. AscMsgOutSDTR(
  2239.                  ASC_DVC_VAR *asc_dvc,
  2240.                  uchar sdtr_period,
  2241.                  uchar sdtr_offset
  2242. )
  2243. {
  2244.     EXT_MSG             sdtr_buf;
  2245.     uchar               sdtr_period_index;
  2246.     PortAddr            iop_base;
  2247.     iop_base = asc_dvc->iop_base;
  2248.     sdtr_buf.msg_type = MS_EXTEND;
  2249.     sdtr_buf.msg_len = MS_SDTR_LEN;
  2250.     sdtr_buf.msg_req = MS_SDTR_CODE;
  2251.     sdtr_buf.xfer_period = sdtr_period;
  2252.     sdtr_offset &= ASC_SYN_MAX_OFFSET;
  2253.     sdtr_buf.req_ack_offset = sdtr_offset;
  2254.     if ((sdtr_period_index =
  2255.          AscGetSynPeriodIndex(asc_dvc, sdtr_period)) <=
  2256.         asc_dvc->max_sdtr_index) {
  2257.         AscMemWordCopyPtrToLram(iop_base,
  2258.                              ASCV_MSGOUT_BEG,
  2259.                              (uchar *) &sdtr_buf,
  2260.                              sizeof (EXT_MSG) >> 1);
  2261.         return ((sdtr_period_index << 4) | sdtr_offset);
  2262.     } else {
  2263.         sdtr_buf.req_ack_offset = 0;
  2264.         AscMemWordCopyPtrToLram(iop_base,
  2265.                              ASCV_MSGOUT_BEG,
  2266.                              (uchar *) &sdtr_buf,
  2267.                              sizeof (EXT_MSG) >> 1);
  2268.         return (0);
  2269.     }
  2270. }
  2271. STATIC uchar
  2272. AscCalSDTRData(
  2273.                   ASC_DVC_VAR *asc_dvc,
  2274.                   uchar sdtr_period,
  2275.                   uchar syn_offset
  2276. )
  2277. {
  2278.     uchar               byte;
  2279.     uchar               sdtr_period_ix;
  2280.     sdtr_period_ix = AscGetSynPeriodIndex(asc_dvc, sdtr_period);
  2281.     if (
  2282.            (sdtr_period_ix > asc_dvc->max_sdtr_index)
  2283. ) {
  2284.         return (0xFF);
  2285.     }
  2286.     byte = (sdtr_period_ix << 4) | (syn_offset & ASC_SYN_MAX_OFFSET);
  2287.     return (byte);
  2288. }
  2289. STATIC void
  2290. AscSetChipSDTR(
  2291.                   PortAddr iop_base,
  2292.                   uchar sdtr_data,
  2293.                   uchar tid_no
  2294. )
  2295. {
  2296.     AscSetChipSynRegAtID(iop_base, tid_no, sdtr_data);
  2297.     AscPutMCodeSDTRDoneAtID(iop_base, tid_no, sdtr_data);
  2298.     return;
  2299. }
  2300. STATIC uchar
  2301. AscGetSynPeriodIndex(
  2302.                         ASC_DVC_VAR *asc_dvc,
  2303.                         uchar syn_time
  2304. )
  2305. {
  2306.     uchar             *period_table;
  2307.     int                 max_index;
  2308.     int                 min_index;
  2309.     int                 i;
  2310.     period_table = asc_dvc->sdtr_period_tbl;
  2311.     max_index = (int) asc_dvc->max_sdtr_index;
  2312.     min_index = (int)asc_dvc->host_init_sdtr_index;
  2313.     if ((syn_time <= period_table[max_index])) {
  2314.         for (i = min_index; i < (max_index - 1); i++) {
  2315.             if (syn_time <= period_table[i]) {
  2316.                 return ((uchar) i);
  2317.             }
  2318.         }
  2319.         return ((uchar) max_index);
  2320.     } else {
  2321.         return ((uchar) (max_index + 1));
  2322.     }
  2323. }
  2324. STATIC uchar
  2325. AscAllocFreeQueue(
  2326.                      PortAddr iop_base,
  2327.                      uchar free_q_head
  2328. )
  2329. {
  2330.     ushort              q_addr;
  2331.     uchar               next_qp;
  2332.     uchar               q_status;
  2333.     q_addr = ASC_QNO_TO_QADDR(free_q_head);
  2334.     q_status = (uchar) AscReadLramByte(iop_base,
  2335.                                     (ushort) (q_addr + ASC_SCSIQ_B_STATUS));
  2336.     next_qp = AscReadLramByte(iop_base,
  2337.                               (ushort) (q_addr + ASC_SCSIQ_B_FWD));
  2338.     if (((q_status & QS_READY) == 0) && (next_qp != ASC_QLINK_END)) {
  2339.         return (next_qp);
  2340.     }
  2341.     return (ASC_QLINK_END);
  2342. }
  2343. STATIC uchar
  2344. AscAllocMultipleFreeQueue(
  2345.                              PortAddr iop_base,
  2346.                              uchar free_q_head,
  2347.                              uchar n_free_q
  2348. )
  2349. {
  2350.     uchar               i;
  2351.     for (i = 0; i < n_free_q; i++) {
  2352.         if ((free_q_head = AscAllocFreeQueue(iop_base, free_q_head))
  2353.             == ASC_QLINK_END) {
  2354.             return (ASC_QLINK_END);
  2355.         }
  2356.     }
  2357.     return (free_q_head);
  2358. }
  2359. STATIC int
  2360. AscHostReqRiscHalt(
  2361.                       PortAddr iop_base
  2362. )
  2363. {
  2364.     int                 count = 0;
  2365.     int                 sta = 0;
  2366.     uchar               saved_stop_code;
  2367.     if (AscIsChipHalted(iop_base))
  2368.         return (1);
  2369.     saved_stop_code = AscReadLramByte(iop_base, ASCV_STOP_CODE_B);
  2370.     AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
  2371.                      ASC_STOP_HOST_REQ_RISC_HALT | ASC_STOP_REQ_RISC_STOP
  2372. );
  2373.     do {
  2374.         if (AscIsChipHalted(iop_base)) {
  2375.             sta = 1;
  2376.             break;
  2377.         }
  2378.         DvcSleepMilliSecond(100);
  2379.     } while (count++ < 20);
  2380.     AscWriteLramByte(iop_base, ASCV_STOP_CODE_B, saved_stop_code);
  2381.     return (sta);
  2382. }
  2383. STATIC int
  2384. AscStopQueueExe(
  2385.                    PortAddr iop_base
  2386. )
  2387. {
  2388.     int                 count = 0;
  2389.     if (AscReadLramByte(iop_base, ASCV_STOP_CODE_B) == 0) {
  2390.         AscWriteLramByte(iop_base, ASCV_STOP_CODE_B,
  2391.                          ASC_STOP_REQ_RISC_STOP);
  2392.         do {
  2393.             if (
  2394.                    AscReadLramByte(iop_base, ASCV_STOP_CODE_B) &
  2395.                    ASC_STOP_ACK_RISC_STOP) {
  2396.                 return (1);
  2397.             }
  2398.             DvcSleepMilliSecond(100);
  2399.         } while (count++ < 20);
  2400.     }
  2401.     return (0);
  2402. }
  2403. STATIC void
  2404. DvcDelayMicroSecond(ADV_DVC_VAR *asc_dvc, ushort micro_sec)
  2405. {
  2406.     udelay(micro_sec);
  2407. }
  2408. STATIC void
  2409. DvcDelayNanoSecond(ASC_DVC_VAR *asc_dvc, ASC_DCNT nano_sec)
  2410. {
  2411.     udelay((nano_sec + 999)/1000);
  2412. }
  2413. #ifdef CONFIG_ISA
  2414. ASC_INITFUNC(
  2415. STATIC ASC_DCNT,
  2416. AscGetEisaProductID(
  2417.                        PortAddr iop_base
  2418. )
  2419. )
  2420. {
  2421.     PortAddr            eisa_iop;
  2422.     ushort              product_id_high, product_id_low;
  2423.     ASC_DCNT            product_id;
  2424.     eisa_iop = ASC_GET_EISA_SLOT(iop_base) | ASC_EISA_PID_IOP_MASK;
  2425.     product_id_low = inpw(eisa_iop);
  2426.     product_id_high = inpw(eisa_iop + 2);
  2427.     product_id = ((ASC_DCNT) product_id_high << 16) |
  2428.         (ASC_DCNT) product_id_low;
  2429.     return (product_id);
  2430. }
  2431. ASC_INITFUNC(
  2432. STATIC PortAddr,
  2433. AscSearchIOPortAddrEISA(
  2434.                            PortAddr iop_base
  2435. )
  2436. )
  2437. {
  2438.     ASC_DCNT            eisa_product_id;
  2439.     if (iop_base == 0) {
  2440.         iop_base = ASC_EISA_MIN_IOP_ADDR;
  2441.     } else {
  2442.         if (iop_base == ASC_EISA_MAX_IOP_ADDR)
  2443.             return (0);
  2444.         if ((iop_base & 0x0050) == 0x0050) {
  2445.             iop_base += ASC_EISA_BIG_IOP_GAP;
  2446.         } else {
  2447.             iop_base += ASC_EISA_SMALL_IOP_GAP;
  2448.         }
  2449.     }
  2450.     while (iop_base <= ASC_EISA_MAX_IOP_ADDR) {
  2451.         eisa_product_id = AscGetEisaProductID(iop_base);
  2452.         if ((eisa_product_id == ASC_EISA_ID_740) ||
  2453.             (eisa_product_id == ASC_EISA_ID_750)) {
  2454.             if (AscFindSignature(iop_base)) {
  2455.                 inpw(iop_base + 4);
  2456.                 return (iop_base);
  2457.             }
  2458.         }
  2459.         if (iop_base == ASC_EISA_MAX_IOP_ADDR)
  2460.             return (0);
  2461.         if ((iop_base & 0x0050) == 0x0050) {
  2462.             iop_base += ASC_EISA_BIG_IOP_GAP;
  2463.         } else {
  2464.             iop_base += ASC_EISA_SMALL_IOP_GAP;
  2465.         }
  2466.     }
  2467.     return (0);
  2468. }
  2469. #endif /* CONFIG_ISA */
  2470. STATIC int
  2471. AscStartChip(
  2472.                 PortAddr iop_base
  2473. )
  2474. {
  2475.     AscSetChipControl(iop_base, 0);
  2476.     if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
  2477.         return (0);
  2478.     }
  2479.     return (1);
  2480. }
  2481. STATIC int
  2482. AscStopChip(
  2483.                PortAddr iop_base
  2484. )
  2485. {
  2486.     uchar               cc_val;
  2487.     cc_val = AscGetChipControl(iop_base) & (~(CC_SINGLE_STEP | CC_TEST | CC_DIAG));
  2488.     AscSetChipControl(iop_base, (uchar) (cc_val | CC_HALT));
  2489.     AscSetChipIH(iop_base, INS_HALT);
  2490.     AscSetChipIH(iop_base, INS_RFLAG_WTM);
  2491.     if ((AscGetChipStatus(iop_base) & CSW_HALTED) == 0) {
  2492.         return (0);
  2493.     }
  2494.     return (1);
  2495. }
  2496. STATIC int
  2497. AscIsChipHalted(
  2498.                    PortAddr iop_base
  2499. )
  2500. {
  2501.     if ((AscGetChipStatus(iop_base) & CSW_HALTED) != 0) {
  2502.         if ((AscGetChipControl(iop_base) & CC_HALT) != 0) {
  2503.             return (1);
  2504.         }
  2505.     }
  2506.     return (0);
  2507. }
  2508. STATIC void
  2509. AscSetChipIH(
  2510.                 PortAddr iop_base,
  2511.                 ushort ins_code
  2512. )
  2513. {
  2514.     AscSetBank(iop_base, 1);
  2515.     AscWriteChipIH(iop_base, ins_code);
  2516.     AscSetBank(iop_base, 0);
  2517.     return;
  2518. }
  2519. STATIC void
  2520. AscAckInterrupt(
  2521.                    PortAddr iop_base
  2522. )
  2523. {
  2524.     uchar               host_flag;
  2525.     uchar               risc_flag;
  2526.     ushort              loop;
  2527.     loop = 0;
  2528.     do {
  2529.         risc_flag = AscReadLramByte(iop_base, ASCV_RISC_FLAG_B);
  2530.         if (loop++ > 0x7FFF) {
  2531.             break;
  2532.         }
  2533.     } while ((risc_flag & ASC_RISC_FLAG_GEN_INT) != 0);
  2534.     host_flag = AscReadLramByte(iop_base, ASCV_HOST_FLAG_B) & (~ASC_HOST_FLAG_ACK_INT);
  2535.     AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B,
  2536.                      (uchar) (host_flag | ASC_HOST_FLAG_ACK_INT));
  2537.     AscSetChipStatus(iop_base, CIW_INT_ACK);
  2538.     loop = 0;
  2539.     while (AscGetChipStatus(iop_base) & CSW_INT_PENDING) {
  2540.         AscSetChipStatus(iop_base, CIW_INT_ACK);
  2541.         if (loop++ > 3) {
  2542.             break;
  2543.         }
  2544.     }
  2545.     AscWriteLramByte(iop_base, ASCV_HOST_FLAG_B, host_flag);
  2546.     return;
  2547. }
  2548. STATIC void
  2549. AscDisableInterrupt(
  2550.                        PortAddr iop_base
  2551. )
  2552. {
  2553.     ushort              cfg;
  2554.     cfg = AscGetChipCfgLsw(iop_base);
  2555.     AscSetChipCfgLsw(iop_base, cfg & (~ASC_CFG0_HOST_INT_ON));
  2556.     return;
  2557. }
  2558. STATIC void
  2559. AscEnableInterrupt(
  2560.                       PortAddr iop_base
  2561. )
  2562. {
  2563.     ushort              cfg;
  2564.     cfg = AscGetChipCfgLsw(iop_base);
  2565.     AscSetChipCfgLsw(iop_base, cfg | ASC_CFG0_HOST_INT_ON);
  2566.     return;
  2567. }
  2568. STATIC void
  2569. AscSetBank(
  2570.               PortAddr iop_base,
  2571.               uchar bank
  2572. )
  2573. {
  2574.     uchar               val;
  2575.     val = AscGetChipControl(iop_base) &
  2576.       (~(CC_SINGLE_STEP | CC_TEST | CC_DIAG | CC_SCSI_RESET | CC_CHIP_RESET));
  2577.     if (bank == 1) {
  2578.         val |= CC_BANK_ONE;
  2579.     } else if (bank == 2) {
  2580.         val |= CC_DIAG | CC_BANK_ONE;
  2581.     } else {
  2582.         val &= ~CC_BANK_ONE;
  2583.     }
  2584.     AscSetChipControl(iop_base, val);
  2585.     return;
  2586. }
  2587. STATIC int
  2588. AscResetChipAndScsiBus(
  2589.                           ASC_DVC_VAR *asc_dvc
  2590. )
  2591. {
  2592.     PortAddr    iop_base;
  2593.     int         i = 10;
  2594.     iop_base = asc_dvc->iop_base;
  2595.     while ((AscGetChipStatus(iop_base) & CSW_SCSI_RESET_ACTIVE) && (i-- > 0))
  2596.     {
  2597.           DvcSleepMilliSecond(100);
  2598.     }
  2599.     AscStopChip(iop_base);
  2600.     AscSetChipControl(iop_base, CC_CHIP_RESET | CC_SCSI_RESET | CC_HALT);
  2601.     DvcDelayNanoSecond(asc_dvc, 60000);
  2602.     AscSetChipIH(iop_base, INS_RFLAG_WTM);
  2603.     AscSetChipIH(iop_base, INS_HALT);
  2604.     AscSetChipControl(iop_base, CC_CHIP_RESET | CC_HALT);
  2605.     AscSetChipControl(iop_base, CC_HALT);
  2606.     DvcSleepMilliSecond(200);
  2607.     AscSetChipStatus(iop_base, CIW_CLR_SCSI_RESET_INT);
  2608.     AscSetChipStatus(iop_base, 0);
  2609.     return (AscIsChipHalted(iop_base));
  2610. }
  2611. ASC_INITFUNC(
  2612. STATIC ASC_DCNT,
  2613. AscGetMaxDmaCount(
  2614.                      ushort bus_type
  2615. )
  2616. )
  2617. {
  2618.     if (bus_type & ASC_IS_ISA)
  2619.         return (ASC_MAX_ISA_DMA_COUNT);
  2620.     else if (bus_type & (ASC_IS_EISA | ASC_IS_VL))
  2621.         return (ASC_MAX_VL_DMA_COUNT);
  2622.     return (ASC_MAX_PCI_DMA_COUNT);
  2623. }
  2624. #ifdef CONFIG_ISA
  2625. ASC_INITFUNC(
  2626. STATIC ushort,
  2627. AscGetIsaDmaChannel(
  2628.                        PortAddr iop_base
  2629. )
  2630. )
  2631. {
  2632.     ushort              channel;
  2633.     channel = AscGetChipCfgLsw(iop_base) & 0x0003;
  2634.     if (channel == 0x03)
  2635.         return (0);
  2636.     else if (channel == 0x00)
  2637.         return (7);
  2638.     return (channel + 4);
  2639. }
  2640. ASC_INITFUNC(
  2641. STATIC ushort,
  2642. AscSetIsaDmaChannel(
  2643.                        PortAddr iop_base,
  2644.                        ushort dma_channel
  2645. )
  2646. )
  2647. {
  2648.     ushort              cfg_lsw;
  2649.     uchar               value;
  2650.     if ((dma_channel >= 5) && (dma_channel <= 7)) {
  2651.         if (dma_channel == 7)
  2652.             value = 0x00;
  2653.         else
  2654.             value = dma_channel - 4;
  2655.         cfg_lsw = AscGetChipCfgLsw(iop_base) & 0xFFFC;
  2656.         cfg_lsw |= value;
  2657.         AscSetChipCfgLsw(iop_base, cfg_lsw);
  2658.         return (AscGetIsaDmaChannel(iop_base));
  2659.     }
  2660.     return (0);
  2661. }
  2662. ASC_INITFUNC(
  2663. STATIC uchar,
  2664. AscSetIsaDmaSpeed(
  2665.                      PortAddr iop_base,
  2666.                      uchar speed_value
  2667. )
  2668. )
  2669. {
  2670.     speed_value &= 0x07;
  2671.     AscSetBank(iop_base, 1);
  2672.     AscWriteChipDmaSpeed(iop_base, speed_value);
  2673.     AscSetBank(iop_base, 0);
  2674.     return (AscGetIsaDmaSpeed(iop_base));
  2675. }
  2676. ASC_INITFUNC(
  2677. STATIC uchar,
  2678. AscGetIsaDmaSpeed(
  2679.                      PortAddr iop_base
  2680. )
  2681. )
  2682. {
  2683.     uchar               speed_value;
  2684.     AscSetBank(iop_base, 1);
  2685.     speed_value = AscReadChipDmaSpeed(iop_base);
  2686.     speed_value &= 0x07;
  2687.     AscSetBank(iop_base, 0);
  2688.     return (speed_value);
  2689. }
  2690. #endif /* CONFIG_ISA */
  2691. ASC_INITFUNC(
  2692. STATIC ushort,
  2693. AscReadPCIConfigWord(
  2694.     ASC_DVC_VAR *asc_dvc,
  2695.     ushort pci_config_offset)
  2696. )
  2697. {
  2698.     uchar       lsb, msb;
  2699.     lsb = DvcReadPCIConfigByte(asc_dvc, pci_config_offset);
  2700.     msb = DvcReadPCIConfigByte(asc_dvc, pci_config_offset + 1);
  2701.     return ((ushort) ((msb << 8) | lsb));
  2702. }
  2703. ASC_INITFUNC(
  2704. STATIC ushort,
  2705. AscInitGetConfig(
  2706.         ASC_DVC_VAR *asc_dvc
  2707. )
  2708. )
  2709. {
  2710.     ushort              warn_code;
  2711.     PortAddr            iop_base;
  2712.     ushort              PCIDeviceID;
  2713.     ushort              PCIVendorID;
  2714.     uchar               PCIRevisionID;
  2715.     uchar               prevCmdRegBits;
  2716.     warn_code = 0;
  2717.     iop_base = asc_dvc->iop_base;
  2718.     asc_dvc->init_state = ASC_INIT_STATE_BEG_GET_CFG;
  2719.     if (asc_dvc->err_code != 0) {
  2720.         return (UW_ERR);
  2721.     }
  2722.     if (asc_dvc->bus_type == ASC_IS_PCI) {
  2723.         PCIVendorID = AscReadPCIConfigWord(asc_dvc,
  2724.                                     AscPCIConfigVendorIDRegister);
  2725.         PCIDeviceID = AscReadPCIConfigWord(asc_dvc,
  2726.                                     AscPCIConfigDeviceIDRegister);
  2727.         PCIRevisionID = DvcReadPCIConfigByte(asc_dvc,
  2728.                                     AscPCIConfigRevisionIDRegister);
  2729.         if (PCIVendorID != ASC_PCI_VENDORID) {
  2730.             warn_code |= ASC_WARN_SET_PCI_CONFIG_SPACE;
  2731.         }
  2732.         prevCmdRegBits = DvcReadPCIConfigByte(asc_dvc,
  2733.                                     AscPCIConfigCommandRegister);
  2734.         if ((prevCmdRegBits & AscPCICmdRegBits_IOMemBusMaster) !=
  2735.             AscPCICmdRegBits_IOMemBusMaster) {
  2736.             DvcWritePCIConfigByte(asc_dvc,
  2737.                             AscPCIConfigCommandRegister,
  2738.                             (prevCmdRegBits |
  2739.                              AscPCICmdRegBits_IOMemBusMaster));
  2740.             if ((DvcReadPCIConfigByte(asc_dvc,
  2741.                                 AscPCIConfigCommandRegister)
  2742.                  & AscPCICmdRegBits_IOMemBusMaster)
  2743.                 != AscPCICmdRegBits_IOMemBusMaster) {
  2744.                 warn_code |= ASC_WARN_SET_PCI_CONFIG_SPACE;
  2745.             }
  2746.         }
  2747.         if ((PCIDeviceID == ASC_PCI_DEVICEID_1200A) ||
  2748.             (PCIDeviceID == ASC_PCI_DEVICEID_1200B)) {
  2749.             DvcWritePCIConfigByte(asc_dvc,
  2750.                             AscPCIConfigLatencyTimer, 0x00);
  2751.             if (DvcReadPCIConfigByte(asc_dvc, AscPCIConfigLatencyTimer)
  2752.                 != 0x00) {
  2753.                 warn_code |= ASC_WARN_SET_PCI_CONFIG_SPACE;
  2754.             }
  2755.         } else if (PCIDeviceID == ASC_PCI_DEVICEID_ULTRA) {
  2756.             if (DvcReadPCIConfigByte(asc_dvc,
  2757.                                 AscPCIConfigLatencyTimer) < 0x20) {
  2758.                 DvcWritePCIConfigByte(asc_dvc,
  2759.                                     AscPCIConfigLatencyTimer, 0x20);
  2760.                 if (DvcReadPCIConfigByte(asc_dvc,
  2761.                                     AscPCIConfigLatencyTimer) < 0x20) {
  2762.                     warn_code |= ASC_WARN_SET_PCI_CONFIG_SPACE;
  2763.                 }
  2764.             }
  2765.         }
  2766.     }
  2767.     if (AscFindSignature(iop_base)) {
  2768.         warn_code |= AscInitAscDvcVar(asc_dvc);
  2769.         warn_code |= AscInitFromEEP(asc_dvc);
  2770.         asc_dvc->init_state |= ASC_INIT_STATE_END_GET_CFG;
  2771.         if (asc_dvc->scsi_reset_wait > ASC_MAX_SCSI_RESET_WAIT) {
  2772.             asc_dvc->scsi_reset_wait = ASC_MAX_SCSI_RESET_WAIT;
  2773.         }
  2774.     } else {
  2775.         asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
  2776.     }
  2777.     return(warn_code);
  2778. }
  2779. ASC_INITFUNC(
  2780. STATIC ushort,
  2781. AscInitSetConfig(
  2782.                     ASC_DVC_VAR *asc_dvc
  2783. )
  2784. )
  2785. {
  2786.     ushort              warn_code = 0;
  2787.     asc_dvc->init_state |= ASC_INIT_STATE_BEG_SET_CFG;
  2788.     if (asc_dvc->err_code != 0)
  2789.         return (UW_ERR);
  2790.     if (AscFindSignature(asc_dvc->iop_base)) {
  2791.         warn_code |= AscInitFromAscDvcVar(asc_dvc);
  2792.         asc_dvc->init_state |= ASC_INIT_STATE_END_SET_CFG;
  2793.     } else {
  2794.         asc_dvc->err_code = ASC_IERR_BAD_SIGNATURE;
  2795.     }
  2796.     return (warn_code);
  2797. }
  2798. ASC_INITFUNC(
  2799. STATIC ushort,
  2800. AscInitFromAscDvcVar(
  2801.                         ASC_DVC_VAR *asc_dvc
  2802. )
  2803. )
  2804. {
  2805.     PortAddr            iop_base;
  2806.     ushort              cfg_msw;
  2807.     ushort              warn_code;
  2808.     ushort              pci_device_id;
  2809.     iop_base = asc_dvc->iop_base;
  2810.     pci_device_id = asc_dvc->cfg->pci_device_id;
  2811.     warn_code = 0;
  2812.     cfg_msw = AscGetChipCfgMsw(iop_base);
  2813.     if ((cfg_msw & ASC_CFG_MSW_CLR_MASK) != 0) {
  2814.         cfg_msw &= (~(ASC_CFG_MSW_CLR_MASK));
  2815.         warn_code |= ASC_WARN_CFG_MSW_RECOVER;
  2816.         AscSetChipCfgMsw(iop_base, cfg_msw);
  2817.     }
  2818.     if ((asc_dvc->cfg->cmd_qng_enabled & asc_dvc->cfg->disc_enable) !=
  2819.         asc_dvc->cfg->cmd_qng_enabled) {
  2820.         asc_dvc->cfg->disc_enable = asc_dvc->cfg->cmd_qng_enabled;
  2821.         warn_code |= ASC_WARN_CMD_QNG_CONFLICT;
  2822.     }
  2823.     if (AscGetChipStatus(iop_base) & CSW_AUTO_CONFIG) {
  2824.         warn_code |= ASC_WARN_AUTO_CONFIG;
  2825.     }
  2826.     if ((asc_dvc->bus_type & (ASC_IS_ISA | ASC_IS_VL)) != 0) {
  2827.         if (AscSetChipIRQ(iop_base, asc_dvc->irq_no, asc_dvc->bus_type)
  2828.             != asc_dvc->irq_no) {
  2829.             asc_dvc->err_code |= ASC_IERR_SET_IRQ_NO;
  2830.         }
  2831.     }
  2832.     if (asc_dvc->bus_type & ASC_IS_PCI) {
  2833.         cfg_msw &= 0xFFC0;
  2834.         AscSetChipCfgMsw(iop_base, cfg_msw);
  2835.         if ((asc_dvc->bus_type & ASC_IS_PCI_ULTRA) == ASC_IS_PCI_ULTRA) {
  2836.         } else {
  2837.             if ((pci_device_id == ASC_PCI_DEVICE_ID_REV_A) ||
  2838.                 (pci_device_id == ASC_PCI_DEVICE_ID_REV_B)) {
  2839.                 asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_IF_NOT_DWB;
  2840.                 asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_ASYN_USE_SYN;
  2841.             }
  2842.         }
  2843.     } else if (asc_dvc->bus_type == ASC_IS_ISAPNP) {
  2844.         if (AscGetChipVersion(iop_base, asc_dvc->bus_type)
  2845.             == ASC_CHIP_VER_ASYN_BUG) {
  2846.             asc_dvc->bug_fix_cntl |= ASC_BUG_FIX_ASYN_USE_SYN;
  2847.         }
  2848.     }
  2849.     if (AscSetChipScsiID(iop_base, asc_dvc->cfg->chip_scsi_id) !=
  2850.         asc_dvc->cfg->chip_scsi_id) {
  2851.         asc_dvc->err_code |= ASC_IERR_SET_SCSI_ID;