kernel: Remove support for the EISA bus and EISA/VLB devices.
[dragonfly.git] / sys / dev / disk / aic7xxx / aic7xxx.c
1 /*
2  * Core routines and tables shareable across OS platforms.
3  *
4  * Copyright (c) 1994-2002 Justin T. Gibbs.
5  * Copyright (c) 2000-2002 Adaptec Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions, and the following disclaimer,
13  *    without modification.
14  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
15  *    substantially similar to the "NO WARRANTY" disclaimer below
16  *    ("Disclaimer") and any redistribution must be conditioned upon
17  *    including a substantially similar Disclaimer requirement for further
18  *    binary redistribution.
19  * 3. Neither the names of the above-listed copyright holders nor the names
20  *    of any contributors may be used to endorse or promote products derived
21  *    from this software without specific prior written permission.
22  *
23  * Alternatively, this software may be distributed under the terms of the
24  * GNU General Public License ("GPL") version 2 as published by the Free
25  * Software Foundation.
26  *
27  * NO WARRANTY
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
36  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
37  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38  * POSSIBILITY OF SUCH DAMAGES.
39  *
40  * $Id: //depot/aic7xxx/aic7xxx/aic7xxx.c#155 $
41  *
42  * $FreeBSD: src/sys/dev/aic7xxx/aic7xxx.c,v 1.111 2007/04/19 18:53:52 scottl Exp $
43  * $DragonFly: src/sys/dev/disk/aic7xxx/aic7xxx.c,v 1.29 2008/05/18 20:30:21 pavalos Exp $
44  */
45
46 #include "aic7xxx_osm.h"
47 #include "aic7xxx_inline.h"
48 #include "aicasm/aicasm_insformat.h"
49
50 /****************************** Softc Data ************************************/
51 struct ahc_softc_tailq ahc_tailq = TAILQ_HEAD_INITIALIZER(ahc_tailq);
52
53 /***************************** Lookup Tables **********************************/
54 char *ahc_chip_names[] =
55 {
56         "NONE",
57         "aic7770",
58         "aic7850",
59         "aic7855",
60         "aic7859",
61         "aic7860",
62         "aic7870",
63         "aic7880",
64         "aic7895",
65         "aic7895C",
66         "aic7890/91",
67         "aic7896/97",
68         "aic7892",
69         "aic7899"
70 };
71 static const u_int num_chip_names = NUM_ELEMENTS(ahc_chip_names);
72
73 /*
74  * Hardware error codes.
75  */
76 struct ahc_hard_error_entry {
77         uint8_t error;
78         char *errmesg;
79 };
80
81 static struct ahc_hard_error_entry ahc_hard_errors[] = {
82         { ILLHADDR,     "Illegal Host Access" },
83         { ILLSADDR,     "Illegal Sequencer Address referenced" },
84         { ILLOPCODE,    "Illegal Opcode in sequencer program" },
85         { SQPARERR,     "Sequencer Parity Error" },
86         { DPARERR,      "Data-path Parity Error" },
87         { MPARERR,      "Scratch or SCB Memory Parity Error" },
88         { PCIERRSTAT,   "PCI Error detected" },
89         { CIOPARERR,    "CIOBUS Parity Error" },
90 };
91 static const u_int num_errors = NUM_ELEMENTS(ahc_hard_errors);
92
93 static struct ahc_phase_table_entry ahc_phase_table[] =
94 {
95         { P_DATAOUT,    MSG_NOOP,               "in Data-out phase"     },
96         { P_DATAIN,     MSG_INITIATOR_DET_ERR,  "in Data-in phase"      },
97         { P_DATAOUT_DT, MSG_NOOP,               "in DT Data-out phase"  },
98         { P_DATAIN_DT,  MSG_INITIATOR_DET_ERR,  "in DT Data-in phase"   },
99         { P_COMMAND,    MSG_NOOP,               "in Command phase"      },
100         { P_MESGOUT,    MSG_NOOP,               "in Message-out phase"  },
101         { P_STATUS,     MSG_INITIATOR_DET_ERR,  "in Status phase"       },
102         { P_MESGIN,     MSG_PARITY_ERROR,       "in Message-in phase"   },
103         { P_BUSFREE,    MSG_NOOP,               "while idle"            },
104         { 0,            MSG_NOOP,               "in unknown phase"      }
105 };
106
107 /*
108  * In most cases we only wish to itterate over real phases, so
109  * exclude the last element from the count.
110  */
111 static const u_int num_phases = NUM_ELEMENTS(ahc_phase_table) - 1;
112
113 /*
114  * Valid SCSIRATE values.  (p. 3-17)
115  * Provides a mapping of tranfer periods in ns to the proper value to
116  * stick in the scsixfer reg.
117  */
118 static struct ahc_syncrate ahc_syncrates[] =
119 {
120       /* ultra2    fast/ultra  period     rate */
121         { 0x42,      0x000,      9,      "80.0" },
122         { 0x03,      0x000,     10,      "40.0" },
123         { 0x04,      0x000,     11,      "33.0" },
124         { 0x05,      0x100,     12,      "20.0" },
125         { 0x06,      0x110,     15,      "16.0" },
126         { 0x07,      0x120,     18,      "13.4" },
127         { 0x08,      0x000,     25,      "10.0" },
128         { 0x19,      0x010,     31,      "8.0"  },
129         { 0x1a,      0x020,     37,      "6.67" },
130         { 0x1b,      0x030,     43,      "5.7"  },
131         { 0x1c,      0x040,     50,      "5.0"  },
132         { 0x00,      0x050,     56,      "4.4"  },
133         { 0x00,      0x060,     62,      "4.0"  },
134         { 0x00,      0x070,     68,      "3.6"  },
135         { 0x00,      0x000,      0,      NULL   }
136 };
137
138 /* Our Sequencer Program */
139 #include "aic7xxx_seq.h"
140
141 /**************************** Function Declarations ***************************/
142 static void             ahc_force_renegotiation(struct ahc_softc *ahc,
143                                                 struct ahc_devinfo *devinfo);
144 static struct ahc_tmode_tstate*
145                         ahc_alloc_tstate(struct ahc_softc *ahc,
146                                          u_int scsi_id, char channel);
147 #ifdef AHC_TARGET_MODE
148 static void             ahc_free_tstate(struct ahc_softc *ahc,
149                                         u_int scsi_id, char channel, int force);
150 #endif
151 static struct ahc_syncrate*
152                         ahc_devlimited_syncrate(struct ahc_softc *ahc,
153                                                 struct ahc_initiator_tinfo *,
154                                                 u_int *period,
155                                                 u_int *ppr_options,
156                                                 role_t role);
157 static void             ahc_update_pending_scbs(struct ahc_softc *ahc);
158 static void             ahc_fetch_devinfo(struct ahc_softc *ahc,
159                                           struct ahc_devinfo *devinfo);
160 static void             ahc_scb_devinfo(struct ahc_softc *ahc,
161                                         struct ahc_devinfo *devinfo,
162                                         struct scb *scb);
163 static void             ahc_assert_atn(struct ahc_softc *ahc);
164 static void             ahc_setup_initiator_msgout(struct ahc_softc *ahc,
165                                                    struct ahc_devinfo *devinfo,
166                                                    struct scb *scb);
167 static void             ahc_build_transfer_msg(struct ahc_softc *ahc,
168                                                struct ahc_devinfo *devinfo);
169 static void             ahc_construct_sdtr(struct ahc_softc *ahc,
170                                            struct ahc_devinfo *devinfo,
171                                            u_int period, u_int offset);
172 static void             ahc_construct_wdtr(struct ahc_softc *ahc,
173                                            struct ahc_devinfo *devinfo,
174                                            u_int bus_width);
175 static void             ahc_construct_ppr(struct ahc_softc *ahc,
176                                           struct ahc_devinfo *devinfo,
177                                           u_int period, u_int offset,
178                                           u_int bus_width, u_int ppr_options);
179 static void             ahc_clear_msg_state(struct ahc_softc *ahc);
180 static void             ahc_handle_proto_violation(struct ahc_softc *ahc);
181 static void             ahc_handle_message_phase(struct ahc_softc *ahc);
182 typedef enum {
183         AHCMSG_1B,
184         AHCMSG_2B,
185         AHCMSG_EXT
186 } ahc_msgtype;
187 static int              ahc_sent_msg(struct ahc_softc *ahc, ahc_msgtype type,
188                                      u_int msgval, int full);
189 static int              ahc_parse_msg(struct ahc_softc *ahc,
190                                       struct ahc_devinfo *devinfo);
191 static int              ahc_handle_msg_reject(struct ahc_softc *ahc,
192                                               struct ahc_devinfo *devinfo);
193 static void             ahc_handle_ign_wide_residue(struct ahc_softc *ahc,
194                                                 struct ahc_devinfo *devinfo);
195 static void             ahc_reinitialize_dataptrs(struct ahc_softc *ahc);
196 static void             ahc_handle_devreset(struct ahc_softc *ahc,
197                                             struct ahc_devinfo *devinfo,
198                                             cam_status status, char *message,
199                                             int verbose_level);
200 #ifdef AHC_TARGET_MODE
201 static void             ahc_setup_target_msgin(struct ahc_softc *ahc,
202                                                struct ahc_devinfo *devinfo,
203                                                struct scb *scb);
204 #endif
205
206 static bus_dmamap_callback_t    ahc_dmamap_cb; 
207 static void                     ahc_build_free_scb_list(struct ahc_softc *ahc);
208 static int                      ahc_init_scbdata(struct ahc_softc *ahc);
209 static void                     ahc_fini_scbdata(struct ahc_softc *ahc);
210 static void             ahc_qinfifo_requeue(struct ahc_softc *ahc,
211                                             struct scb *prev_scb,
212                                             struct scb *scb);
213 static int              ahc_qinfifo_count(struct ahc_softc *ahc);
214 static u_int            ahc_rem_scb_from_disc_list(struct ahc_softc *ahc,
215                                                    u_int prev, u_int scbptr);
216 static void             ahc_add_curscb_to_free_list(struct ahc_softc *ahc);
217 static u_int            ahc_rem_wscb(struct ahc_softc *ahc,
218                                      u_int scbpos, u_int prev);
219 static void             ahc_reset_current_bus(struct ahc_softc *ahc);
220 #ifdef AHC_DUMP_SEQ
221 static void             ahc_dumpseq(struct ahc_softc *ahc);
222 #endif
223 static int              ahc_loadseq(struct ahc_softc *ahc);
224 static int              ahc_check_patch(struct ahc_softc *ahc,
225                                         struct patch **start_patch,
226                                         u_int start_instr, u_int *skip_addr);
227 static void             ahc_download_instr(struct ahc_softc *ahc,
228                                            u_int instrptr, uint8_t *dconsts);
229 static int              ahc_other_scb_timeout(struct ahc_softc *ahc,
230                                               struct scb *scb,
231                                               struct scb *other_scb);
232 #ifdef AHC_TARGET_MODE
233 static void             ahc_queue_lstate_event(struct ahc_softc *ahc,
234                                                struct ahc_tmode_lstate *lstate,
235                                                u_int initiator_id,
236                                                u_int event_type,
237                                                u_int event_arg);
238 static void             ahc_update_scsiid(struct ahc_softc *ahc,
239                                           u_int targid_mask);
240 static int              ahc_handle_target_cmd(struct ahc_softc *ahc,
241                                               struct target_cmd *cmd);
242 #endif
243 /************************* Sequencer Execution Control ************************/
244 /*
245  * Restart the sequencer program from address zero
246  */
247 void
248 ahc_restart(struct ahc_softc *ahc)
249 {
250
251         ahc_pause(ahc);
252
253         /* No more pending messages. */
254         ahc_clear_msg_state(ahc);
255
256         ahc_outb(ahc, SCSISIGO, 0);             /* De-assert BSY */
257         ahc_outb(ahc, MSG_OUT, MSG_NOOP);       /* No message to send */
258         ahc_outb(ahc, SXFRCTL1, ahc_inb(ahc, SXFRCTL1) & ~BITBUCKET);
259         ahc_outb(ahc, LASTPHASE, P_BUSFREE);
260         ahc_outb(ahc, SAVED_SCSIID, 0xFF);
261         ahc_outb(ahc, SAVED_LUN, 0xFF);
262
263         /*
264          * Ensure that the sequencer's idea of TQINPOS
265          * matches our own.  The sequencer increments TQINPOS
266          * only after it sees a DMA complete and a reset could
267          * occur before the increment leaving the kernel to believe
268          * the command arrived but the sequencer to not.
269          */
270         ahc_outb(ahc, TQINPOS, ahc->tqinfifonext);
271
272         /* Always allow reselection */
273         ahc_outb(ahc, SCSISEQ,
274                  ahc_inb(ahc, SCSISEQ_TEMPLATE) & (ENSELI|ENRSELI|ENAUTOATNP));
275         if ((ahc->features & AHC_CMD_CHAN) != 0) {
276                 /* Ensure that no DMA operations are in progress */
277                 ahc_outb(ahc, CCSCBCNT, 0);
278                 ahc_outb(ahc, CCSGCTL, 0);
279                 ahc_outb(ahc, CCSCBCTL, 0);
280         }
281         /*
282          * If we were in the process of DMA'ing SCB data into
283          * an SCB, replace that SCB on the free list.  This prevents
284          * an SCB leak.
285          */
286         if ((ahc_inb(ahc, SEQ_FLAGS2) & SCB_DMA) != 0) {
287                 ahc_add_curscb_to_free_list(ahc);
288                 ahc_outb(ahc, SEQ_FLAGS2,
289                          ahc_inb(ahc, SEQ_FLAGS2) & ~SCB_DMA);
290         }
291
292         /*
293          * Clear any pending sequencer interrupt.  It is no
294          * longer relevant since we're resetting the Program
295          * Counter.
296          */
297         ahc_outb(ahc, CLRINT, CLRSEQINT);
298
299         ahc_outb(ahc, MWI_RESIDUAL, 0);
300         ahc_outb(ahc, SEQCTL, ahc->seqctl);
301         ahc_outb(ahc, SEQADDR0, 0);
302         ahc_outb(ahc, SEQADDR1, 0);
303
304         ahc_unpause(ahc);
305 }
306
307 /************************* Input/Output Queues ********************************/
308 void
309 ahc_run_qoutfifo(struct ahc_softc *ahc)
310 {
311         struct scb *scb;
312         u_int  scb_index;
313
314         ahc_sync_qoutfifo(ahc, BUS_DMASYNC_POSTREAD);
315         while (ahc->qoutfifo[ahc->qoutfifonext] != SCB_LIST_NULL) {
316
317                 scb_index = ahc->qoutfifo[ahc->qoutfifonext];
318                 if ((ahc->qoutfifonext & 0x03) == 0x03) {
319                         u_int modnext;
320
321                         /*
322                          * Clear 32bits of QOUTFIFO at a time
323                          * so that we don't clobber an incoming
324                          * byte DMA to the array on architectures
325                          * that only support 32bit load and store
326                          * operations.
327                          */
328                         modnext = ahc->qoutfifonext & ~0x3;
329                         *((uint32_t *)(&ahc->qoutfifo[modnext])) = 0xFFFFFFFFUL;
330                         aic_dmamap_sync(ahc, ahc->shared_data_dmat,
331                                         ahc->shared_data_dmamap,
332                                         /*offset*/modnext, /*len*/4,
333                                         BUS_DMASYNC_PREREAD);
334                 }
335                 ahc->qoutfifonext++;
336
337                 scb = ahc_lookup_scb(ahc, scb_index);
338                 if (scb == NULL) {
339                         kprintf("%s: WARNING no command for scb %d "
340                                "(cmdcmplt)\nQOUTPOS = %d\n",
341                                ahc_name(ahc), scb_index,
342                                (ahc->qoutfifonext - 1) & 0xFF);
343                         continue;
344                 }
345
346                 /*
347                  * Save off the residual
348                  * if there is one.
349                  */
350                 ahc_update_residual(ahc, scb);
351                 ahc_done(ahc, scb);
352         }
353 }
354
355 void
356 ahc_run_untagged_queues(struct ahc_softc *ahc)
357 {
358         int i;
359
360         for (i = 0; i < 16; i++)
361                 ahc_run_untagged_queue(ahc, &ahc->untagged_queues[i]);
362 }
363
364 void
365 ahc_run_untagged_queue(struct ahc_softc *ahc, struct scb_tailq *queue)
366 {
367         struct scb *scb;
368
369         if (ahc->untagged_queue_lock != 0)
370                 return;
371
372         if ((scb = TAILQ_FIRST(queue)) != NULL
373          && (scb->flags & SCB_ACTIVE) == 0) {
374                 scb->flags |= SCB_ACTIVE;
375                 /*
376                  * Timers are disabled while recovery is in progress.
377                  */
378                 aic_scb_timer_start(scb);
379                 ahc_queue_scb(ahc, scb);
380         }
381 }
382
383 /************************* Interrupt Handling *********************************/
384 void
385 ahc_handle_brkadrint(struct ahc_softc *ahc)
386 {
387         /*
388          * We upset the sequencer :-(
389          * Lookup the error message
390          */
391         int i;
392         int error;
393
394         error = ahc_inb(ahc, ERROR);
395         for (i = 0; error != 1 && i < num_errors; i++)
396                 error >>= 1;
397         kprintf("%s: brkadrint, %s at seqaddr = 0x%x\n",
398                ahc_name(ahc), ahc_hard_errors[i].errmesg,
399                ahc_inb(ahc, SEQADDR0) |
400                (ahc_inb(ahc, SEQADDR1) << 8));
401
402         ahc_dump_card_state(ahc);
403
404         /* Tell everyone that this HBA is no longer available */
405         ahc_abort_scbs(ahc, CAM_TARGET_WILDCARD, ALL_CHANNELS,
406                        CAM_LUN_WILDCARD, SCB_LIST_NULL, ROLE_UNKNOWN,
407                        CAM_NO_HBA);
408
409         /* Disable all interrupt sources by resetting the controller */
410         ahc_shutdown(ahc);
411 }
412
413 void
414 ahc_handle_seqint(struct ahc_softc *ahc, u_int intstat)
415 {
416         struct scb *scb;
417         struct ahc_devinfo devinfo;
418         
419         ahc_fetch_devinfo(ahc, &devinfo);
420
421         /*
422          * Clear the upper byte that holds SEQINT status
423          * codes and clear the SEQINT bit. We will unpause
424          * the sequencer, if appropriate, after servicing
425          * the request.
426          */
427         ahc_outb(ahc, CLRINT, CLRSEQINT);
428         switch (intstat & SEQINT_MASK) {
429         case BAD_STATUS:
430         {
431                 u_int  scb_index;
432                 struct hardware_scb *hscb;
433
434                 /*
435                  * Set the default return value to 0 (don't
436                  * send sense).  The sense code will change
437                  * this if needed.
438                  */
439                 ahc_outb(ahc, RETURN_1, 0);
440
441                 /*
442                  * The sequencer will notify us when a command
443                  * has an error that would be of interest to
444                  * the kernel.  This allows us to leave the sequencer
445                  * running in the common case of command completes
446                  * without error.  The sequencer will already have
447                  * dma'd the SCB back up to us, so we can reference
448                  * the in kernel copy directly.
449                  */
450                 scb_index = ahc_inb(ahc, SCB_TAG);
451                 scb = ahc_lookup_scb(ahc, scb_index);
452                 if (scb == NULL) {
453                         ahc_print_devinfo(ahc, &devinfo);
454                         kprintf("ahc_intr - referenced scb "
455                                "not valid during seqint 0x%x scb(%d)\n",
456                                intstat, scb_index);
457                         ahc_dump_card_state(ahc);
458                         panic("for safety");
459                         goto unpause;
460                 }
461
462                 hscb = scb->hscb; 
463
464                 /* Don't want to clobber the original sense code */
465                 if ((scb->flags & SCB_SENSE) != 0) {
466                         /*
467                          * Clear the SCB_SENSE Flag and have
468                          * the sequencer do a normal command
469                          * complete.
470                          */
471                         scb->flags &= ~SCB_SENSE;
472                         aic_set_transaction_status(scb, CAM_AUTOSENSE_FAIL);
473                         break;
474                 }
475                 aic_set_transaction_status(scb, CAM_SCSI_STATUS_ERROR);
476                 /* Freeze the queue until the client sees the error. */
477                 ahc_freeze_devq(ahc, scb);
478                 aic_freeze_scb(scb);
479                 aic_set_scsi_status(scb, hscb->shared_data.status.scsi_status);
480                 switch (hscb->shared_data.status.scsi_status) {
481                 case SCSI_STATUS_OK:
482                         kprintf("%s: Interrupted for staus of 0???\n",
483                                ahc_name(ahc));
484                         break;
485                 case SCSI_STATUS_CMD_TERMINATED:
486                 case SCSI_STATUS_CHECK_COND:
487                 {
488                         struct ahc_dma_seg *sg;
489                         struct scsi_sense *sc;
490                         struct ahc_initiator_tinfo *targ_info;
491                         struct ahc_tmode_tstate *tstate;
492                         struct ahc_transinfo *tinfo;
493 #ifdef AHC_DEBUG
494                         if (ahc_debug & AHC_SHOW_SENSE) {
495                                 ahc_print_path(ahc, scb);
496                                 kprintf("SCB %d: requests Check Status\n",
497                                        scb->hscb->tag);
498                         }
499 #endif
500
501                         if (aic_perform_autosense(scb) == 0)
502                                 break;
503
504                         targ_info = ahc_fetch_transinfo(ahc,
505                                                         devinfo.channel,
506                                                         devinfo.our_scsiid,
507                                                         devinfo.target,
508                                                         &tstate);
509                         tinfo = &targ_info->curr;
510                         sg = scb->sg_list;
511                         sc = (struct scsi_sense *)(&hscb->shared_data.cdb); 
512                         /*
513                          * Save off the residual if there is one.
514                          */
515                         ahc_update_residual(ahc, scb);
516 #ifdef AHC_DEBUG
517                         if (ahc_debug & AHC_SHOW_SENSE) {
518                                 ahc_print_path(ahc, scb);
519                                 kprintf("Sending Sense\n");
520                         }
521 #endif
522                         sg->addr = ahc_get_sense_bufaddr(ahc, scb);
523                         sg->len = aic_get_sense_bufsize(ahc, scb);
524                         sg->len |= AHC_DMA_LAST_SEG;
525
526                         /* Fixup byte order */
527                         sg->addr = aic_htole32(sg->addr);
528                         sg->len = aic_htole32(sg->len);
529
530                         sc->opcode = REQUEST_SENSE;
531                         sc->byte2 = 0;
532                         if (tinfo->protocol_version <= SCSI_REV_2
533                          && SCB_GET_LUN(scb) < 8)
534                                 sc->byte2 = SCB_GET_LUN(scb) << 5;
535                         sc->unused[0] = 0;
536                         sc->unused[1] = 0;
537                         sc->length = sg->len;
538                         sc->control = 0;
539
540                         /*
541                          * We can't allow the target to disconnect.
542                          * This will be an untagged transaction and
543                          * having the target disconnect will make this
544                          * transaction indestinguishable from outstanding
545                          * tagged transactions.
546                          */
547                         hscb->control = 0;
548
549                         /*
550                          * This request sense could be because the
551                          * the device lost power or in some other
552                          * way has lost our transfer negotiations.
553                          * Renegotiate if appropriate.  Unit attention
554                          * errors will be reported before any data
555                          * phases occur.
556                          */
557                         if (aic_get_residual(scb) 
558                          == aic_get_transfer_length(scb)) {
559                                 ahc_update_neg_request(ahc, &devinfo,
560                                                        tstate, targ_info,
561                                                        AHC_NEG_IF_NON_ASYNC);
562                         }
563                         if (tstate->auto_negotiate & devinfo.target_mask) {
564                                 hscb->control |= MK_MESSAGE;
565                                 scb->flags &= ~SCB_NEGOTIATE;
566                                 scb->flags |= SCB_AUTO_NEGOTIATE;
567                         }
568                         hscb->cdb_len = sizeof(*sc);
569                         hscb->dataptr = sg->addr; 
570                         hscb->datacnt = sg->len;
571                         hscb->sgptr = scb->sg_list_phys | SG_FULL_RESID;
572                         hscb->sgptr = aic_htole32(hscb->sgptr);
573                         scb->sg_count = 1;
574                         scb->flags |= SCB_SENSE;
575                         ahc_qinfifo_requeue_tail(ahc, scb);
576                         ahc_outb(ahc, RETURN_1, SEND_SENSE);
577                         /*
578                          * Ensure we have enough time to actually
579                          * retrieve the sense, but only schedule
580                          * the timer if we are not in recovery or
581                          * this is a recovery SCB that is allowed
582                          * to have an active timer.
583                          */
584                         if (ahc->scb_data->recovery_scbs == 0
585                          || (scb->flags & SCB_RECOVERY_SCB) != 0)
586                                 aic_scb_timer_reset(scb, 5 * 1000);
587                         break;
588                 }
589                 default:
590                         break;
591                 }
592                 break;
593         }
594         case NO_MATCH:
595         {
596                 /* Ensure we don't leave the selection hardware on */
597                 ahc_outb(ahc, SCSISEQ,
598                          ahc_inb(ahc, SCSISEQ) & (ENSELI|ENRSELI|ENAUTOATNP));
599
600                 kprintf("%s:%c:%d: no active SCB for reconnecting "
601                        "target - issuing BUS DEVICE RESET\n",
602                        ahc_name(ahc), devinfo.channel, devinfo.target);
603                 kprintf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
604                        "ARG_1 == 0x%x ACCUM = 0x%x\n",
605                        ahc_inb(ahc, SAVED_SCSIID), ahc_inb(ahc, SAVED_LUN),
606                        ahc_inb(ahc, ARG_1), ahc_inb(ahc, ACCUM));
607                 kprintf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
608                        "SINDEX == 0x%x\n",
609                        ahc_inb(ahc, SEQ_FLAGS), ahc_inb(ahc, SCBPTR),
610                        ahc_index_busy_tcl(ahc,
611                             BUILD_TCL(ahc_inb(ahc, SAVED_SCSIID),
612                                       ahc_inb(ahc, SAVED_LUN))),
613                        ahc_inb(ahc, SINDEX));
614                 kprintf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
615                        "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
616                        ahc_inb(ahc, SCSIID), ahc_inb(ahc, SCB_SCSIID),
617                        ahc_inb(ahc, SCB_LUN), ahc_inb(ahc, SCB_TAG),
618                        ahc_inb(ahc, SCB_CONTROL));
619                 kprintf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
620                        ahc_inb(ahc, SCSIBUSL), ahc_inb(ahc, SCSISIGI));
621                 kprintf("SXFRCTL0 == 0x%x\n", ahc_inb(ahc, SXFRCTL0));
622                 kprintf("SEQCTL == 0x%x\n", ahc_inb(ahc, SEQCTL));
623                 ahc_dump_card_state(ahc);
624                 ahc->msgout_buf[0] = MSG_BUS_DEV_RESET;
625                 ahc->msgout_len = 1;
626                 ahc->msgout_index = 0;
627                 ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
628                 ahc_outb(ahc, MSG_OUT, HOST_MSG);
629                 ahc_assert_atn(ahc);
630                 break;
631         }
632         case SEND_REJECT: 
633         {
634                 u_int rejbyte = ahc_inb(ahc, ACCUM);
635                 kprintf("%s:%c:%d: Warning - unknown message received from "
636                        "target (0x%x).  Rejecting\n", 
637                        ahc_name(ahc), devinfo.channel, devinfo.target, rejbyte);
638                 break; 
639         }
640         case PROTO_VIOLATION:
641         {
642                 ahc_handle_proto_violation(ahc);
643                 break;
644         }
645         case IGN_WIDE_RES:
646                 ahc_handle_ign_wide_residue(ahc, &devinfo);
647                 break;
648         case PDATA_REINIT:
649                 ahc_reinitialize_dataptrs(ahc);
650                 break;
651         case BAD_PHASE:
652         {
653                 u_int lastphase;
654
655                 lastphase = ahc_inb(ahc, LASTPHASE);
656                 kprintf("%s:%c:%d: unknown scsi bus phase %x, "
657                        "lastphase = 0x%x.  Attempting to continue\n",
658                        ahc_name(ahc), devinfo.channel, devinfo.target,
659                        lastphase, ahc_inb(ahc, SCSISIGI));
660                 break;
661         }
662         case MISSED_BUSFREE:
663         {
664                 u_int lastphase;
665
666                 lastphase = ahc_inb(ahc, LASTPHASE);
667                 kprintf("%s:%c:%d: Missed busfree. "
668                        "Lastphase = 0x%x, Curphase = 0x%x\n",
669                        ahc_name(ahc), devinfo.channel, devinfo.target,
670                        lastphase, ahc_inb(ahc, SCSISIGI));
671                 ahc_restart(ahc);
672                 return;
673         }
674         case HOST_MSG_LOOP:
675         {
676                 /*
677                  * The sequencer has encountered a message phase
678                  * that requires host assistance for completion.
679                  * While handling the message phase(s), we will be
680                  * notified by the sequencer after each byte is
681                  * transfered so we can track bus phase changes.
682                  *
683                  * If this is the first time we've seen a HOST_MSG_LOOP
684                  * interrupt, initialize the state of the host message
685                  * loop.
686                  */
687                 if (ahc->msg_type == MSG_TYPE_NONE) {
688                         struct scb *scb;
689                         u_int scb_index;
690                         u_int bus_phase;
691
692                         bus_phase = ahc_inb(ahc, SCSISIGI) & PHASE_MASK;
693                         if (bus_phase != P_MESGIN
694                          && bus_phase != P_MESGOUT) {
695                                 kprintf("ahc_intr: HOST_MSG_LOOP bad "
696                                        "phase 0x%x\n",
697                                       bus_phase);
698                                 /*
699                                  * Probably transitioned to bus free before
700                                  * we got here.  Just punt the message.
701                                  */
702                                 ahc_clear_intstat(ahc);
703                                 ahc_restart(ahc);
704                                 return;
705                         }
706
707                         scb_index = ahc_inb(ahc, SCB_TAG);
708                         scb = ahc_lookup_scb(ahc, scb_index);
709                         if (devinfo.role == ROLE_INITIATOR) {
710                                 if (scb == NULL)
711                                         panic("HOST_MSG_LOOP with "
712                                               "invalid SCB %x\n", scb_index);
713
714                                 if (bus_phase == P_MESGOUT)
715                                         ahc_setup_initiator_msgout(ahc,
716                                                                    &devinfo,
717                                                                    scb);
718                                 else {
719                                         ahc->msg_type =
720                                             MSG_TYPE_INITIATOR_MSGIN;
721                                         ahc->msgin_index = 0;
722                                 }
723                         }
724 #ifdef AHC_TARGET_MODE
725                         else {
726                                 if (bus_phase == P_MESGOUT) {
727                                         ahc->msg_type =
728                                             MSG_TYPE_TARGET_MSGOUT;
729                                         ahc->msgin_index = 0;
730                                 }
731                                 else 
732                                         ahc_setup_target_msgin(ahc,
733                                                                &devinfo,
734                                                                scb);
735                         }
736 #endif
737                 }
738
739                 ahc_handle_message_phase(ahc);
740                 break;
741         }
742         case PERR_DETECTED:
743         {
744                 /*
745                  * If we've cleared the parity error interrupt
746                  * but the sequencer still believes that SCSIPERR
747                  * is true, it must be that the parity error is
748                  * for the currently presented byte on the bus,
749                  * and we are not in a phase (data-in) where we will
750                  * eventually ack this byte.  Ack the byte and
751                  * throw it away in the hope that the target will
752                  * take us to message out to deliver the appropriate
753                  * error message.
754                  */
755                 if ((intstat & SCSIINT) == 0
756                  && (ahc_inb(ahc, SSTAT1) & SCSIPERR) != 0) {
757
758                         if ((ahc->features & AHC_DT) == 0) {
759                                 u_int curphase;
760
761                                 /*
762                                  * The hardware will only let you ack bytes
763                                  * if the expected phase in SCSISIGO matches
764                                  * the current phase.  Make sure this is
765                                  * currently the case.
766                                  */
767                                 curphase = ahc_inb(ahc, SCSISIGI) & PHASE_MASK;
768                                 ahc_outb(ahc, LASTPHASE, curphase);
769                                 ahc_outb(ahc, SCSISIGO, curphase);
770                         }
771                         if ((ahc_inb(ahc, SCSISIGI) & (CDI|MSGI)) == 0) {
772                                 int wait;
773
774                                 /*
775                                  * In a data phase.  Faster to bitbucket
776                                  * the data than to individually ack each
777                                  * byte.  This is also the only strategy
778                                  * that will work with AUTOACK enabled.
779                                  */
780                                 ahc_outb(ahc, SXFRCTL1,
781                                          ahc_inb(ahc, SXFRCTL1) | BITBUCKET);
782                                 wait = 5000;
783                                 while (--wait != 0) {
784                                         if ((ahc_inb(ahc, SCSISIGI)
785                                           & (CDI|MSGI)) != 0)
786                                                 break;
787                                         aic_delay(100);
788                                 }
789                                 ahc_outb(ahc, SXFRCTL1,
790                                          ahc_inb(ahc, SXFRCTL1) & ~BITBUCKET);
791                                 if (wait == 0) {
792                                         struct  scb *scb;
793                                         u_int   scb_index;
794
795                                         ahc_print_devinfo(ahc, &devinfo);
796                                         kprintf("Unable to clear parity error.  "
797                                                "Resetting bus.\n");
798                                         scb_index = ahc_inb(ahc, SCB_TAG);
799                                         scb = ahc_lookup_scb(ahc, scb_index);
800                                         if (scb != NULL)
801                                                 aic_set_transaction_status(scb,
802                                                     CAM_UNCOR_PARITY);
803                                         ahc_reset_channel(ahc, devinfo.channel, 
804                                                           /*init reset*/TRUE);
805                                 }
806                         } else {
807                                 ahc_inb(ahc, SCSIDATL);
808                         }
809                 }
810                 break;
811         }
812         case DATA_OVERRUN:
813         {
814                 /*
815                  * When the sequencer detects an overrun, it
816                  * places the controller in "BITBUCKET" mode
817                  * and allows the target to complete its transfer.
818                  * Unfortunately, none of the counters get updated
819                  * when the controller is in this mode, so we have
820                  * no way of knowing how large the overrun was.
821                  */
822                 u_int scbindex = ahc_inb(ahc, SCB_TAG);
823                 u_int lastphase = ahc_inb(ahc, LASTPHASE);
824                 u_int i;
825
826                 scb = ahc_lookup_scb(ahc, scbindex);
827                 for (i = 0; i < num_phases; i++) {
828                         if (lastphase == ahc_phase_table[i].phase)
829                                 break;
830                 }
831                 ahc_print_path(ahc, scb);
832                 kprintf("data overrun detected %s."
833                        "  Tag == 0x%x.\n",
834                        ahc_phase_table[i].phasemsg,
835                        scb->hscb->tag);
836                 ahc_print_path(ahc, scb);
837                 kprintf("%s seen Data Phase.  Length = %ld.  NumSGs = %d.\n",
838                        ahc_inb(ahc, SEQ_FLAGS) & DPHASE ? "Have" : "Haven't",
839                        aic_get_transfer_length(scb), scb->sg_count);
840                 if (scb->sg_count > 0) {
841                         for (i = 0; i < scb->sg_count; i++) {
842
843                                 kprintf("sg[%d] - Addr 0x%x%x : Length %d\n",
844                                        i,
845                                        (aic_le32toh(scb->sg_list[i].len) >> 24
846                                         & SG_HIGH_ADDR_BITS),
847                                        aic_le32toh(scb->sg_list[i].addr),
848                                        aic_le32toh(scb->sg_list[i].len)
849                                        & AHC_SG_LEN_MASK);
850                         }
851                 }
852                 /*
853                  * Set this and it will take effect when the
854                  * target does a command complete.
855                  */
856                 ahc_freeze_devq(ahc, scb);
857                 if ((scb->flags & SCB_SENSE) == 0) {
858                         aic_set_transaction_status(scb, CAM_DATA_RUN_ERR);
859                 } else {
860                         scb->flags &= ~SCB_SENSE;
861                         aic_set_transaction_status(scb, CAM_AUTOSENSE_FAIL);
862                 }
863                 aic_freeze_scb(scb);
864
865                 if ((ahc->features & AHC_ULTRA2) != 0) {
866                         /*
867                          * Clear the channel in case we return
868                          * to data phase later.
869                          */
870                         ahc_outb(ahc, SXFRCTL0,
871                                  ahc_inb(ahc, SXFRCTL0) | CLRSTCNT|CLRCHN);
872                         ahc_outb(ahc, SXFRCTL0,
873                                  ahc_inb(ahc, SXFRCTL0) | CLRSTCNT|CLRCHN);
874                 }
875                 if ((ahc->flags & AHC_39BIT_ADDRESSING) != 0) {
876                         u_int dscommand1;
877
878                         /* Ensure HHADDR is 0 for future DMA operations. */
879                         dscommand1 = ahc_inb(ahc, DSCOMMAND1);
880                         ahc_outb(ahc, DSCOMMAND1, dscommand1 | HADDLDSEL0);
881                         ahc_outb(ahc, HADDR, 0);
882                         ahc_outb(ahc, DSCOMMAND1, dscommand1);
883                 }
884                 break;
885         }
886         case MKMSG_FAILED:
887         {
888                 u_int scbindex;
889
890                 kprintf("%s:%c:%d:%d: Attempt to issue message failed\n",
891                        ahc_name(ahc), devinfo.channel, devinfo.target,
892                        devinfo.lun);
893                 scbindex = ahc_inb(ahc, SCB_TAG);
894                 scb = ahc_lookup_scb(ahc, scbindex);
895                 if (scb != NULL
896                  && (scb->flags & SCB_RECOVERY_SCB) != 0)
897                         /*
898                          * Ensure that we didn't put a second instance of this
899                          * SCB into the QINFIFO.
900                          */
901                         ahc_search_qinfifo(ahc, SCB_GET_TARGET(ahc, scb),
902                                            SCB_GET_CHANNEL(ahc, scb),
903                                            SCB_GET_LUN(scb), scb->hscb->tag,
904                                            ROLE_INITIATOR, /*status*/0,
905                                            SEARCH_REMOVE);
906                 break;
907         }
908         case NO_FREE_SCB:
909         {
910                 kprintf("%s: No free or disconnected SCBs\n", ahc_name(ahc));
911                 ahc_dump_card_state(ahc);
912                 panic("for safety");
913                 break;
914         }
915         case SCB_MISMATCH:
916         {
917                 u_int scbptr;
918
919                 scbptr = ahc_inb(ahc, SCBPTR);
920                 kprintf("Bogus TAG after DMA.  SCBPTR %d, tag %d, our tag %d\n",
921                        scbptr, ahc_inb(ahc, ARG_1),
922                        ahc->scb_data->hscbs[scbptr].tag);
923                 ahc_dump_card_state(ahc);
924                 panic("for safety");
925                 break;
926         }
927         case OUT_OF_RANGE:
928         {
929                 kprintf("%s: BTT calculation out of range\n", ahc_name(ahc));
930                 kprintf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
931                        "ARG_1 == 0x%x ACCUM = 0x%x\n",
932                        ahc_inb(ahc, SAVED_SCSIID), ahc_inb(ahc, SAVED_LUN),
933                        ahc_inb(ahc, ARG_1), ahc_inb(ahc, ACCUM));
934                 kprintf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
935                        "SINDEX == 0x%x\n, A == 0x%x\n",
936                        ahc_inb(ahc, SEQ_FLAGS), ahc_inb(ahc, SCBPTR),
937                        ahc_index_busy_tcl(ahc,
938                             BUILD_TCL(ahc_inb(ahc, SAVED_SCSIID),
939                                       ahc_inb(ahc, SAVED_LUN))),
940                        ahc_inb(ahc, SINDEX),
941                        ahc_inb(ahc, ACCUM));
942                 kprintf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
943                        "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
944                        ahc_inb(ahc, SCSIID), ahc_inb(ahc, SCB_SCSIID),
945                        ahc_inb(ahc, SCB_LUN), ahc_inb(ahc, SCB_TAG),
946                        ahc_inb(ahc, SCB_CONTROL));
947                 kprintf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
948                        ahc_inb(ahc, SCSIBUSL), ahc_inb(ahc, SCSISIGI));
949                 ahc_dump_card_state(ahc);
950                 panic("for safety");
951                 break;
952         }
953         default:
954                 kprintf("ahc_intr: seqint, "
955                        "intstat == 0x%x, scsisigi = 0x%x\n",
956                        intstat, ahc_inb(ahc, SCSISIGI));
957                 break;
958         }
959 unpause:
960         /*
961          *  The sequencer is paused immediately on
962          *  a SEQINT, so we should restart it when
963          *  we're done.
964          */
965         ahc_unpause(ahc);
966 }
967
968 void
969 ahc_handle_scsiint(struct ahc_softc *ahc, u_int intstat)
970 {
971         u_int   scb_index;
972         u_int   status0;
973         u_int   status;
974         struct  scb *scb;
975         char    cur_channel;
976         char    intr_channel;
977
978         if ((ahc->features & AHC_TWIN) != 0
979          && ((ahc_inb(ahc, SBLKCTL) & SELBUSB) != 0))
980                 cur_channel = 'B';
981         else
982                 cur_channel = 'A';
983         intr_channel = cur_channel;
984
985         if ((ahc->features & AHC_ULTRA2) != 0)
986                 status0 = ahc_inb(ahc, SSTAT0) & IOERR;
987         else
988                 status0 = 0;
989         status = ahc_inb(ahc, SSTAT1) & (SELTO|SCSIRSTI|BUSFREE|SCSIPERR);
990         if (status == 0 && status0 == 0) {
991                 if ((ahc->features & AHC_TWIN) != 0) {
992                         /* Try the other channel */
993                         ahc_outb(ahc, SBLKCTL, ahc_inb(ahc, SBLKCTL) ^ SELBUSB);
994                         status = ahc_inb(ahc, SSTAT1)
995                                & (SELTO|SCSIRSTI|BUSFREE|SCSIPERR);
996                         intr_channel = (cur_channel == 'A') ? 'B' : 'A';
997                 }
998                 if (status == 0) {
999                         kprintf("%s: Spurious SCSI interrupt\n", ahc_name(ahc));
1000                         ahc_outb(ahc, CLRINT, CLRSCSIINT);
1001                         ahc_unpause(ahc);
1002                         return;
1003                 }
1004         }
1005
1006         /* Make sure the sequencer is in a safe location. */
1007         ahc_clear_critical_section(ahc);
1008
1009         scb_index = ahc_inb(ahc, SCB_TAG);
1010         scb = ahc_lookup_scb(ahc, scb_index);
1011         if (scb != NULL
1012          && (ahc_inb(ahc, SEQ_FLAGS) & NOT_IDENTIFIED) != 0)
1013                 scb = NULL;
1014
1015         if ((ahc->features & AHC_ULTRA2) != 0
1016          && (status0 & IOERR) != 0) {
1017                 int now_lvd;
1018
1019                 now_lvd = ahc_inb(ahc, SBLKCTL) & ENAB40;
1020                 kprintf("%s: Transceiver State Has Changed to %s mode\n",
1021                        ahc_name(ahc), now_lvd ? "LVD" : "SE");
1022                 ahc_outb(ahc, CLRSINT0, CLRIOERR);
1023                 /*
1024                  * When transitioning to SE mode, the reset line
1025                  * glitches, triggering an arbitration bug in some
1026                  * Ultra2 controllers.  This bug is cleared when we
1027                  * assert the reset line.  Since a reset glitch has
1028                  * already occurred with this transition and a
1029                  * transceiver state change is handled just like
1030                  * a bus reset anyway, asserting the reset line
1031                  * ourselves is safe.
1032                  */
1033                 ahc_reset_channel(ahc, intr_channel,
1034                                  /*Initiate Reset*/now_lvd == 0);
1035         } else if ((status & SCSIRSTI) != 0) {
1036                 kprintf("%s: Someone reset channel %c\n",
1037                         ahc_name(ahc), intr_channel);
1038                 if (intr_channel != cur_channel)
1039                         ahc_outb(ahc, SBLKCTL, ahc_inb(ahc, SBLKCTL) ^ SELBUSB);
1040                 ahc_reset_channel(ahc, intr_channel, /*Initiate Reset*/FALSE);
1041         } else if ((status & SCSIPERR) != 0) {
1042                 /*
1043                  * Determine the bus phase and queue an appropriate message.
1044                  * SCSIPERR is latched true as soon as a parity error
1045                  * occurs.  If the sequencer acked the transfer that
1046                  * caused the parity error and the currently presented
1047                  * transfer on the bus has correct parity, SCSIPERR will
1048                  * be cleared by CLRSCSIPERR.  Use this to determine if
1049                  * we should look at the last phase the sequencer recorded,
1050                  * or the current phase presented on the bus.
1051                  */
1052                 struct  ahc_devinfo devinfo;
1053                 u_int   mesg_out;
1054                 u_int   curphase;
1055                 u_int   errorphase;
1056                 u_int   lastphase;
1057                 u_int   scsirate;
1058                 u_int   i;
1059                 u_int   sstat2;
1060                 int     silent;
1061
1062                 lastphase = ahc_inb(ahc, LASTPHASE);
1063                 curphase = ahc_inb(ahc, SCSISIGI) & PHASE_MASK;
1064                 sstat2 = ahc_inb(ahc, SSTAT2);
1065                 ahc_outb(ahc, CLRSINT1, CLRSCSIPERR);
1066                 /*
1067                  * For all phases save DATA, the sequencer won't
1068                  * automatically ack a byte that has a parity error
1069                  * in it.  So the only way that the current phase
1070                  * could be 'data-in' is if the parity error is for
1071                  * an already acked byte in the data phase.  During
1072                  * synchronous data-in transfers, we may actually
1073                  * ack bytes before latching the current phase in
1074                  * LASTPHASE, leading to the discrepancy between
1075                  * curphase and lastphase.
1076                  */
1077                 if ((ahc_inb(ahc, SSTAT1) & SCSIPERR) != 0
1078                  || curphase == P_DATAIN || curphase == P_DATAIN_DT)
1079                         errorphase = curphase;
1080                 else
1081                         errorphase = lastphase;
1082
1083                 for (i = 0; i < num_phases; i++) {
1084                         if (errorphase == ahc_phase_table[i].phase)
1085                                 break;
1086                 }
1087                 mesg_out = ahc_phase_table[i].mesg_out;
1088                 silent = FALSE;
1089                 if (scb != NULL) {
1090                         if (SCB_IS_SILENT(scb))
1091                                 silent = TRUE;
1092                         else
1093                                 ahc_print_path(ahc, scb);
1094                         scb->flags |= SCB_TRANSMISSION_ERROR;
1095                 } else
1096                         kprintf("%s:%c:%d: ", ahc_name(ahc), intr_channel,
1097                                SCSIID_TARGET(ahc, ahc_inb(ahc, SAVED_SCSIID)));
1098                 scsirate = ahc_inb(ahc, SCSIRATE);
1099                 if (silent == FALSE) {
1100                         kprintf("parity error detected %s. "
1101                                "SEQADDR(0x%x) SCSIRATE(0x%x)\n",
1102                                ahc_phase_table[i].phasemsg,
1103                                ahc_inw(ahc, SEQADDR0),
1104                                scsirate);
1105                         if ((ahc->features & AHC_DT) != 0) {
1106                                 if ((sstat2 & CRCVALERR) != 0)
1107                                         kprintf("\tCRC Value Mismatch\n");
1108                                 if ((sstat2 & CRCENDERR) != 0)
1109                                         kprintf("\tNo terminal CRC packet "
1110                                                "received\n");
1111                                 if ((sstat2 & CRCREQERR) != 0)
1112                                         kprintf("\tIllegal CRC packet "
1113                                                "request\n");
1114                                 if ((sstat2 & DUAL_EDGE_ERR) != 0)
1115                                         kprintf("\tUnexpected %sDT Data Phase\n",
1116                                                (scsirate & SINGLE_EDGE)
1117                                              ? "" : "non-");
1118                         }
1119                 }
1120
1121                 if ((ahc->features & AHC_DT) != 0
1122                  && (sstat2 & DUAL_EDGE_ERR) != 0) {
1123                         /*
1124                          * This error applies regardless of
1125                          * data direction, so ignore the value
1126                          * in the phase table.
1127                          */
1128                         mesg_out = MSG_INITIATOR_DET_ERR;
1129                 }
1130
1131                 /*
1132                  * We've set the hardware to assert ATN if we   
1133                  * get a parity error on "in" phases, so all we  
1134                  * need to do is stuff the message buffer with
1135                  * the appropriate message.  "In" phases have set
1136                  * mesg_out to something other than MSG_NOP.
1137                  */
1138                 if (mesg_out != MSG_NOOP) {
1139                         if (ahc->msg_type != MSG_TYPE_NONE)
1140                                 ahc->send_msg_perror = TRUE;
1141                         else
1142                                 ahc_outb(ahc, MSG_OUT, mesg_out);
1143                 }
1144                 /*
1145                  * Force a renegotiation with this target just in
1146                  * case we are out of sync for some external reason
1147                  * unknown (or unreported) by the target.
1148                  */
1149                 ahc_fetch_devinfo(ahc, &devinfo);
1150                 ahc_force_renegotiation(ahc, &devinfo);
1151
1152                 ahc_outb(ahc, CLRINT, CLRSCSIINT);
1153                 ahc_unpause(ahc);
1154         } else if ((status & SELTO) != 0) {
1155                 u_int   scbptr;
1156
1157                 /* Stop the selection */
1158                 ahc_outb(ahc, SCSISEQ, 0);
1159
1160                 /* No more pending messages */
1161                 ahc_clear_msg_state(ahc);
1162
1163                 /* Clear interrupt state */
1164                 ahc_outb(ahc, SIMODE1, ahc_inb(ahc, SIMODE1) & ~ENBUSFREE);
1165                 ahc_outb(ahc, CLRSINT1, CLRSELTIMEO|CLRBUSFREE|CLRSCSIPERR);
1166
1167                 /*
1168                  * Although the driver does not care about the
1169                  * 'Selection in Progress' status bit, the busy
1170                  * LED does.  SELINGO is only cleared by a successful
1171                  * selection, so we must manually clear it to insure
1172                  * the LED turns off just in case no future successful
1173                  * selections occur (e.g. no devices on the bus).
1174                  */
1175                 ahc_outb(ahc, CLRSINT0, CLRSELINGO);
1176
1177                 scbptr = ahc_inb(ahc, WAITING_SCBH);
1178                 ahc_outb(ahc, SCBPTR, scbptr);
1179                 scb_index = ahc_inb(ahc, SCB_TAG);
1180
1181                 scb = ahc_lookup_scb(ahc, scb_index);
1182                 if (scb == NULL) {
1183                         kprintf("%s: ahc_intr - referenced scb not "
1184                                "valid during SELTO scb(%d, %d)\n",
1185                                ahc_name(ahc), scbptr, scb_index);
1186                         ahc_dump_card_state(ahc);
1187                 } else {
1188                         struct ahc_devinfo devinfo;
1189 #ifdef AHC_DEBUG
1190                         if ((ahc_debug & AHC_SHOW_SELTO) != 0) {
1191                                 ahc_print_path(ahc, scb);
1192                                 kprintf("Saw Selection Timeout for SCB 0x%x\n",
1193                                        scb_index);
1194                         }
1195 #endif
1196                         ahc_scb_devinfo(ahc, &devinfo, scb);
1197                         aic_set_transaction_status(scb, CAM_SEL_TIMEOUT);
1198                         ahc_freeze_devq(ahc, scb);
1199
1200                         /*
1201                          * Cancel any pending transactions on the device
1202                          * now that it seems to be missing.  This will
1203                          * also revert us to async/narrow transfers until
1204                          * we can renegotiate with the device.
1205                          */
1206                         ahc_handle_devreset(ahc, &devinfo,
1207                                             CAM_SEL_TIMEOUT,
1208                                             "Selection Timeout",
1209                                             /*verbose_level*/1);
1210                 }
1211                 ahc_outb(ahc, CLRINT, CLRSCSIINT);
1212                 ahc_restart(ahc);
1213         } else if ((status & BUSFREE) != 0
1214                 && (ahc_inb(ahc, SIMODE1) & ENBUSFREE) != 0) {
1215                 struct  ahc_devinfo devinfo;
1216                 u_int   lastphase;
1217                 u_int   saved_scsiid;
1218                 u_int   saved_lun;
1219                 u_int   target;
1220                 u_int   initiator_role_id;
1221                 char    channel;
1222                 int     printerror;
1223
1224                 /*
1225                  * Clear our selection hardware as soon as possible.
1226                  * We may have an entry in the waiting Q for this target,
1227                  * that is affected by this busfree and we don't want to
1228                  * go about selecting the target while we handle the event.
1229                  */
1230                 ahc_outb(ahc, SCSISEQ,
1231                          ahc_inb(ahc, SCSISEQ) & (ENSELI|ENRSELI|ENAUTOATNP));
1232
1233                 /*
1234                  * Disable busfree interrupts and clear the busfree
1235                  * interrupt status.  We do this here so that several
1236                  * bus transactions occur prior to clearing the SCSIINT
1237                  * latch.  It can take a bit for the clearing to take effect.
1238                  */
1239                 ahc_outb(ahc, SIMODE1, ahc_inb(ahc, SIMODE1) & ~ENBUSFREE);
1240                 ahc_outb(ahc, CLRSINT1, CLRBUSFREE|CLRSCSIPERR);
1241
1242                 /*
1243                  * Look at what phase we were last in.
1244                  * If its message out, chances are pretty good
1245                  * that the busfree was in response to one of
1246                  * our abort requests.
1247                  */
1248                 lastphase = ahc_inb(ahc, LASTPHASE);
1249                 saved_scsiid = ahc_inb(ahc, SAVED_SCSIID);
1250                 saved_lun = ahc_inb(ahc, SAVED_LUN);
1251                 target = SCSIID_TARGET(ahc, saved_scsiid);
1252                 initiator_role_id = SCSIID_OUR_ID(saved_scsiid);
1253                 channel = SCSIID_CHANNEL(ahc, saved_scsiid);
1254                 ahc_compile_devinfo(&devinfo, initiator_role_id,
1255                                     target, saved_lun, channel, ROLE_INITIATOR);
1256                 printerror = 1;
1257
1258                 if (lastphase == P_MESGOUT) {
1259                         u_int tag;
1260
1261                         tag = SCB_LIST_NULL;
1262                         if (ahc_sent_msg(ahc, AHCMSG_1B, MSG_ABORT_TAG, TRUE)
1263                          || ahc_sent_msg(ahc, AHCMSG_1B, MSG_ABORT, TRUE)) {
1264                                 if (ahc->msgout_buf[ahc->msgout_index - 1]
1265                                  == MSG_ABORT_TAG)
1266                                         tag = scb->hscb->tag;
1267                                 ahc_print_path(ahc, scb);
1268                                 kprintf("SCB %d - Abort%s Completed.\n",
1269                                        scb->hscb->tag, tag == SCB_LIST_NULL ?
1270                                        "" : " Tag");
1271                                 ahc_abort_scbs(ahc, target, channel,
1272                                                saved_lun, tag,
1273                                                ROLE_INITIATOR,
1274                                                CAM_REQ_ABORTED);
1275                                 printerror = 0;
1276                         } else if (ahc_sent_msg(ahc, AHCMSG_1B,
1277                                                 MSG_BUS_DEV_RESET, TRUE)) {
1278 #if defined(__DragonFly__) || defined(__FreeBSD__)
1279                                 /*
1280                                  * Don't mark the user's request for this BDR
1281                                  * as completing with CAM_BDR_SENT.  CAM3
1282                                  * specifies CAM_REQ_CMP.
1283                                  */
1284                                 if (scb != NULL
1285                                  && scb->io_ctx->ccb_h.func_code== XPT_RESET_DEV
1286                                  && ahc_match_scb(ahc, scb, target, channel,
1287                                                   CAM_LUN_WILDCARD,
1288                                                   SCB_LIST_NULL,
1289                                                   ROLE_INITIATOR)) {
1290                                         aic_set_transaction_status(scb, CAM_REQ_CMP);
1291                                 }
1292 #endif
1293                                 ahc_compile_devinfo(&devinfo,
1294                                                     initiator_role_id,
1295                                                     target,
1296                                                     CAM_LUN_WILDCARD,
1297                                                     channel,
1298                                                     ROLE_INITIATOR);
1299                                 ahc_handle_devreset(ahc, &devinfo,
1300                                                     CAM_BDR_SENT,
1301                                                     "Bus Device Reset",
1302                                                     /*verbose_level*/0);
1303                                 printerror = 0;
1304                         } else if (ahc_sent_msg(ahc, AHCMSG_EXT,
1305                                                 MSG_EXT_PPR, FALSE)) {
1306                                 struct ahc_initiator_tinfo *tinfo;
1307                                 struct ahc_tmode_tstate *tstate;
1308
1309                                 /*
1310                                  * PPR Rejected.  Try non-ppr negotiation
1311                                  * and retry command.
1312                                  */
1313                                 tinfo = ahc_fetch_transinfo(ahc,
1314                                                             devinfo.channel,
1315                                                             devinfo.our_scsiid,
1316                                                             devinfo.target,
1317                                                             &tstate);
1318                                 tinfo->curr.transport_version = 2;
1319                                 tinfo->goal.transport_version = 2;
1320                                 tinfo->goal.ppr_options = 0;
1321                                 ahc_qinfifo_requeue_tail(ahc, scb);
1322                                 printerror = 0;
1323                         } else if (ahc_sent_msg(ahc, AHCMSG_EXT,
1324                                                 MSG_EXT_WDTR, FALSE)) {
1325                                 /*
1326                                  * Negotiation Rejected.  Go-narrow and
1327                                  * retry command.
1328                                  */
1329                                 ahc_set_width(ahc, &devinfo,
1330                                               MSG_EXT_WDTR_BUS_8_BIT,
1331                                               AHC_TRANS_CUR|AHC_TRANS_GOAL,
1332                                               /*paused*/TRUE);
1333                                 ahc_qinfifo_requeue_tail(ahc, scb);
1334                                 printerror = 0;
1335                         } else if (ahc_sent_msg(ahc, AHCMSG_EXT,
1336                                                 MSG_EXT_SDTR, FALSE)) {
1337                                 /*
1338                                  * Negotiation Rejected.  Go-async and
1339                                  * retry command.
1340                                  */
1341                                 ahc_set_syncrate(ahc, &devinfo,
1342                                                 /*syncrate*/NULL,
1343                                                 /*period*/0, /*offset*/0,
1344                                                 /*ppr_options*/0,
1345                                                 AHC_TRANS_CUR|AHC_TRANS_GOAL,
1346                                                 /*paused*/TRUE);
1347                                 ahc_qinfifo_requeue_tail(ahc, scb);
1348                                 printerror = 0;
1349                         }
1350                 }
1351                 if (printerror != 0) {
1352                         u_int i;
1353
1354                         if (scb != NULL) {
1355                                 u_int tag;
1356
1357                                 if ((scb->hscb->control & TAG_ENB) != 0)
1358                                         tag = scb->hscb->tag;
1359                                 else
1360                                         tag = SCB_LIST_NULL;
1361                                 ahc_print_path(ahc, scb);
1362                                 ahc_abort_scbs(ahc, target, channel,
1363                                                SCB_GET_LUN(scb), tag,
1364                                                ROLE_INITIATOR,
1365                                                CAM_UNEXP_BUSFREE);
1366                         } else {
1367                                 /*
1368                                  * We had not fully identified this connection,
1369                                  * so we cannot abort anything.
1370                                  */
1371                                 kprintf("%s: ", ahc_name(ahc));
1372                         }
1373                         for (i = 0; i < num_phases; i++) {
1374                                 if (lastphase == ahc_phase_table[i].phase)
1375                                         break;
1376                         }
1377                         if (lastphase != P_BUSFREE) {
1378                                 /*
1379                                  * Renegotiate with this device at the
1380                                  * next oportunity just in case this busfree
1381                                  * is due to a negotiation mismatch with the
1382                                  * device.
1383                                  */
1384                                 ahc_force_renegotiation(ahc, &devinfo);
1385                         }
1386                         kprintf("Unexpected busfree %s\n"
1387                                "SEQADDR == 0x%x\n",
1388                                ahc_phase_table[i].phasemsg,
1389                                ahc_inb(ahc, SEQADDR0)
1390                                 | (ahc_inb(ahc, SEQADDR1) << 8));
1391                 }
1392                 ahc_outb(ahc, CLRINT, CLRSCSIINT);
1393                 ahc_restart(ahc);
1394         } else {
1395                 kprintf("%s: Missing case in ahc_handle_scsiint. status = %x\n",
1396                        ahc_name(ahc), status);
1397                 ahc_outb(ahc, CLRINT, CLRSCSIINT);
1398         }
1399 }
1400
1401 /*
1402  * Force renegotiation to occur the next time we initiate
1403  * a command to the current device.
1404  */
1405 static void
1406 ahc_force_renegotiation(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
1407 {
1408         struct  ahc_initiator_tinfo *targ_info;
1409         struct  ahc_tmode_tstate *tstate;
1410
1411         targ_info = ahc_fetch_transinfo(ahc,
1412                                         devinfo->channel,
1413                                         devinfo->our_scsiid,
1414                                         devinfo->target,
1415                                         &tstate);
1416         ahc_update_neg_request(ahc, devinfo, tstate,
1417                                targ_info, AHC_NEG_IF_NON_ASYNC);
1418 }
1419
1420 #define AHC_MAX_STEPS 2000
1421 void
1422 ahc_clear_critical_section(struct ahc_softc *ahc)
1423 {
1424         int     stepping;
1425         int     steps;
1426         u_int   simode0;
1427         u_int   simode1;
1428
1429         if (ahc->num_critical_sections == 0)
1430                 return;
1431
1432         stepping = FALSE;
1433         steps = 0;
1434         simode0 = 0;
1435         simode1 = 0;
1436         for (;;) {
1437                 struct  cs *cs;
1438                 u_int   seqaddr;
1439                 u_int   i;
1440
1441                 seqaddr = ahc_inb(ahc, SEQADDR0)
1442                         | (ahc_inb(ahc, SEQADDR1) << 8);
1443
1444                 /*
1445                  * Seqaddr represents the next instruction to execute, 
1446                  * so we are really executing the instruction just
1447                  * before it.
1448                  */
1449                 cs = ahc->critical_sections;
1450                 for (i = 0; i < ahc->num_critical_sections; i++, cs++) {
1451                         
1452                         if (cs->begin < seqaddr && cs->end >= seqaddr)
1453                                 break;
1454                 }
1455
1456                 if (i == ahc->num_critical_sections)
1457                         break;
1458
1459                 if (steps > AHC_MAX_STEPS) {
1460                         kprintf("%s: Infinite loop in critical section\n",
1461                                ahc_name(ahc));
1462                         ahc_dump_card_state(ahc);
1463                         panic("critical section loop");
1464                 }
1465
1466                 steps++;
1467                 if (stepping == FALSE) {
1468
1469                         /*
1470                          * Disable all interrupt sources so that the
1471                          * sequencer will not be stuck by a pausing
1472                          * interrupt condition while we attempt to
1473                          * leave a critical section.
1474                          */
1475                         simode0 = ahc_inb(ahc, SIMODE0);
1476                         ahc_outb(ahc, SIMODE0, 0);
1477                         simode1 = ahc_inb(ahc, SIMODE1);
1478                         if ((ahc->features & AHC_DT) != 0)
1479                                 /*
1480                                  * On DT class controllers, we
1481                                  * use the enhanced busfree logic.
1482                                  * Unfortunately we cannot re-enable
1483                                  * busfree detection within the
1484                                  * current connection, so we must
1485                                  * leave it on while single stepping.
1486                                  */
1487                                 ahc_outb(ahc, SIMODE1, simode1 & ENBUSFREE);
1488                         else
1489                                 ahc_outb(ahc, SIMODE1, 0);
1490                         ahc_outb(ahc, CLRINT, CLRSCSIINT);
1491                         ahc_outb(ahc, SEQCTL, ahc->seqctl | STEP);
1492                         stepping = TRUE;
1493                 }
1494                 if ((ahc->features & AHC_DT) != 0) {
1495                         ahc_outb(ahc, CLRSINT1, CLRBUSFREE);
1496                         ahc_outb(ahc, CLRINT, CLRSCSIINT);
1497                 }
1498                 ahc_outb(ahc, HCNTRL, ahc->unpause);
1499                 while (!ahc_is_paused(ahc))
1500                         aic_delay(200);
1501         }
1502         if (stepping) {
1503                 ahc_outb(ahc, SIMODE0, simode0);
1504                 ahc_outb(ahc, SIMODE1, simode1);
1505                 ahc_outb(ahc, SEQCTL, ahc->seqctl);
1506         }
1507 }
1508
1509 /*
1510  * Clear any pending interrupt status.
1511  */
1512 void
1513 ahc_clear_intstat(struct ahc_softc *ahc)
1514 {
1515         /* Clear any interrupt conditions this may have caused */
1516         ahc_outb(ahc, CLRSINT1, CLRSELTIMEO|CLRATNO|CLRSCSIRSTI
1517                                 |CLRBUSFREE|CLRSCSIPERR|CLRPHASECHG|
1518                                 CLRREQINIT);
1519         ahc_flush_device_writes(ahc);
1520         ahc_outb(ahc, CLRSINT0, CLRSELDO|CLRSELDI|CLRSELINGO);
1521         ahc_flush_device_writes(ahc);
1522         ahc_outb(ahc, CLRINT, CLRSCSIINT);
1523         ahc_flush_device_writes(ahc);
1524 }
1525
1526 /**************************** Debugging Routines ******************************/
1527 #ifdef AHC_DEBUG
1528 uint32_t ahc_debug = AHC_DEBUG_OPTS;
1529 #endif
1530
1531 void
1532 ahc_print_scb(struct scb *scb)
1533 {
1534         int i;
1535
1536         struct hardware_scb *hscb = scb->hscb;
1537
1538         kprintf("scb:%p control:0x%x scsiid:0x%x lun:%d cdb_len:%d\n",
1539                (void *)scb,
1540                hscb->control,
1541                hscb->scsiid,
1542                hscb->lun,
1543                hscb->cdb_len);
1544         kprintf("Shared Data: ");
1545         for (i = 0; i < sizeof(hscb->shared_data.cdb); i++)
1546                 kprintf("%#02x", hscb->shared_data.cdb[i]);
1547         kprintf("        dataptr:%#x datacnt:%#x sgptr:%#x tag:%#x\n",
1548                 aic_le32toh(hscb->dataptr),
1549                 aic_le32toh(hscb->datacnt),
1550                 aic_le32toh(hscb->sgptr),
1551                 hscb->tag);
1552         if (scb->sg_count > 0) {
1553                 for (i = 0; i < scb->sg_count; i++) {
1554                         kprintf("sg[%d] - Addr 0x%x%x : Length %d\n",
1555                                i,
1556                                (aic_le32toh(scb->sg_list[i].len) >> 24
1557                                 & SG_HIGH_ADDR_BITS),
1558                                aic_le32toh(scb->sg_list[i].addr),
1559                                aic_le32toh(scb->sg_list[i].len));
1560                 }
1561         }
1562 }
1563
1564 /************************* Transfer Negotiation *******************************/
1565 /*
1566  * Allocate per target mode instance (ID we respond to as a target)
1567  * transfer negotiation data structures.
1568  */
1569 static struct ahc_tmode_tstate *
1570 ahc_alloc_tstate(struct ahc_softc *ahc, u_int scsi_id, char channel)
1571 {
1572         struct ahc_tmode_tstate *master_tstate;
1573         struct ahc_tmode_tstate *tstate;
1574         int i;
1575
1576         master_tstate = ahc->enabled_targets[ahc->our_id];
1577         if (channel == 'B') {
1578                 scsi_id += 8;
1579                 master_tstate = ahc->enabled_targets[ahc->our_id_b + 8];
1580         }
1581         if (ahc->enabled_targets[scsi_id] != NULL
1582          && ahc->enabled_targets[scsi_id] != master_tstate)
1583                 panic("%s: ahc_alloc_tstate - Target already allocated",
1584                       ahc_name(ahc));
1585         tstate = kmalloc(sizeof(*tstate), M_DEVBUF, M_INTWAIT);
1586
1587         /*
1588          * If we have allocated a master tstate, copy user settings from
1589          * the master tstate (taken from SRAM or the EEPROM) for this
1590          * channel, but reset our current and goal settings to async/narrow
1591          * until an initiator talks to us.
1592          */
1593         if (master_tstate != NULL) {
1594                 memcpy(tstate, master_tstate, sizeof(*tstate));
1595                 memset(tstate->enabled_luns, 0, sizeof(tstate->enabled_luns));
1596                 tstate->ultraenb = 0;
1597                 for (i = 0; i < AHC_NUM_TARGETS; i++) {
1598                         memset(&tstate->transinfo[i].curr, 0,
1599                               sizeof(tstate->transinfo[i].curr));
1600                         memset(&tstate->transinfo[i].goal, 0,
1601                               sizeof(tstate->transinfo[i].goal));
1602                 }
1603         } else
1604                 memset(tstate, 0, sizeof(*tstate));
1605         ahc->enabled_targets[scsi_id] = tstate;
1606         return (tstate);
1607 }
1608
1609 #ifdef AHC_TARGET_MODE
1610 /*
1611  * Free per target mode instance (ID we respond to as a target)
1612  * transfer negotiation data structures.
1613  */
1614 static void
1615 ahc_free_tstate(struct ahc_softc *ahc, u_int scsi_id, char channel, int force)
1616 {
1617         struct ahc_tmode_tstate *tstate;
1618
1619         /*
1620          * Don't clean up our "master" tstate.
1621          * It has our default user settings.
1622          */
1623         if (((channel == 'B' && scsi_id == ahc->our_id_b)
1624           || (channel == 'A' && scsi_id == ahc->our_id))
1625          && force == FALSE)
1626                 return;
1627
1628         if (channel == 'B')
1629                 scsi_id += 8;
1630         tstate = ahc->enabled_targets[scsi_id];
1631         if (tstate != NULL)
1632                 kfree(tstate, M_DEVBUF);
1633         ahc->enabled_targets[scsi_id] = NULL;
1634 }
1635 #endif
1636
1637 /*
1638  * Called when we have an active connection to a target on the bus,
1639  * this function finds the nearest syncrate to the input period limited
1640  * by the capabilities of the bus connectivity of and sync settings for
1641  * the target.
1642  */
1643 struct ahc_syncrate *
1644 ahc_devlimited_syncrate(struct ahc_softc *ahc,
1645                         struct ahc_initiator_tinfo *tinfo,
1646                         u_int *period, u_int *ppr_options, role_t role)
1647 {
1648         struct  ahc_transinfo *transinfo;
1649         u_int   maxsync;
1650
1651         if ((ahc->features & AHC_ULTRA2) != 0) {
1652                 if ((ahc_inb(ahc, SBLKCTL) & ENAB40) != 0
1653                  && (ahc_inb(ahc, SSTAT2) & EXP_ACTIVE) == 0) {
1654                         maxsync = AHC_SYNCRATE_DT;
1655                 } else {
1656                         maxsync = AHC_SYNCRATE_ULTRA;
1657                         /* Can't do DT on an SE bus */
1658                         *ppr_options &= ~MSG_EXT_PPR_DT_REQ;
1659                 }
1660         } else if ((ahc->features & AHC_ULTRA) != 0) {
1661                 maxsync = AHC_SYNCRATE_ULTRA;
1662         } else {
1663                 maxsync = AHC_SYNCRATE_FAST;
1664         }
1665         /*
1666          * Never allow a value higher than our current goal
1667          * period otherwise we may allow a target initiated
1668          * negotiation to go above the limit as set by the
1669          * user.  In the case of an initiator initiated
1670          * sync negotiation, we limit based on the user
1671          * setting.  This allows the system to still accept
1672          * incoming negotiations even if target initiated
1673          * negotiation is not performed.
1674          */
1675         if (role == ROLE_TARGET)
1676                 transinfo = &tinfo->user;
1677         else 
1678                 transinfo = &tinfo->goal;
1679         *ppr_options &= transinfo->ppr_options;
1680         if (transinfo->width == MSG_EXT_WDTR_BUS_8_BIT) {
1681                 maxsync = MAX(maxsync, AHC_SYNCRATE_ULTRA2);
1682                 *ppr_options &= ~MSG_EXT_PPR_DT_REQ;
1683         }
1684         if (transinfo->period == 0) {
1685                 *period = 0;
1686                 *ppr_options = 0;
1687                 return (NULL);
1688         }
1689         *period = MAX(*period, transinfo->period);
1690         return (ahc_find_syncrate(ahc, period, ppr_options, maxsync));
1691 }
1692
1693 /*
1694  * Look up the valid period to SCSIRATE conversion in our table.
1695  * Return the period and offset that should be sent to the target
1696  * if this was the beginning of an SDTR.
1697  */
1698 struct ahc_syncrate *
1699 ahc_find_syncrate(struct ahc_softc *ahc, u_int *period,
1700                   u_int *ppr_options, u_int maxsync)
1701 {
1702         struct ahc_syncrate *syncrate;
1703
1704         if ((ahc->features & AHC_DT) == 0)
1705                 *ppr_options &= ~MSG_EXT_PPR_DT_REQ;
1706
1707         /* Skip all DT only entries if DT is not available */
1708         if ((*ppr_options & MSG_EXT_PPR_DT_REQ) == 0
1709          && maxsync < AHC_SYNCRATE_ULTRA2)
1710                 maxsync = AHC_SYNCRATE_ULTRA2;
1711         
1712         for (syncrate = &ahc_syncrates[maxsync];
1713              syncrate->rate != NULL;
1714              syncrate++) {
1715
1716                 /*
1717                  * The Ultra2 table doesn't go as low
1718                  * as for the Fast/Ultra cards.
1719                  */
1720                 if ((ahc->features & AHC_ULTRA2) != 0
1721                  && (syncrate->sxfr_u2 == 0))
1722                         break;
1723
1724                 if (*period <= syncrate->period) {
1725                         /*
1726                          * When responding to a target that requests
1727                          * sync, the requested rate may fall between
1728                          * two rates that we can output, but still be
1729                          * a rate that we can receive.  Because of this,
1730                          * we want to respond to the target with
1731                          * the same rate that it sent to us even
1732                          * if the period we use to send data to it
1733                          * is lower.  Only lower the response period
1734                          * if we must.
1735                          */
1736                         if (syncrate == &ahc_syncrates[maxsync])
1737                                 *period = syncrate->period;
1738
1739                         /*
1740                          * At some speeds, we only support
1741                          * ST transfers.
1742                          */
1743                         if ((syncrate->sxfr_u2 & ST_SXFR) != 0)
1744                                 *ppr_options &= ~MSG_EXT_PPR_DT_REQ;
1745                         break;
1746                 }
1747         }
1748
1749         if ((*period == 0)
1750          || (syncrate->rate == NULL)
1751          || ((ahc->features & AHC_ULTRA2) != 0
1752           && (syncrate->sxfr_u2 == 0))) {
1753                 /* Use asynchronous transfers. */
1754                 *period = 0;
1755                 syncrate = NULL;
1756                 *ppr_options &= ~MSG_EXT_PPR_DT_REQ;
1757         }
1758         return (syncrate);
1759 }
1760
1761 /*
1762  * Convert from an entry in our syncrate table to the SCSI equivalent
1763  * sync "period" factor.
1764  */
1765 u_int
1766 ahc_find_period(struct ahc_softc *ahc, u_int scsirate, u_int maxsync)
1767 {
1768         struct ahc_syncrate *syncrate;
1769
1770         if ((ahc->features & AHC_ULTRA2) != 0)
1771                 scsirate &= SXFR_ULTRA2;
1772         else
1773                 scsirate &= SXFR;
1774
1775         syncrate = &ahc_syncrates[maxsync];
1776         while (syncrate->rate != NULL) {
1777
1778                 if ((ahc->features & AHC_ULTRA2) != 0) {
1779                         if (syncrate->sxfr_u2 == 0)
1780                                 break;
1781                         else if (scsirate == (syncrate->sxfr_u2 & SXFR_ULTRA2))
1782                                 return (syncrate->period);
1783                 } else if (scsirate == (syncrate->sxfr & SXFR)) {
1784                                 return (syncrate->period);
1785                 }
1786                 syncrate++;
1787         }
1788         return (0); /* async */
1789 }
1790
1791 /*
1792  * Truncate the given synchronous offset to a value the
1793  * current adapter type and syncrate are capable of.
1794  */
1795 void
1796 ahc_validate_offset(struct ahc_softc *ahc,
1797                     struct ahc_initiator_tinfo *tinfo,
1798                     struct ahc_syncrate *syncrate,
1799                     u_int *offset, int wide, role_t role)
1800 {
1801         u_int maxoffset;
1802
1803         /* Limit offset to what we can do */
1804         if (syncrate == NULL) {
1805                 maxoffset = 0;
1806         } else if ((ahc->features & AHC_ULTRA2) != 0) {
1807                 maxoffset = MAX_OFFSET_ULTRA2;
1808         } else {
1809                 if (wide)
1810                         maxoffset = MAX_OFFSET_16BIT;
1811                 else
1812                         maxoffset = MAX_OFFSET_8BIT;
1813         }
1814         *offset = MIN(*offset, maxoffset);
1815         if (tinfo != NULL) {
1816                 if (role == ROLE_TARGET)
1817                         *offset = MIN(*offset, tinfo->user.offset);
1818                 else
1819                         *offset = MIN(*offset, tinfo->goal.offset);
1820         }
1821 }
1822
1823 /*
1824  * Truncate the given transfer width parameter to a value the
1825  * current adapter type is capable of.
1826  */
1827 void
1828 ahc_validate_width(struct ahc_softc *ahc, struct ahc_initiator_tinfo *tinfo,
1829                    u_int *bus_width, role_t role)
1830 {
1831         switch (*bus_width) {
1832         default:
1833                 if (ahc->features & AHC_WIDE) {
1834                         /* Respond Wide */
1835                         *bus_width = MSG_EXT_WDTR_BUS_16_BIT;
1836                         break;
1837                 }
1838                 /* FALLTHROUGH */
1839         case MSG_EXT_WDTR_BUS_8_BIT:
1840                 *bus_width = MSG_EXT_WDTR_BUS_8_BIT;
1841                 break;
1842         }
1843         if (tinfo != NULL) {
1844                 if (role == ROLE_TARGET)
1845                         *bus_width = MIN(tinfo->user.width, *bus_width);
1846                 else
1847                         *bus_width = MIN(tinfo->goal.width, *bus_width);
1848         }
1849 }
1850
1851 /*
1852  * Update the bitmask of targets for which the controller should
1853  * negotiate with at the next convenient oportunity.  This currently
1854  * means the next time we send the initial identify messages for
1855  * a new transaction.
1856  */
1857 int
1858 ahc_update_neg_request(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
1859                        struct ahc_tmode_tstate *tstate,
1860                        struct ahc_initiator_tinfo *tinfo, ahc_neg_type neg_type)
1861 {
1862         u_int auto_negotiate_orig;
1863
1864         auto_negotiate_orig = tstate->auto_negotiate;
1865         if (neg_type == AHC_NEG_ALWAYS) {
1866                 /*
1867                  * Force our "current" settings to be
1868                  * unknown so that unless a bus reset
1869                  * occurs the need to renegotiate is
1870                  * recorded persistently.
1871                  */
1872                 if ((ahc->features & AHC_WIDE) != 0)
1873                         tinfo->curr.width = AHC_WIDTH_UNKNOWN;
1874                 tinfo->curr.period = AHC_PERIOD_UNKNOWN;
1875                 tinfo->curr.offset = AHC_OFFSET_UNKNOWN;
1876         }
1877         if (tinfo->curr.period != tinfo->goal.period
1878          || tinfo->curr.width != tinfo->goal.width
1879          || tinfo->curr.offset != tinfo->goal.offset
1880          || tinfo->curr.ppr_options != tinfo->goal.ppr_options
1881          || (neg_type == AHC_NEG_IF_NON_ASYNC
1882           && (tinfo->goal.offset != 0
1883            || tinfo->goal.width != MSG_EXT_WDTR_BUS_8_BIT
1884            || tinfo->goal.ppr_options != 0)))
1885                 tstate->auto_negotiate |= devinfo->target_mask;
1886         else
1887                 tstate->auto_negotiate &= ~devinfo->target_mask;
1888
1889         return (auto_negotiate_orig != tstate->auto_negotiate);
1890 }
1891
1892 /*
1893  * Update the user/goal/curr tables of synchronous negotiation
1894  * parameters as well as, in the case of a current or active update,
1895  * any data structures on the host controller.  In the case of an
1896  * active update, the specified target is currently talking to us on
1897  * the bus, so the transfer parameter update must take effect
1898  * immediately.
1899  */
1900 void
1901 ahc_set_syncrate(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
1902                  struct ahc_syncrate *syncrate, u_int period,
1903                  u_int offset, u_int ppr_options, u_int type, int paused)
1904 {
1905         struct  ahc_initiator_tinfo *tinfo;
1906         struct  ahc_tmode_tstate *tstate;
1907         u_int   old_period;
1908         u_int   old_offset;
1909         u_int   old_ppr;
1910         int     active;
1911         int     update_needed;
1912
1913         active = (type & AHC_TRANS_ACTIVE) == AHC_TRANS_ACTIVE;
1914         update_needed = 0;
1915
1916         if (syncrate == NULL) {
1917                 period = 0;
1918                 offset = 0;
1919         }
1920
1921         tinfo = ahc_fetch_transinfo(ahc, devinfo->channel, devinfo->our_scsiid,
1922                                     devinfo->target, &tstate);
1923
1924         if ((type & AHC_TRANS_USER) != 0) {
1925                 tinfo->user.period = period;
1926                 tinfo->user.offset = offset;
1927                 tinfo->user.ppr_options = ppr_options;
1928         }
1929
1930         if ((type & AHC_TRANS_GOAL) != 0) {
1931                 tinfo->goal.period = period;
1932                 tinfo->goal.offset = offset;
1933                 tinfo->goal.ppr_options = ppr_options;
1934         }
1935
1936         old_period = tinfo->curr.period;
1937         old_offset = tinfo->curr.offset;
1938         old_ppr    = tinfo->curr.ppr_options;
1939
1940         if ((type & AHC_TRANS_CUR) != 0
1941          && (old_period != period
1942           || old_offset != offset
1943           || old_ppr != ppr_options)) {
1944                 u_int   scsirate;
1945
1946                 update_needed++;
1947                 scsirate = tinfo->scsirate;
1948                 if ((ahc->features & AHC_ULTRA2) != 0) {
1949
1950                         scsirate &= ~(SXFR_ULTRA2|SINGLE_EDGE|ENABLE_CRC);
1951                         if (syncrate != NULL) {
1952                                 scsirate |= syncrate->sxfr_u2;
1953                                 if ((ppr_options & MSG_EXT_PPR_DT_REQ) != 0)
1954                                         scsirate |= ENABLE_CRC;
1955                                 else
1956                                         scsirate |= SINGLE_EDGE;
1957                         }
1958                 } else {
1959
1960                         scsirate &= ~(SXFR|SOFS);
1961                         /*
1962                          * Ensure Ultra mode is set properly for
1963                          * this target.
1964                          */
1965                         tstate->ultraenb &= ~devinfo->target_mask;
1966                         if (syncrate != NULL) {
1967                                 if (syncrate->sxfr & ULTRA_SXFR) {
1968                                         tstate->ultraenb |=
1969                                                 devinfo->target_mask;
1970                                 }
1971                                 scsirate |= syncrate->sxfr & SXFR;
1972                                 scsirate |= offset & SOFS;
1973                         }
1974                         if (active) {
1975                                 u_int sxfrctl0;
1976
1977                                 sxfrctl0 = ahc_inb(ahc, SXFRCTL0);
1978                                 sxfrctl0 &= ~FAST20;
1979                                 if (tstate->ultraenb & devinfo->target_mask)
1980                                         sxfrctl0 |= FAST20;
1981                                 ahc_outb(ahc, SXFRCTL0, sxfrctl0);
1982                         }
1983                 }
1984                 if (active) {
1985                         ahc_outb(ahc, SCSIRATE, scsirate);
1986                         if ((ahc->features & AHC_ULTRA2) != 0)
1987                                 ahc_outb(ahc, SCSIOFFSET, offset);
1988                 }
1989
1990                 tinfo->scsirate = scsirate;
1991                 tinfo->curr.period = period;
1992                 tinfo->curr.offset = offset;
1993                 tinfo->curr.ppr_options = ppr_options;
1994
1995                 ahc_send_async(ahc, devinfo->channel, devinfo->target,
1996                                CAM_LUN_WILDCARD, AC_TRANSFER_NEG, NULL);
1997                 if (bootverbose) {
1998                         if (offset != 0) {
1999                                 kprintf("%s: target %d synchronous at %sMHz%s, "
2000                                        "offset = 0x%x\n", ahc_name(ahc),
2001                                        devinfo->target, syncrate->rate,
2002                                        (ppr_options & MSG_EXT_PPR_DT_REQ)
2003                                        ? " DT" : "", offset);
2004                         } else {
2005                                 kprintf("%s: target %d using "
2006                                        "asynchronous transfers\n",
2007                                        ahc_name(ahc), devinfo->target);
2008                         }
2009                 }
2010         }
2011
2012         update_needed += ahc_update_neg_request(ahc, devinfo, tstate,
2013                                                 tinfo, AHC_NEG_TO_GOAL);
2014
2015         if (update_needed)
2016                 ahc_update_pending_scbs(ahc);
2017 }
2018
2019 /*
2020  * Update the user/goal/curr tables of wide negotiation
2021  * parameters as well as, in the case of a current or active update,
2022  * any data structures on the host controller.  In the case of an
2023  * active update, the specified target is currently talking to us on
2024  * the bus, so the transfer parameter update must take effect
2025  * immediately.
2026  */
2027 void
2028 ahc_set_width(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
2029               u_int width, u_int type, int paused)
2030 {
2031         struct  ahc_initiator_tinfo *tinfo;
2032         struct  ahc_tmode_tstate *tstate;
2033         u_int   oldwidth;
2034         int     active;
2035         int     update_needed;
2036
2037         active = (type & AHC_TRANS_ACTIVE) == AHC_TRANS_ACTIVE;
2038         update_needed = 0;
2039         tinfo = ahc_fetch_transinfo(ahc, devinfo->channel, devinfo->our_scsiid,
2040                                     devinfo->target, &tstate);
2041
2042         if ((type & AHC_TRANS_USER) != 0)
2043                 tinfo->user.width = width;
2044
2045         if ((type & AHC_TRANS_GOAL) != 0)
2046                 tinfo->goal.width = width;
2047
2048         oldwidth = tinfo->curr.width;
2049         if ((type & AHC_TRANS_CUR) != 0 && oldwidth != width) {
2050                 u_int   scsirate;
2051
2052                 update_needed++;
2053                 scsirate =  tinfo->scsirate;
2054                 scsirate &= ~WIDEXFER;
2055                 if (width == MSG_EXT_WDTR_BUS_16_BIT)
2056                         scsirate |= WIDEXFER;
2057
2058                 tinfo->scsirate = scsirate;
2059
2060                 if (active)
2061                         ahc_outb(ahc, SCSIRATE, scsirate);
2062
2063                 tinfo->curr.width = width;
2064
2065                 ahc_send_async(ahc, devinfo->channel, devinfo->target,
2066                                CAM_LUN_WILDCARD, AC_TRANSFER_NEG, NULL);
2067                 if (bootverbose) {
2068                         kprintf("%s: target %d using %dbit transfers\n",
2069                                ahc_name(ahc), devinfo->target,
2070                                8 * (0x01 << width));
2071                 }
2072         }
2073
2074         update_needed += ahc_update_neg_request(ahc, devinfo, tstate,
2075                                                 tinfo, AHC_NEG_TO_GOAL);
2076         if (update_needed)
2077                 ahc_update_pending_scbs(ahc);
2078 }
2079
2080 /*
2081  * Update the current state of tagged queuing for a given target.
2082  */
2083 void
2084 ahc_set_tags(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
2085              ahc_queue_alg alg)
2086 {
2087         ahc_platform_set_tags(ahc, devinfo, alg);
2088         ahc_send_async(ahc, devinfo->channel, devinfo->target,
2089                        devinfo->lun, AC_TRANSFER_NEG, &alg);
2090 }
2091
2092 /*
2093  * When the transfer settings for a connection change, update any
2094  * in-transit SCBs to contain the new data so the hardware will
2095  * be set correctly during future (re)selections.
2096  */
2097 static void
2098 ahc_update_pending_scbs(struct ahc_softc *ahc)
2099 {
2100         struct  scb *pending_scb;
2101         int     pending_scb_count;
2102         int     i;
2103         int     paused;
2104         u_int   saved_scbptr;
2105
2106         /*
2107          * Traverse the pending SCB list and ensure that all of the
2108          * SCBs there have the proper settings.
2109          */
2110         pending_scb_count = 0;
2111         LIST_FOREACH(pending_scb, &ahc->pending_scbs, pending_links) {
2112                 struct ahc_devinfo devinfo;
2113                 struct hardware_scb *pending_hscb;
2114                 struct ahc_initiator_tinfo *tinfo;
2115                 struct ahc_tmode_tstate *tstate;
2116
2117                 ahc_scb_devinfo(ahc, &devinfo, pending_scb);
2118                 tinfo = ahc_fetch_transinfo(ahc, devinfo.channel,
2119                                             devinfo.our_scsiid,
2120                                             devinfo.target, &tstate);
2121                 pending_hscb = pending_scb->hscb;
2122                 pending_hscb->control &= ~ULTRAENB;
2123                 if ((tstate->ultraenb & devinfo.target_mask) != 0)
2124                         pending_hscb->control |= ULTRAENB;
2125                 pending_hscb->scsirate = tinfo->scsirate;
2126                 pending_hscb->scsioffset = tinfo->curr.offset;
2127                 if ((tstate->auto_negotiate & devinfo.target_mask) == 0
2128                  && (pending_scb->flags & SCB_AUTO_NEGOTIATE) != 0) {
2129                         pending_scb->flags &= ~SCB_AUTO_NEGOTIATE;
2130                         pending_hscb->control &= ~MK_MESSAGE;
2131                 }
2132                 ahc_sync_scb(ahc, pending_scb,
2133                              BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
2134                 pending_scb_count++;
2135         }
2136
2137         if (pending_scb_count == 0)
2138                 return;
2139
2140         if (ahc_is_paused(ahc)) {
2141                 paused = 1;
2142         } else {
2143                 paused = 0;
2144                 ahc_pause(ahc);
2145         }
2146
2147         saved_scbptr = ahc_inb(ahc, SCBPTR);
2148         /* Ensure that the hscbs down on the card match the new information */
2149         for (i = 0; i < ahc->scb_data->maxhscbs; i++) {
2150                 struct  hardware_scb *pending_hscb;
2151                 u_int   control;
2152                 u_int   scb_tag;
2153
2154                 ahc_outb(ahc, SCBPTR, i);
2155                 scb_tag = ahc_inb(ahc, SCB_TAG);
2156                 pending_scb = ahc_lookup_scb(ahc, scb_tag);
2157                 if (pending_scb == NULL)
2158                         continue;
2159
2160                 pending_hscb = pending_scb->hscb;
2161                 control = ahc_inb(ahc, SCB_CONTROL);
2162                 control &= ~(ULTRAENB|MK_MESSAGE);
2163                 control |= pending_hscb->control & (ULTRAENB|MK_MESSAGE);
2164                 ahc_outb(ahc, SCB_CONTROL, control);
2165                 ahc_outb(ahc, SCB_SCSIRATE, pending_hscb->scsirate);
2166                 ahc_outb(ahc, SCB_SCSIOFFSET, pending_hscb->scsioffset);
2167         }
2168         ahc_outb(ahc, SCBPTR, saved_scbptr);
2169
2170         if (paused == 0)
2171                 ahc_unpause(ahc);
2172 }
2173
2174 /**************************** Pathing Information *****************************/
2175 static void
2176 ahc_fetch_devinfo(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
2177 {
2178         u_int   saved_scsiid;
2179         role_t  role;
2180         int     our_id;
2181
2182         if (ahc_inb(ahc, SSTAT0) & TARGET)
2183                 role = ROLE_TARGET;
2184         else
2185                 role = ROLE_INITIATOR;
2186
2187         if (role == ROLE_TARGET
2188          && (ahc->features & AHC_MULTI_TID) != 0
2189          && (ahc_inb(ahc, SEQ_FLAGS)
2190            & (CMDPHASE_PENDING|TARG_CMD_PENDING|NO_DISCONNECT)) != 0) {
2191                 /* We were selected, so pull our id from TARGIDIN */
2192                 our_id = ahc_inb(ahc, TARGIDIN) & OID;
2193         } else if ((ahc->features & AHC_ULTRA2) != 0)
2194                 our_id = ahc_inb(ahc, SCSIID_ULTRA2) & OID;
2195         else
2196                 our_id = ahc_inb(ahc, SCSIID) & OID;
2197
2198         saved_scsiid = ahc_inb(ahc, SAVED_SCSIID);
2199         ahc_compile_devinfo(devinfo,
2200                             our_id,
2201                             SCSIID_TARGET(ahc, saved_scsiid),
2202                             ahc_inb(ahc, SAVED_LUN),
2203                             SCSIID_CHANNEL(ahc, saved_scsiid),
2204                             role);
2205 }
2206
2207 struct ahc_phase_table_entry*
2208 ahc_lookup_phase_entry(int phase)
2209 {
2210         struct ahc_phase_table_entry *entry;
2211         struct ahc_phase_table_entry *last_entry;
2212
2213         /*
2214          * num_phases doesn't include the default entry which
2215          * will be returned if the phase doesn't match.
2216          */
2217         last_entry = &ahc_phase_table[num_phases];
2218         for (entry = ahc_phase_table; entry < last_entry; entry++) {
2219                 if (phase == entry->phase)
2220                         break;
2221         }
2222         return (entry);
2223 }
2224
2225 void
2226 ahc_compile_devinfo(struct ahc_devinfo *devinfo, u_int our_id, u_int target,
2227                     u_int lun, char channel, role_t role)
2228 {
2229         devinfo->our_scsiid = our_id;
2230         devinfo->target = target;
2231         devinfo->lun = lun;
2232         devinfo->target_offset = target;
2233         devinfo->channel = channel;
2234         devinfo->role = role;
2235         if (channel == 'B')
2236                 devinfo->target_offset += 8;
2237         devinfo->target_mask = (0x01 << devinfo->target_offset);
2238 }
2239
2240 void
2241 ahc_print_devinfo(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
2242 {
2243         kprintf("%s:%c:%d:%d: ", ahc_name(ahc), devinfo->channel,
2244                devinfo->target, devinfo->lun);
2245 }
2246
2247 static void
2248 ahc_scb_devinfo(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
2249                 struct scb *scb)
2250 {
2251         role_t  role;
2252         int     our_id;
2253
2254         our_id = SCSIID_OUR_ID(scb->hscb->scsiid);
2255         role = ROLE_INITIATOR;
2256         if ((scb->flags & SCB_TARGET_SCB) != 0)
2257                 role = ROLE_TARGET;
2258         ahc_compile_devinfo(devinfo, our_id, SCB_GET_TARGET(ahc, scb),
2259                             SCB_GET_LUN(scb), SCB_GET_CHANNEL(ahc, scb), role);
2260 }
2261
2262
2263 /************************ Message Phase Processing ****************************/
2264 static void
2265 ahc_assert_atn(struct ahc_softc *ahc)
2266 {
2267         u_int scsisigo;
2268
2269         scsisigo = ATNO;
2270         if ((ahc->features & AHC_DT) == 0)
2271                 scsisigo |= ahc_inb(ahc, SCSISIGI);
2272         ahc_outb(ahc, SCSISIGO, scsisigo);
2273 }
2274
2275 /*
2276  * When an initiator transaction with the MK_MESSAGE flag either reconnects
2277  * or enters the initial message out phase, we are interrupted.  Fill our
2278  * outgoing message buffer with the appropriate message and beging handing
2279  * the message phase(s) manually.
2280  */
2281 static void
2282 ahc_setup_initiator_msgout(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
2283                            struct scb *scb)
2284 {
2285         /*
2286          * To facilitate adding multiple messages together,
2287          * each routine should increment the index and len
2288          * variables instead of setting them explicitly.
2289          */
2290         ahc->msgout_index = 0;
2291         ahc->msgout_len = 0;
2292
2293         if ((scb->flags & SCB_DEVICE_RESET) == 0
2294          && ahc_inb(ahc, MSG_OUT) == MSG_IDENTIFYFLAG) {
2295                 u_int identify_msg;
2296
2297                 identify_msg = MSG_IDENTIFYFLAG | SCB_GET_LUN(scb);
2298                 if ((scb->hscb->control & DISCENB) != 0)
2299                         identify_msg |= MSG_IDENTIFY_DISCFLAG;
2300                 ahc->msgout_buf[ahc->msgout_index++] = identify_msg;
2301                 ahc->msgout_len++;
2302
2303                 if ((scb->hscb->control & TAG_ENB) != 0) {
2304                         ahc->msgout_buf[ahc->msgout_index++] =
2305                             scb->hscb->control & (TAG_ENB|SCB_TAG_TYPE);
2306                         ahc->msgout_buf[ahc->msgout_index++] = scb->hscb->tag;
2307                         ahc->msgout_len += 2;
2308                 }
2309         }
2310
2311         if (scb->flags & SCB_DEVICE_RESET) {
2312                 ahc->msgout_buf[ahc->msgout_index++] = MSG_BUS_DEV_RESET;
2313                 ahc->msgout_len++;
2314                 ahc_print_path(ahc, scb);
2315                 kprintf("Bus Device Reset Message Sent\n");
2316                 /*
2317                  * Clear our selection hardware in advance of
2318                  * the busfree.  We may have an entry in the waiting
2319                  * Q for this target, and we don't want to go about
2320                  * selecting while we handle the busfree and blow it
2321                  * away.
2322                  */
2323                 ahc_outb(ahc, SCSISEQ, (ahc_inb(ahc, SCSISEQ) & ~ENSELO));
2324         } else if ((scb->flags & SCB_ABORT) != 0) {
2325                 if ((scb->hscb->control & TAG_ENB) != 0)
2326                         ahc->msgout_buf[ahc->msgout_index++] = MSG_ABORT_TAG;
2327                 else
2328                         ahc->msgout_buf[ahc->msgout_index++] = MSG_ABORT;
2329                 ahc->msgout_len++;
2330                 ahc_print_path(ahc, scb);
2331                 kprintf("Abort%s Message Sent\n",
2332                        (scb->hscb->control & TAG_ENB) != 0 ? " Tag" : "");
2333                 /*
2334                  * Clear our selection hardware in advance of
2335                  * the busfree.  We may have an entry in the waiting
2336                  * Q for this target, and we don't want to go about
2337                  * selecting while we handle the busfree and blow it
2338                  * away.
2339                  */
2340                 ahc_outb(ahc, SCSISEQ, (ahc_inb(ahc, SCSISEQ) & ~ENSELO));
2341         } else if ((scb->flags & (SCB_AUTO_NEGOTIATE|SCB_NEGOTIATE)) != 0) {
2342                 ahc_build_transfer_msg(ahc, devinfo);
2343         } else {
2344                 kprintf("ahc_intr: AWAITING_MSG for an SCB that "
2345                        "does not have a waiting message\n");
2346                 kprintf("SCSIID = %x, target_mask = %x\n", scb->hscb->scsiid,
2347                        devinfo->target_mask);
2348                 panic("SCB = %d, SCB Control = %x, MSG_OUT = %x "
2349                       "SCB flags = %x", scb->hscb->tag, scb->hscb->control,
2350                       ahc_inb(ahc, MSG_OUT), scb->flags);
2351         }
2352
2353         /*
2354          * Clear the MK_MESSAGE flag from the SCB so we aren't
2355          * asked to send this message again.
2356          */
2357         ahc_outb(ahc, SCB_CONTROL, ahc_inb(ahc, SCB_CONTROL) & ~MK_MESSAGE);
2358         scb->hscb->control &= ~MK_MESSAGE;
2359         ahc->msgout_index = 0;
2360         ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
2361 }
2362
2363 /*
2364  * Build an appropriate transfer negotiation message for the
2365  * currently active target.
2366  */
2367 static void
2368 ahc_build_transfer_msg(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
2369 {
2370         /*
2371          * We need to initiate transfer negotiations.
2372          * If our current and goal settings are identical,
2373          * we want to renegotiate due to a check condition.
2374          */
2375         struct  ahc_initiator_tinfo *tinfo;
2376         struct  ahc_tmode_tstate *tstate;
2377         struct  ahc_syncrate *rate;
2378         int     dowide;
2379         int     dosync;
2380         int     doppr;
2381         u_int   period;
2382         u_int   ppr_options;
2383         u_int   offset;
2384
2385         tinfo = ahc_fetch_transinfo(ahc, devinfo->channel, devinfo->our_scsiid,
2386                                     devinfo->target, &tstate);
2387         /*
2388          * Filter our period based on the current connection.
2389          * If we can't perform DT transfers on this segment (not in LVD
2390          * mode for instance), then our decision to issue a PPR message
2391          * may change.
2392          */
2393         period = tinfo->goal.period;
2394         offset = tinfo->goal.offset;
2395         ppr_options = tinfo->goal.ppr_options;
2396         /* Target initiated PPR is not allowed in the SCSI spec */
2397         if (devinfo->role == ROLE_TARGET)
2398                 ppr_options = 0;
2399         rate = ahc_devlimited_syncrate(ahc, tinfo, &period,
2400                                        &ppr_options, devinfo->role);
2401         dowide = tinfo->curr.width != tinfo->goal.width;
2402         dosync = tinfo->curr.offset != offset || tinfo->curr.period != period;
2403         /*
2404          * Only use PPR if we have options that need it, even if the device
2405          * claims to support it.  There might be an expander in the way
2406          * that doesn't.
2407          */
2408         doppr = ppr_options != 0;
2409
2410         if (!dowide && !dosync && !doppr) {
2411                 dowide = tinfo->goal.width != MSG_EXT_WDTR_BUS_8_BIT;
2412                 dosync = tinfo->goal.offset != 0;
2413         }
2414
2415         if (!dowide && !dosync && !doppr) {
2416                 /*
2417                  * Force async with a WDTR message if we have a wide bus,
2418                  * or just issue an SDTR with a 0 offset.
2419                  */
2420                 if ((ahc->features & AHC_WIDE) != 0)
2421                         dowide = 1;
2422                 else
2423                         dosync = 1;
2424
2425                 if (bootverbose) {
2426                         ahc_print_devinfo(ahc, devinfo);
2427                         kprintf("Ensuring async\n");
2428                 }
2429         }
2430
2431         /* Target initiated PPR is not allowed in the SCSI spec */
2432         if (devinfo->role == ROLE_TARGET)
2433                 doppr = 0;
2434
2435         /*
2436          * Both the PPR message and SDTR message require the
2437          * goal syncrate to be limited to what the target device
2438          * is capable of handling (based on whether an LVD->SE
2439          * expander is on the bus), so combine these two cases.
2440          * Regardless, guarantee that if we are using WDTR and SDTR
2441          * messages that WDTR comes first.
2442          */
2443         if (doppr || (dosync && !dowide)) {
2444
2445                 offset = tinfo->goal.offset;
2446                 ahc_validate_offset(ahc, tinfo, rate, &offset,
2447                                     doppr ? tinfo->goal.width
2448                                           : tinfo->curr.width,
2449                                     devinfo->role);
2450                 if (doppr) {
2451                         ahc_construct_ppr(ahc, devinfo, period, offset,
2452                                           tinfo->goal.width, ppr_options);
2453                 } else {
2454                         ahc_construct_sdtr(ahc, devinfo, period, offset);
2455                 }
2456         } else {
2457                 ahc_construct_wdtr(ahc, devinfo, tinfo->goal.width);
2458         }
2459 }
2460
2461 /*
2462  * Build a synchronous negotiation message in our message
2463  * buffer based on the input parameters.
2464  */
2465 static void
2466 ahc_construct_sdtr(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
2467                    u_int period, u_int offset)
2468 {
2469         if (offset == 0)
2470                 period = AHC_ASYNC_XFER_PERIOD;
2471         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXTENDED;
2472         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXT_SDTR_LEN;
2473         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXT_SDTR;
2474         ahc->msgout_buf[ahc->msgout_index++] = period;
2475         ahc->msgout_buf[ahc->msgout_index++] = offset;
2476         ahc->msgout_len += 5;
2477         if (bootverbose) {
2478                 kprintf("(%s:%c:%d:%d): Sending SDTR period %x, offset %x\n",
2479                        ahc_name(ahc), devinfo->channel, devinfo->target,
2480                        devinfo->lun, period, offset);
2481         }
2482 }
2483
2484 /*
2485  * Build a wide negotiation message in our message
2486  * buffer based on the input parameters.
2487  */
2488 static void
2489 ahc_construct_wdtr(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
2490                    u_int bus_width)
2491 {
2492         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXTENDED;
2493         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXT_WDTR_LEN;
2494         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXT_WDTR;
2495         ahc->msgout_buf[ahc->msgout_index++] = bus_width;
2496         ahc->msgout_len += 4;
2497         if (bootverbose) {
2498                 kprintf("(%s:%c:%d:%d): Sending WDTR %x\n",
2499                        ahc_name(ahc), devinfo->channel, devinfo->target,
2500                        devinfo->lun, bus_width);
2501         }
2502 }
2503
2504 /*
2505  * Build a parallel protocol request message in our message
2506  * buffer based on the input parameters.
2507  */
2508 static void
2509 ahc_construct_ppr(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
2510                   u_int period, u_int offset, u_int bus_width,
2511                   u_int ppr_options)
2512 {
2513         if (offset == 0)
2514                 period = AHC_ASYNC_XFER_PERIOD;
2515         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXTENDED;
2516         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXT_PPR_LEN;
2517         ahc->msgout_buf[ahc->msgout_index++] = MSG_EXT_PPR;
2518         ahc->msgout_buf[ahc->msgout_index++] = period;
2519         ahc->msgout_buf[ahc->msgout_index++] = 0;
2520         ahc->msgout_buf[ahc->msgout_index++] = offset;
2521         ahc->msgout_buf[ahc->msgout_index++] = bus_width;
2522         ahc->msgout_buf[ahc->msgout_index++] = ppr_options;
2523         ahc->msgout_len += 8;
2524         if (bootverbose) {
2525                 kprintf("(%s:%c:%d:%d): Sending PPR bus_width %x, period %x, "
2526                        "offset %x, ppr_options %x\n", ahc_name(ahc),
2527                        devinfo->channel, devinfo->target, devinfo->lun,
2528                        bus_width, period, offset, ppr_options);
2529         }
2530 }
2531
2532 /*
2533  * Clear any active message state.
2534  */
2535 static void
2536 ahc_clear_msg_state(struct ahc_softc *ahc)
2537 {
2538         ahc->msgout_len = 0;
2539         ahc->msgin_index = 0;
2540         ahc->msg_type = MSG_TYPE_NONE;
2541         if ((ahc_inb(ahc, SCSISIGI) & ATNI) != 0) {
2542                 /*
2543                  * The target didn't care to respond to our
2544                  * message request, so clear ATN.
2545                  */
2546                 ahc_outb(ahc, CLRSINT1, CLRATNO);
2547         }
2548         ahc_outb(ahc, MSG_OUT, MSG_NOOP);
2549         ahc_outb(ahc, SEQ_FLAGS2,
2550                  ahc_inb(ahc, SEQ_FLAGS2) & ~TARGET_MSG_PENDING);
2551 }
2552
2553 static void
2554 ahc_handle_proto_violation(struct ahc_softc *ahc)
2555 {
2556         struct  ahc_devinfo devinfo;
2557         struct  scb *scb;
2558         u_int   scbid;
2559         u_int   seq_flags;
2560         u_int   curphase;
2561         u_int   lastphase;
2562         int     found;
2563
2564         ahc_fetch_devinfo(ahc, &devinfo);
2565         scbid = ahc_inb(ahc, SCB_TAG);
2566         scb = ahc_lookup_scb(ahc, scbid);
2567         seq_flags = ahc_inb(ahc, SEQ_FLAGS);
2568         curphase = ahc_inb(ahc, SCSISIGI) & PHASE_MASK;
2569         lastphase = ahc_inb(ahc, LASTPHASE);
2570         if ((seq_flags & NOT_IDENTIFIED) != 0) {
2571
2572                 /*
2573                  * The reconnecting target either did not send an
2574                  * identify message, or did, but we didn't find an SCB
2575                  * to match.
2576                  */
2577                 ahc_print_devinfo(ahc, &devinfo);
2578                 kprintf("Target did not send an IDENTIFY message. "
2579                        "LASTPHASE = 0x%x.\n", lastphase);
2580                 scb = NULL;
2581         } else if (scb == NULL) {
2582                 /*
2583                  * We don't seem to have an SCB active for this
2584                  * transaction.  Print an error and reset the bus.
2585                  */
2586                 ahc_print_devinfo(ahc, &devinfo);
2587                 kprintf("No SCB found during protocol violation\n");
2588                 goto proto_violation_reset;
2589         } else {
2590                 aic_set_transaction_status(scb, CAM_SEQUENCE_FAIL);
2591                 if ((seq_flags & NO_CDB_SENT) != 0) {
2592                         ahc_print_path(ahc, scb);
2593                         kprintf("No or incomplete CDB sent to device.\n");
2594                 } else if ((ahc_inb(ahc, SCB_CONTROL) & STATUS_RCVD) == 0) {
2595                         /*
2596                          * The target never bothered to provide status to
2597                          * us prior to completing the command.  Since we don't
2598                          * know the disposition of this command, we must attempt
2599                          * to abort it.  Assert ATN and prepare to send an abort
2600                          * message.
2601                          */
2602                         ahc_print_path(ahc, scb);
2603                         kprintf("Completed command without status.\n");
2604                 } else {
2605                         ahc_print_path(ahc, scb);
2606                         kprintf("Unknown protocol violation.\n");
2607                         ahc_dump_card_state(ahc);
2608                 }
2609         }
2610         if ((lastphase & ~P_DATAIN_DT) == 0
2611          || lastphase == P_COMMAND) {
2612 proto_violation_reset:
2613                 /*
2614                  * Target either went directly to data/command
2615                  * phase or didn't respond to our ATN.
2616                  * The only safe thing to do is to blow
2617                  * it away with a bus reset.
2618                  */
2619                 found = ahc_reset_channel(ahc, 'A', TRUE);
2620                 kprintf("%s: Issued Channel %c Bus Reset. "
2621                        "%d SCBs aborted\n", ahc_name(ahc), 'A', found);
2622         } else {
2623                 /*
2624                  * Leave the selection hardware off in case
2625                  * this abort attempt will affect yet to
2626                  * be sent commands.
2627                  */
2628                 ahc_outb(ahc, SCSISEQ,
2629                          ahc_inb(ahc, SCSISEQ) & ~ENSELO);
2630                 ahc_assert_atn(ahc);
2631                 ahc_outb(ahc, MSG_OUT, HOST_MSG);
2632                 if (scb == NULL) {
2633                         ahc_print_devinfo(ahc, &devinfo);
2634                         ahc->msgout_buf[0] = MSG_ABORT_TASK;
2635                         ahc->msgout_len = 1;
2636                         ahc->msgout_index = 0;
2637                         ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
2638                 } else {
2639                         ahc_print_path(ahc, scb);
2640                         scb->flags |= SCB_ABORT;
2641                 }
2642                 kprintf("Protocol violation %s.  Attempting to abort.\n",
2643                        ahc_lookup_phase_entry(curphase)->phasemsg);
2644         }
2645 }
2646
2647 /*
2648  * Manual message loop handler.
2649  */
2650 static void
2651 ahc_handle_message_phase(struct ahc_softc *ahc)
2652
2653         struct  ahc_devinfo devinfo;
2654         u_int   bus_phase;
2655         int     end_session;
2656
2657         ahc_fetch_devinfo(ahc, &devinfo);
2658         end_session = FALSE;
2659         bus_phase = ahc_inb(ahc, SCSISIGI) & PHASE_MASK;
2660
2661 reswitch:
2662         switch (ahc->msg_type) {
2663         case MSG_TYPE_INITIATOR_MSGOUT:
2664         {
2665                 int lastbyte;
2666                 int phasemis;
2667                 int msgdone;
2668
2669                 if (ahc->msgout_len == 0)
2670                         panic("HOST_MSG_LOOP interrupt with no active message");
2671
2672 #ifdef AHC_DEBUG
2673                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2674                         ahc_print_devinfo(ahc, &devinfo);
2675                         kprintf("INITIATOR_MSG_OUT");
2676                 }
2677 #endif
2678                 phasemis = bus_phase != P_MESGOUT;
2679                 if (phasemis) {
2680 #ifdef AHC_DEBUG
2681                         if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2682                                 kprintf(" PHASEMIS %s\n",
2683                                        ahc_lookup_phase_entry(bus_phase)
2684                                                              ->phasemsg);
2685                         }
2686 #endif
2687                         if (bus_phase == P_MESGIN) {
2688                                 /*
2689                                  * Change gears and see if
2690                                  * this messages is of interest to
2691                                  * us or should be passed back to
2692                                  * the sequencer.
2693                                  */
2694                                 ahc_outb(ahc, CLRSINT1, CLRATNO);
2695                                 ahc->send_msg_perror = FALSE;
2696                                 ahc->msg_type = MSG_TYPE_INITIATOR_MSGIN;
2697                                 ahc->msgin_index = 0;
2698                                 goto reswitch;
2699                         }
2700                         end_session = TRUE;
2701                         break;
2702                 }
2703
2704                 if (ahc->send_msg_perror) {
2705                         ahc_outb(ahc, CLRSINT1, CLRATNO);
2706                         ahc_outb(ahc, CLRSINT1, CLRREQINIT);
2707 #ifdef AHC_DEBUG
2708                         if ((ahc_debug & AHC_SHOW_MESSAGES) != 0)
2709                                 kprintf(" byte 0x%x\n", ahc->send_msg_perror);
2710 #endif
2711                         ahc_outb(ahc, SCSIDATL, MSG_PARITY_ERROR);
2712                         break;
2713                 }
2714
2715                 msgdone = ahc->msgout_index == ahc->msgout_len;
2716                 if (msgdone) {
2717                         /*
2718                          * The target has requested a retry.
2719                          * Re-assert ATN, reset our message index to
2720                          * 0, and try again.
2721                          */
2722                         ahc->msgout_index = 0;
2723                         ahc_assert_atn(ahc);
2724                 }
2725
2726                 lastbyte = ahc->msgout_index == (ahc->msgout_len - 1);
2727                 if (lastbyte) {
2728                         /* Last byte is signified by dropping ATN */
2729                         ahc_outb(ahc, CLRSINT1, CLRATNO);
2730                 }
2731
2732                 /*
2733                  * Clear our interrupt status and present
2734                  * the next byte on the bus.
2735                  */
2736                 ahc_outb(ahc, CLRSINT1, CLRREQINIT);
2737 #ifdef AHC_DEBUG
2738                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0)
2739                         kprintf(" byte 0x%x\n",
2740                                ahc->msgout_buf[ahc->msgout_index]);
2741 #endif
2742                 ahc_outb(ahc, SCSIDATL, ahc->msgout_buf[ahc->msgout_index++]);
2743                 break;
2744         }
2745         case MSG_TYPE_INITIATOR_MSGIN:
2746         {
2747                 int phasemis;
2748                 int message_done;
2749
2750 #ifdef AHC_DEBUG
2751                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2752                         ahc_print_devinfo(ahc, &devinfo);
2753                         kprintf("INITIATOR_MSG_IN");
2754                 }
2755 #endif
2756                 phasemis = bus_phase != P_MESGIN;
2757                 if (phasemis) {
2758 #ifdef AHC_DEBUG
2759                         if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2760                                 kprintf(" PHASEMIS %s\n",
2761                                        ahc_lookup_phase_entry(bus_phase)
2762                                                              ->phasemsg);
2763                         }
2764 #endif
2765                         ahc->msgin_index = 0;
2766                         if (bus_phase == P_MESGOUT
2767                          && (ahc->send_msg_perror == TRUE
2768                           || (ahc->msgout_len != 0
2769                            && ahc->msgout_index == 0))) {
2770                                 ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
2771                                 goto reswitch;
2772                         }
2773                         end_session = TRUE;
2774                         break;
2775                 }
2776
2777                 /* Pull the byte in without acking it */
2778                 ahc->msgin_buf[ahc->msgin_index] = ahc_inb(ahc, SCSIBUSL);
2779 #ifdef AHC_DEBUG
2780                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0)
2781                         kprintf(" byte 0x%x\n",
2782                                ahc->msgin_buf[ahc->msgin_index]);
2783 #endif
2784
2785                 message_done = ahc_parse_msg(ahc, &devinfo);
2786
2787                 if (message_done) {
2788                         /*
2789                          * Clear our incoming message buffer in case there
2790                          * is another message following this one.
2791                          */
2792                         ahc->msgin_index = 0;
2793
2794                         /*
2795                          * If this message illicited a response,
2796                          * assert ATN so the target takes us to the
2797                          * message out phase.
2798                          */
2799                         if (ahc->msgout_len != 0) {
2800 #ifdef AHC_DEBUG
2801                                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2802                                         ahc_print_devinfo(ahc, &devinfo);
2803                                         kprintf("Asserting ATN for response\n");
2804                                 }
2805 #endif
2806                                 ahc_assert_atn(ahc);
2807                         }
2808                 } else 
2809                         ahc->msgin_index++;
2810
2811                 if (message_done == MSGLOOP_TERMINATED) {
2812                         end_session = TRUE;
2813                 } else {
2814                         /* Ack the byte */
2815                         ahc_outb(ahc, CLRSINT1, CLRREQINIT);
2816                         ahc_inb(ahc, SCSIDATL);
2817                 }
2818                 break;
2819         }
2820         case MSG_TYPE_TARGET_MSGIN:
2821         {
2822                 int msgdone;
2823
2824                 if (ahc->msgout_len == 0)
2825                         panic("Target MSGIN with no active message");
2826
2827 #ifdef AHC_DEBUG
2828                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2829                         ahc_print_devinfo(ahc, &devinfo);
2830                         kprintf("TARGET_MSG_IN");
2831                 }
2832 #endif
2833
2834                 /*
2835                  * If we interrupted a mesgout session, the initiator
2836                  * will not know this until our first REQ.  So, we
2837                  * only honor mesgout requests after we've sent our
2838                  * first byte.
2839                  */
2840                 if ((ahc_inb(ahc, SCSISIGI) & ATNI) != 0
2841                  && ahc->msgout_index > 0) {
2842
2843                         /*
2844                          * Change gears and see if this messages is
2845                          * of interest to us or should be passed back
2846                          * to the sequencer.
2847                          */
2848 #ifdef AHC_DEBUG
2849                         if ((ahc_debug & AHC_SHOW_MESSAGES) != 0)
2850                                 kprintf(" Honoring ATN Request.\n");
2851 #endif
2852                         ahc->msg_type = MSG_TYPE_TARGET_MSGOUT;
2853
2854                         /*
2855                          * Disable SCSI Programmed I/O during the
2856                          * phase change so as to avoid phantom REQs.
2857                          */
2858                         ahc_outb(ahc, SXFRCTL0,
2859                                  ahc_inb(ahc, SXFRCTL0) & ~SPIOEN);
2860
2861                         /*
2862                          * Since SPIORDY asserts when ACK is asserted
2863                          * for P_MSGOUT, and SPIORDY's assertion triggered
2864                          * our entry into this routine, wait for ACK to
2865                          * *de-assert* before changing phases.
2866                          */
2867                         while ((ahc_inb(ahc, SCSISIGI) & ACKI) != 0)
2868                                 ;
2869
2870                         ahc_outb(ahc, SCSISIGO, P_MESGOUT | BSYO);
2871
2872                         /*
2873                          * All phase line changes require a bus
2874                          * settle delay before REQ is asserted.
2875                          * [SCSI SPI4 10.7.1]
2876                          */
2877                         ahc_flush_device_writes(ahc);
2878                         aic_delay(AHC_BUSSETTLE_DELAY);
2879
2880                         ahc->msgin_index = 0;
2881                         /* Enable SCSI Programmed I/O to REQ for first byte */
2882                         ahc_outb(ahc, SXFRCTL0,
2883                                  ahc_inb(ahc, SXFRCTL0) | SPIOEN);
2884                         break;
2885                 }
2886
2887                 msgdone = ahc->msgout_index == ahc->msgout_len;
2888                 if (msgdone) {
2889                         ahc_outb(ahc, SXFRCTL0,
2890                                  ahc_inb(ahc, SXFRCTL0) & ~SPIOEN);
2891                         end_session = TRUE;
2892                         break;
2893                 }
2894
2895                 /*
2896                  * Present the next byte on the bus.
2897                  */
2898 #ifdef AHC_DEBUG
2899                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0)
2900                         kprintf(" byte 0x%x\n",
2901                                ahc->msgout_buf[ahc->msgout_index]);
2902 #endif
2903                 ahc_outb(ahc, SXFRCTL0, ahc_inb(ahc, SXFRCTL0) | SPIOEN);
2904                 ahc_outb(ahc, SCSIDATL, ahc->msgout_buf[ahc->msgout_index++]);
2905                 break;
2906         }
2907         case MSG_TYPE_TARGET_MSGOUT:
2908         {
2909                 int lastbyte;
2910                 int msgdone;
2911
2912 #ifdef AHC_DEBUG
2913                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2914                         ahc_print_devinfo(ahc, &devinfo);
2915                         kprintf("TARGET_MSG_OUT");
2916                 }
2917 #endif
2918                 /*
2919                  * The initiator signals that this is
2920                  * the last byte by dropping ATN.
2921                  */
2922                 lastbyte = (ahc_inb(ahc, SCSISIGI) & ATNI) == 0;
2923
2924                 /*
2925                  * Read the latched byte, but turn off SPIOEN first
2926                  * so that we don't inadvertently cause a REQ for the
2927                  * next byte.
2928                  */
2929                 ahc_outb(ahc, SXFRCTL0, ahc_inb(ahc, SXFRCTL0) & ~SPIOEN);
2930                 ahc->msgin_buf[ahc->msgin_index] = ahc_inb(ahc, SCSIDATL);
2931
2932 #ifdef AHC_DEBUG
2933                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0)
2934                         kprintf(" byte 0x%x\n",
2935                                ahc->msgin_buf[ahc->msgin_index]);
2936 #endif
2937
2938                 msgdone = ahc_parse_msg(ahc, &devinfo);
2939                 if (msgdone == MSGLOOP_TERMINATED) {
2940                         /*
2941                          * The message is *really* done in that it caused
2942                          * us to go to bus free.  The sequencer has already
2943                          * been reset at this point, so pull the ejection
2944                          * handle.
2945                          */
2946                         return;
2947                 }
2948                 
2949                 ahc->msgin_index++;
2950
2951                 /*
2952                  * XXX Read spec about initiator dropping ATN too soon
2953                  *     and use msgdone to detect it.
2954                  */
2955                 if (msgdone == MSGLOOP_MSGCOMPLETE) {
2956                         ahc->msgin_index = 0;
2957
2958                         /*
2959                          * If this message illicited a response, transition
2960                          * to the Message in phase and send it.
2961                          */
2962                         if (ahc->msgout_len != 0) {
2963 #ifdef AHC_DEBUG
2964                                 if ((ahc_debug & AHC_SHOW_MESSAGES) != 0) {
2965                                         ahc_print_devinfo(ahc, &devinfo);
2966                                         kprintf(" preparing response.\n");
2967                                 }
2968 #endif
2969                                 ahc_outb(ahc, SCSISIGO, P_MESGIN | BSYO);
2970
2971                                 /*
2972                                  * All phase line changes require a bus
2973                                  * settle delay before REQ is asserted.
2974                                  * [SCSI SPI4 10.7.1]  When transitioning
2975                                  * from an OUT to an IN phase, we must
2976                                  * also wait a data release delay to allow
2977                                  * the initiator time to release the data
2978                                  * lines. [SCSI SPI4 10.12]
2979                                  */
2980                                 ahc_flush_device_writes(ahc);
2981                                 aic_delay(AHC_BUSSETTLE_DELAY
2982                                         + AHC_DATARELEASE_DELAY);
2983
2984                                 /*
2985                                  * Enable SCSI Programmed I/O.  This will
2986                                  * immediately cause SPIORDY to assert,
2987                                  * and the sequencer will call our message
2988                                  * loop again.
2989                                  */
2990                                 ahc_outb(ahc, SXFRCTL0,
2991                                          ahc_inb(ahc, SXFRCTL0) | SPIOEN);
2992                                 ahc->msg_type = MSG_TYPE_TARGET_MSGIN;
2993                                 ahc->msgin_index = 0;
2994                                 break;
2995                         }
2996                 }
2997
2998                 if (lastbyte)
2999                         end_session = TRUE;
3000                 else {
3001                         /* Ask for the next byte. */
3002                         ahc_outb(ahc, SXFRCTL0,
3003                                  ahc_inb(ahc, SXFRCTL0) | SPIOEN);
3004                 }
3005
3006                 break;
3007         }
3008         default:
3009                 panic("Unknown REQINIT message type");
3010         }
3011
3012         if (end_session) {
3013                 ahc_clear_msg_state(ahc);
3014                 ahc_outb(ahc, RETURN_1, EXIT_MSG_LOOP);
3015         } else
3016                 ahc_outb(ahc, RETURN_1, CONT_MSG_LOOP);
3017 }
3018
3019 /*
3020  * See if we sent a particular extended message to the target.
3021  * If "full" is true, return true only if the target saw the full
3022  * message.  If "full" is false, return true if the target saw at
3023  * least the first byte of the message.
3024  */
3025 static int
3026 ahc_sent_msg(struct ahc_softc *ahc, ahc_msgtype type, u_int msgval, int full)
3027 {
3028         int found;
3029         u_int index;
3030
3031         found = FALSE;
3032         index = 0;
3033
3034         while (index < ahc->msgout_len) {
3035                 if (ahc->msgout_buf[index] == MSG_EXTENDED) {
3036                         u_int end_index;
3037
3038                         end_index = index + 1 + ahc->msgout_buf[index + 1];
3039                         if (ahc->msgout_buf[index+2] == msgval
3040                          && type == AHCMSG_EXT) {
3041
3042                                 if (full) {
3043                                         if (ahc->msgout_index > end_index)
3044                                                 found = TRUE;
3045                                 } else if (ahc->msgout_index > index)
3046                                         found = TRUE;
3047                         }
3048                         index = end_index;
3049                 } else if (ahc->msgout_buf[index] >= MSG_SIMPLE_TASK
3050                         && ahc->msgout_buf[index] <= MSG_IGN_WIDE_RESIDUE) {
3051
3052                         /* Skip tag type and tag id or residue param*/
3053                         index += 2;
3054                 } else {
3055                         /* Single byte message */
3056                         if (type == AHCMSG_1B
3057                          && ahc->msgout_buf[index] == msgval
3058                          && ahc->msgout_index > index)
3059                                 found = TRUE;
3060                         index++;
3061                 }
3062
3063                 if (found)
3064                         break;
3065         }
3066         return (found);
3067 }
3068
3069 /*
3070  * Wait for a complete incoming message, parse it, and respond accordingly.
3071  */
3072 static int
3073 ahc_parse_msg(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
3074 {
3075         struct  ahc_initiator_tinfo *tinfo;
3076         struct  ahc_tmode_tstate *tstate;
3077         int     reject;
3078         int     done;
3079         int     response;
3080         u_int   targ_scsirate;
3081
3082         done = MSGLOOP_IN_PROG;
3083         response = FALSE;
3084         reject = FALSE;
3085         tinfo = ahc_fetch_transinfo(ahc, devinfo->channel, devinfo->our_scsiid,
3086                                     devinfo->target, &tstate);
3087         targ_scsirate = tinfo->scsirate;
3088
3089         /*
3090          * Parse as much of the message as is available,
3091          * rejecting it if we don't support it.  When
3092          * the entire message is available and has been
3093          * handled, return MSGLOOP_MSGCOMPLETE, indicating
3094          * that we have parsed an entire message.
3095          *
3096          * In the case of extended messages, we accept the length
3097          * byte outright and perform more checking once we know the
3098          * extended message type.
3099          */
3100         switch (ahc->msgin_buf[0]) {
3101         case MSG_DISCONNECT:
3102         case MSG_SAVEDATAPOINTER:
3103         case MSG_CMDCOMPLETE:
3104         case MSG_RESTOREPOINTERS:
3105         case MSG_IGN_WIDE_RESIDUE:
3106                 /*
3107                  * End our message loop as these are messages
3108                  * the sequencer handles on its own.
3109                  */
3110                 done = MSGLOOP_TERMINATED;
3111                 break;
3112         case MSG_MESSAGE_REJECT:
3113                 response = ahc_handle_msg_reject(ahc, devinfo);
3114                 /* FALLTHROUGH */
3115         case MSG_NOOP:
3116                 done = MSGLOOP_MSGCOMPLETE;
3117                 break;
3118         case MSG_EXTENDED:
3119         {
3120                 /* Wait for enough of the message to begin validation */
3121                 if (ahc->msgin_index < 2)
3122                         break;
3123                 switch (ahc->msgin_buf[2]) {
3124                 case MSG_EXT_SDTR:
3125                 {
3126                         struct   ahc_syncrate *syncrate;
3127                         u_int    period;
3128                         u_int    ppr_options;
3129                         u_int    offset;
3130                         u_int    saved_offset;
3131                         
3132                         if (ahc->msgin_buf[1] != MSG_EXT_SDTR_LEN) {
3133                                 reject = TRUE;
3134                                 break;
3135                         }
3136
3137                         /*
3138                          * Wait until we have both args before validating
3139                          * and acting on this message.
3140                          *
3141                          * Add one to MSG_EXT_SDTR_LEN to account for
3142                          * the extended message preamble.
3143                          */
3144                         if (ahc->msgin_index < (MSG_EXT_SDTR_LEN + 1))
3145                                 break;
3146
3147                         period = ahc->msgin_buf[3];
3148                         ppr_options = 0;
3149                         saved_offset = offset = ahc->msgin_buf[4];
3150                         syncrate = ahc_devlimited_syncrate(ahc, tinfo, &period,
3151                                                            &ppr_options,
3152                                                            devinfo->role);
3153                         ahc_validate_offset(ahc, tinfo, syncrate, &offset,
3154                                             targ_scsirate & WIDEXFER,
3155                                             devinfo->role);
3156                         if (bootverbose) {
3157                                 kprintf("(%s:%c:%d:%d): Received "
3158                                        "SDTR period %x, offset %x\n\t"
3159                                        "Filtered to period %x, offset %x\n",
3160                                        ahc_name(ahc), devinfo->channel,
3161                                        devinfo->target, devinfo->lun,
3162                                        ahc->msgin_buf[3], saved_offset,
3163                                        period, offset);
3164                         }
3165                         ahc_set_syncrate(ahc, devinfo, 
3166                                          syncrate, period,
3167                                          offset, ppr_options,
3168                                          AHC_TRANS_ACTIVE|AHC_TRANS_GOAL,
3169                                          /*paused*/TRUE);
3170
3171                         /*
3172                          * See if we initiated Sync Negotiation
3173                          * and didn't have to fall down to async
3174                          * transfers.
3175                          */
3176                         if (ahc_sent_msg(ahc, AHCMSG_EXT, MSG_EXT_SDTR, TRUE)) {
3177                                 /* We started it */
3178                                 if (saved_offset != offset) {
3179                                         /* Went too low - force async */
3180                                         reject = TRUE;
3181                                 }
3182                         } else {
3183                                 /*
3184                                  * Send our own SDTR in reply
3185                                  */
3186                                 if (bootverbose
3187                                  && devinfo->role == ROLE_INITIATOR) {
3188                                         kprintf("(%s:%c:%d:%d): Target "
3189                                                "Initiated SDTR\n",
3190                                                ahc_name(ahc), devinfo->channel,
3191                                                devinfo->target, devinfo->lun);
3192                                 }
3193                                 ahc->msgout_index = 0;
3194                                 ahc->msgout_len = 0;
3195                                 ahc_construct_sdtr(ahc, devinfo,
3196                                                    period, offset);
3197                                 ahc->msgout_index = 0;
3198                                 response = TRUE;
3199                         }
3200                         done = MSGLOOP_MSGCOMPLETE;
3201                         break;
3202                 }
3203                 case MSG_EXT_WDTR:
3204                 {
3205                         u_int bus_width;
3206                         u_int saved_width;
3207                         u_int sending_reply;
3208
3209                         sending_reply = FALSE;
3210                         if (ahc->msgin_buf[1] != MSG_EXT_WDTR_LEN) {
3211                                 reject = TRUE;
3212                                 break;
3213                         }
3214
3215                         /*
3216                          * Wait until we have our arg before validating
3217                          * and acting on this message.
3218                          *
3219                          * Add one to MSG_EXT_WDTR_LEN to account for
3220                          * the extended message preamble.
3221                          */
3222                         if (ahc->msgin_index < (MSG_EXT_WDTR_LEN + 1))
3223                                 break;
3224
3225                         bus_width = ahc->msgin_buf[3];
3226                         saved_width = bus_width;
3227                         ahc_validate_width(ahc, tinfo, &bus_width,
3228                                            devinfo->role);
3229                         if (bootverbose) {
3230                                 kprintf("(%s:%c:%d:%d): Received WDTR "
3231                                        "%x filtered to %x\n",
3232                                        ahc_name(ahc), devinfo->channel,
3233                                        devinfo->target, devinfo->lun,
3234                                        saved_width, bus_width);
3235                         }
3236
3237                         if (ahc_sent_msg(ahc, AHCMSG_EXT, MSG_EXT_WDTR, TRUE)) {
3238                                 /*
3239                                  * Don't send a WDTR back to the
3240                                  * target, since we asked first.
3241                                  * If the width went higher than our
3242                                  * request, reject it.
3243                                  */
3244                                 if (saved_width > bus_width) {
3245                                         reject = TRUE;
3246                                         kprintf("(%s:%c:%d:%d): requested %dBit "
3247                                                "transfers.  Rejecting...\n",
3248                                                ahc_name(ahc), devinfo->channel,
3249                                                devinfo->target, devinfo->lun,
3250                                                8 * (0x01 << bus_width));
3251                                         bus_width = 0;
3252                                 }
3253                         } else {
3254                                 /*
3255                                  * Send our own WDTR in reply
3256                                  */
3257                                 if (bootverbose
3258                                  && devinfo->role == ROLE_INITIATOR) {
3259                                         kprintf("(%s:%c:%d:%d): Target "
3260                                                "Initiated WDTR\n",
3261                                                ahc_name(ahc), devinfo->channel,
3262                                                devinfo->target, devinfo->lun);
3263                                 }
3264                                 ahc->msgout_index = 0;
3265                                 ahc->msgout_len = 0;
3266                                 ahc_construct_wdtr(ahc, devinfo, bus_width);
3267                                 ahc->msgout_index = 0;
3268                                 response = TRUE;
3269                                 sending_reply = TRUE;
3270                         }
3271                         /*
3272                          * After a wide message, we are async, but
3273                          * some devices don't seem to honor this portion
3274                          * of the spec.  Force a renegotiation of the
3275                          * sync component of our transfer agreement even
3276                          * if our goal is async.  By updating our width
3277                          * after forcing the negotiation, we avoid
3278                          * renegotiating for width.
3279                          */
3280                         ahc_update_neg_request(ahc, devinfo, tstate,
3281                                                tinfo, AHC_NEG_ALWAYS);
3282                         ahc_set_width(ahc, devinfo, bus_width,
3283                                       AHC_TRANS_ACTIVE|AHC_TRANS_GOAL,
3284                                       /*paused*/TRUE);
3285                         if (sending_reply == FALSE && reject == FALSE) {
3286
3287                                 /*
3288                                  * We will always have an SDTR to send.
3289                                  */
3290                                 ahc->msgout_index = 0;
3291                                 ahc->msgout_len = 0;
3292                                 ahc_build_transfer_msg(ahc, devinfo);
3293                                 ahc->msgout_index = 0;
3294                                 response = TRUE;
3295                         }
3296                         done = MSGLOOP_MSGCOMPLETE;
3297                         break;
3298                 }
3299                 case MSG_EXT_PPR:
3300                 {
3301                         struct  ahc_syncrate *syncrate;
3302                         u_int   period;
3303                         u_int   offset;
3304                         u_int   bus_width;
3305                         u_int   ppr_options;
3306                         u_int   saved_width;
3307                         u_int   saved_offset;
3308                         u_int   saved_ppr_options;
3309
3310                         if (ahc->msgin_buf[1] != MSG_EXT_PPR_LEN) {
3311                                 reject = TRUE;
3312                                 break;
3313                         }
3314
3315                         /*
3316                          * Wait until we have all args before validating
3317                          * and acting on this message.
3318                          *
3319                          * Add one to MSG_EXT_PPR_LEN to account for
3320                          * the extended message preamble.
3321                          */
3322                         if (ahc->msgin_index < (MSG_EXT_PPR_LEN + 1))
3323                                 break;
3324
3325                         period = ahc->msgin_buf[3];
3326                         offset = ahc->msgin_buf[5];
3327                         bus_width = ahc->msgin_buf[6];
3328                         saved_width = bus_width;
3329                         ppr_options = ahc->msgin_buf[7];
3330                         /*
3331                          * According to the spec, a DT only
3332                          * period factor with no DT option
3333                          * set implies async.
3334                          */
3335                         if ((ppr_options & MSG_EXT_PPR_DT_REQ) == 0
3336                          && period == 9)
3337                                 offset = 0;
3338                         saved_ppr_options = ppr_options;
3339                         saved_offset = offset;
3340
3341                         /*
3342                          * Mask out any options we don't support
3343                          * on any controller.  Transfer options are
3344                          * only available if we are negotiating wide.
3345                          */
3346                         ppr_options &= MSG_EXT_PPR_DT_REQ;
3347                         if (bus_width == 0)
3348                                 ppr_options = 0;
3349
3350                         ahc_validate_width(ahc, tinfo, &bus_width,
3351                                            devinfo->role);
3352                         syncrate = ahc_devlimited_syncrate(ahc, tinfo, &period,
3353                                                            &ppr_options,
3354                                                            devinfo->role);
3355                         ahc_validate_offset(ahc, tinfo, syncrate,
3356                                             &offset, bus_width,
3357                                             devinfo->role);
3358
3359                         if (ahc_sent_msg(ahc, AHCMSG_EXT, MSG_EXT_PPR, TRUE)) {
3360                                 /*
3361                                  * If we are unable to do any of the
3362                                  * requested options (we went too low),
3363                                  * then we'll have to reject the message.
3364                                  */
3365                                 if (saved_width > bus_width
3366                                  || saved_offset != offset
3367                                  || saved_ppr_options != ppr_options) {
3368                                         reject = TRUE;
3369                                         period = 0;
3370                                         offset = 0;
3371                                         bus_width = 0;
3372                                         ppr_options = 0;
3373                                         syncrate = NULL;
3374                                 }
3375                         } else {
3376                                 if (devinfo->role != ROLE_TARGET)
3377                                         kprintf("(%s:%c:%d:%d): Target "
3378                                                "Initiated PPR\n",
3379                                                ahc_name(ahc), devinfo->channel,
3380                                                devinfo->target, devinfo->lun);
3381                                 else
3382                                         kprintf("(%s:%c:%d:%d): Initiator "
3383                                                "Initiated PPR\n",
3384                                                ahc_name(ahc), devinfo->channel,
3385                                                devinfo->target, devinfo->lun);
3386                                 ahc->msgout_index = 0;
3387                                 ahc->msgout_len = 0;
3388                                 ahc_construct_ppr(ahc, devinfo, period, offset,
3389                                                   bus_width, ppr_options);
3390                                 ahc->msgout_index = 0;
3391                                 response = TRUE;
3392                         }
3393                         if (bootverbose) {
3394                                 kprintf("(%s:%c:%d:%d): Received PPR width %x, "
3395                                        "period %x, offset %x,options %x\n"
3396                                        "\tFiltered to width %x, period %x, "
3397                                        "offset %x, options %x\n",
3398                                        ahc_name(ahc), devinfo->channel,
3399                                        devinfo->target, devinfo->lun,
3400                                        saved_width, ahc->msgin_buf[3],
3401                                        saved_offset, saved_ppr_options,
3402                                        bus_width, period, offset, ppr_options);
3403                         }
3404                         ahc_set_width(ahc, devinfo, bus_width,
3405                                       AHC_TRANS_ACTIVE|AHC_TRANS_GOAL,
3406                                       /*paused*/TRUE);
3407                         ahc_set_syncrate(ahc, devinfo,
3408                                          syncrate, period,
3409                                          offset, ppr_options,
3410                                          AHC_TRANS_ACTIVE|AHC_TRANS_GOAL,
3411                                          /*paused*/TRUE);
3412                         done = MSGLOOP_MSGCOMPLETE;
3413                         break;
3414                 }
3415                 default:
3416                         /* Unknown extended message.  Reject it. */
3417                         reject = TRUE;
3418                         break;
3419                 }
3420                 break;
3421         }
3422 #ifdef AHC_TARGET_MODE
3423         case MSG_BUS_DEV_RESET:
3424                 ahc_handle_devreset(ahc, devinfo,
3425                                     CAM_BDR_SENT,
3426                                     "Bus Device Reset Received",
3427                                     /*verbose_level*/0);
3428                 ahc_restart(ahc);
3429                 done = MSGLOOP_TERMINATED;
3430                 break;
3431         case MSG_ABORT_TAG:
3432         case MSG_ABORT:
3433         case MSG_CLEAR_QUEUE:
3434         {
3435                 int tag;
3436
3437                 /* Target mode messages */
3438                 if (devinfo->role != ROLE_TARGET) {
3439                         reject = TRUE;
3440                         break;
3441                 }
3442                 tag = SCB_LIST_NULL;
3443                 if (ahc->msgin_buf[0] == MSG_ABORT_TAG)
3444                         tag = ahc_inb(ahc, INITIATOR_TAG);
3445                 ahc_abort_scbs(ahc, devinfo->target, devinfo->channel,
3446                                devinfo->lun, tag, ROLE_TARGET,
3447                                CAM_REQ_ABORTED);
3448
3449                 tstate = ahc->enabled_targets[devinfo->our_scsiid];
3450                 if (tstate != NULL) {
3451                         struct ahc_tmode_lstate* lstate;
3452
3453                         lstate = tstate->enabled_luns[devinfo->lun];
3454                         if (lstate != NULL) {
3455                                 ahc_queue_lstate_event(ahc, lstate,
3456                                                        devinfo->our_scsiid,
3457                                                        ahc->msgin_buf[0],
3458                                                        /*arg*/tag);
3459                                 ahc_send_lstate_events(ahc, lstate);
3460                         }
3461                 }
3462                 ahc_restart(ahc);
3463                 done = MSGLOOP_TERMINATED;
3464                 break;
3465         }
3466 #endif
3467         case MSG_TERM_IO_PROC:
3468         default:
3469                 reject = TRUE;
3470                 break;
3471         }
3472
3473         if (reject) {
3474                 /*
3475                  * Setup to reject the message.
3476                  */
3477                 ahc->msgout_index = 0;
3478                 ahc->msgout_len = 1;
3479                 ahc->msgout_buf[0] = MSG_MESSAGE_REJECT;
3480                 done = MSGLOOP_MSGCOMPLETE;
3481                 response = TRUE;
3482         }
3483
3484         if (done != MSGLOOP_IN_PROG && !response)
3485                 /* Clear the outgoing message buffer */
3486                 ahc->msgout_len = 0;
3487
3488         return (done);
3489 }
3490
3491 /*
3492  * Process a message reject message.
3493  */
3494 static int
3495 ahc_handle_msg_reject(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
3496 {
3497         /*
3498          * What we care about here is if we had an
3499          * outstanding SDTR or WDTR message for this
3500          * target.  If we did, this is a signal that
3501          * the target is refusing negotiation.
3502          */
3503         struct scb *scb;
3504         struct ahc_initiator_tinfo *tinfo;
3505         struct ahc_tmode_tstate *tstate;
3506         u_int scb_index;
3507         u_int last_msg;
3508         int   response = 0;
3509
3510         scb_index = ahc_inb(ahc, SCB_TAG);
3511         scb = ahc_lookup_scb(ahc, scb_index);
3512         tinfo = ahc_fetch_transinfo(ahc, devinfo->channel,
3513                                     devinfo->our_scsiid,
3514                                     devinfo->target, &tstate);
3515         /* Might be necessary */
3516         last_msg = ahc_inb(ahc, LAST_MSG);
3517
3518         if (ahc_sent_msg(ahc, AHCMSG_EXT, MSG_EXT_PPR, /*full*/FALSE)) {
3519                 /*
3520                  * Target does not support the PPR message.
3521                  * Attempt to negotiate SPI-2 style.
3522                  */
3523                 if (bootverbose) {
3524                         kprintf("(%s:%c:%d:%d): PPR Rejected. "
3525                                "Trying WDTR/SDTR\n",
3526                                ahc_name(ahc), devinfo->channel,
3527                                devinfo->target, devinfo->lun);
3528                 }
3529                 tinfo->goal.ppr_options = 0;
3530                 tinfo->curr.transport_version = 2;
3531                 tinfo->goal.transport_version = 2;
3532                 ahc->msgout_index = 0;
3533                 ahc->msgout_len = 0;
3534                 ahc_build_transfer_msg(ahc, devinfo);
3535                 ahc->msgout_index = 0;
3536                 response = 1;
3537         } else if (ahc_sent_msg(ahc, AHCMSG_EXT, MSG_EXT_WDTR, /*full*/FALSE)) {
3538
3539                 /* note 8bit xfers */
3540                 kprintf("(%s:%c:%d:%d): refuses WIDE negotiation.  Using "
3541                        "8bit transfers\n", ahc_name(ahc),
3542                        devinfo->channel, devinfo->target, devinfo->lun);
3543                 ahc_set_width(ahc, devinfo, MSG_EXT_WDTR_BUS_8_BIT,
3544                               AHC_TRANS_ACTIVE|AHC_TRANS_GOAL,
3545                               /*paused*/TRUE);
3546                 /*
3547                  * No need to clear the sync rate.  If the target
3548                  * did not accept the command, our syncrate is
3549                  * unaffected.  If the target started the negotiation,
3550                  * but rejected our response, we already cleared the
3551                  * sync rate before sending our WDTR.
3552                  */
3553                 if (tinfo->goal.offset != tinfo->curr.offset) {
3554
3555                         /* Start the sync negotiation */
3556                         ahc->msgout_index = 0;
3557                         ahc->msgout_len = 0;
3558                         ahc_build_transfer_msg(ahc, devinfo);
3559                         ahc->msgout_index = 0;
3560                         response = 1;
3561                 }
3562         } else if (ahc_sent_msg(ahc, AHCMSG_EXT, MSG_EXT_SDTR, /*full*/FALSE)) {
3563                 /* note asynch xfers and clear flag */
3564                 ahc_set_syncrate(ahc, devinfo, /*syncrate*/NULL, /*period*/0,
3565                                  /*offset*/0, /*ppr_options*/0,
3566                                  AHC_TRANS_ACTIVE|AHC_TRANS_GOAL,
3567                                  /*paused*/TRUE);
3568                 kprintf("(%s:%c:%d:%d): refuses synchronous negotiation. "
3569                        "Using asynchronous transfers\n",
3570                        ahc_name(ahc), devinfo->channel,
3571                        devinfo->target, devinfo->lun);
3572         } else if ((scb->hscb->control & MSG_SIMPLE_TASK) != 0) {
3573                 int tag_type;
3574                 int mask;
3575
3576                 tag_type = (scb->hscb->control & MSG_SIMPLE_TASK);
3577
3578                 if (tag_type == MSG_SIMPLE_TASK) {
3579                         kprintf("(%s:%c:%d:%d): refuses tagged commands.  "
3580                                "Performing non-tagged I/O\n", ahc_name(ahc),
3581                                devinfo->channel, devinfo->target, devinfo->lun);
3582                         ahc_set_tags(ahc, devinfo, AHC_QUEUE_NONE);
3583                         mask = ~0x23;
3584                 } else {
3585                         kprintf("(%s:%c:%d:%d): refuses %s tagged commands.  "
3586                                "Performing simple queue tagged I/O only\n",
3587                                ahc_name(ahc), devinfo->channel, devinfo->target,
3588                                devinfo->lun, tag_type == MSG_ORDERED_TASK
3589                                ? "ordered" : "head of queue");
3590                         ahc_set_tags(ahc, devinfo, AHC_QUEUE_BASIC);
3591                         mask = ~0x03;
3592                 }
3593
3594                 /*
3595                  * Resend the identify for this CCB as the target
3596                  * may believe that the selection is invalid otherwise.
3597                  */
3598                 ahc_outb(ahc, SCB_CONTROL,
3599                          ahc_inb(ahc, SCB_CONTROL) & mask);
3600                 scb->hscb->control &= mask;
3601                 aic_set_transaction_tag(scb, /*enabled*/FALSE,
3602                                         /*type*/MSG_SIMPLE_TASK);
3603                 ahc_outb(ahc, MSG_OUT, MSG_IDENTIFYFLAG);
3604                 ahc_assert_atn(ahc);
3605
3606                 /*
3607                  * This transaction is now at the head of
3608                  * the untagged queue for this target.
3609                  */
3610                 if ((ahc->flags & AHC_SCB_BTT) == 0) {
3611                         struct scb_tailq *untagged_q;
3612
3613                         untagged_q =
3614                             &(ahc->untagged_queues[devinfo->target_offset]);
3615                         TAILQ_INSERT_HEAD(untagged_q, scb, links.tqe);
3616                         scb->flags |= SCB_UNTAGGEDQ;
3617                 }
3618                 ahc_busy_tcl(ahc, BUILD_TCL(scb->hscb->scsiid, devinfo->lun),
3619                              scb->hscb->tag);
3620
3621                 /*
3622                  * Requeue all tagged commands for this target
3623                  * currently in our posession so they can be
3624                  * converted to untagged commands.
3625                  */
3626                 ahc_search_qinfifo(ahc, SCB_GET_TARGET(ahc, scb),
3627                                    SCB_GET_CHANNEL(ahc, scb),
3628                                    SCB_GET_LUN(scb), /*tag*/SCB_LIST_NULL,
3629                                    ROLE_INITIATOR, CAM_REQUEUE_REQ,
3630                                    SEARCH_COMPLETE);
3631         } else {
3632                 /*
3633                  * Otherwise, we ignore it.
3634                  */
3635                 kprintf("%s:%c:%d: Message reject for %x -- ignored\n",
3636                        ahc_name(ahc), devinfo->channel, devinfo->target,
3637                        last_msg);
3638         }
3639         return (response);
3640 }
3641
3642 /*
3643  * Process an ingnore wide residue message.
3644  */
3645 static void
3646 ahc_handle_ign_wide_residue(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
3647 {
3648         u_int scb_index;
3649         struct scb *scb;
3650
3651         scb_index = ahc_inb(ahc, SCB_TAG);
3652         scb = ahc_lookup_scb(ahc, scb_index);
3653         /*
3654          * XXX Actually check data direction in the sequencer?
3655          * Perhaps add datadir to some spare bits in the hscb?
3656          */
3657         if ((ahc_inb(ahc, SEQ_FLAGS) & DPHASE) == 0
3658          || aic_get_transfer_dir(scb) != CAM_DIR_IN) {
3659                 /*
3660                  * Ignore the message if we haven't
3661                  * seen an appropriate data phase yet.
3662                  */
3663         } else {
3664                 /*
3665                  * If the residual occurred on the last
3666                  * transfer and the transfer request was
3667                  * expected to end on an odd count, do
3668                  * nothing.  Otherwise, subtract a byte
3669                  * and update the residual count accordingly.
3670                  */
3671                 uint32_t sgptr;
3672
3673                 sgptr = ahc_inb(ahc, SCB_RESIDUAL_SGPTR);
3674                 if ((sgptr & SG_LIST_NULL) != 0
3675                  && (ahc_inb(ahc, SCB_LUN) & SCB_XFERLEN_ODD) != 0) {
3676                         /*
3677                          * If the residual occurred on the last
3678                          * transfer and the transfer request was
3679                          * expected to end on an odd count, do
3680                          * nothing.
3681                          */
3682                 } else {
3683                         struct ahc_dma_seg *sg;
3684                         uint32_t data_cnt;
3685                         uint32_t data_addr;
3686                         uint32_t sglen;
3687
3688                         /* Pull in all of the sgptr */
3689                         sgptr = ahc_inl(ahc, SCB_RESIDUAL_SGPTR);
3690                         data_cnt = ahc_inl(ahc, SCB_RESIDUAL_DATACNT);
3691
3692                         if ((sgptr & SG_LIST_NULL) != 0) {
3693                                 /*
3694                                  * The residual data count is not updated
3695                                  * for the command run to completion case.
3696                                  * Explicitly zero the count.
3697                                  */
3698                                 data_cnt &= ~AHC_SG_LEN_MASK;
3699                         }
3700
3701                         data_addr = ahc_inl(ahc, SHADDR);
3702
3703                         data_cnt += 1;
3704                         data_addr -= 1;
3705                         sgptr &= SG_PTR_MASK;
3706
3707                         sg = ahc_sg_bus_to_virt(scb, sgptr);
3708
3709                         /*
3710                          * The residual sg ptr points to the next S/G
3711                          * to load so we must go back one.
3712                          */
3713                         sg--;
3714                         sglen = aic_le32toh(sg->len) & AHC_SG_LEN_MASK;
3715                         if (sg != scb->sg_list
3716                          && sglen < (data_cnt & AHC_SG_LEN_MASK)) {
3717
3718                                 sg--;
3719                                 sglen = aic_le32toh(sg->len);
3720                                 /*
3721                                  * Preserve High Address and SG_LIST bits
3722                                  * while setting the count to 1.
3723                                  */
3724                                 data_cnt = 1 | (sglen & (~AHC_SG_LEN_MASK));
3725                                 data_addr = aic_le32toh(sg->addr)
3726                                           + (sglen & AHC_SG_LEN_MASK) - 1;
3727
3728                                 /*
3729                                  * Increment sg so it points to the
3730                                  * "next" sg.
3731                                  */
3732                                 sg++;
3733                                 sgptr = ahc_sg_virt_to_bus(scb, sg);
3734                         }
3735                         ahc_outl(ahc, SCB_RESIDUAL_SGPTR, sgptr);
3736                         ahc_outl(ahc, SCB_RESIDUAL_DATACNT, data_cnt);
3737                         /*
3738                          * Toggle the "oddness" of the transfer length
3739                          * to handle this mid-transfer ignore wide
3740                          * residue.  This ensures that the oddness is
3741                          * correct for subsequent data transfers.
3742                          */
3743                         ahc_outb(ahc, SCB_LUN,
3744                                  ahc_inb(ahc, SCB_LUN) ^ SCB_XFERLEN_ODD);
3745                 }
3746         }
3747 }
3748
3749
3750 /*
3751  * Reinitialize the data pointers for the active transfer
3752  * based on its current residual.
3753  */
3754 static void
3755 ahc_reinitialize_dataptrs(struct ahc_softc *ahc)
3756 {
3757         struct   scb *scb;
3758         struct   ahc_dma_seg *sg;
3759         u_int    scb_index;
3760         uint32_t sgptr;
3761         uint32_t resid;
3762         uint32_t dataptr;
3763
3764         scb_index = ahc_inb(ahc, SCB_TAG);
3765         scb = ahc_lookup_scb(ahc, scb_index);
3766         sgptr = (ahc_inb(ahc, SCB_RESIDUAL_SGPTR + 3) << 24)
3767               | (ahc_inb(ahc, SCB_RESIDUAL_SGPTR + 2) << 16)
3768               | (ahc_inb(ahc, SCB_RESIDUAL_SGPTR + 1) << 8)
3769               | ahc_inb(ahc, SCB_RESIDUAL_SGPTR);
3770
3771         sgptr &= SG_PTR_MASK;
3772         sg = ahc_sg_bus_to_virt(scb, sgptr);
3773
3774         /* The residual sg_ptr always points to the next sg */
3775         sg--;
3776
3777         resid = (ahc_inb(ahc, SCB_RESIDUAL_DATACNT + 2) << 16)
3778               | (ahc_inb(ahc, SCB_RESIDUAL_DATACNT + 1) << 8)
3779               | ahc_inb(ahc, SCB_RESIDUAL_DATACNT);
3780
3781         dataptr = aic_le32toh(sg->addr)
3782                 + (aic_le32toh(sg->len) & AHC_SG_LEN_MASK)
3783                 - resid;
3784         if ((ahc->flags & AHC_39BIT_ADDRESSING) != 0) {
3785                 u_int dscommand1;
3786
3787                 dscommand1 = ahc_inb(ahc, DSCOMMAND1);
3788                 ahc_outb(ahc, DSCOMMAND1, dscommand1 | HADDLDSEL0);
3789                 ahc_outb(ahc, HADDR,
3790                          (aic_le32toh(sg->len) >> 24) & SG_HIGH_ADDR_BITS);
3791                 ahc_outb(ahc, DSCOMMAND1, dscommand1);
3792         }
3793         ahc_outb(ahc, HADDR + 3, dataptr >> 24);
3794         ahc_outb(ahc, HADDR + 2, dataptr >> 16);
3795         ahc_outb(ahc, HADDR + 1, dataptr >> 8);
3796         ahc_outb(ahc, HADDR, dataptr);
3797         ahc_outb(ahc, HCNT + 2, resid >> 16);
3798         ahc_outb(ahc, HCNT + 1, resid >> 8);
3799         ahc_outb(ahc, HCNT, resid);
3800         if ((ahc->features & AHC_ULTRA2) == 0) {
3801                 ahc_outb(ahc, STCNT + 2, resid >> 16);
3802                 ahc_outb(ahc, STCNT + 1, resid >> 8);
3803                 ahc_outb(ahc, STCNT, resid);
3804         }
3805 }
3806
3807 /*
3808  * Handle the effects of issuing a bus device reset message.
3809  */
3810 static void
3811 ahc_handle_devreset(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
3812                     cam_status status, char *message, int verbose_level)
3813 {
3814 #ifdef AHC_TARGET_MODE
3815         struct ahc_tmode_tstate* tstate;
3816         u_int lun;
3817 #endif
3818         int found;
3819
3820         found = ahc_abort_scbs(ahc, devinfo->target, devinfo->channel,
3821                                CAM_LUN_WILDCARD, SCB_LIST_NULL, devinfo->role,
3822                                status);
3823
3824 #ifdef AHC_TARGET_MODE
3825         /*
3826          * Send an immediate notify ccb to all target mord peripheral
3827          * drivers affected by this action.
3828          */
3829         tstate = ahc->enabled_targets[devinfo->our_scsiid];
3830         if (tstate != NULL) {
3831                 for (lun = 0; lun < AHC_NUM_LUNS; lun++) {
3832                         struct ahc_tmode_lstate* lstate;
3833
3834                         lstate = tstate->enabled_luns[lun];
3835                         if (lstate == NULL)
3836                                 continue;
3837
3838                         ahc_queue_lstate_event(ahc, lstate, devinfo->our_scsiid,
3839                                                MSG_BUS_DEV_RESET, /*arg*/0);
3840                         ahc_send_lstate_events(ahc, lstate);
3841                 }
3842         }
3843 #endif
3844
3845         /*
3846          * Go back to async/narrow transfers and renegotiate.
3847          */
3848         ahc_set_width(ahc, devinfo, MSG_EXT_WDTR_BUS_8_BIT,
3849                       AHC_TRANS_CUR, /*paused*/TRUE);
3850         ahc_set_syncrate(ahc, devinfo, /*syncrate*/NULL,
3851                          /*period*/0, /*offset*/0, /*ppr_options*/0,
3852                          AHC_TRANS_CUR, /*paused*/TRUE);
3853         
3854         if (status != CAM_SEL_TIMEOUT)
3855                 ahc_send_async(ahc, devinfo->channel, devinfo->target,
3856                                CAM_LUN_WILDCARD, AC_SENT_BDR, NULL);
3857
3858         if (message != NULL
3859          && (verbose_level <= bootverbose))
3860                 kprintf("%s: %s on %c:%d. %d SCBs aborted\n", ahc_name(ahc),
3861                        message, devinfo->channel, devinfo->target, found);
3862 }
3863
3864 #ifdef AHC_TARGET_MODE
3865 static void
3866 ahc_setup_target_msgin(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
3867                        struct scb *scb)
3868 {
3869
3870         /*              
3871          * To facilitate adding multiple messages together,
3872          * each routine should increment the index and len
3873          * variables instead of setting them explicitly.
3874          */             
3875         ahc->msgout_index = 0;
3876         ahc->msgout_len = 0;
3877
3878         if (scb != NULL && (scb->flags & SCB_AUTO_NEGOTIATE) != 0)
3879                 ahc_build_transfer_msg(ahc, devinfo);
3880         else
3881                 panic("ahc_intr: AWAITING target message with no message");
3882
3883         ahc->msgout_index = 0;
3884         ahc->msg_type = MSG_TYPE_TARGET_MSGIN;
3885 }
3886 #endif
3887 /**************************** Initialization **********************************/
3888 /*
3889  * Allocate a controller structure for a new device
3890  * and perform initial initializion.
3891  */
3892 struct ahc_softc *
3893 ahc_alloc(void *platform_arg, char *name)
3894 {
3895         struct  ahc_softc *ahc;
3896         int     i;
3897
3898 #if !defined(__DragonFly__) && !defined(__FreeBSD__)
3899         ahc = kmalloc(sizeof(*ahc), M_DEVBUF, M_INTWAIT);
3900 #else
3901         ahc = device_get_softc((device_t)platform_arg);
3902 #endif
3903         memset(ahc, 0, sizeof(*ahc));
3904         ahc->seep_config = kmalloc(sizeof(*ahc->seep_config),
3905                                   M_DEVBUF, M_INTWAIT);
3906         LIST_INIT(&ahc->pending_scbs);
3907         LIST_INIT(&ahc->timedout_scbs);
3908         /* We don't know our unit number until the OSM sets it */
3909         ahc->name = name;
3910         ahc->unit = -1;
3911         ahc->description = NULL;
3912         ahc->channel = 'A';
3913         ahc->channel_b = 'B';
3914         ahc->chip = AHC_NONE;
3915         ahc->features = AHC_FENONE;
3916         ahc->bugs = AHC_BUGNONE;
3917         ahc->flags = AHC_FNONE;
3918         /*
3919          * Default to all error reporting enabled with the
3920          * sequencer operating at its fastest speed.
3921          * The bus attach code may modify this.
3922          */
3923         ahc->seqctl = FASTMODE;
3924
3925         for (i = 0; i < AHC_NUM_TARGETS; i++)
3926                 TAILQ_INIT(&ahc->untagged_queues[i]);
3927         if (ahc_platform_alloc(ahc, platform_arg) != 0) {
3928                 ahc_free(ahc);
3929                 ahc = NULL;
3930         }
3931         ahc_lockinit(ahc);
3932         return (ahc);
3933 }
3934
3935 int
3936 ahc_softc_init(struct ahc_softc *ahc)
3937 {
3938
3939         ahc->unpause = 0;
3940         ahc->pause = PAUSE;
3941         /* XXX The shared scb data stuff should be deprecated */
3942         if (ahc->scb_data == NULL) {
3943                 ahc->scb_data = kmalloc(sizeof(*ahc->scb_data),
3944                                        M_DEVBUF, M_INTWAIT | M_ZERO);
3945         }
3946
3947         return (0);
3948 }
3949
3950 void
3951 ahc_softc_insert(struct ahc_softc *ahc)
3952 {
3953         struct ahc_softc *list_ahc;
3954
3955 #if AIC_PCI_CONFIG > 0
3956         /*
3957          * Second Function PCI devices need to inherit some
3958          * settings from function 0.
3959          */
3960         if ((ahc->chip & AHC_BUS_MASK) == AHC_PCI
3961          && (ahc->features & AHC_MULTI_FUNC) != 0) {
3962                 TAILQ_FOREACH(list_ahc, &ahc_tailq, links) {
3963                         aic_dev_softc_t list_pci;
3964                         aic_dev_softc_t pci;
3965
3966                         list_pci = list_ahc->dev_softc;
3967                         pci = ahc->dev_softc;
3968                         if (aic_get_pci_slot(list_pci) == aic_get_pci_slot(pci)
3969                          && aic_get_pci_bus(list_pci) == aic_get_pci_bus(pci)) {
3970                                 struct ahc_softc *master;
3971                                 struct ahc_softc *slave;
3972
3973                                 if (aic_get_pci_function(list_pci) == 0) {
3974                                         master = list_ahc;
3975                                         slave = ahc;
3976                                 } else {
3977                                         master = ahc;
3978                                         slave = list_ahc;
3979                                 }
3980                                 slave->flags &= ~AHC_BIOS_ENABLED; 
3981                                 slave->flags |=
3982                                     master->flags & AHC_BIOS_ENABLED;
3983                                 slave->flags &= ~AHC_PRIMARY_CHANNEL; 
3984                                 slave->flags |=
3985                                     master->flags & AHC_PRIMARY_CHANNEL;
3986                                 break;
3987                         }
3988                 }
3989         }
3990 #endif
3991
3992         /*
3993          * Insertion sort into our list of softcs.
3994          */
3995         list_ahc = TAILQ_FIRST(&ahc_tailq);
3996         while (list_ahc != NULL
3997             && ahc_softc_comp(ahc, list_ahc) <= 0)
3998                 list_ahc = TAILQ_NEXT(list_ahc, links);
3999         if (list_ahc != NULL)
4000                 TAILQ_INSERT_BEFORE(list_ahc, ahc, links);
4001         else
4002                 TAILQ_INSERT_TAIL(&ahc_tailq, ahc, links);
4003         ahc->init_level++;
4004 }
4005
4006 void
4007 ahc_set_unit(struct ahc_softc *ahc, int unit)
4008 {
4009         ahc->unit = unit;
4010 }
4011
4012 void
4013 ahc_set_name(struct ahc_softc *ahc, char *name)
4014 {
4015         if (ahc->name != NULL)
4016                 kfree(ahc->name, M_DEVBUF);
4017         ahc->name = name;
4018 }
4019
4020 void
4021 ahc_free(struct ahc_softc *ahc)
4022 {
4023         int i;
4024
4025         ahc_terminate_recovery_thread(ahc);
4026         switch (ahc->init_level) {
4027         default:
4028         case 5:
4029                 ahc_shutdown(ahc);
4030                 /* FALLTHROUGH */
4031         case 4:
4032                 aic_dmamap_unload(ahc, ahc->shared_data_dmat,
4033                                   ahc->shared_data_dmamap);
4034                 /* FALLTHROUGH */
4035         case 3:
4036                 aic_dmamem_free(ahc, ahc->shared_data_dmat, ahc->qoutfifo,
4037                                 ahc->shared_data_dmamap);
4038                 aic_dmamap_destroy(ahc, ahc->shared_data_dmat,
4039                                    ahc->shared_data_dmamap);
4040                 /* FALLTHROUGH */
4041         case 2:
4042                 aic_dma_tag_destroy(ahc, ahc->shared_data_dmat);
4043         case 1:
4044 #ifndef __linux__
4045                 aic_dma_tag_destroy(ahc, ahc->buffer_dmat);
4046 #endif
4047                 break;
4048         case 0:
4049                 break;
4050         }
4051
4052 #ifndef __linux__
4053         aic_dma_tag_destroy(ahc, ahc->parent_dmat);
4054 #endif
4055         ahc_platform_free(ahc);
4056         ahc_fini_scbdata(ahc);
4057         for (i = 0; i < AHC_NUM_TARGETS; i++) {
4058                 struct ahc_tmode_tstate *tstate;
4059
4060                 tstate = ahc->enabled_targets[i];
4061                 if (tstate != NULL) {
4062 #ifdef AHC_TARGET_MODE
4063                         int j;
4064
4065                         for (j = 0; j < AHC_NUM_LUNS; j++) {
4066                                 struct ahc_tmode_lstate *lstate;
4067
4068                                 lstate = tstate->enabled_luns[j];
4069                                 if (lstate != NULL) {
4070                                         xpt_free_path(lstate->path);
4071                                         kfree(lstate, M_DEVBUF);
4072                                 }
4073                         }
4074 #endif
4075                         kfree(tstate, M_DEVBUF);
4076                 }
4077         }
4078 #ifdef AHC_TARGET_MODE
4079         if (ahc->black_hole != NULL) {
4080                 xpt_free_path(ahc->black_hole->path);
4081                 kfree(ahc->black_hole, M_DEVBUF);
4082         }
4083 #endif
4084         if (ahc->name != NULL)
4085                 kfree(ahc->name, M_DEVBUF);
4086         if (ahc->seep_config != NULL)
4087                 kfree(ahc->seep_config, M_DEVBUF);
4088 #if !defined(__DragonFly__) && !defined(__FreeBSD__)
4089         kfree(ahc, M_DEVBUF);
4090 #endif
4091         return;
4092 }
4093
4094 void
4095 ahc_shutdown(void *arg)
4096 {
4097         struct  ahc_softc *ahc;
4098         int     i;
4099
4100         ahc = (struct ahc_softc *)arg;
4101
4102         /* This will reset most registers to 0, but not all */
4103         ahc_reset(ahc, /*reinit*/FALSE);
4104         ahc_outb(ahc, SCSISEQ, 0);
4105         ahc_outb(ahc, SXFRCTL0, 0);
4106         ahc_outb(ahc, DSPCISTATUS, 0);
4107
4108         for (i = TARG_SCSIRATE; i < SCSICONF; i++)
4109                 ahc_outb(ahc, i, 0);
4110 }
4111
4112 /*
4113  * Reset the controller and record some information about it
4114  * that is only available just after a reset.  If "reinit" is
4115  * non-zero, this reset occured after initial configuration
4116  * and the caller requests that the chip be fully reinitialized
4117  * to a runable state.  Chip interrupts are *not* enabled after
4118  * a reinitialization.  The caller must enable interrupts via
4119  * ahc_intr_enable().
4120  */
4121 int
4122 ahc_reset(struct ahc_softc *ahc, int reinit)
4123 {
4124         u_int   sblkctl;
4125         u_int   sxfrctl1_a, sxfrctl1_b;
4126         int     error;
4127         int     wait;
4128         
4129         /*
4130          * Preserve the value of the SXFRCTL1 register for all channels.
4131          * It contains settings that affect termination and we don't want
4132          * to disturb the integrity of the bus.
4133          */
4134         ahc_pause(ahc);
4135         sxfrctl1_b = 0;
4136         if ((ahc->chip & AHC_CHIPID_MASK) == AHC_AIC7770) {
4137                 u_int sblkctl;
4138
4139                 /*
4140                  * Save channel B's settings in case this chip
4141                  * is setup for TWIN channel operation.
4142                  */
4143                 sblkctl = ahc_inb(ahc, SBLKCTL);
4144                 ahc_outb(ahc, SBLKCTL, sblkctl | SELBUSB);
4145                 sxfrctl1_b = ahc_inb(ahc, SXFRCTL1);
4146                 ahc_outb(ahc, SBLKCTL, sblkctl & ~SELBUSB);
4147         }
4148         sxfrctl1_a = ahc_inb(ahc, SXFRCTL1);
4149
4150         ahc_outb(ahc, HCNTRL, CHIPRST | ahc->pause);
4151
4152         /*
4153          * Ensure that the reset has finished.  We delay 1000us
4154          * prior to reading the register to make sure the chip
4155          * has sufficiently completed its reset to handle register
4156          * accesses.
4157          */
4158         wait = 1000;
4159         do {
4160                 aic_delay(1000);
4161         } while (--wait && !(ahc_inb(ahc, HCNTRL) & CHIPRSTACK));
4162
4163         if (wait == 0) {
4164                 kprintf("%s: WARNING - Failed chip reset!  "
4165                        "Trying to initialize anyway.\n", ahc_name(ahc));
4166         }
4167         ahc_outb(ahc, HCNTRL, ahc->pause);
4168
4169         /* Determine channel configuration */
4170         sblkctl = ahc_inb(ahc, SBLKCTL) & (SELBUSB|SELWIDE);
4171         /* No Twin Channel PCI cards */
4172         if ((ahc->chip & AHC_PCI) != 0)
4173                 sblkctl &= ~SELBUSB;
4174         switch (sblkctl) {
4175         case 0:
4176                 /* Single Narrow Channel */
4177                 break;
4178         case 2:
4179                 /* Wide Channel */
4180                 ahc->features |= AHC_WIDE;
4181                 break;
4182         case 8:
4183                 /* Twin Channel */
4184                 ahc->features |= AHC_TWIN;
4185                 break;
4186         default:
4187                 kprintf(" Unsupported adapter type.  Ignoring\n");
4188                 return(-1);
4189         }
4190
4191         /*
4192          * Reload sxfrctl1.
4193          *
4194          * We must always initialize STPWEN to 1 before we
4195          * restore the saved values.  STPWEN is initialized
4196          * to a tri-state condition which can only be cleared
4197          * by turning it on.
4198          */
4199         if ((ahc->features & AHC_TWIN) != 0) {
4200                 u_int sblkctl;
4201
4202                 sblkctl = ahc_inb(ahc, SBLKCTL);
4203                 ahc_outb(ahc, SBLKCTL, sblkctl | SELBUSB);
4204                 ahc_outb(ahc, SXFRCTL1, sxfrctl1_b);
4205                 ahc_outb(ahc, SBLKCTL, sblkctl & ~SELBUSB);
4206         }
4207         ahc_outb(ahc, SXFRCTL1, sxfrctl1_a);
4208
4209         error = 0;
4210         if (reinit != 0)
4211                 /*
4212                  * If a recovery action has forced a chip reset,
4213                  * re-initialize the chip to our liking.
4214                  */
4215                 error = ahc->bus_chip_init(ahc);
4216 #ifdef AHC_DUMP_SEQ
4217         else 
4218                 ahc_dumpseq(ahc);
4219 #endif
4220
4221         return (error);
4222 }
4223
4224 /*
4225  * Determine the number of SCBs available on the controller
4226  */
4227 int
4228 ahc_probe_scbs(struct ahc_softc *ahc) {
4229         int i;
4230
4231         for (i = 0; i < AHC_SCB_MAX; i++) {
4232
4233                 ahc_outb(ahc, SCBPTR, i);
4234                 ahc_outb(ahc, SCB_BASE, i);
4235                 if (ahc_inb(ahc, SCB_BASE) != i)
4236                         break;
4237                 ahc_outb(ahc, SCBPTR, 0);
4238                 if (ahc_inb(ahc, SCB_BASE) != 0)
4239                         break;
4240         }
4241         return (i);
4242 }
4243
4244 static void
4245 ahc_dmamap_cb(void *arg, bus_dma_segment_t *segs, int nseg, int error) 
4246 {
4247         bus_addr_t *baddr;
4248
4249         baddr = (bus_addr_t *)arg;
4250         *baddr = segs->ds_addr;
4251 }
4252
4253 static void
4254 ahc_build_free_scb_list(struct ahc_softc *ahc)
4255 {
4256         int scbsize;
4257         int i;
4258
4259         scbsize = 32;
4260         if ((ahc->flags & AHC_LSCBS_ENABLED) != 0)
4261                 scbsize = 64;
4262
4263         for (i = 0; i < ahc->scb_data->maxhscbs; i++) {
4264                 int j;
4265
4266                 ahc_outb(ahc, SCBPTR, i);
4267
4268                 /*
4269                  * Touch all SCB bytes to avoid parity errors
4270                  * should one of our debugging routines read
4271                  * an otherwise uninitiatlized byte.
4272                  */
4273                 for (j = 0; j < scbsize; j++)
4274                         ahc_outb(ahc, SCB_BASE+j, 0xFF);
4275
4276                 /* Clear the control byte. */
4277                 ahc_outb(ahc, SCB_CONTROL, 0);
4278
4279                 /* Set the next pointer */
4280                 if ((ahc->flags & AHC_PAGESCBS) != 0)
4281                         ahc_outb(ahc, SCB_NEXT, i+1);
4282                 else 
4283                         ahc_outb(ahc, SCB_NEXT, SCB_LIST_NULL);
4284
4285                 /* Make the tag number, SCSIID, and lun invalid */
4286                 ahc_outb(ahc, SCB_TAG, SCB_LIST_NULL);
4287                 ahc_outb(ahc, SCB_SCSIID, 0xFF);
4288                 ahc_outb(ahc, SCB_LUN, 0xFF);
4289         }
4290
4291         if ((ahc->flags & AHC_PAGESCBS) != 0) {
4292                 /* SCB 0 heads the free list. */
4293                 ahc_outb(ahc, FREE_SCBH, 0);
4294         } else {
4295                 /* No free list. */
4296                 ahc_outb(ahc, FREE_SCBH, SCB_LIST_NULL);
4297         }
4298
4299         /* Make sure that the last SCB terminates the free list */
4300         ahc_outb(ahc, SCBPTR, i-1);
4301         ahc_outb(ahc, SCB_NEXT, SCB_LIST_NULL);
4302 }
4303
4304 static int
4305 ahc_init_scbdata(struct ahc_softc *ahc)
4306 {
4307         struct scb_data *scb_data;
4308
4309         scb_data = ahc->scb_data;
4310         SLIST_INIT(&scb_data->free_scbs);
4311         SLIST_INIT(&scb_data->sg_maps);
4312
4313         /* Allocate SCB resources */
4314         scb_data->scbarray = kmalloc(sizeof(struct scb) * AHC_SCB_MAX_ALLOC,
4315                                     M_DEVBUF, M_INTWAIT | M_ZERO);
4316
4317         /* Determine the number of hardware SCBs and initialize them */
4318
4319         scb_data->maxhscbs = ahc_probe_scbs(ahc);
4320         if (ahc->scb_data->maxhscbs == 0) {
4321                 kprintf("%s: No SCB space found\n", ahc_name(ahc));
4322                 return (ENXIO);
4323         }
4324
4325         /*
4326          * Create our DMA tags.  These tags define the kinds of device
4327          * accessible memory allocations and memory mappings we will
4328          * need to perform during normal operation.
4329          *
4330          * Unless we need to further restrict the allocation, we rely
4331          * on the restrictions of the parent dmat, hence the common
4332          * use of MAXADDR and MAXSIZE.
4333          */
4334
4335         /* DMA tag for our hardware scb structures */
4336         if (aic_dma_tag_create(ahc, ahc->parent_dmat, /*alignment*/1,
4337                                /*boundary*/BUS_SPACE_MAXADDR_32BIT + 1,
4338                                /*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
4339                                /*highaddr*/BUS_SPACE_MAXADDR,
4340                                /*filter*/NULL, /*filterarg*/NULL,
4341                                AHC_SCB_MAX_ALLOC * sizeof(struct hardware_scb),
4342                                /*nsegments*/1,
4343                                /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT,
4344                                /*flags*/0, &scb_data->hscb_dmat) != 0) {
4345                 goto error_exit;
4346         }
4347
4348         scb_data->init_level++;
4349
4350         /* Allocation for our hscbs */
4351         if (aic_dmamem_alloc(ahc, scb_data->hscb_dmat,
4352                              (void *)&scb_data->hscbs,
4353                              BUS_DMA_NOWAIT, &scb_data->hscb_dmamap) != 0) {
4354                 goto error_exit;
4355         }
4356
4357         scb_data->init_level++;
4358
4359         /* And permanently map them */
4360         aic_dmamap_load(ahc, scb_data->hscb_dmat, scb_data->hscb_dmamap,
4361                         scb_data->hscbs,
4362                         AHC_SCB_MAX_ALLOC * sizeof(struct hardware_scb),
4363                         ahc_dmamap_cb, &scb_data->hscb_busaddr, /*flags*/0);
4364
4365         scb_data->init_level++;
4366
4367         /* DMA tag for our sense buffers */
4368         if (aic_dma_tag_create(ahc, ahc->parent_dmat, /*alignment*/1,
4369                                /*boundary*/BUS_SPACE_MAXADDR_32BIT + 1,
4370                                /*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
4371                                /*highaddr*/BUS_SPACE_MAXADDR,
4372                                /*filter*/NULL, /*filterarg*/NULL,
4373                                AHC_SCB_MAX_ALLOC * sizeof(struct scsi_sense_data),
4374                                /*nsegments*/1,
4375                                /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT,
4376                                /*flags*/0, &scb_data->sense_dmat) != 0) {
4377                 goto error_exit;
4378         }
4379
4380         scb_data->init_level++;
4381
4382         /* Allocate them */
4383         if (aic_dmamem_alloc(ahc, scb_data->sense_dmat,
4384                              (void *)&scb_data->sense,
4385                              BUS_DMA_NOWAIT, &scb_data->sense_dmamap) != 0) {
4386                 goto error_exit;
4387         }
4388
4389         scb_data->init_level++;
4390
4391         /* And permanently map them */
4392         aic_dmamap_load(ahc, scb_data->sense_dmat, scb_data->sense_dmamap,
4393                         scb_data->sense,
4394                         AHC_SCB_MAX_ALLOC * sizeof(struct scsi_sense_data),
4395                         ahc_dmamap_cb, &scb_data->sense_busaddr, /*flags*/0);
4396
4397         scb_data->init_level++;
4398
4399         /* DMA tag for our S/G structures.  We allocate in page sized chunks */
4400         if (aic_dma_tag_create(ahc, ahc->parent_dmat, /*alignment*/8,
4401                                /*boundary*/BUS_SPACE_MAXADDR_32BIT + 1,
4402                                /*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
4403                                /*highaddr*/BUS_SPACE_MAXADDR,
4404                                /*filter*/NULL, /*filterarg*/NULL,
4405                                PAGE_SIZE, /*nsegments*/1,
4406                                /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT,
4407                                /*flags*/0, &scb_data->sg_dmat) != 0) {
4408                 goto error_exit;
4409         }
4410
4411         scb_data->init_level++;
4412
4413         /* Perform initial CCB allocation */
4414         memset(scb_data->hscbs, 0,
4415                AHC_SCB_MAX_ALLOC * sizeof(struct hardware_scb));
4416         while (ahc_alloc_scbs(ahc) != 0)
4417                 ;
4418
4419         if (scb_data->numscbs == 0) {
4420                 kprintf("%s: ahc_init_scbdata - "
4421                        "Unable to allocate initial scbs\n",
4422                        ahc_name(ahc));
4423                 goto error_exit;
4424         }
4425
4426         /*
4427          * Reserve the next queued SCB.
4428          */
4429         ahc->next_queued_scb = ahc_get_scb(ahc);
4430
4431         /*
4432          * Note that we were successful
4433          */
4434         return (0); 
4435
4436 error_exit:
4437
4438         return (ENOMEM);
4439 }
4440
4441 static void
4442 ahc_fini_scbdata(struct ahc_softc *ahc)
4443 {
4444         struct scb_data *scb_data;
4445
4446         scb_data = ahc->scb_data;
4447         if (scb_data == NULL)
4448                 return;
4449
4450         switch (scb_data->init_level) {
4451         default:
4452         case 7:
4453         {
4454                 struct sg_map_node *sg_map;
4455
4456                 while ((sg_map = SLIST_FIRST(&scb_data->sg_maps))!= NULL) {
4457                         SLIST_REMOVE_HEAD(&scb_data->sg_maps, links);
4458                         aic_dmamap_unload(ahc, scb_data->sg_dmat,
4459                                           sg_map->sg_dmamap);
4460                         aic_dmamem_free(ahc, scb_data->sg_dmat,
4461                                         sg_map->sg_vaddr,
4462                                         sg_map->sg_dmamap);
4463                         kfree(sg_map, M_DEVBUF);
4464                 }
4465                 aic_dma_tag_destroy(ahc, scb_data->sg_dmat);
4466         }
4467         case 6:
4468                 aic_dmamap_unload(ahc, scb_data->sense_dmat,
4469                                   scb_data->sense_dmamap);
4470         case 5:
4471                 aic_dmamem_free(ahc, scb_data->sense_dmat, scb_data->sense,
4472                                 scb_data->sense_dmamap);
4473                 aic_dmamap_destroy(ahc, scb_data->sense_dmat,
4474                                    scb_data->sense_dmamap);
4475         case 4:
4476                 aic_dma_tag_destroy(ahc, scb_data->sense_dmat);
4477         case 3:
4478                 aic_dmamap_unload(ahc, scb_data->hscb_dmat,
4479                                   scb_data->hscb_dmamap);
4480         case 2:
4481                 aic_dmamem_free(ahc, scb_data->hscb_dmat, scb_data->hscbs,
4482                                 scb_data->hscb_dmamap);
4483                 aic_dmamap_destroy(ahc, scb_data->hscb_dmat,
4484                                    scb_data->hscb_dmamap);
4485         case 1:
4486                 aic_dma_tag_destroy(ahc, scb_data->hscb_dmat);
4487                 break;
4488         case 0:
4489                 break;
4490         }
4491         if (scb_data->scbarray != NULL)
4492                 kfree(scb_data->scbarray, M_DEVBUF);
4493 }
4494
4495 int
4496 ahc_alloc_scbs(struct ahc_softc *ahc)
4497 {
4498         struct scb_data *scb_data;
4499         struct scb *next_scb;
4500         struct sg_map_node *sg_map;
4501         bus_addr_t physaddr;
4502         struct ahc_dma_seg *segs;
4503         int newcount;
4504         int i;
4505
4506         scb_data = ahc->scb_data;
4507         if (scb_data->numscbs >= AHC_SCB_MAX_ALLOC)
4508                 /* Can't allocate any more */
4509                 return (0);
4510
4511         next_scb = &scb_data->scbarray[scb_data->numscbs];
4512
4513         sg_map = kmalloc(sizeof(*sg_map), M_DEVBUF, M_INTWAIT);
4514
4515         /* Allocate S/G space for the next batch of SCBS */
4516         if (aic_dmamem_alloc(ahc, scb_data->sg_dmat,
4517                              (void *)&sg_map->sg_vaddr,
4518                              BUS_DMA_NOWAIT, &sg_map->sg_dmamap) != 0) {
4519                 kfree(sg_map, M_DEVBUF);
4520                 return (0);
4521         }
4522
4523         SLIST_INSERT_HEAD(&scb_data->sg_maps, sg_map, links);
4524
4525         aic_dmamap_load(ahc, scb_data->sg_dmat, sg_map->sg_dmamap,
4526                         sg_map->sg_vaddr, PAGE_SIZE, ahc_dmamap_cb,
4527                         &sg_map->sg_physaddr, /*flags*/0);
4528
4529         segs = sg_map->sg_vaddr;
4530         physaddr = sg_map->sg_physaddr;
4531
4532         newcount = (PAGE_SIZE / (AHC_NSEG * sizeof(struct ahc_dma_seg)));
4533         newcount = MIN(newcount, (AHC_SCB_MAX_ALLOC - scb_data->numscbs));
4534         for (i = 0; i < newcount; i++) {
4535                 struct scb_platform_data *pdata;
4536 #ifndef __linux__
4537                 int error;
4538 #endif
4539                 pdata = kmalloc(sizeof(*pdata), M_DEVBUF, M_INTWAIT);
4540                 next_scb->platform_data = pdata;
4541                 next_scb->sg_map = sg_map;
4542                 next_scb->sg_list = segs;
4543                 /*
4544                  * The sequencer always starts with the second entry.
4545                  * The first entry is embedded in the scb.
4546                  */
4547                 next_scb->sg_list_phys = physaddr + sizeof(struct ahc_dma_seg);
4548                 next_scb->ahc_softc = ahc;
4549                 next_scb->flags = SCB_FLAG_NONE;
4550 #ifndef __linux__
4551                 error = aic_dmamap_create(ahc, ahc->buffer_dmat, /*flags*/0,
4552                                           &next_scb->dmamap);
4553                 if (error != 0)
4554                         break;
4555 #endif
4556                 next_scb->hscb = &scb_data->hscbs[scb_data->numscbs];
4557                 next_scb->hscb->tag = ahc->scb_data->numscbs;
4558                 aic_timer_init(&next_scb->io_timer);
4559                 SLIST_INSERT_HEAD(&ahc->scb_data->free_scbs,
4560                                   next_scb, links.sle);
4561                 segs += AHC_NSEG;
4562                 physaddr += (AHC_NSEG * sizeof(struct ahc_dma_seg));
4563                 next_scb++;
4564                 ahc->scb_data->numscbs++;
4565         }
4566         return (i);
4567 }
4568
4569 void
4570 ahc_controller_info(struct ahc_softc *ahc, char *buf)
4571 {
4572         int len;
4573
4574         len = ksprintf(buf, "%s: ",
4575                        ahc_chip_names[ahc->chip & AHC_CHIPID_MASK]);
4576         buf += len;
4577         if ((ahc->features & AHC_TWIN) != 0) {
4578                 len = ksprintf(buf, "Twin Channel, A SCSI Id=%d, "
4579                                "B SCSI Id=%d, primary %c, ",
4580                                ahc->our_id, ahc->our_id_b,
4581                                (ahc->flags & AHC_PRIMARY_CHANNEL) + 'A');
4582         } else {
4583                 const char *speed;
4584                 const char *type;
4585
4586                 speed = "";
4587                 if ((ahc->features & AHC_ULTRA) != 0) {
4588                         speed = "Ultra ";
4589                 } else if ((ahc->features & AHC_DT) != 0) {
4590                         speed = "Ultra160 ";
4591                 } else if ((ahc->features & AHC_ULTRA2) != 0) {
4592                         speed = "Ultra2 ";
4593                 }
4594                 if ((ahc->features & AHC_WIDE) != 0) {
4595                         type = "Wide";
4596                 } else {
4597                         type = "Single";
4598                 }
4599                 len = ksprintf(buf, "%s%s Channel %c, SCSI Id=%d, ",
4600                                speed, type, ahc->channel, ahc->our_id);
4601         }
4602         buf += len;
4603
4604         if ((ahc->flags & AHC_PAGESCBS) != 0)
4605                 ksprintf(buf, "%d/%d SCBs",
4606                          ahc->scb_data->maxhscbs, AHC_MAX_QUEUE);
4607         else
4608                 ksprintf(buf, "%d SCBs", ahc->scb_data->maxhscbs);
4609 }
4610
4611 int
4612 ahc_chip_init(struct ahc_softc *ahc)
4613 {
4614         int      term;
4615         int      error;
4616         u_int    i;
4617         u_int    scsi_conf;
4618         u_int    scsiseq_template;
4619         uint32_t physaddr;
4620
4621         ahc_outb(ahc, SEQ_FLAGS, 0);
4622         ahc_outb(ahc, SEQ_FLAGS2, 0);
4623
4624         /* Set the SCSI Id, SXFRCTL0, SXFRCTL1, and SIMODE1, for both channels*/
4625         if (ahc->features & AHC_TWIN) {
4626
4627                 /*
4628                  * Setup Channel B first.
4629                  */
4630                 ahc_outb(ahc, SBLKCTL, ahc_inb(ahc, SBLKCTL) | SELBUSB);
4631                 term = (ahc->flags & AHC_TERM_ENB_B) != 0 ? STPWEN : 0;
4632                 ahc_outb(ahc, SCSIID, ahc->our_id_b);
4633                 scsi_conf = ahc_inb(ahc, SCSICONF + 1);
4634                 ahc_outb(ahc, SXFRCTL1, (scsi_conf & (ENSPCHK|STIMESEL))
4635                                         |term|ahc->seltime_b|ENSTIMER|ACTNEGEN);
4636                 if ((ahc->features & AHC_ULTRA2) != 0)
4637                         ahc_outb(ahc, SIMODE0, ahc_inb(ahc, SIMODE0)|ENIOERR);
4638                 ahc_outb(ahc, SIMODE1, ENSELTIMO|ENSCSIRST|ENSCSIPERR);
4639                 ahc_outb(ahc, SXFRCTL0, DFON|SPIOEN);
4640
4641                 /* Select Channel A */
4642                 ahc_outb(ahc, SBLKCTL, ahc_inb(ahc, SBLKCTL) & ~SELBUSB);
4643         }
4644         term = (ahc->flags & AHC_TERM_ENB_A) != 0 ? STPWEN : 0;
4645         if ((ahc->features & AHC_ULTRA2) != 0)
4646                 ahc_outb(ahc, SCSIID_ULTRA2, ahc->our_id);
4647         else
4648                 ahc_outb(ahc, SCSIID, ahc->our_id);
4649         scsi_conf = ahc_inb(ahc, SCSICONF);
4650         ahc_outb(ahc, SXFRCTL1, (scsi_conf & (ENSPCHK|STIMESEL))
4651                                 |term|ahc->seltime
4652                                 |ENSTIMER|ACTNEGEN);
4653         if ((ahc->features & AHC_ULTRA2) != 0)
4654                 ahc_outb(ahc, SIMODE0, ahc_inb(ahc, SIMODE0)|ENIOERR);
4655         ahc_outb(ahc, SIMODE1, ENSELTIMO|ENSCSIRST|ENSCSIPERR);
4656         ahc_outb(ahc, SXFRCTL0, DFON|SPIOEN);
4657
4658         /* There are no untagged SCBs active yet. */
4659         for (i = 0; i < 16; i++) {
4660                 ahc_unbusy_tcl(ahc, BUILD_TCL(i << 4, 0));
4661                 if ((ahc->flags & AHC_SCB_BTT) != 0) {
4662                         int lun;
4663
4664                         /*
4665                          * The SCB based BTT allows an entry per
4666                          * target and lun pair.
4667                          */
4668                         for (lun = 1; lun < AHC_NUM_LUNS; lun++)
4669                                 ahc_unbusy_tcl(ahc, BUILD_TCL(i << 4, lun));
4670                 }
4671         }
4672
4673         /* All of our queues are empty */
4674         for (i = 0; i < 256; i++)
4675                 ahc->qoutfifo[i] = SCB_LIST_NULL;
4676         ahc_sync_qoutfifo(ahc, BUS_DMASYNC_PREREAD);
4677
4678         for (i = 0; i < 256; i++)
4679                 ahc->qinfifo[i] = SCB_LIST_NULL;
4680
4681         if ((ahc->features & AHC_MULTI_TID) != 0) {
4682                 ahc_outb(ahc, TARGID, 0);
4683                 ahc_outb(ahc, TARGID + 1, 0);
4684         }
4685
4686         /*
4687          * Tell the sequencer where it can find our arrays in memory.
4688          */
4689         physaddr = ahc->scb_data->hscb_busaddr;
4690         ahc_outb(ahc, HSCB_ADDR, physaddr & 0xFF);
4691         ahc_outb(ahc, HSCB_ADDR + 1, (physaddr >> 8) & 0xFF);
4692         ahc_outb(ahc, HSCB_ADDR + 2, (physaddr >> 16) & 0xFF);
4693         ahc_outb(ahc, HSCB_ADDR + 3, (physaddr >> 24) & 0xFF);
4694
4695         physaddr = ahc->shared_data_busaddr;
4696         ahc_outb(ahc, SHARED_DATA_ADDR, physaddr & 0xFF);
4697         ahc_outb(ahc, SHARED_DATA_ADDR + 1, (physaddr >> 8) & 0xFF);
4698         ahc_outb(ahc, SHARED_DATA_ADDR + 2, (physaddr >> 16) & 0xFF);
4699         ahc_outb(ahc, SHARED_DATA_ADDR + 3, (physaddr >> 24) & 0xFF);
4700
4701         /*
4702          * Initialize the group code to command length table.
4703          * This overrides the values in TARG_SCSIRATE, so only
4704          * setup the table after we have processed that information.
4705          */
4706         ahc_outb(ahc, CMDSIZE_TABLE, 5);
4707         ahc_outb(ahc, CMDSIZE_TABLE + 1, 9);
4708         ahc_outb(ahc, CMDSIZE_TABLE + 2, 9);
4709         ahc_outb(ahc, CMDSIZE_TABLE + 3, 0);
4710         ahc_outb(ahc, CMDSIZE_TABLE + 4, 15);
4711         ahc_outb(ahc, CMDSIZE_TABLE + 5, 11);
4712         ahc_outb(ahc, CMDSIZE_TABLE + 6, 0);
4713         ahc_outb(ahc, CMDSIZE_TABLE + 7, 0);
4714                 
4715         if ((ahc->features & AHC_HS_MAILBOX) != 0)
4716                 ahc_outb(ahc, HS_MAILBOX, 0);
4717
4718         /* Tell the sequencer of our initial queue positions */
4719         if ((ahc->features & AHC_TARGETMODE) != 0) {
4720                 ahc->tqinfifonext = 1;
4721                 ahc_outb(ahc, KERNEL_TQINPOS, ahc->tqinfifonext - 1);
4722                 ahc_outb(ahc, TQINPOS, ahc->tqinfifonext);
4723         }
4724         ahc->qinfifonext = 0;
4725         ahc->qoutfifonext = 0;
4726         if ((ahc->features & AHC_QUEUE_REGS) != 0) {
4727                 ahc_outb(ahc, QOFF_CTLSTA, SCB_QSIZE_256);
4728                 ahc_outb(ahc, HNSCB_QOFF, ahc->qinfifonext);
4729                 ahc_outb(ahc, SNSCB_QOFF, ahc->qinfifonext);
4730                 ahc_outb(ahc, SDSCB_QOFF, 0);
4731         } else {
4732                 ahc_outb(ahc, KERNEL_QINPOS, ahc->qinfifonext);
4733                 ahc_outb(ahc, QINPOS, ahc->qinfifonext);
4734                 ahc_outb(ahc, QOUTPOS, ahc->qoutfifonext);
4735         }
4736
4737         /* We don't have any waiting selections */
4738         ahc_outb(ahc, WAITING_SCBH, SCB_LIST_NULL);
4739
4740         /* Our disconnection list is empty too */
4741         ahc_outb(ahc, DISCONNECTED_SCBH, SCB_LIST_NULL);
4742
4743         /* Message out buffer starts empty */
4744         ahc_outb(ahc, MSG_OUT, MSG_NOOP);
4745
4746         /*
4747          * Setup the allowed SCSI Sequences based on operational mode.
4748          * If we are a target, we'll enalbe select in operations once
4749          * we've had a lun enabled.
4750          */
4751         scsiseq_template = ENSELO|ENAUTOATNO|ENAUTOATNP;
4752         if ((ahc->flags & AHC_INITIATORROLE) != 0)
4753                 scsiseq_template |= ENRSELI;
4754         ahc_outb(ahc, SCSISEQ_TEMPLATE, scsiseq_template);
4755
4756         /* Initialize our list of free SCBs. */
4757         ahc_build_free_scb_list(ahc);
4758
4759         /*
4760          * Tell the sequencer which SCB will be the next one it receives.
4761          */
4762         ahc_outb(ahc, NEXT_QUEUED_SCB, ahc->next_queued_scb->hscb->tag);
4763
4764         /*
4765          * Load the Sequencer program and Enable the adapter
4766          * in "fast" mode.
4767          */
4768         if (bootverbose)
4769                 kprintf("%s: Downloading Sequencer Program...",
4770                        ahc_name(ahc));
4771
4772         error = ahc_loadseq(ahc);
4773         if (error != 0)
4774                 return (error);
4775
4776         if ((ahc->features & AHC_ULTRA2) != 0) {
4777                 int wait;
4778
4779                 /*
4780                  * Wait for up to 500ms for our transceivers
4781                  * to settle.  If the adapter does not have
4782                  * a cable attached, the transceivers may
4783                  * never settle, so don't complain if we
4784                  * fail here.
4785                  */
4786                 for (wait = 5000;
4787                      (ahc_inb(ahc, SBLKCTL) & (ENAB40|ENAB20)) == 0 && wait;
4788                      wait--)
4789                         aic_delay(100);
4790         }
4791         ahc_restart(ahc);
4792         return (0);
4793 }
4794
4795 /*
4796  * Start the board, ready for normal operation
4797  */
4798 int
4799 ahc_init(struct ahc_softc *ahc)
4800 {
4801         int      max_targ;
4802         int      error;
4803         u_int    i;
4804         u_int    scsi_conf;
4805         u_int    ultraenb;
4806         u_int    discenable;
4807         u_int    tagenable;
4808         size_t   driver_data_size;
4809
4810 #ifdef AHC_DEBUG
4811         if ((ahc_debug & AHC_DEBUG_SEQUENCER) != 0)
4812                 ahc->flags |= AHC_SEQUENCER_DEBUG;
4813 #endif
4814
4815 #ifdef AHC_PRINT_SRAM
4816         kprintf("Scratch Ram:");
4817         for (i = 0x20; i < 0x5f; i++) {
4818                 if (((i % 8) == 0) && (i != 0)) {
4819                         kprintf ("\n              ");
4820                 }
4821                 kprintf (" 0x%x", ahc_inb(ahc, i));
4822         }
4823         if ((ahc->features & AHC_MORE_SRAM) != 0) {
4824                 for (i = 0x70; i < 0x7f; i++) {
4825                         if (((i % 8) == 0) && (i != 0)) {
4826                                 kprintf ("\n              ");
4827                         }
4828                         kprintf (" 0x%x", ahc_inb(ahc, i));
4829                 }
4830         }
4831         kprintf ("\n");
4832         /*
4833          * Reading uninitialized scratch ram may
4834          * generate parity errors.
4835          */
4836         ahc_outb(ahc, CLRINT, CLRPARERR);
4837         ahc_outb(ahc, CLRINT, CLRBRKADRINT);
4838 #endif
4839         max_targ = 15;
4840
4841         /*
4842          * Assume we have a board at this stage and it has been reset.
4843          */
4844         if ((ahc->flags & AHC_USEDEFAULTS) != 0)
4845                 ahc->our_id = ahc->our_id_b = 7;
4846         
4847         /*
4848          * Default to allowing initiator operations.
4849          */
4850         ahc->flags |= AHC_INITIATORROLE;
4851
4852         /*
4853          * Only allow target mode features if this unit has them enabled.
4854          */
4855         if ((AHC_TMODE_ENABLE & (0x1 << ahc->unit)) == 0)
4856                 ahc->features &= ~AHC_TARGETMODE;
4857
4858 #ifndef __linux__
4859         /* DMA tag for mapping buffers into device visible space. */
4860         if (aic_dma_tag_create(ahc, ahc->parent_dmat, /*alignment*/1,
4861                                /*boundary*/BUS_SPACE_MAXADDR_32BIT + 1,
4862                                /*lowaddr*/ahc->flags & AHC_39BIT_ADDRESSING
4863                                         ? (bus_addr_t)0x7FFFFFFFFFULL
4864                                         : BUS_SPACE_MAXADDR_32BIT,
4865                                /*highaddr*/BUS_SPACE_MAXADDR,
4866                                /*filter*/NULL, /*filterarg*/NULL,
4867                                /*maxsize*/(AHC_NSEG - 1) * PAGE_SIZE,
4868                                /*nsegments*/AHC_NSEG,
4869                                /*maxsegsz*/AHC_MAXTRANSFER_SIZE,
4870                                /*flags*/BUS_DMA_ALLOCNOW,
4871                                &ahc->buffer_dmat) != 0) {
4872                 return (ENOMEM);
4873         }
4874 #endif
4875
4876         ahc->init_level++;
4877
4878         /*
4879          * DMA tag for our command fifos and other data in system memory
4880          * the card's sequencer must be able to access.  For initiator
4881          * roles, we need to allocate space for the qinfifo and qoutfifo.
4882          * The qinfifo and qoutfifo are composed of 256 1 byte elements. 
4883          * When providing for the target mode role, we must additionally
4884          * provide space for the incoming target command fifo and an extra
4885          * byte to deal with a dma bug in some chip versions.
4886          */
4887         driver_data_size = 2 * 256 * sizeof(uint8_t);
4888         if ((ahc->features & AHC_TARGETMODE) != 0)
4889                 driver_data_size += AHC_TMODE_CMDS * sizeof(struct target_cmd)
4890                                  + /*DMA WideOdd Bug Buffer*/1;
4891         if (aic_dma_tag_create(ahc, ahc->parent_dmat, /*alignment*/1,
4892                                /*boundary*/BUS_SPACE_MAXADDR_32BIT + 1,
4893                                /*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
4894                                /*highaddr*/BUS_SPACE_MAXADDR,
4895                                /*filter*/NULL, /*filterarg*/NULL,
4896                                driver_data_size,
4897                                /*nsegments*/1,
4898                                /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT,
4899                                /*flags*/0, &ahc->shared_data_dmat) != 0) {
4900                 return (ENOMEM);
4901         }
4902
4903         ahc->init_level++;
4904
4905         /* Allocation of driver data */
4906         if (aic_dmamem_alloc(ahc, ahc->shared_data_dmat,
4907                              (void *)&ahc->qoutfifo,
4908                              BUS_DMA_NOWAIT, &ahc->shared_data_dmamap) != 0) {
4909                 return (ENOMEM);
4910         }
4911
4912         ahc->init_level++;
4913
4914         /* And permanently map it in */
4915         aic_dmamap_load(ahc, ahc->shared_data_dmat, ahc->shared_data_dmamap,
4916                         ahc->qoutfifo, driver_data_size, ahc_dmamap_cb,
4917                         &ahc->shared_data_busaddr, /*flags*/0);
4918
4919         if ((ahc->features & AHC_TARGETMODE) != 0) {
4920                 ahc->targetcmds = (struct target_cmd *)ahc->qoutfifo;
4921                 ahc->qoutfifo = (uint8_t *)&ahc->targetcmds[AHC_TMODE_CMDS];
4922                 ahc->dma_bug_buf = ahc->shared_data_busaddr
4923                                  + driver_data_size - 1;
4924                 /* All target command blocks start out invalid. */
4925                 for (i = 0; i < AHC_TMODE_CMDS; i++)
4926                         ahc->targetcmds[i].cmd_valid = 0;
4927                 ahc_sync_tqinfifo(ahc, BUS_DMASYNC_PREREAD);
4928                 ahc->qoutfifo = (uint8_t *)&ahc->targetcmds[256];
4929         }
4930         ahc->qinfifo = &ahc->qoutfifo[256];
4931
4932         ahc->init_level++;
4933
4934         /* Allocate SCB data now that buffer_dmat is initialized */
4935         if (ahc->scb_data->maxhscbs == 0)
4936                 if (ahc_init_scbdata(ahc) != 0)
4937                         return (ENOMEM);
4938
4939         /*
4940          * Allocate a tstate to house information for our
4941          * initiator presence on the bus as well as the user
4942          * data for any target mode initiator.
4943          */
4944         if (ahc_alloc_tstate(ahc, ahc->our_id, 'A') == NULL) {
4945                 kprintf("%s: unable to allocate ahc_tmode_tstate.  "
4946                        "Failing attach\n", ahc_name(ahc));
4947                 return (ENOMEM);
4948         }
4949
4950         if ((ahc->features & AHC_TWIN) != 0) {
4951                 if (ahc_alloc_tstate(ahc, ahc->our_id_b, 'B') == NULL) {
4952                         kprintf("%s: unable to allocate ahc_tmode_tstate.  "
4953                                "Failing attach\n", ahc_name(ahc));
4954                         return (ENOMEM);
4955                 }
4956         }
4957
4958         /*
4959          * Fire up a recovery thread for this controller.
4960          */
4961         error = ahc_spawn_recovery_thread(ahc);
4962         if (error != 0)
4963                 return (error);
4964
4965         if (ahc->scb_data->maxhscbs < AHC_SCB_MAX_ALLOC) {
4966                 ahc->flags |= AHC_PAGESCBS;
4967         } else {
4968                 ahc->flags &= ~AHC_PAGESCBS;
4969         }
4970
4971 #ifdef AHC_DEBUG
4972         if (ahc_debug & AHC_SHOW_MISC) {
4973                 kprintf("%s: hardware scb %u bytes; kernel scb %u bytes; "
4974                        "ahc_dma %u bytes\n",
4975                         ahc_name(ahc),
4976                         (u_int)sizeof(struct hardware_scb),
4977                         (u_int)sizeof(struct scb),
4978                         (u_int)sizeof(struct ahc_dma_seg));
4979         }
4980 #endif /* AHC_DEBUG */
4981
4982         /*
4983          * Look at the information that board initialization or
4984          * the board bios has left us.
4985          */
4986         if (ahc->features & AHC_TWIN) {
4987                 scsi_conf = ahc_inb(ahc, SCSICONF + 1);
4988                 if ((scsi_conf & RESET_SCSI) != 0
4989                  && (ahc->flags & AHC_INITIATORROLE) != 0)
4990                         ahc->flags |= AHC_RESET_BUS_B;
4991         }
4992
4993         scsi_conf = ahc_inb(ahc, SCSICONF);
4994         if ((scsi_conf & RESET_SCSI) != 0
4995          && (ahc->flags & AHC_INITIATORROLE) != 0)
4996                 ahc->flags |= AHC_RESET_BUS_A;
4997
4998         ultraenb = 0;   
4999         tagenable = ALL_TARGETS_MASK;
5000
5001         /* Grab the disconnection disable table and invert it for our needs */
5002         if ((ahc->flags & AHC_USEDEFAULTS) != 0) {
5003                 kprintf("%s: Host Adapter Bios disabled.  Using default SCSI "
5004                         "device parameters\n", ahc_name(ahc));
5005                 ahc->flags |= AHC_EXTENDED_TRANS_A|AHC_EXTENDED_TRANS_B|
5006                               AHC_TERM_ENB_A|AHC_TERM_ENB_B;
5007                 discenable = ALL_TARGETS_MASK;
5008                 if ((ahc->features & AHC_ULTRA) != 0)
5009                         ultraenb = ALL_TARGETS_MASK;
5010         } else {
5011                 discenable = ~((ahc_inb(ahc, DISC_DSB + 1) << 8)
5012                            | ahc_inb(ahc, DISC_DSB));
5013                 if ((ahc->features & (AHC_ULTRA|AHC_ULTRA2)) != 0)
5014                         ultraenb = (ahc_inb(ahc, ULTRA_ENB + 1) << 8)
5015                                       | ahc_inb(ahc, ULTRA_ENB);
5016         }
5017
5018         if ((ahc->features & (AHC_WIDE|AHC_TWIN)) == 0)
5019                 max_targ = 7;
5020
5021         for (i = 0; i <= max_targ; i++) {
5022                 struct ahc_initiator_tinfo *tinfo;
5023                 struct ahc_tmode_tstate *tstate;
5024                 u_int our_id;
5025                 u_int target_id;
5026                 char channel;
5027
5028                 channel = 'A';
5029                 our_id = ahc->our_id;
5030                 target_id = i;
5031                 if (i > 7 && (ahc->features & AHC_TWIN) != 0) {
5032                         channel = 'B';
5033                         our_id = ahc->our_id_b;
5034                         target_id = i % 8;
5035                 }
5036                 tinfo = ahc_fetch_transinfo(ahc, channel, our_id,
5037                                             target_id, &tstate);
5038                 /* Default to async narrow across the board */
5039                 memset(tinfo, 0, sizeof(*tinfo));
5040                 if (ahc->flags & AHC_USEDEFAULTS) {
5041                         if ((ahc->features & AHC_WIDE) != 0)
5042                                 tinfo->user.width = MSG_EXT_WDTR_BUS_16_BIT;
5043
5044                         /*
5045                          * These will be truncated when we determine the
5046                          * connection type we have with the target.
5047                          */
5048                         tinfo->user.period = ahc_syncrates->period;
5049                         tinfo->user.offset = MAX_OFFSET;
5050                 } else {
5051                         u_int scsirate;
5052                         uint16_t mask;
5053
5054                         /* Take the settings leftover in scratch RAM. */
5055                         scsirate = ahc_inb(ahc, TARG_SCSIRATE + i);
5056                         mask = (0x01 << i);
5057                         if ((ahc->features & AHC_ULTRA2) != 0) {
5058                                 u_int offset;
5059                                 u_int maxsync;
5060
5061                                 if ((scsirate & SOFS) == 0x0F) {
5062                                         /*
5063                                          * Haven't negotiated yet,
5064                                          * so the format is different.
5065                                          */
5066                                         scsirate = (scsirate & SXFR) >> 4
5067                                                  | (ultraenb & mask)
5068                                                   ? 0x08 : 0x0
5069                                                  | (scsirate & WIDEXFER);
5070                                         offset = MAX_OFFSET_ULTRA2;
5071                                 } else
5072                                         offset = ahc_inb(ahc, TARG_OFFSET + i);
5073                                 if ((scsirate & ~WIDEXFER) == 0 && offset != 0)
5074                                         /* Set to the lowest sync rate, 5MHz */
5075                                         scsirate |= 0x1c;
5076                                 maxsync = AHC_SYNCRATE_ULTRA2;
5077                                 if ((ahc->features & AHC_DT) != 0)
5078                                         maxsync = AHC_SYNCRATE_DT;
5079                                 tinfo->user.period =
5080                                     ahc_find_period(ahc, scsirate, maxsync);
5081                                 if (offset == 0)
5082                                         tinfo->user.period = 0;
5083                                 else
5084                                         tinfo->user.offset = MAX_OFFSET;
5085                                 if ((scsirate & SXFR_ULTRA2) <= 8/*10MHz*/
5086                                  && (ahc->features & AHC_DT) != 0)
5087                                         tinfo->user.ppr_options =
5088                                             MSG_EXT_PPR_DT_REQ;
5089                         } else if ((scsirate & SOFS) != 0) {
5090                                 if ((scsirate & SXFR) == 0x40
5091                                  && (ultraenb & mask) != 0) {
5092                                         /* Treat 10MHz as a non-ultra speed */
5093                                         scsirate &= ~SXFR;
5094                                         ultraenb &= ~mask;
5095                                 }
5096                                 tinfo->user.period = 
5097                                     ahc_find_period(ahc, scsirate,
5098                                                     (ultraenb & mask)
5099                                                    ? AHC_SYNCRATE_ULTRA
5100                                                    : AHC_SYNCRATE_FAST);
5101                                 if (tinfo->user.period != 0)
5102                                         tinfo->user.offset = MAX_OFFSET;
5103                         }
5104                         if (tinfo->user.period == 0)
5105                                 tinfo->user.offset = 0;
5106                         if ((scsirate & WIDEXFER) != 0
5107                          && (ahc->features & AHC_WIDE) != 0)
5108                                 tinfo->user.width = MSG_EXT_WDTR_BUS_16_BIT;
5109                         tinfo->user.protocol_version = 4;
5110                         if ((ahc->features & AHC_DT) != 0)
5111                                 tinfo->user.transport_version = 3;
5112                         else
5113                                 tinfo->user.transport_version = 2;
5114                         tinfo->goal.protocol_version = 2;
5115                         tinfo->goal.transport_version = 2;
5116                         tinfo->curr.protocol_version = 2;
5117                         tinfo->curr.transport_version = 2;
5118                 }
5119                 tstate->ultraenb = 0;
5120         }
5121         ahc->user_discenable = discenable;
5122         ahc->user_tagenable = tagenable;
5123
5124         return (ahc->bus_chip_init(ahc));
5125 }
5126
5127 void
5128 ahc_intr_enable(struct ahc_softc *ahc, int enable)
5129 {
5130         u_int hcntrl;
5131
5132         hcntrl = ahc_inb(ahc, HCNTRL);
5133         hcntrl &= ~INTEN;
5134         ahc->pause &= ~INTEN;
5135         ahc->unpause &= ~INTEN;
5136         if (enable) {
5137                 hcntrl |= INTEN;
5138                 ahc->pause |= INTEN;
5139                 ahc->unpause |= INTEN;
5140         }
5141         ahc_outb(ahc, HCNTRL, hcntrl);
5142 }
5143
5144 /*
5145  * Ensure that the card is paused in a location
5146  * outside of all critical sections and that all
5147  * pending work is completed prior to returning.
5148  * This routine should only be called from outside
5149  * an interrupt context.
5150  */
5151 void
5152 ahc_pause_and_flushwork(struct ahc_softc *ahc)
5153 {
5154         int intstat;
5155         int maxloops;
5156         int paused;
5157
5158         maxloops = 1000;
5159         ahc->flags |= AHC_ALL_INTERRUPTS;
5160         paused = FALSE;
5161         do {
5162                 if (paused) {
5163                         ahc_unpause(ahc);
5164                         /*
5165                          * Give the sequencer some time to service
5166                          * any active selections.
5167                          */
5168                         aic_delay(500);
5169                 }
5170                 ahc_intr(ahc);
5171                 ahc_pause(ahc);
5172                 paused = TRUE;
5173                 ahc_outb(ahc, SCSISEQ, ahc_inb(ahc, SCSISEQ) & ~ENSELO);
5174                 intstat = ahc_inb(ahc, INTSTAT);
5175                 if ((intstat & INT_PEND) == 0) {
5176                         ahc_clear_critical_section(ahc);
5177                         intstat = ahc_inb(ahc, INTSTAT);
5178                 }
5179         } while (--maxloops
5180               && (intstat != 0xFF || (ahc->features & AHC_REMOVABLE) == 0)
5181               && ((intstat & INT_PEND) != 0
5182                || (ahc_inb(ahc, SSTAT0) & (SELDO|SELINGO)) != 0));
5183         if (maxloops == 0) {
5184                 kprintf("Infinite interrupt loop, INTSTAT = %x",
5185                        ahc_inb(ahc, INTSTAT));
5186         }
5187         ahc_platform_flushwork(ahc);
5188         ahc->flags &= ~AHC_ALL_INTERRUPTS;
5189 }
5190
5191 int
5192 ahc_suspend(struct ahc_softc *ahc)
5193 {
5194
5195         ahc_pause_and_flushwork(ahc);
5196
5197         if (LIST_FIRST(&ahc->pending_scbs) != NULL) {
5198                 ahc_unpause(ahc);
5199                 return (EBUSY);
5200         }
5201
5202 #ifdef AHC_TARGET_MODE
5203         /*
5204          * XXX What about ATIOs that have not yet been serviced?
5205          * Perhaps we should just refuse to be suspended if we
5206          * are acting in a target role.
5207          */
5208         if (ahc->pending_device != NULL) {
5209                 ahc_unpause(ahc);
5210                 return (EBUSY);
5211         }
5212 #endif
5213         ahc_shutdown(ahc);
5214         return (0);
5215 }
5216
5217 int
5218 ahc_resume(struct ahc_softc *ahc)
5219 {
5220
5221         ahc_reset(ahc, /*reinit*/TRUE);
5222         ahc_intr_enable(ahc, TRUE); 
5223         ahc_restart(ahc);
5224         return (0);
5225 }
5226
5227 /************************** Busy Target Table *********************************/
5228 /*
5229  * Return the untagged transaction id for a given target/channel lun.
5230  * Optionally, clear the entry.
5231  */
5232 u_int
5233 ahc_index_busy_tcl(struct ahc_softc *ahc, u_int tcl)
5234 {
5235         u_int scbid;
5236         u_int target_offset;
5237
5238         if ((ahc->flags & AHC_SCB_BTT) != 0) {
5239                 u_int saved_scbptr;
5240                 
5241                 saved_scbptr = ahc_inb(ahc, SCBPTR);
5242                 ahc_outb(ahc, SCBPTR, TCL_LUN(tcl));
5243                 scbid = ahc_inb(ahc, SCB_64_BTT + TCL_TARGET_OFFSET(tcl));
5244                 ahc_outb(ahc, SCBPTR, saved_scbptr);
5245         } else {
5246                 target_offset = TCL_TARGET_OFFSET(tcl);
5247                 scbid = ahc_inb(ahc, BUSY_TARGETS + target_offset);
5248         }
5249
5250         return (scbid);
5251 }
5252
5253 void
5254 ahc_unbusy_tcl(struct ahc_softc *ahc, u_int tcl)
5255 {
5256         u_int target_offset;
5257
5258         if ((ahc->flags & AHC_SCB_BTT) != 0) {
5259                 u_int saved_scbptr;
5260                 
5261                 saved_scbptr = ahc_inb(ahc, SCBPTR);
5262                 ahc_outb(ahc, SCBPTR, TCL_LUN(tcl));
5263                 ahc_outb(ahc, SCB_64_BTT+TCL_TARGET_OFFSET(tcl), SCB_LIST_NULL);
5264                 ahc_outb(ahc, SCBPTR, saved_scbptr);
5265         } else {
5266                 target_offset = TCL_TARGET_OFFSET(tcl);
5267                 ahc_outb(ahc, BUSY_TARGETS + target_offset, SCB_LIST_NULL);
5268         }
5269 }
5270
5271 void
5272 ahc_busy_tcl(struct ahc_softc *ahc, u_int tcl, u_int scbid)
5273 {
5274         u_int target_offset;
5275
5276         if ((ahc->flags & AHC_SCB_BTT) != 0) {
5277                 u_int saved_scbptr;
5278                 
5279                 saved_scbptr = ahc_inb(ahc, SCBPTR);
5280                 ahc_outb(ahc, SCBPTR, TCL_LUN(tcl));
5281                 ahc_outb(ahc, SCB_64_BTT + TCL_TARGET_OFFSET(tcl), scbid);
5282                 ahc_outb(ahc, SCBPTR, saved_scbptr);
5283         } else {
5284                 target_offset = TCL_TARGET_OFFSET(tcl);
5285                 ahc_outb(ahc, BUSY_TARGETS + target_offset, scbid);
5286         }
5287 }
5288
5289 /************************** SCB and SCB queue management **********************/
5290 int
5291 ahc_match_scb(struct ahc_softc *ahc, struct scb *scb, int target,
5292               char channel, int lun, u_int tag, role_t role)
5293 {
5294         int targ = SCB_GET_TARGET(ahc, scb);
5295         char chan = SCB_GET_CHANNEL(ahc, scb);
5296         int slun = SCB_GET_LUN(scb);
5297         int match;
5298
5299         match = ((chan == channel) || (channel == ALL_CHANNELS));
5300         if (match != 0)
5301                 match = ((targ == target) || (target == CAM_TARGET_WILDCARD));
5302         if (match != 0)
5303                 match = ((lun == slun) || (lun == CAM_LUN_WILDCARD));
5304         if (match != 0) {
5305 #ifdef AHC_TARGET_MODE
5306                 int group;
5307
5308                 group = XPT_FC_GROUP(scb->io_ctx->ccb_h.func_code);
5309                 if (role == ROLE_INITIATOR) {
5310                         match = (group != XPT_FC_GROUP_TMODE)
5311                               && ((tag == scb->hscb->tag)
5312                                || (tag == SCB_LIST_NULL));
5313                 } else if (role == ROLE_TARGET) {
5314                         match = (group == XPT_FC_GROUP_TMODE)
5315                               && ((tag == scb->io_ctx->csio.tag_id)
5316                                || (tag == SCB_LIST_NULL));
5317                 }
5318 #else /* !AHC_TARGET_MODE */
5319                 match = ((tag == scb->hscb->tag) || (tag == SCB_LIST_NULL));
5320 #endif /* AHC_TARGET_MODE */
5321         }
5322
5323         return match;
5324 }
5325
5326 void
5327 ahc_freeze_devq(struct ahc_softc *ahc, struct scb *scb)
5328 {
5329         int     target;
5330         char    channel;
5331         int     lun;
5332
5333         target = SCB_GET_TARGET(ahc, scb);
5334         lun = SCB_GET_LUN(scb);
5335         channel = SCB_GET_CHANNEL(ahc, scb);
5336         
5337         ahc_search_qinfifo(ahc, target, channel, lun,
5338                            /*tag*/SCB_LIST_NULL, ROLE_UNKNOWN,
5339                            CAM_REQUEUE_REQ, SEARCH_COMPLETE);
5340
5341         ahc_platform_freeze_devq(ahc, scb);
5342 }
5343
5344 void
5345 ahc_qinfifo_requeue_tail(struct ahc_softc *ahc, struct scb *scb)
5346 {
5347         struct scb *prev_scb;
5348
5349         prev_scb = NULL;
5350         if (ahc_qinfifo_count(ahc) != 0) {
5351                 u_int prev_tag;
5352                 uint8_t prev_pos;
5353
5354                 prev_pos = ahc->qinfifonext - 1;
5355                 prev_tag = ahc->qinfifo[prev_pos];
5356                 prev_scb = ahc_lookup_scb(ahc, prev_tag);
5357         }
5358         ahc_qinfifo_requeue(ahc, prev_scb, scb);
5359         if ((ahc->features & AHC_QUEUE_REGS) != 0) {
5360                 ahc_outb(ahc, HNSCB_QOFF, ahc->qinfifonext);
5361         } else {
5362                 ahc_outb(ahc, KERNEL_QINPOS, ahc->qinfifonext);
5363         }
5364 }
5365
5366 static void
5367 ahc_qinfifo_requeue(struct ahc_softc *ahc, struct scb *prev_scb,
5368                     struct scb *scb)
5369 {
5370         if (prev_scb == NULL) {
5371                 ahc_outb(ahc, NEXT_QUEUED_SCB, scb->hscb->tag);
5372         } else {
5373                 prev_scb->hscb->next = scb->hscb->tag;
5374                 ahc_sync_scb(ahc, prev_scb, 
5375                              BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
5376         }
5377         ahc->qinfifo[ahc->qinfifonext++] = scb->hscb->tag;
5378         scb->hscb->next = ahc->next_queued_scb->hscb->tag;
5379         ahc_sync_scb(ahc, scb, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
5380 }
5381
5382 static int
5383 ahc_qinfifo_count(struct ahc_softc *ahc)
5384 {
5385         uint8_t qinpos;
5386         uint8_t diff;
5387
5388         if ((ahc->features & AHC_QUEUE_REGS) != 0) {
5389                 qinpos = ahc_inb(ahc, SNSCB_QOFF);
5390                 ahc_outb(ahc, SNSCB_QOFF, qinpos);
5391         } else
5392                 qinpos = ahc_inb(ahc, QINPOS);
5393         diff = ahc->qinfifonext - qinpos;
5394         return (diff);
5395 }
5396
5397 int
5398 ahc_search_qinfifo(struct ahc_softc *ahc, int target, char channel,
5399                    int lun, u_int tag, role_t role, uint32_t status,
5400                    ahc_search_action action)
5401 {
5402         struct  scb *scb;
5403         struct  scb *prev_scb;
5404         uint8_t qinstart;
5405         uint8_t qinpos;
5406         uint8_t qintail;
5407         uint8_t next;
5408         uint8_t prev;
5409         uint8_t curscbptr;
5410         int     found;
5411         int     have_qregs;
5412
5413         qintail = ahc->qinfifonext;
5414         have_qregs = (ahc->features & AHC_QUEUE_REGS) != 0;
5415         if (have_qregs) {
5416                 qinstart = ahc_inb(ahc, SNSCB_QOFF);
5417                 ahc_outb(ahc, SNSCB_QOFF, qinstart);
5418         } else
5419                 qinstart = ahc_inb(ahc, QINPOS);
5420         qinpos = qinstart;
5421         found = 0;
5422         prev_scb = NULL;
5423
5424         if (action == SEARCH_COMPLETE) {
5425                 /*
5426                  * Don't attempt to run any queued untagged transactions
5427                  * until we are done with the abort process.
5428                  */
5429                 ahc_freeze_untagged_queues(ahc);
5430         }
5431
5432         /*
5433          * Start with an empty queue.  Entries that are not chosen
5434          * for removal will be re-added to the queue as we go.
5435          */
5436         ahc->qinfifonext = qinpos;
5437         ahc_outb(ahc, NEXT_QUEUED_SCB, ahc->next_queued_scb->hscb->tag);
5438
5439         while (qinpos != qintail) {
5440                 scb = ahc_lookup_scb(ahc, ahc->qinfifo[qinpos]);
5441                 if (scb == NULL) {
5442                         kprintf("qinpos = %d, SCB index = %d\n",
5443                                 qinpos, ahc->qinfifo[qinpos]);
5444                         panic("Loop 1\n");
5445                 }
5446
5447                 if (ahc_match_scb(ahc, scb, target, channel, lun, tag, role)) {
5448                         /*
5449                          * We found an scb that needs to be acted on.
5450                          */
5451                         found++;
5452                         switch (action) {
5453                         case SEARCH_COMPLETE:
5454                         {
5455                                 cam_status ostat;
5456                                 cam_status cstat;
5457
5458                                 ostat = aic_get_transaction_status(scb);
5459                                 if (ostat == CAM_REQ_INPROG)
5460                                         aic_set_transaction_status(scb, status);
5461                                 cstat = aic_get_transaction_status(scb);
5462                                 if (cstat != CAM_REQ_CMP)
5463                                         aic_freeze_scb(scb);
5464                                 if ((scb->flags & SCB_ACTIVE) == 0)
5465                                         kprintf("Inactive SCB in qinfifo\n");
5466                                 ahc_done(ahc, scb);
5467
5468                                 /* FALLTHROUGH */
5469                         }
5470                         case SEARCH_REMOVE:
5471                                 break;
5472                         case SEARCH_COUNT:
5473                                 ahc_qinfifo_requeue(ahc, prev_scb, scb);
5474                                 prev_scb = scb;
5475                                 break;
5476                         }
5477                 } else {
5478                         ahc_qinfifo_requeue(ahc, prev_scb, scb);
5479                         prev_scb = scb;
5480                 }
5481                 qinpos++;
5482         }
5483
5484         if ((ahc->features & AHC_QUEUE_REGS) != 0) {
5485                 ahc_outb(ahc, HNSCB_QOFF, ahc->qinfifonext);
5486         } else {
5487                 ahc_outb(ahc, KERNEL_QINPOS, ahc->qinfifonext);
5488         }
5489
5490         if (action != SEARCH_COUNT
5491          && (found != 0)
5492          && (qinstart != ahc->qinfifonext)) {
5493                 /*
5494                  * The sequencer may be in the process of dmaing
5495                  * down the SCB at the beginning of the queue.
5496                  * This could be problematic if either the first,
5497                  * or the second SCB is removed from the queue
5498                  * (the first SCB includes a pointer to the "next"
5499                  * SCB to dma). If we have removed any entries, swap
5500                  * the first element in the queue with the next HSCB
5501                  * so the sequencer will notice that NEXT_QUEUED_SCB
5502                  * has changed during its dma attempt and will retry
5503                  * the DMA.
5504                  */
5505                 scb = ahc_lookup_scb(ahc, ahc->qinfifo[qinstart]);
5506
5507                 if (scb == NULL) {
5508                         kprintf("found = %d, qinstart = %d, qinfifionext = %d\n",
5509                                 found, qinstart, ahc->qinfifonext);
5510                         panic("First/Second Qinfifo fixup\n");
5511                 }
5512                 /*
5513                  * ahc_swap_with_next_hscb forces our next pointer to
5514                  * point to the reserved SCB for future commands.  Save
5515                  * and restore our original next pointer to maintain
5516                  * queue integrity.
5517                  */
5518                 next = scb->hscb->next;
5519                 ahc->scb_data->scbindex[scb->hscb->tag] = NULL;
5520                 ahc_swap_with_next_hscb(ahc, scb);
5521                 scb->hscb->next = next;
5522                 ahc->qinfifo[qinstart] = scb->hscb->tag;
5523
5524                 /* Tell the card about the new head of the qinfifo. */
5525                 ahc_outb(ahc, NEXT_QUEUED_SCB, scb->hscb->tag);
5526
5527                 /* Fixup the tail "next" pointer. */
5528                 qintail = ahc->qinfifonext - 1;
5529                 scb = ahc_lookup_scb(ahc, ahc->qinfifo[qintail]);
5530                 scb->hscb->next = ahc->next_queued_scb->hscb->tag;
5531         }
5532
5533         /*
5534          * Search waiting for selection list.
5535          */
5536         curscbptr = ahc_inb(ahc, SCBPTR);
5537         next = ahc_inb(ahc, WAITING_SCBH);  /* Start at head of list. */
5538         prev = SCB_LIST_NULL;
5539
5540         while (next != SCB_LIST_NULL) {
5541                 uint8_t scb_index;
5542
5543                 ahc_outb(ahc, SCBPTR, next);
5544                 scb_index = ahc_inb(ahc, SCB_TAG);
5545                 if (scb_index >= ahc->scb_data->numscbs) {
5546                         kprintf("Waiting List inconsistency. "
5547                                "SCB index == %d, yet numscbs == %d.",
5548                                scb_index, ahc->scb_data->numscbs);
5549                         ahc_dump_card_state(ahc);
5550                         panic("for safety");
5551                 }
5552                 scb = ahc_lookup_scb(ahc, scb_index);
5553                 if (scb == NULL) {
5554                         kprintf("scb_index = %d, next = %d\n",
5555                                 scb_index, next);
5556                         panic("Waiting List traversal\n");
5557                 }
5558                 if (ahc_match_scb(ahc, scb, target, channel,
5559                                   lun, SCB_LIST_NULL, role)) {
5560                         /*
5561                          * We found an scb that needs to be acted on.
5562                          */
5563                         found++;
5564                         switch (action) {
5565                         case SEARCH_COMPLETE:
5566                         {
5567                                 cam_status ostat;
5568                                 cam_status cstat;
5569
5570                                 ostat = aic_get_transaction_status(scb);
5571                                 if (ostat == CAM_REQ_INPROG)
5572                                         aic_set_transaction_status(scb,
5573                                                                    status);
5574                                 cstat = aic_get_transaction_status(scb);
5575                                 if (cstat != CAM_REQ_CMP)
5576                                         aic_freeze_scb(scb);
5577                                 if ((scb->flags & SCB_ACTIVE) == 0)
5578                                         kprintf("Inactive SCB in Wait List\n");
5579                                 ahc_done(ahc, scb);
5580                                 /* FALLTHROUGH */
5581                         }
5582                         case SEARCH_REMOVE:
5583                                 next = ahc_rem_wscb(ahc, next, prev);
5584                                 break;
5585                         case SEARCH_COUNT:
5586                                 prev = next;
5587                                 next = ahc_inb(ahc, SCB_NEXT);
5588                                 break;
5589                         }
5590                 } else {
5591                         
5592                         prev = next;
5593                         next = ahc_inb(ahc, SCB_NEXT);
5594                 }
5595         }
5596         ahc_outb(ahc, SCBPTR, curscbptr);
5597
5598         found += ahc_search_untagged_queues(ahc, /*aic_io_ctx_t*/NULL, target,
5599                                             channel, lun, status, action);
5600
5601         if (action == SEARCH_COMPLETE)
5602                 ahc_release_untagged_queues(ahc);
5603         return (found);
5604 }
5605
5606 int
5607 ahc_search_untagged_queues(struct ahc_softc *ahc, aic_io_ctx_t ctx,
5608                            int target, char channel, int lun, uint32_t status,
5609                            ahc_search_action action)
5610 {
5611         struct  scb *scb;
5612         int     maxtarget;
5613         int     found;
5614         int     i;
5615
5616         if (action == SEARCH_COMPLETE) {
5617                 /*
5618                  * Don't attempt to run any queued untagged transactions
5619                  * until we are done with the abort process.
5620                  */
5621                 ahc_freeze_untagged_queues(ahc);
5622         }
5623
5624         found = 0;
5625         i = 0;
5626         if ((ahc->flags & AHC_SCB_BTT) == 0) {
5627
5628                 maxtarget = 16;
5629                 if (target != CAM_TARGET_WILDCARD) {
5630
5631                         i = target;
5632                         if (channel == 'B')
5633                                 i += 8;
5634                         maxtarget = i + 1;
5635                 }
5636         } else {
5637                 maxtarget = 0;
5638         }
5639
5640         for (; i < maxtarget; i++) {
5641                 struct scb_tailq *untagged_q;
5642                 struct scb *next_scb;
5643
5644                 untagged_q = &(ahc->untagged_queues[i]);
5645                 next_scb = TAILQ_FIRST(untagged_q);
5646                 while (next_scb != NULL) {
5647
5648                         scb = next_scb;
5649                         next_scb = TAILQ_NEXT(scb, links.tqe);
5650
5651                         /*
5652                          * The head of the list may be the currently
5653                          * active untagged command for a device.
5654                          * We're only searching for commands that
5655                          * have not been started.  A transaction
5656                          * marked active but still in the qinfifo
5657                          * is removed by the qinfifo scanning code
5658                          * above.
5659                          */
5660                         if ((scb->flags & SCB_ACTIVE) != 0)
5661                                 continue;
5662
5663                         if (ahc_match_scb(ahc, scb, target, channel, lun,
5664                                           SCB_LIST_NULL, ROLE_INITIATOR) == 0
5665                          || (ctx != NULL && ctx != scb->io_ctx))
5666                                 continue;
5667
5668                         /*
5669                          * We found an scb that needs to be acted on.
5670                          */
5671                         found++;
5672                         switch (action) {
5673                         case SEARCH_COMPLETE:
5674                         {
5675                                 cam_status ostat;
5676                                 cam_status cstat;
5677
5678                                 ostat = aic_get_transaction_status(scb);
5679                                 if (ostat == CAM_REQ_INPROG)
5680                                         aic_set_transaction_status(scb, status);
5681                                 cstat = aic_get_transaction_status(scb);
5682                                 if (cstat != CAM_REQ_CMP)
5683                                         aic_freeze_scb(scb);
5684                                 ahc_done(ahc, scb);
5685                                 break;
5686                         }
5687                         case SEARCH_REMOVE:
5688                                 scb->flags &= ~SCB_UNTAGGEDQ;
5689                                 TAILQ_REMOVE(untagged_q, scb, links.tqe);
5690                                 break;
5691                         case SEARCH_COUNT:
5692                                 break;
5693                         }
5694                 }
5695         }
5696
5697         if (action == SEARCH_COMPLETE)
5698                 ahc_release_untagged_queues(ahc);
5699         return (found);
5700 }
5701
5702 int
5703 ahc_search_disc_list(struct ahc_softc *ahc, int target, char channel,
5704                      int lun, u_int tag, int stop_on_first, int remove,
5705                      int save_state)
5706 {
5707         struct  scb *scbp;
5708         u_int   next;
5709         u_int   prev;
5710         u_int   count;
5711         u_int   active_scb;
5712
5713         count = 0;
5714         next = ahc_inb(ahc, DISCONNECTED_SCBH);
5715         prev = SCB_LIST_NULL;
5716
5717         if (save_state) {
5718                 /* restore this when we're done */
5719                 active_scb = ahc_inb(ahc, SCBPTR);
5720         } else
5721                 /* Silence compiler */
5722                 active_scb = SCB_LIST_NULL;
5723
5724         while (next != SCB_LIST_NULL) {
5725                 u_int scb_index;
5726
5727                 ahc_outb(ahc, SCBPTR, next);
5728                 scb_index = ahc_inb(ahc, SCB_TAG);
5729                 if (scb_index >= ahc->scb_data->numscbs) {
5730                         kprintf("Disconnected List inconsistency. "
5731                                "SCB index == %d, yet numscbs == %d.",
5732                                scb_index, ahc->scb_data->numscbs);
5733                         ahc_dump_card_state(ahc);
5734                         panic("for safety");
5735                 }
5736
5737                 if (next == prev) {
5738                         panic("Disconnected List Loop. "
5739                               "cur SCBPTR == %x, prev SCBPTR == %x.",
5740                               next, prev);
5741                 }
5742                 scbp = ahc_lookup_scb(ahc, scb_index);
5743                 if (ahc_match_scb(ahc, scbp, target, channel, lun,
5744                                   tag, ROLE_INITIATOR)) {
5745                         count++;
5746                         if (remove) {
5747                                 next =
5748                                     ahc_rem_scb_from_disc_list(ahc, prev, next);
5749                         } else {
5750                                 prev = next;
5751                                 next = ahc_inb(ahc, SCB_NEXT);
5752                         }
5753                         if (stop_on_first)
5754                                 break;
5755                 } else {
5756                         prev = next;
5757                         next = ahc_inb(ahc, SCB_NEXT);
5758                 }
5759         }
5760         if (save_state)
5761                 ahc_outb(ahc, SCBPTR, active_scb);
5762         return (count);
5763 }
5764
5765 /*
5766  * Remove an SCB from the on chip list of disconnected transactions.
5767  * This is empty/unused if we are not performing SCB paging.
5768  */
5769 static u_int
5770 ahc_rem_scb_from_disc_list(struct ahc_softc *ahc, u_int prev, u_int scbptr)
5771 {
5772         u_int next;
5773
5774         ahc_outb(ahc, SCBPTR, scbptr);
5775         next = ahc_inb(ahc, SCB_NEXT);
5776
5777         ahc_outb(ahc, SCB_CONTROL, 0);
5778
5779         ahc_add_curscb_to_free_list(ahc);
5780
5781         if (prev != SCB_LIST_NULL) {
5782                 ahc_outb(ahc, SCBPTR, prev);
5783                 ahc_outb(ahc, SCB_NEXT, next);
5784         } else
5785                 ahc_outb(ahc, DISCONNECTED_SCBH, next);
5786
5787         return (next);
5788 }
5789
5790 /*
5791  * Add the SCB as selected by SCBPTR onto the on chip list of
5792  * free hardware SCBs.  This list is empty/unused if we are not
5793  * performing SCB paging.
5794  */
5795 static void
5796 ahc_add_curscb_to_free_list(struct ahc_softc *ahc)
5797 {
5798         /*
5799          * Invalidate the tag so that our abort
5800          * routines don't think it's active.
5801          */
5802         ahc_outb(ahc, SCB_TAG, SCB_LIST_NULL);
5803
5804         if ((ahc->flags & AHC_PAGESCBS) != 0) {
5805                 ahc_outb(ahc, SCB_NEXT, ahc_inb(ahc, FREE_SCBH));
5806                 ahc_outb(ahc, FREE_SCBH, ahc_inb(ahc, SCBPTR));
5807         }
5808 }
5809
5810 /*
5811  * Manipulate the waiting for selection list and return the
5812  * scb that follows the one that we remove.
5813  */
5814 static u_int
5815 ahc_rem_wscb(struct ahc_softc *ahc, u_int scbpos, u_int prev)
5816 {       
5817         u_int curscb, next;
5818
5819         /*
5820          * Select the SCB we want to abort and
5821          * pull the next pointer out of it.
5822          */
5823         curscb = ahc_inb(ahc, SCBPTR);
5824         ahc_outb(ahc, SCBPTR, scbpos);
5825         next = ahc_inb(ahc, SCB_NEXT);
5826
5827         /* Clear the necessary fields */
5828         ahc_outb(ahc, SCB_CONTROL, 0);
5829
5830         ahc_add_curscb_to_free_list(ahc);
5831
5832         /* update the waiting list */
5833         if (prev == SCB_LIST_NULL) {
5834                 /* First in the list */
5835                 ahc_outb(ahc, WAITING_SCBH, next); 
5836
5837                 /*
5838                  * Ensure we aren't attempting to perform
5839                  * selection for this entry.
5840                  */
5841                 ahc_outb(ahc, SCSISEQ, (ahc_inb(ahc, SCSISEQ) & ~ENSELO));
5842         } else {
5843                 /*
5844                  * Select the scb that pointed to us 
5845                  * and update its next pointer.
5846                  */
5847                 ahc_outb(ahc, SCBPTR, prev);
5848                 ahc_outb(ahc, SCB_NEXT, next);
5849         }
5850
5851         /*
5852          * Point us back at the original scb position.
5853          */
5854         ahc_outb(ahc, SCBPTR, curscb);
5855         return next;
5856 }
5857
5858 /******************************** Error Handling ******************************/
5859 /*
5860  * Abort all SCBs that match the given description (target/channel/lun/tag),
5861  * setting their status to the passed in status if the status has not already
5862  * been modified from CAM_REQ_INPROG.  This routine assumes that the sequencer
5863  * is paused before it is called.
5864  */
5865 int
5866 ahc_abort_scbs(struct ahc_softc *ahc, int target, char channel,
5867                int lun, u_int tag, role_t role, uint32_t status)
5868 {
5869         struct  scb *scbp;
5870         struct  scb *scbp_next;
5871         u_int   active_scb;
5872         int     i, j;
5873         int     maxtarget;
5874         int     minlun;
5875         int     maxlun;
5876
5877         int     found;
5878
5879         /*
5880          * Don't attempt to run any queued untagged transactions
5881          * until we are done with the abort process.
5882          */
5883         ahc_freeze_untagged_queues(ahc);
5884
5885         /* restore this when we're done */
5886         active_scb = ahc_inb(ahc, SCBPTR);
5887
5888         found = ahc_search_qinfifo(ahc, target, channel, lun, SCB_LIST_NULL,
5889                                    role, CAM_REQUEUE_REQ, SEARCH_COMPLETE);
5890
5891         /*
5892          * Clean out the busy target table for any untagged commands.
5893          */
5894         i = 0;
5895         maxtarget = 16;
5896         if (target != CAM_TARGET_WILDCARD) {
5897                 i = target;
5898                 if (channel == 'B')
5899                         i += 8;
5900                 maxtarget = i + 1;
5901         }
5902
5903         if (lun == CAM_LUN_WILDCARD) {
5904
5905                 /*
5906                  * Unless we are using an SCB based
5907                  * busy targets table, there is only
5908                  * one table entry for all luns of
5909                  * a target.
5910                  */
5911                 minlun = 0;
5912                 maxlun = 1;
5913                 if ((ahc->flags & AHC_SCB_BTT) != 0)
5914                         maxlun = AHC_NUM_LUNS;
5915         } else {
5916                 minlun = lun;
5917                 maxlun = lun + 1;
5918         }
5919
5920         if (role != ROLE_TARGET) {
5921                 for (;i < maxtarget; i++) {
5922                         for (j = minlun;j < maxlun; j++) {
5923                                 u_int scbid;
5924                                 u_int tcl;
5925
5926                                 tcl = BUILD_TCL(i << 4, j);
5927                                 scbid = ahc_index_busy_tcl(ahc, tcl);
5928                                 scbp = ahc_lookup_scb(ahc, scbid);
5929                                 if (scbp == NULL
5930                                  || ahc_match_scb(ahc, scbp, target, channel,
5931                                                   lun, tag, role) == 0)
5932                                         continue;
5933                                 ahc_unbusy_tcl(ahc, BUILD_TCL(i << 4, j));
5934                         }
5935                 }
5936
5937                 /*
5938                  * Go through the disconnected list and remove any entries we
5939                  * have queued for completion, 0'ing their control byte too.
5940                  * We save the active SCB and restore it ourselves, so there
5941                  * is no reason for this search to restore it too.
5942                  */
5943                 ahc_search_disc_list(ahc, target, channel, lun, tag,
5944                                      /*stop_on_first*/FALSE, /*remove*/TRUE,
5945                                      /*save_state*/FALSE);
5946         }
5947
5948         /*
5949          * Go through the hardware SCB array looking for commands that
5950          * were active but not on any list.  In some cases, these remnants
5951          * might not still have mappings in the scbindex array (e.g. unexpected
5952          * bus free with the same scb queued for an abort).  Don't hold this
5953          * against them.
5954          */
5955         for (i = 0; i < ahc->scb_data->maxhscbs; i++) {
5956                 u_int scbid;
5957
5958                 ahc_outb(ahc, SCBPTR, i);
5959                 scbid = ahc_inb(ahc, SCB_TAG);
5960                 scbp = ahc_lookup_scb(ahc, scbid);
5961                 if ((scbp == NULL && scbid != SCB_LIST_NULL)
5962                  || (scbp != NULL
5963                   && ahc_match_scb(ahc, scbp, target, channel, lun, tag, role)))
5964                         ahc_add_curscb_to_free_list(ahc);
5965         }
5966
5967         /*
5968          * Go through the pending CCB list and look for
5969          * commands for this target that are still active.
5970          * These are other tagged commands that were
5971          * disconnected when the reset occurred.
5972          */
5973         scbp_next = LIST_FIRST(&ahc->pending_scbs);
5974         while (scbp_next != NULL) {
5975                 scbp = scbp_next;
5976                 scbp_next = LIST_NEXT(scbp, pending_links);
5977                 if (ahc_match_scb(ahc, scbp, target, channel, lun, tag, role)) {
5978                         cam_status ostat;
5979
5980                         ostat = aic_get_transaction_status(scbp);
5981                         if (ostat == CAM_REQ_INPROG)
5982                                 aic_set_transaction_status(scbp, status);
5983                         if (aic_get_transaction_status(scbp) != CAM_REQ_CMP)
5984                                 aic_freeze_scb(scbp);
5985                         if ((scbp->flags & SCB_ACTIVE) == 0)
5986                                 kprintf("Inactive SCB on pending list\n");
5987                         ahc_done(ahc, scbp);
5988                         found++;
5989                 }
5990         }
5991         ahc_outb(ahc, SCBPTR, active_scb);
5992         ahc_platform_abort_scbs(ahc, target, channel, lun, tag, role, status);
5993         ahc_release_untagged_queues(ahc);
5994         return found;
5995 }
5996
5997 static void
5998 ahc_reset_current_bus(struct ahc_softc *ahc)
5999 {
6000         uint8_t scsiseq;
6001
6002         ahc_outb(ahc, SIMODE1, ahc_inb(ahc, SIMODE1) & ~ENSCSIRST);
6003         scsiseq = ahc_inb(ahc, SCSISEQ);
6004         ahc_outb(ahc, SCSISEQ, scsiseq | SCSIRSTO);
6005         ahc_flush_device_writes(ahc);
6006         aic_delay(AHC_BUSRESET_DELAY);
6007         /* Turn off the bus reset */
6008         ahc_outb(ahc, SCSISEQ, scsiseq & ~SCSIRSTO);
6009
6010         ahc_clear_intstat(ahc);
6011
6012         /* Re-enable reset interrupts */
6013         ahc_outb(ahc, SIMODE1, ahc_inb(ahc, SIMODE1) | ENSCSIRST);
6014 }
6015
6016 int
6017 ahc_reset_channel(struct ahc_softc *ahc, char channel, int initiate_reset)
6018 {
6019         struct  ahc_devinfo devinfo;
6020         u_int   initiator, target, max_scsiid;
6021         u_int   sblkctl;
6022         u_int   scsiseq;
6023         u_int   simode1;
6024         int     found;
6025         int     restart_needed;
6026         char    cur_channel;
6027
6028         ahc->pending_device = NULL;
6029
6030         ahc_compile_devinfo(&devinfo,
6031                             CAM_TARGET_WILDCARD,
6032                             CAM_TARGET_WILDCARD,
6033                             CAM_LUN_WILDCARD,
6034                             channel, ROLE_UNKNOWN);
6035         ahc_pause(ahc);
6036
6037         /* Make sure the sequencer is in a safe location. */
6038         ahc_clear_critical_section(ahc);
6039
6040         /*
6041          * Run our command complete fifos to ensure that we perform
6042          * completion processing on any commands that 'completed'
6043          * before the reset occurred.
6044          */
6045         ahc_run_qoutfifo(ahc);
6046 #ifdef AHC_TARGET_MODE
6047         /*
6048          * XXX - In Twin mode, the tqinfifo may have commands
6049          *       for an unaffected channel in it.  However, if
6050          *       we have run out of ATIO resources to drain that
6051          *       queue, we may not get them all out here.  Further,
6052          *       the blocked transactions for the reset channel
6053          *       should just be killed off, irrespecitve of whether
6054          *       we are blocked on ATIO resources.  Write a routine
6055          *       to compact the tqinfifo appropriately.
6056          */
6057         if ((ahc->flags & AHC_TARGETROLE) != 0) {
6058                 ahc_run_tqinfifo(ahc, /*paused*/TRUE);
6059         }
6060 #endif
6061
6062         /*
6063          * Reset the bus if we are initiating this reset
6064          */
6065         sblkctl = ahc_inb(ahc, SBLKCTL);
6066         cur_channel = 'A';
6067         if ((ahc->features & AHC_TWIN) != 0
6068          && ((sblkctl & SELBUSB) != 0))
6069             cur_channel = 'B';
6070         scsiseq = ahc_inb(ahc, SCSISEQ_TEMPLATE);
6071         if (cur_channel != channel) {
6072                 /* Case 1: Command for another bus is active
6073                  * Stealthily reset the other bus without
6074                  * upsetting the current bus.
6075                  */
6076                 ahc_outb(ahc, SBLKCTL, sblkctl ^ SELBUSB);
6077                 simode1 = ahc_inb(ahc, SIMODE1) & ~(ENBUSFREE|ENSCSIRST);
6078 #ifdef AHC_TARGET_MODE
6079                 /*
6080                  * Bus resets clear ENSELI, so we cannot
6081                  * defer re-enabling bus reset interrupts
6082                  * if we are in target mode.
6083                  */
6084                 if ((ahc->flags & AHC_TARGETROLE) != 0)
6085                         simode1 |= ENSCSIRST;
6086 #endif
6087                 ahc_outb(ahc, SIMODE1, simode1);
6088                 if (initiate_reset)
6089                         ahc_reset_current_bus(ahc);
6090                 ahc_clear_intstat(ahc);
6091                 ahc_outb(ahc, SCSISEQ, scsiseq & (ENSELI|ENRSELI|ENAUTOATNP));
6092                 ahc_outb(ahc, SBLKCTL, sblkctl);
6093                 restart_needed = FALSE;
6094         } else {
6095                 /* Case 2: A command from this bus is active or we're idle */
6096                 simode1 = ahc_inb(ahc, SIMODE1) & ~(ENBUSFREE|ENSCSIRST);
6097 #ifdef AHC_TARGET_MODE
6098                 /*
6099                  * Bus resets clear ENSELI, so we cannot
6100                  * defer re-enabling bus reset interrupts
6101                  * if we are in target mode.
6102                  */
6103                 if ((ahc->flags & AHC_TARGETROLE) != 0)
6104                         simode1 |= ENSCSIRST;
6105 #endif
6106                 ahc_outb(ahc, SIMODE1, simode1);
6107                 if (initiate_reset)
6108                         ahc_reset_current_bus(ahc);
6109                 ahc_clear_intstat(ahc);
6110                 ahc_outb(ahc, SCSISEQ, scsiseq & (ENSELI|ENRSELI|ENAUTOATNP));
6111                 restart_needed = TRUE;
6112         }
6113
6114         /*
6115          * Clean up all the state information for the
6116          * pending transactions on this bus.
6117          */
6118         found = ahc_abort_scbs(ahc, CAM_TARGET_WILDCARD, channel,
6119                                CAM_LUN_WILDCARD, SCB_LIST_NULL,
6120                                ROLE_UNKNOWN, CAM_SCSI_BUS_RESET);
6121
6122         max_scsiid = (ahc->features & AHC_WIDE) ? 15 : 7;
6123
6124 #ifdef AHC_TARGET_MODE
6125         /*
6126          * Send an immediate notify ccb to all target more peripheral
6127          * drivers affected by this action.
6128          */
6129         for (target = 0; target <= max_scsiid; target++) {
6130                 struct ahc_tmode_tstate* tstate;
6131                 u_int lun;
6132
6133                 tstate = ahc->enabled_targets[target];
6134                 if (tstate == NULL)
6135                         continue;
6136                 for (lun = 0; lun < AHC_NUM_LUNS; lun++) {
6137                         struct ahc_tmode_lstate* lstate;
6138
6139                         lstate = tstate->enabled_luns[lun];
6140                         if (lstate == NULL)
6141                                 continue;
6142
6143                         ahc_queue_lstate_event(ahc, lstate, CAM_TARGET_WILDCARD,
6144                                                EVENT_TYPE_BUS_RESET, /*arg*/0);
6145                         ahc_send_lstate_events(ahc, lstate);
6146                 }
6147         }
6148 #endif
6149         /* Notify the XPT that a bus reset occurred */
6150         ahc_send_async(ahc, devinfo.channel, CAM_TARGET_WILDCARD,
6151                        CAM_LUN_WILDCARD, AC_BUS_RESET, NULL);
6152
6153         /*
6154          * Revert to async/narrow transfers until we renegotiate.
6155          */
6156         for (target = 0; target <= max_scsiid; target++) {
6157
6158                 if (ahc->enabled_targets[target] == NULL)
6159                         continue;
6160                 for (initiator = 0; initiator <= max_scsiid; initiator++) {
6161                         struct ahc_devinfo devinfo;
6162
6163                         ahc_compile_devinfo(&devinfo, target, initiator,
6164                                             CAM_LUN_WILDCARD,
6165                                             channel, ROLE_UNKNOWN);
6166                         ahc_set_width(ahc, &devinfo, MSG_EXT_WDTR_BUS_8_BIT,
6167                                       AHC_TRANS_CUR, /*paused*/TRUE);
6168                         ahc_set_syncrate(ahc, &devinfo, /*syncrate*/NULL,
6169                                          /*period*/0, /*offset*/0,
6170                                          /*ppr_options*/0, AHC_TRANS_CUR,
6171                                          /*paused*/TRUE);
6172                 }
6173         }
6174
6175         if (restart_needed)
6176                 ahc_restart(ahc);
6177         else
6178                 ahc_unpause(ahc);
6179         return found;
6180 }
6181
6182
6183 /***************************** Residual Processing ****************************/
6184 /*
6185  * Calculate the residual for a just completed SCB.
6186  */
6187 void
6188 ahc_calc_residual(struct ahc_softc *ahc, struct scb *scb)
6189 {
6190         struct hardware_scb *hscb;
6191         struct status_pkt *spkt;
6192         uint32_t sgptr;
6193         uint32_t resid_sgptr;
6194         uint32_t resid;
6195
6196         /*
6197          * 5 cases.
6198          * 1) No residual.
6199          *    SG_RESID_VALID clear in sgptr.
6200          * 2) Transferless command
6201          * 3) Never performed any transfers.
6202          *    sgptr has SG_FULL_RESID set.
6203          * 4) No residual but target did not
6204          *    save data pointers after the
6205          *    last transfer, so sgptr was
6206          *    never updated.
6207          * 5) We have a partial residual.
6208          *    Use residual_sgptr to determine
6209          *    where we are.
6210          */
6211
6212         hscb = scb->hscb;
6213         sgptr = aic_le32toh(hscb->sgptr);
6214         if ((sgptr & SG_RESID_VALID) == 0)
6215                 /* Case 1 */
6216                 return;
6217         sgptr &= ~SG_RESID_VALID;
6218
6219         if ((sgptr & SG_LIST_NULL) != 0)
6220                 /* Case 2 */
6221                 return;
6222
6223         spkt = &hscb->shared_data.status;
6224         resid_sgptr = aic_le32toh(spkt->residual_sg_ptr);
6225         if ((sgptr & SG_FULL_RESID) != 0) {
6226                 /* Case 3 */
6227                 resid = aic_get_transfer_length(scb);
6228         } else if ((resid_sgptr & SG_LIST_NULL) != 0) {
6229                 /* Case 4 */
6230                 return;
6231         } else if ((resid_sgptr & ~SG_PTR_MASK) != 0) {
6232                 panic("Bogus resid sgptr value 0x%x\n", resid_sgptr);
6233                 /* NOTREACHED */
6234                 return;
6235         } else {
6236                 struct ahc_dma_seg *sg;
6237
6238                 /*
6239                  * Remainder of the SG where the transfer
6240                  * stopped.  
6241                  */
6242                 resid = aic_le32toh(spkt->residual_datacnt) & AHC_SG_LEN_MASK;
6243                 sg = ahc_sg_bus_to_virt(scb, resid_sgptr & SG_PTR_MASK);
6244
6245                 /* The residual sg_ptr always points to the next sg */
6246                 sg--;
6247
6248                 /*
6249                  * Add up the contents of all residual
6250                  * SG segments that are after the SG where
6251                  * the transfer stopped.
6252                  */
6253                 while ((aic_le32toh(sg->len) & AHC_DMA_LAST_SEG) == 0) {
6254                         sg++;
6255                         resid += aic_le32toh(sg->len) & AHC_SG_LEN_MASK;
6256                 }
6257         }
6258         if ((scb->flags & SCB_SENSE) == 0)
6259                 aic_set_residual(scb, resid);
6260         else
6261                 aic_set_sense_residual(scb, resid);
6262
6263 #ifdef AHC_DEBUG
6264         if ((ahc_debug & AHC_SHOW_MISC) != 0) {
6265                 ahc_print_path(ahc, scb);
6266                 kprintf("Handled %sResidual of %d bytes\n",
6267                        (scb->flags & SCB_SENSE) ? "Sense " : "", resid);
6268         }
6269 #endif
6270 }
6271
6272 /******************************* Target Mode **********************************/
6273 #ifdef AHC_TARGET_MODE
6274 /*
6275  * Add a target mode event to this lun's queue
6276  */
6277 static void
6278 ahc_queue_lstate_event(struct ahc_softc *ahc, struct ahc_tmode_lstate *lstate,
6279                        u_int initiator_id, u_int event_type, u_int event_arg)
6280 {
6281         struct ahc_tmode_event *event;
6282         int pending;
6283
6284         xpt_freeze_devq(lstate->path, /*count*/1);
6285         if (lstate->event_w_idx >= lstate->event_r_idx)
6286                 pending = lstate->event_w_idx - lstate->event_r_idx;
6287         else
6288                 pending = AHC_TMODE_EVENT_BUFFER_SIZE + 1
6289                         - (lstate->event_r_idx - lstate->event_w_idx);
6290
6291         if (event_type == EVENT_TYPE_BUS_RESET
6292          || event_type == MSG_BUS_DEV_RESET) {
6293                 /*
6294                  * Any earlier events are irrelevant, so reset our buffer.
6295                  * This has the effect of allowing us to deal with reset
6296                  * floods (an external device holding down the reset line)
6297                  * without losing the event that is really interesting.
6298                  */
6299                 lstate->event_r_idx = 0;
6300                 lstate->event_w_idx = 0;
6301                 xpt_release_devq(lstate->path, pending, /*runqueue*/FALSE);
6302         }
6303
6304         if (pending == AHC_TMODE_EVENT_BUFFER_SIZE) {
6305                 xpt_print_path(lstate->path);
6306                 kprintf("immediate event %x:%x lost\n",
6307                        lstate->event_buffer[lstate->event_r_idx].event_type,
6308                        lstate->event_buffer[lstate->event_r_idx].event_arg);
6309                 lstate->event_r_idx++;
6310                 if (lstate->event_r_idx == AHC_TMODE_EVENT_BUFFER_SIZE)
6311                         lstate->event_r_idx = 0;
6312                 xpt_release_devq(lstate->path, /*count*/1, /*runqueue*/FALSE);
6313         }
6314
6315         event = &lstate->event_buffer[lstate->event_w_idx];
6316         event->initiator_id = initiator_id;
6317         event->event_type = event_type;
6318         event->event_arg = event_arg;
6319         lstate->event_w_idx++;
6320         if (lstate->event_w_idx == AHC_TMODE_EVENT_BUFFER_SIZE)
6321                 lstate->event_w_idx = 0;
6322 }
6323
6324 /*
6325  * Send any target mode events queued up waiting
6326  * for immediate notify resources.
6327  */
6328 void
6329 ahc_send_lstate_events(struct ahc_softc *ahc, struct ahc_tmode_lstate *lstate)
6330 {
6331         struct ccb_hdr *ccbh;
6332         struct ccb_immed_notify *inot;
6333
6334         while (lstate->event_r_idx != lstate->event_w_idx
6335             && (ccbh = SLIST_FIRST(&lstate->immed_notifies)) != NULL) {
6336                 struct ahc_tmode_event *event;
6337
6338                 event = &lstate->event_buffer[lstate->event_r_idx];
6339                 SLIST_REMOVE_HEAD(&lstate->immed_notifies, sim_links.sle);
6340                 inot = (struct ccb_immed_notify *)ccbh;
6341                 switch (event->event_type) {
6342                 case EVENT_TYPE_BUS_RESET:
6343                         ccbh->status = CAM_SCSI_BUS_RESET|CAM_DEV_QFRZN;
6344                         break;
6345                 default:
6346                         ccbh->status = CAM_MESSAGE_RECV|CAM_DEV_QFRZN;
6347                         inot->message_args[0] = event->event_type;
6348                         inot->message_args[1] = event->event_arg;
6349                         break;
6350                 }
6351                 inot->initiator_id = event->initiator_id;
6352                 inot->sense_len = 0;
6353                 xpt_done((union ccb *)inot);
6354                 lstate->event_r_idx++;
6355                 if (lstate->event_r_idx == AHC_TMODE_EVENT_BUFFER_SIZE)
6356                         lstate->event_r_idx = 0;
6357         }
6358 }
6359 #endif
6360
6361 /******************** Sequencer Program Patching/Download *********************/
6362
6363 #ifdef AHC_DUMP_SEQ
6364 void
6365 ahc_dumpseq(struct ahc_softc* ahc)
6366 {
6367         int i;
6368
6369         ahc_outb(ahc, SEQCTL, PERRORDIS|FAILDIS|FASTMODE|LOADRAM);
6370         ahc_outb(ahc, SEQADDR0, 0);
6371         ahc_outb(ahc, SEQADDR1, 0);
6372         for (i = 0; i < ahc->instruction_ram_size; i++) {
6373                 uint8_t ins_bytes[4];
6374
6375                 ahc_insb(ahc, SEQRAM, ins_bytes, 4);
6376                 kprintf("0x%08x\n", ins_bytes[0] << 24
6377                                  | ins_bytes[1] << 16
6378                                  | ins_bytes[2] << 8
6379                                  | ins_bytes[3]);
6380         }
6381 }
6382 #endif
6383
6384 static int
6385 ahc_loadseq(struct ahc_softc *ahc)
6386 {
6387         struct  cs cs_table[num_critical_sections];
6388         u_int   begin_set[num_critical_sections];
6389         u_int   end_set[num_critical_sections];
6390         struct  patch *cur_patch;
6391         u_int   cs_count;
6392         u_int   cur_cs;
6393         u_int   i;
6394         u_int   skip_addr;
6395         u_int   sg_prefetch_cnt;
6396         int     downloaded;
6397         uint8_t download_consts[7];
6398
6399         /*
6400          * Start out with 0 critical sections
6401          * that apply to this firmware load.
6402          */
6403         cs_count = 0;
6404         cur_cs = 0;
6405         memset(begin_set, 0, sizeof(begin_set));
6406         memset(end_set, 0, sizeof(end_set));
6407
6408         /* Setup downloadable constant table */
6409         download_consts[QOUTFIFO_OFFSET] = 0;
6410         if (ahc->targetcmds != NULL)
6411                 download_consts[QOUTFIFO_OFFSET] += 32;
6412         download_consts[QINFIFO_OFFSET] = download_consts[QOUTFIFO_OFFSET] + 1;
6413         download_consts[CACHESIZE_MASK] = ahc->pci_cachesize - 1;
6414         download_consts[INVERTED_CACHESIZE_MASK] = ~(ahc->pci_cachesize - 1);
6415         sg_prefetch_cnt = ahc->pci_cachesize;
6416         if (sg_prefetch_cnt < (2 * sizeof(struct ahc_dma_seg)))
6417                 sg_prefetch_cnt = 2 * sizeof(struct ahc_dma_seg);
6418         download_consts[SG_PREFETCH_CNT] = sg_prefetch_cnt;
6419         download_consts[SG_PREFETCH_ALIGN_MASK] = ~(sg_prefetch_cnt - 1);
6420         download_consts[SG_PREFETCH_ADDR_MASK] = (sg_prefetch_cnt - 1);
6421
6422         cur_patch = patches;
6423         downloaded = 0;
6424         skip_addr = 0;
6425         ahc_outb(ahc, SEQCTL, PERRORDIS|FAILDIS|FASTMODE|LOADRAM);
6426         ahc_outb(ahc, SEQADDR0, 0);
6427         ahc_outb(ahc, SEQADDR1, 0);
6428
6429         for (i = 0; i < sizeof(seqprog)/4; i++) {
6430                 if (ahc_check_patch(ahc, &cur_patch, i, &skip_addr) == 0) {
6431                         /*
6432                          * Don't download this instruction as it
6433                          * is in a patch that was removed.
6434                          */
6435                         continue;
6436                 }
6437
6438                 if (downloaded == ahc->instruction_ram_size) {
6439                         /*
6440                          * We're about to exceed the instruction
6441                          * storage capacity for this chip.  Fail
6442                          * the load.
6443                          */
6444                         kprintf("\n%s: Program too large for instruction memory "
6445                                "size of %d!\n", ahc_name(ahc),
6446                                ahc->instruction_ram_size);
6447                         return (ENOMEM);
6448                 }
6449
6450                 /*
6451                  * Move through the CS table until we find a CS
6452                  * that might apply to this instruction.
6453                  */
6454                 for (; cur_cs < num_critical_sections; cur_cs++) {
6455                         if (critical_sections[cur_cs].end <= i) {
6456                                 if (begin_set[cs_count] == TRUE
6457                                  && end_set[cs_count] == FALSE) {
6458                                         cs_table[cs_count].end = downloaded;
6459                                         end_set[cs_count] = TRUE;
6460                                         cs_count++;
6461                                 }
6462                                 continue;
6463                         }
6464                         if (critical_sections[cur_cs].begin <= i
6465                          && begin_set[cs_count] == FALSE) {
6466                                 cs_table[cs_count].begin = downloaded;
6467                                 begin_set[cs_count] = TRUE;
6468                         }
6469                         break;
6470                 }
6471                 ahc_download_instr(ahc, i, download_consts);
6472                 downloaded++;
6473         }
6474
6475         ahc->num_critical_sections = cs_count;
6476         if (cs_count != 0) {
6477                 cs_count *= sizeof(struct cs);
6478                 ahc->critical_sections = kmalloc(cs_count, M_DEVBUF, M_INTWAIT);
6479                 memcpy(ahc->critical_sections, cs_table, cs_count);
6480         }
6481         ahc_outb(ahc, SEQCTL, PERRORDIS|FAILDIS|FASTMODE);
6482
6483         if (bootverbose) {
6484                 kprintf(" %d instructions downloaded\n", downloaded);
6485                 kprintf("%s: Features 0x%x, Bugs 0x%x, Flags 0x%x\n",
6486                        ahc_name(ahc), ahc->features, ahc->bugs, ahc->flags);
6487         }
6488         return (0);
6489 }
6490
6491 static int
6492 ahc_check_patch(struct ahc_softc *ahc, struct patch **start_patch,
6493                 u_int start_instr, u_int *skip_addr)
6494 {
6495         struct  patch *cur_patch;
6496         struct  patch *last_patch;
6497         u_int   num_patches;
6498
6499         num_patches = sizeof(patches)/sizeof(struct patch);
6500         last_patch = &patches[num_patches];
6501         cur_patch = *start_patch;
6502
6503         while (cur_patch < last_patch && start_instr == cur_patch->begin) {
6504
6505                 if (cur_patch->patch_func(ahc) == 0) {
6506
6507                         /* Start rejecting code */
6508                         *skip_addr = start_instr + cur_patch->skip_instr;
6509                         cur_patch += cur_patch->skip_patch;
6510                 } else {
6511                         /* Accepted this patch.  Advance to the next
6512                          * one and wait for our intruction pointer to
6513                          * hit this point.
6514                          */
6515                         cur_patch++;
6516                 }
6517         }
6518
6519         *start_patch = cur_patch;
6520         if (start_instr < *skip_addr)
6521                 /* Still skipping */
6522                 return (0);
6523
6524         return (1);
6525 }
6526
6527 static void
6528 ahc_download_instr(struct ahc_softc *ahc, u_int instrptr, uint8_t *dconsts)
6529 {
6530         union   ins_formats instr;
6531         struct  ins_format1 *fmt1_ins;
6532         struct  ins_format3 *fmt3_ins;
6533         u_int   opcode;
6534
6535         /*
6536          * The firmware is always compiled into a little endian format.
6537          */
6538         instr.integer = aic_le32toh(*(uint32_t*)&seqprog[instrptr * 4]);
6539
6540         fmt1_ins = &instr.format1;
6541         fmt3_ins = NULL;
6542
6543         /* Pull the opcode */
6544         opcode = instr.format1.opcode;
6545         switch (opcode) {
6546         case AIC_OP_JMP:
6547         case AIC_OP_JC:
6548         case AIC_OP_JNC:
6549         case AIC_OP_CALL:
6550         case AIC_OP_JNE:
6551         case AIC_OP_JNZ:
6552         case AIC_OP_JE:
6553         case AIC_OP_JZ:
6554         {
6555                 struct patch *cur_patch;
6556                 int address_offset;
6557                 u_int address;
6558                 u_int skip_addr;
6559                 u_int i;
6560
6561                 fmt3_ins = &instr.format3;
6562                 address_offset = 0;
6563                 address = fmt3_ins->address;
6564                 cur_patch = patches;
6565                 skip_addr = 0;
6566
6567                 for (i = 0; i < address;) {
6568
6569                         ahc_check_patch(ahc, &cur_patch, i, &skip_addr);
6570
6571                         if (skip_addr > i) {
6572                                 int end_addr;
6573
6574                                 end_addr = MIN(address, skip_addr);
6575                                 address_offset += end_addr - i;
6576                                 i = skip_addr;
6577                         } else {
6578                                 i++;
6579                         }
6580                 }
6581                 address -= address_offset;
6582                 fmt3_ins->address = address;
6583                 /* FALLTHROUGH */
6584         }
6585         case AIC_OP_OR:
6586         case AIC_OP_AND:
6587         case AIC_OP_XOR:
6588         case AIC_OP_ADD:
6589         case AIC_OP_ADC:
6590         case AIC_OP_BMOV:
6591                 if (fmt1_ins->parity != 0) {
6592                         fmt1_ins->immediate = dconsts[fmt1_ins->immediate];
6593                 }
6594                 fmt1_ins->parity = 0;
6595                 if ((ahc->features & AHC_CMD_CHAN) == 0
6596                  && opcode == AIC_OP_BMOV) {
6597                         /*
6598                          * Block move was added at the same time
6599                          * as the command channel.  Verify that
6600                          * this is only a move of a single element
6601                          * and convert the BMOV to a MOV
6602                          * (AND with an immediate of FF).
6603                          */
6604                         if (fmt1_ins->immediate != 1)
6605                                 panic("%s: BMOV not supported\n",
6606                                       ahc_name(ahc));
6607                         fmt1_ins->opcode = AIC_OP_AND;
6608                         fmt1_ins->immediate = 0xff;
6609                 }
6610                 /* FALLTHROUGH */
6611         case AIC_OP_ROL:
6612                 if ((ahc->features & AHC_ULTRA2) != 0) {
6613                         int i, count;
6614
6615                         /* Calculate odd parity for the instruction */
6616                         for (i = 0, count = 0; i < 31; i++) {
6617                                 uint32_t mask;
6618
6619                                 mask = 0x01 << i;
6620                                 if ((instr.integer & mask) != 0)
6621                                         count++;
6622                         }
6623                         if ((count & 0x01) == 0)
6624                                 instr.format1.parity = 1;
6625                 } else {
6626                         /* Compress the instruction for older sequencers */
6627                         if (fmt3_ins != NULL) {
6628                                 instr.integer =
6629                                         fmt3_ins->immediate
6630                                       | (fmt3_ins->source << 8)
6631                                       | (fmt3_ins->address << 16)
6632                                       | (fmt3_ins->opcode << 25);
6633                         } else {
6634                                 instr.integer =
6635                                         fmt1_ins->immediate
6636                                       | (fmt1_ins->source << 8)
6637                                       | (fmt1_ins->destination << 16)
6638                                       | (fmt1_ins->ret << 24)
6639                                       | (fmt1_ins->opcode << 25);
6640                         }
6641                 }
6642                 /* The sequencer is a little endian cpu */
6643                 instr.integer = aic_htole32(instr.integer);
6644                 ahc_outsb(ahc, SEQRAM, instr.bytes, 4);
6645                 break;
6646         default:
6647                 panic("Unknown opcode encountered in seq program");
6648                 break;
6649         }
6650 }
6651
6652 int
6653 ahc_print_register(ahc_reg_parse_entry_t *table, u_int num_entries,
6654                    const char *name, u_int address, u_int value,
6655                    u_int *cur_column, u_int wrap_point)
6656 {
6657         int     printed;
6658         u_int   printed_mask;
6659         u_int   dummy_column;
6660
6661         if (cur_column == NULL) {
6662                 dummy_column = 0;
6663                 cur_column = &dummy_column;
6664         }
6665
6666         if (*cur_column >= wrap_point) {
6667                 kprintf("\n");
6668                 *cur_column = 0;
6669         }
6670         printed = kprintf("%s[0x%x]", name, value);
6671         if (table == NULL) {
6672                 printed += kprintf(" ");
6673                 *cur_column += printed;
6674                 return (printed);
6675         }
6676         printed_mask = 0;
6677         while (printed_mask != 0xFF) {
6678                 int entry;
6679
6680                 for (entry = 0; entry < num_entries; entry++) {
6681                         if (((value & table[entry].mask)
6682                           != table[entry].value)
6683                          || ((printed_mask & table[entry].mask)
6684                           == table[entry].mask))
6685                                 continue;
6686
6687                         printed += kprintf("%s%s",
6688                                           printed_mask == 0 ? ":(" : "|",
6689                                           table[entry].name);
6690                         printed_mask |= table[entry].mask;
6691                         
6692                         break;
6693                 }
6694                 if (entry >= num_entries)
6695                         break;
6696         }
6697         if (printed_mask != 0)
6698                 printed += kprintf(") ");
6699         else
6700                 printed += kprintf(" ");
6701         if (cur_column != NULL)
6702                 *cur_column += printed;
6703         return (printed);
6704 }
6705
6706 void
6707 ahc_dump_card_state(struct ahc_softc *ahc)
6708 {
6709         struct  scb *scb;
6710         struct  scb_tailq *untagged_q;
6711         u_int   cur_col;
6712         int     paused;
6713         int     target;
6714         int     maxtarget;
6715         int     i;
6716         uint8_t last_phase;
6717         uint8_t qinpos;
6718         uint8_t qintail;
6719         uint8_t qoutpos;
6720         uint8_t scb_index;
6721         uint8_t saved_scbptr;
6722
6723         if (ahc_is_paused(ahc)) {
6724                 paused = 1;
6725         } else {
6726                 paused = 0;
6727                 ahc_pause(ahc);
6728         }
6729
6730         saved_scbptr = ahc_inb(ahc, SCBPTR);
6731         last_phase = ahc_inb(ahc, LASTPHASE);
6732         kprintf(">>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<<\n"
6733                "%s: Dumping Card State %s, at SEQADDR 0x%x\n",
6734                ahc_name(ahc), ahc_lookup_phase_entry(last_phase)->phasemsg,
6735                ahc_inb(ahc, SEQADDR0) | (ahc_inb(ahc, SEQADDR1) << 8));
6736         if (paused)
6737                 kprintf("Card was paused\n");
6738         kprintf("ACCUM = 0x%x, SINDEX = 0x%x, DINDEX = 0x%x, ARG_2 = 0x%x\n",
6739                ahc_inb(ahc, ACCUM), ahc_inb(ahc, SINDEX), ahc_inb(ahc, DINDEX),
6740                ahc_inb(ahc, ARG_2));
6741         kprintf("HCNT = 0x%x SCBPTR = 0x%x\n", ahc_inb(ahc, HCNT),
6742                ahc_inb(ahc, SCBPTR));
6743         cur_col = 0;
6744         if ((ahc->features & AHC_DT) != 0)
6745                 ahc_scsiphase_print(ahc_inb(ahc, SCSIPHASE), &cur_col, 50);
6746         ahc_scsisigi_print(ahc_inb(ahc, SCSISIGI), &cur_col, 50);
6747         ahc_error_print(ahc_inb(ahc, ERROR), &cur_col, 50);
6748         ahc_scsibusl_print(ahc_inb(ahc, SCSIBUSL), &cur_col, 50);
6749         ahc_lastphase_print(ahc_inb(ahc, LASTPHASE), &cur_col, 50);
6750         ahc_scsiseq_print(ahc_inb(ahc, SCSISEQ), &cur_col, 50);
6751         ahc_sblkctl_print(ahc_inb(ahc, SBLKCTL), &cur_col, 50);
6752         ahc_scsirate_print(ahc_inb(ahc, SCSIRATE), &cur_col, 50);
6753         ahc_seqctl_print(ahc_inb(ahc, SEQCTL), &cur_col, 50);
6754         ahc_seq_flags_print(ahc_inb(ahc, SEQ_FLAGS), &cur_col, 50);
6755         ahc_sstat0_print(ahc_inb(ahc, SSTAT0), &cur_col, 50);
6756         ahc_sstat1_print(ahc_inb(ahc, SSTAT1), &cur_col, 50);
6757         ahc_sstat2_print(ahc_inb(ahc, SSTAT2), &cur_col, 50);
6758         ahc_sstat3_print(ahc_inb(ahc, SSTAT3), &cur_col, 50);
6759         ahc_simode0_print(ahc_inb(ahc, SIMODE0), &cur_col, 50);
6760         ahc_simode1_print(ahc_inb(ahc, SIMODE1), &cur_col, 50);
6761         ahc_sxfrctl0_print(ahc_inb(ahc, SXFRCTL0), &cur_col, 50);
6762         ahc_dfcntrl_print(ahc_inb(ahc, DFCNTRL), &cur_col, 50);
6763         ahc_dfstatus_print(ahc_inb(ahc, DFSTATUS), &cur_col, 50);
6764         if (cur_col != 0)
6765                 kprintf("\n");
6766         kprintf("STACK:");
6767         for (i = 0; i < STACK_SIZE; i++)
6768                kprintf(" 0x%x", ahc_inb(ahc, STACK)|(ahc_inb(ahc, STACK) << 8));
6769         kprintf("\nSCB count = %d\n", ahc->scb_data->numscbs);
6770         kprintf("Kernel NEXTQSCB = %d\n", ahc->next_queued_scb->hscb->tag);
6771         kprintf("Card NEXTQSCB = %d\n", ahc_inb(ahc, NEXT_QUEUED_SCB));
6772         /* QINFIFO */
6773         kprintf("QINFIFO entries: ");
6774         if ((ahc->features & AHC_QUEUE_REGS) != 0) {
6775                 qinpos = ahc_inb(ahc, SNSCB_QOFF);
6776                 ahc_outb(ahc, SNSCB_QOFF, qinpos);
6777         } else
6778                 qinpos = ahc_inb(ahc, QINPOS);
6779         qintail = ahc->qinfifonext;
6780         while (qinpos != qintail) {
6781                 kprintf("%d ", ahc->qinfifo[qinpos]);
6782                 qinpos++;
6783         }
6784         kprintf("\n");
6785
6786         kprintf("Waiting Queue entries: ");
6787         scb_index = ahc_inb(ahc, WAITING_SCBH);
6788         i = 0;
6789         while (scb_index != SCB_LIST_NULL && i++ < 256) {
6790                 ahc_outb(ahc, SCBPTR, scb_index);
6791                 kprintf("%d:%d ", scb_index, ahc_inb(ahc, SCB_TAG));
6792                 scb_index = ahc_inb(ahc, SCB_NEXT);
6793         }
6794         kprintf("\n");
6795
6796         kprintf("Disconnected Queue entries: ");
6797         scb_index = ahc_inb(ahc, DISCONNECTED_SCBH);
6798         i = 0;
6799         while (scb_index != SCB_LIST_NULL && i++ < 256) {
6800                 ahc_outb(ahc, SCBPTR, scb_index);
6801                 kprintf("%d:%d ", scb_index, ahc_inb(ahc, SCB_TAG));
6802                 scb_index = ahc_inb(ahc, SCB_NEXT);
6803         }
6804         kprintf("\n");
6805                 
6806         ahc_sync_qoutfifo(ahc, BUS_DMASYNC_POSTREAD);
6807         kprintf("QOUTFIFO entries: ");
6808         qoutpos = ahc->qoutfifonext;
6809         i = 0;
6810         while (ahc->qoutfifo[qoutpos] != SCB_LIST_NULL && i++ < 256) {
6811                 kprintf("%d ", ahc->qoutfifo[qoutpos]);
6812                 qoutpos++;
6813         }
6814         kprintf("\n");
6815
6816         kprintf("Sequencer Free SCB List: ");
6817         scb_index = ahc_inb(ahc, FREE_SCBH);
6818         i = 0;
6819         while (scb_index != SCB_LIST_NULL && i++ < 256) {
6820                 ahc_outb(ahc, SCBPTR, scb_index);
6821                 kprintf("%d ", scb_index);
6822                 scb_index = ahc_inb(ahc, SCB_NEXT);
6823         }
6824         kprintf("\n");
6825
6826         kprintf("Sequencer SCB Info: ");
6827         for (i = 0; i < ahc->scb_data->maxhscbs; i++) {
6828                 ahc_outb(ahc, SCBPTR, i);
6829                 cur_col = kprintf("\n%3d ", i);
6830
6831                 ahc_scb_control_print(ahc_inb(ahc, SCB_CONTROL), &cur_col, 60);
6832                 ahc_scb_scsiid_print(ahc_inb(ahc, SCB_SCSIID), &cur_col, 60);
6833                 ahc_scb_lun_print(ahc_inb(ahc, SCB_LUN), &cur_col, 60);
6834                 ahc_scb_tag_print(ahc_inb(ahc, SCB_TAG), &cur_col, 60);
6835         }
6836         kprintf("\n");
6837
6838         kprintf("Pending list: ");
6839         i = 0;
6840         LIST_FOREACH(scb, &ahc->pending_scbs, pending_links) {
6841                 if (i++ > 256)
6842                         break;
6843                 cur_col = kprintf("\n%3d ", scb->hscb->tag);
6844                 ahc_scb_control_print(scb->hscb->control, &cur_col, 60);
6845                 ahc_scb_scsiid_print(scb->hscb->scsiid, &cur_col, 60);
6846                 ahc_scb_lun_print(scb->hscb->lun, &cur_col, 60);
6847                 if ((ahc->flags & AHC_PAGESCBS) == 0) {
6848                         ahc_outb(ahc, SCBPTR, scb->hscb->tag);
6849                         kprintf("(");
6850                         ahc_scb_control_print(ahc_inb(ahc, SCB_CONTROL),
6851                                               &cur_col, 60);
6852                         ahc_scb_tag_print(ahc_inb(ahc, SCB_TAG), &cur_col, 60);
6853                         kprintf(")");
6854                 }
6855         }
6856         kprintf("\n");
6857
6858         kprintf("Kernel Free SCB list: ");
6859         i = 0;
6860         SLIST_FOREACH(scb, &ahc->scb_data->free_scbs, links.sle) {
6861                 if (i++ > 256)
6862                         break;
6863                 kprintf("%d ", scb->hscb->tag);
6864         }
6865         kprintf("\n");
6866
6867         maxtarget = (ahc->features & (AHC_WIDE|AHC_TWIN)) ? 15 : 7;
6868         for (target = 0; target <= maxtarget; target++) {
6869                 untagged_q = &ahc->untagged_queues[target];
6870                 if (TAILQ_FIRST(untagged_q) == NULL)
6871                         continue;
6872                 kprintf("Untagged Q(%d): ", target);
6873                 i = 0;
6874                 TAILQ_FOREACH(scb, untagged_q, links.tqe) {
6875                         if (i++ > 256)
6876                                 break;
6877                         kprintf("%d ", scb->hscb->tag);
6878                 }
6879                 kprintf("\n");
6880         }
6881
6882         ahc_platform_dump_card_state(ahc);
6883         kprintf("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n");
6884         ahc_outb(ahc, SCBPTR, saved_scbptr);
6885         if (paused == 0)
6886                 ahc_unpause(ahc);
6887 }
6888
6889 /*************************** Timeout Handling *********************************/
6890 void
6891 ahc_timeout(struct scb *scb)
6892 {
6893         struct ahc_softc *ahc;
6894
6895         ahc = scb->ahc_softc;
6896         if ((scb->flags & SCB_ACTIVE) != 0) {
6897                 if ((scb->flags & SCB_TIMEDOUT) == 0) {
6898                         LIST_INSERT_HEAD(&ahc->timedout_scbs, scb,
6899                                          timedout_links);
6900                         scb->flags |= SCB_TIMEDOUT;
6901                 }
6902                 ahc_wakeup_recovery_thread(ahc);
6903         }
6904 }
6905
6906 /*
6907  * Re-schedule a timeout for the passed in SCB if we determine that some
6908  * other SCB is in the process of recovery or an SCB with a longer
6909  * timeout is still pending.  Limit our search to just "other_scb"
6910  * if it is non-NULL.
6911  */
6912 static int
6913 ahc_other_scb_timeout(struct ahc_softc *ahc, struct scb *scb,
6914                       struct scb *other_scb)
6915 {
6916         u_int   newtimeout;
6917         int     found;
6918
6919         ahc_print_path(ahc, scb);
6920         kprintf("Other SCB Timeout%s",
6921                (scb->flags & SCB_OTHERTCL_TIMEOUT) != 0
6922                ? " again\n" : "\n");
6923
6924         newtimeout = aic_get_timeout(scb);
6925         scb->flags |= SCB_OTHERTCL_TIMEOUT;
6926         found = 0;
6927         if (other_scb != NULL) {
6928                 if ((other_scb->flags
6929                    & (SCB_OTHERTCL_TIMEOUT|SCB_TIMEDOUT)) == 0
6930                  || (other_scb->flags & SCB_RECOVERY_SCB) != 0) {
6931                         found++;
6932                         newtimeout = MAX(aic_get_timeout(other_scb),
6933                                          newtimeout);
6934                 }
6935         } else {
6936                 LIST_FOREACH(other_scb, &ahc->pending_scbs, pending_links) {
6937                         if ((other_scb->flags
6938                            & (SCB_OTHERTCL_TIMEOUT|SCB_TIMEDOUT)) == 0
6939                          || (other_scb->flags & SCB_RECOVERY_SCB) != 0) {
6940                                 found++;
6941                                 newtimeout =
6942                                     MAX(aic_get_timeout(other_scb),
6943                                         newtimeout);
6944                         }
6945                 }
6946         }
6947
6948         if (found != 0)
6949                 aic_scb_timer_reset(scb, newtimeout);
6950         else {
6951                 ahc_print_path(ahc, scb);
6952                 kprintf("No other SCB worth waiting for...\n");
6953         }
6954
6955         return (found != 0);
6956 }
6957
6958 /*
6959  * ahc_recover_commands determines if any of the commands that have currently
6960  * timedout are the root cause for this timeout.  Innocent commands are given
6961  * a new timeout while we wait for the command executing on the bus to timeout.
6962  * This routine is invoked from a thread context so we are allowed to sleep.
6963  * Our lock is not held on entry.
6964  */
6965 void
6966 ahc_recover_commands(struct ahc_softc *ahc)
6967 {
6968         struct  scb *scb;
6969         int     found;
6970         int     restart_needed;
6971         u_int   last_phase;
6972
6973         /*
6974          * Pause the controller and manually flush any
6975          * commands that have just completed but that our
6976          * interrupt handler has yet to see.
6977          */
6978         ahc_pause_and_flushwork(ahc);
6979
6980         if (LIST_EMPTY(&ahc->timedout_scbs) != 0) {
6981                 /*
6982                  * The timedout commands have already
6983                  * completed.  This typically means
6984                  * that either the timeout value was on
6985                  * the hairy edge of what the device
6986                  * requires or - more likely - interrupts
6987                  * are not happening.
6988                  */
6989                 kprintf("%s: Timedout SCBs already complete. "
6990                        "Interrupts may not be functioning.\n", ahc_name(ahc));
6991                 ahc_unpause(ahc);
6992                 return;
6993         }
6994
6995         restart_needed = 0;
6996         kprintf("%s: Recovery Initiated\n", ahc_name(ahc));
6997         ahc_dump_card_state(ahc);
6998
6999         last_phase = ahc_inb(ahc, LASTPHASE);
7000         while ((scb = LIST_FIRST(&ahc->timedout_scbs)) != NULL) {
7001                 u_int   active_scb_index;
7002                 u_int   saved_scbptr;
7003                 int     target;
7004                 int     lun;
7005                 int     i;
7006                 char    channel;
7007
7008                 target = SCB_GET_TARGET(ahc, scb);
7009                 channel = SCB_GET_CHANNEL(ahc, scb);
7010                 lun = SCB_GET_LUN(scb);
7011
7012                 ahc_print_path(ahc, scb);
7013                 kprintf("SCB 0x%x - timed out\n", scb->hscb->tag);
7014                 if (scb->sg_count > 0) {
7015                         for (i = 0; i < scb->sg_count; i++) {
7016                                 kprintf("sg[%d] - Addr 0x%x : Length %d\n",
7017                                        i,
7018                                        scb->sg_list[i].addr,
7019                                        scb->sg_list[i].len & AHC_SG_LEN_MASK);
7020                         }
7021                 }
7022                 if (scb->flags & (SCB_DEVICE_RESET|SCB_ABORT)) {
7023                         /*
7024                          * Been down this road before.
7025                          * Do a full bus reset.
7026                          */
7027                         aic_set_transaction_status(scb, CAM_CMD_TIMEOUT);
7028 bus_reset:
7029                         found = ahc_reset_channel(ahc, channel,
7030                                                   /*Initiate Reset*/TRUE);
7031                         kprintf("%s: Issued Channel %c Bus Reset. "
7032                                "%d SCBs aborted\n", ahc_name(ahc), channel,
7033                                found);
7034                         continue;
7035                 }
7036
7037                 /*
7038                  * Remove the command from the timedout list in
7039                  * preparation for requeing it.
7040                  */
7041                 LIST_REMOVE(scb, timedout_links);
7042                 scb->flags &= ~SCB_TIMEDOUT;
7043
7044                 /*
7045                  * If we are a target, transition to bus free and report
7046                  * the timeout.
7047                  * 
7048                  * The target/initiator that is holding up the bus may not
7049                  * be the same as the one that triggered this timeout
7050                  * (different commands have different timeout lengths).
7051                  * If the bus is idle and we are actiing as the initiator
7052                  * for this request, queue a BDR message to the timed out
7053                  * target.  Otherwise, if the timed out transaction is
7054                  * active:
7055                  *   Initiator transaction:
7056                  *      Stuff the message buffer with a BDR message and assert
7057                  *      ATN in the hopes that the target will let go of the bus
7058                  *      and go to the mesgout phase.  If this fails, we'll
7059                  *      get another timeout 2 seconds later which will attempt
7060                  *      a bus reset.
7061                  *
7062                  *   Target transaction:
7063                  *      Transition to BUS FREE and report the error.
7064                  *      It's good to be the target!
7065                  */
7066                 saved_scbptr = ahc_inb(ahc, SCBPTR);
7067                 active_scb_index = ahc_inb(ahc, SCB_TAG);
7068
7069                 if ((ahc_inb(ahc, SEQ_FLAGS) & NOT_IDENTIFIED) == 0
7070                   && (active_scb_index < ahc->scb_data->numscbs)) {
7071                         struct scb *active_scb;
7072
7073                         /*
7074                          * If the active SCB is not us, assume that
7075                          * the active SCB has a longer timeout than
7076                          * the timedout SCB, and wait for the active
7077                          * SCB to timeout.
7078                          */ 
7079                         active_scb = ahc_lookup_scb(ahc, active_scb_index);
7080                         if (active_scb != scb) {
7081                                 if (ahc_other_scb_timeout(ahc, scb,
7082                                                           active_scb) == 0)
7083                                         goto bus_reset;
7084                                 continue;
7085                         } 
7086
7087                         /* It's us */
7088                         if ((scb->flags & SCB_TARGET_SCB) != 0) {
7089
7090                                 /*
7091                                  * Send back any queued up transactions
7092                                  * and properly record the error condition.
7093                                  */
7094                                 ahc_abort_scbs(ahc, SCB_GET_TARGET(ahc, scb),
7095                                                SCB_GET_CHANNEL(ahc, scb),
7096                                                SCB_GET_LUN(scb),
7097                                                scb->hscb->tag,
7098                                                ROLE_TARGET,
7099                                                CAM_CMD_TIMEOUT);
7100
7101                                 /* Will clear us from the bus */
7102                                 restart_needed = 1;
7103                                 break;
7104                         }
7105
7106                         ahc_set_recoveryscb(ahc, active_scb);
7107                         ahc_outb(ahc, MSG_OUT, HOST_MSG);
7108                         ahc_outb(ahc, SCSISIGO, last_phase|ATNO);
7109                         ahc_print_path(ahc, active_scb);
7110                         kprintf("BDR message in message buffer\n");
7111                         active_scb->flags |= SCB_DEVICE_RESET;
7112                         aic_scb_timer_reset(scb, 2 * 1000);
7113                 } else if (last_phase != P_BUSFREE
7114                         && (ahc_inb(ahc, SSTAT1) & REQINIT) == 0) {
7115                         /*
7116                          * SCB is not identified, there
7117                          * is no pending REQ, and the sequencer
7118                          * has not seen a busfree.  Looks like
7119                          * a stuck connection waiting to
7120                          * go busfree.  Reset the bus.
7121                          */
7122                         kprintf("%s: Connection stuck awaiting busfree or "
7123                                "Identify Msg.\n", ahc_name(ahc));
7124                         goto bus_reset;
7125                 } else {
7126                         int      disconnected;
7127
7128                         if (last_phase != P_BUSFREE
7129                          && (ahc_inb(ahc, SSTAT0) & TARGET) != 0) {
7130                                 /* Hung target selection.  Goto busfree */
7131                                 kprintf("%s: Hung target selection\n",
7132                                        ahc_name(ahc));
7133                                 restart_needed = 1;
7134                                 break;
7135                         }
7136
7137                         /* XXX Shouldn't panic.  Just punt instead? */
7138                         if ((scb->flags & SCB_TARGET_SCB) != 0)
7139                                 panic("Timed-out target SCB but bus idle");
7140
7141                         if (ahc_search_qinfifo(ahc, target, channel, lun,
7142                                                scb->hscb->tag, ROLE_INITIATOR,
7143                                                /*status*/0, SEARCH_COUNT) > 0) {
7144                                 disconnected = FALSE;
7145                         } else {
7146                                 disconnected = TRUE;
7147                         }
7148
7149                         if (disconnected) {
7150
7151                                 ahc_set_recoveryscb(ahc, scb);
7152                                 /*
7153                                  * Actually re-queue this SCB in an attempt
7154                                  * to select the device before it reconnects.
7155                                  * In either case (selection or reselection),
7156                                  * we will now issue a target reset to the
7157                                  * timed-out device.
7158                                  *
7159                                  * Set the MK_MESSAGE control bit indicating
7160                                  * that we desire to send a message.  We
7161                                  * also set the disconnected flag since
7162                                  * in the paging case there is no guarantee
7163                                  * that our SCB control byte matches the
7164                                  * version on the card.  We don't want the
7165                                  * sequencer to abort the command thinking
7166                                  * an unsolicited reselection occurred.
7167                                  */
7168                                 scb->hscb->control |= MK_MESSAGE|DISCONNECTED;
7169                                 scb->flags |= SCB_DEVICE_RESET;
7170
7171                                 /*
7172                                  * Remove any cached copy of this SCB in the
7173                                  * disconnected list in preparation for the
7174                                  * queuing of our abort SCB.  We use the
7175                                  * same element in the SCB, SCB_NEXT, for
7176                                  * both the qinfifo and the disconnected list.
7177                                  */
7178                                 ahc_search_disc_list(ahc, target, channel,
7179                                                      lun, scb->hscb->tag,
7180                                                      /*stop_on_first*/TRUE,
7181                                                      /*remove*/TRUE,
7182                                                      /*save_state*/FALSE);
7183
7184                                 /*
7185                                  * In the non-paging case, the sequencer will
7186                                  * never re-reference the in-core SCB.
7187                                  * To make sure we are notified during
7188                                  * reslection, set the MK_MESSAGE flag in
7189                                  * the card's copy of the SCB.
7190                                  */
7191                                 if ((ahc->flags & AHC_PAGESCBS) == 0) {
7192                                         ahc_outb(ahc, SCBPTR, scb->hscb->tag);
7193                                         ahc_outb(ahc, SCB_CONTROL,
7194                                                  ahc_inb(ahc, SCB_CONTROL)
7195                                                 | MK_MESSAGE);
7196                                 }
7197
7198                                 /*
7199                                  * Clear out any entries in the QINFIFO first
7200                                  * so we are the next SCB for this target
7201                                  * to run.
7202                                  */
7203                                 ahc_search_qinfifo(ahc,
7204                                                    SCB_GET_TARGET(ahc, scb),
7205                                                    channel, SCB_GET_LUN(scb),
7206                                                    SCB_LIST_NULL,
7207                                                    ROLE_INITIATOR,
7208                                                    CAM_REQUEUE_REQ,
7209                                                    SEARCH_COMPLETE);
7210                                 ahc_print_path(ahc, scb);
7211                                 kprintf("Queuing a BDR SCB\n");
7212                                 ahc_qinfifo_requeue_tail(ahc, scb);
7213                                 ahc_outb(ahc, SCBPTR, saved_scbptr);
7214                                 aic_scb_timer_reset(scb, 2 * 1000);
7215                         } else {
7216                                 /* Go "immediatly" to the bus reset */
7217                                 /* This shouldn't happen */
7218                                 ahc_set_recoveryscb(ahc, scb);
7219                                 ahc_print_path(ahc, scb);
7220                                 kprintf("SCB %d: Immediate reset.  "
7221                                         "Flags = 0x%x\n", scb->hscb->tag,
7222                                         scb->flags);
7223                                 goto bus_reset;
7224                         }
7225                 }
7226                 break;
7227         }
7228         
7229         /*
7230          * Any remaining SCBs were not the "culprit", so remove
7231          * them from the timeout list.  The timer for these commands
7232          * will be reset once the recovery SCB completes.
7233          */
7234         while ((scb = LIST_FIRST(&ahc->timedout_scbs)) != NULL) {
7235
7236                 LIST_REMOVE(scb, timedout_links);
7237                 scb->flags &= ~SCB_TIMEDOUT;
7238         }
7239
7240         if (restart_needed)
7241                 ahc_restart(ahc);
7242         else
7243                 ahc_unpause(ahc);
7244 }
7245
7246 /************************* Target Mode ****************************************/
7247 #ifdef AHC_TARGET_MODE
7248 cam_status
7249 ahc_find_tmode_devs(struct ahc_softc *ahc, struct cam_sim *sim, union ccb *ccb,
7250                     struct ahc_tmode_tstate **tstate,
7251                     struct ahc_tmode_lstate **lstate,
7252                     int notfound_failure)
7253 {
7254
7255         if ((ahc->features & AHC_TARGETMODE) == 0)
7256                 return (CAM_REQ_INVALID);
7257
7258         /*
7259          * Handle the 'black hole' device that sucks up
7260          * requests to unattached luns on enabled targets.
7261          */
7262         if (ccb->ccb_h.target_id == CAM_TARGET_WILDCARD
7263          && ccb->ccb_h.target_lun == CAM_LUN_WILDCARD) {
7264                 *tstate = NULL;
7265                 *lstate = ahc->black_hole;
7266         } else {
7267                 u_int max_id;
7268
7269                 max_id = (ahc->features & AHC_WIDE) ? 15 : 7;
7270                 if (ccb->ccb_h.target_id > max_id)
7271                         return (CAM_TID_INVALID);
7272
7273                 if (ccb->ccb_h.target_lun >= AHC_NUM_LUNS)
7274                         return (CAM_LUN_INVALID);
7275
7276                 *tstate = ahc->enabled_targets[ccb->ccb_h.target_id];
7277                 *lstate = NULL;
7278                 if (*tstate != NULL)
7279                         *lstate =
7280                             (*tstate)->enabled_luns[ccb->ccb_h.target_lun];
7281         }
7282
7283         if (notfound_failure != 0 && *lstate == NULL)
7284                 return (CAM_PATH_INVALID);
7285
7286         return (CAM_REQ_CMP);
7287 }
7288
7289 void
7290 ahc_handle_en_lun(struct ahc_softc *ahc, struct cam_sim *sim, union ccb *ccb)
7291 {
7292         struct     ahc_tmode_tstate *tstate;
7293         struct     ahc_tmode_lstate *lstate;
7294         struct     ccb_en_lun *cel;
7295         cam_status status;
7296         u_int      target;
7297         u_int      lun;
7298         u_int      target_mask;
7299         u_int      our_id;
7300         int        error;
7301         char       channel;
7302
7303         status = ahc_find_tmode_devs(ahc, sim, ccb, &tstate, &lstate,
7304                                      /*notfound_failure*/FALSE);
7305
7306         if (status != CAM_REQ_CMP) {
7307                 ccb->ccb_h.status = status;
7308                 return;
7309         }
7310
7311         if (cam_sim_bus(sim) == 0)
7312                 our_id = ahc->our_id;
7313         else
7314                 our_id = ahc->our_id_b;
7315
7316         if (ccb->ccb_h.target_id != our_id) {
7317                 /*
7318                  * our_id represents our initiator ID, or
7319                  * the ID of the first target to have an
7320                  * enabled lun in target mode.  There are
7321                  * two cases that may preclude enabling a
7322                  * target id other than our_id.
7323                  *
7324                  *   o our_id is for an active initiator role.
7325                  *     Since the hardware does not support
7326                  *     reselections to the initiator role at
7327                  *     anything other than our_id, and our_id
7328                  *     is used by the hardware to indicate the
7329                  *     ID to use for both select-out and
7330                  *     reselect-out operations, the only target
7331                  *     ID we can support in this mode is our_id.
7332                  *
7333                  *   o The MULTARGID feature is not available and
7334                  *     a previous target mode ID has been enabled.
7335                  */
7336                 if ((ahc->features & AHC_MULTIROLE) != 0) {
7337
7338                         if ((ahc->features & AHC_MULTI_TID) != 0
7339                          && (ahc->flags & AHC_INITIATORROLE) != 0) {
7340                                 /*
7341                                  * Only allow additional targets if
7342                                  * the initiator role is disabled.
7343                                  * The hardware cannot handle a re-select-in
7344                                  * on the initiator id during a re-select-out
7345                                  * on a different target id.
7346                                  */
7347                                 status = CAM_TID_INVALID;
7348                         } else if ((ahc->flags & AHC_INITIATORROLE) != 0
7349                                 || ahc->enabled_luns > 0) {
7350                                 /*
7351                                  * Only allow our target id to change
7352                                  * if the initiator role is not configured
7353                                  * and there are no enabled luns which
7354                                  * are attached to the currently registered
7355                                  * scsi id.
7356                                  */
7357                                 status = CAM_TID_INVALID;
7358                         }
7359                 } else if ((ahc->features & AHC_MULTI_TID) == 0
7360                         && ahc->enabled_luns > 0) {
7361
7362                         status = CAM_TID_INVALID;
7363                 }
7364         }
7365
7366         if (status != CAM_REQ_CMP) {
7367                 ccb->ccb_h.status = status;
7368                 return;
7369         }
7370
7371         /*
7372          * We now have an id that is valid.
7373          * If we aren't in target mode, switch modes.
7374          */
7375         if ((ahc->flags & AHC_TARGETROLE) == 0
7376          && ccb->ccb_h.target_id != CAM_TARGET_WILDCARD) {
7377                 ahc_flag saved_flags;
7378
7379                 kprintf("Configuring Target Mode\n");
7380                 if (LIST_FIRST(&ahc->pending_scbs) != NULL) {
7381                         ccb->ccb_h.status = CAM_BUSY;
7382                         return;
7383                 }
7384                 saved_flags = ahc->flags;
7385                 ahc->flags |= AHC_TARGETROLE;
7386                 if ((ahc->features & AHC_MULTIROLE) == 0)
7387                         ahc->flags &= ~AHC_INITIATORROLE;
7388                 ahc_pause(ahc);
7389                 error = ahc_loadseq(ahc);
7390                 if (error != 0) {
7391                         /*
7392                          * Restore original configuration and notify
7393                          * the caller that we cannot support target mode.
7394                          * Since the adapter started out in this
7395                          * configuration, the firmware load will succeed,
7396                          * so there is no point in checking ahc_loadseq's
7397                          * return value.
7398                          */
7399                         ahc->flags = saved_flags;
7400                         (void)ahc_loadseq(ahc);
7401                         ahc_restart(ahc);
7402                         ccb->ccb_h.status = CAM_FUNC_NOTAVAIL;
7403                         return;
7404                 }
7405                 ahc_restart(ahc);
7406         }
7407         cel = &ccb->cel;
7408         target = ccb->ccb_h.target_id;
7409         lun = ccb->ccb_h.target_lun;
7410         channel = SIM_CHANNEL(ahc, sim);
7411         target_mask = 0x01 << target;
7412         if (channel == 'B')
7413                 target_mask <<= 8;
7414
7415         if (cel->enable != 0) {
7416                 u_int scsiseq;
7417
7418                 /* Are we already enabled?? */
7419                 if (lstate != NULL) {
7420                         xpt_print_path(ccb->ccb_h.path);
7421                         kprintf("Lun already enabled\n");
7422                         ccb->ccb_h.status = CAM_LUN_ALRDY_ENA;
7423                         return;
7424                 }
7425
7426                 if (cel->grp6_len != 0
7427                  || cel->grp7_len != 0) {
7428                         /*
7429                          * Don't (yet?) support vendor
7430                          * specific commands.
7431                          */
7432                         ccb->ccb_h.status = CAM_REQ_INVALID;
7433                         kprintf("Non-zero Group Codes\n");
7434                         return;
7435                 }
7436
7437                 /*
7438                  * Seems to be okay.
7439                  * Setup our data structures.
7440                  */
7441                 if (target != CAM_TARGET_WILDCARD && tstate == NULL) {
7442                         tstate = ahc_alloc_tstate(ahc, target, channel);
7443                         if (tstate == NULL) {
7444                                 xpt_print_path(ccb->ccb_h.path);
7445                                 kprintf("Couldn't allocate tstate\n");
7446                                 ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
7447                                 return;
7448                         }
7449                 }
7450                 lstate = kmalloc(sizeof(*lstate), M_DEVBUF, M_INTWAIT | M_ZERO);
7451                 status = xpt_create_path(&lstate->path, /*periph*/NULL,
7452                                          xpt_path_path_id(ccb->ccb_h.path),
7453                                          xpt_path_target_id(ccb->ccb_h.path),
7454                                          xpt_path_lun_id(ccb->ccb_h.path));
7455                 if (status != CAM_REQ_CMP) {
7456                         kfree(lstate, M_DEVBUF);
7457                         xpt_print_path(ccb->ccb_h.path);
7458                         kprintf("Couldn't allocate path\n");
7459                         ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
7460                         return;
7461                 }
7462                 SLIST_INIT(&lstate->accept_tios);
7463                 SLIST_INIT(&lstate->immed_notifies);
7464                 ahc_pause(ahc);
7465                 if (target != CAM_TARGET_WILDCARD) {
7466                         tstate->enabled_luns[lun] = lstate;
7467                         ahc->enabled_luns++;
7468
7469                         if ((ahc->features & AHC_MULTI_TID) != 0) {
7470                                 u_int targid_mask;
7471
7472                                 targid_mask = ahc_inb(ahc, TARGID)
7473                                             | (ahc_inb(ahc, TARGID + 1) << 8);
7474
7475                                 targid_mask |= target_mask;
7476                                 ahc_outb(ahc, TARGID, targid_mask);
7477                                 ahc_outb(ahc, TARGID+1, (targid_mask >> 8));
7478                                 
7479                                 ahc_update_scsiid(ahc, targid_mask);
7480                         } else {
7481                                 u_int our_id;
7482                                 char  channel;
7483
7484                                 channel = SIM_CHANNEL(ahc, sim);
7485                                 our_id = SIM_SCSI_ID(ahc, sim);
7486
7487                                 /*
7488                                  * This can only happen if selections
7489                                  * are not enabled
7490                                  */
7491                                 if (target != our_id) {
7492                                         u_int sblkctl;
7493                                         char  cur_channel;
7494                                         int   swap;
7495
7496                                         sblkctl = ahc_inb(ahc, SBLKCTL);
7497                                         cur_channel = (sblkctl & SELBUSB)
7498                                                     ? 'B' : 'A';
7499                                         if ((ahc->features & AHC_TWIN) == 0)
7500                                                 cur_channel = 'A';
7501                                         swap = cur_channel != channel;
7502                                         if (channel == 'A')
7503                                                 ahc->our_id = target;
7504                                         else
7505                                                 ahc->our_id_b = target;
7506
7507                                         if (swap)
7508                                                 ahc_outb(ahc, SBLKCTL,
7509                                                          sblkctl ^ SELBUSB);
7510
7511                                         ahc_outb(ahc, SCSIID, target);
7512
7513                                         if (swap)
7514                                                 ahc_outb(ahc, SBLKCTL, sblkctl);
7515                                 }
7516                         }
7517                 } else
7518                         ahc->black_hole = lstate;
7519                 /* Allow select-in operations */
7520                 if (ahc->black_hole != NULL && ahc->enabled_luns > 0) {
7521                         scsiseq = ahc_inb(ahc, SCSISEQ_TEMPLATE);
7522                         scsiseq |= ENSELI;
7523                         ahc_outb(ahc, SCSISEQ_TEMPLATE, scsiseq);
7524                         scsiseq = ahc_inb(ahc, SCSISEQ);
7525                         scsiseq |= ENSELI;
7526                         ahc_outb(ahc, SCSISEQ, scsiseq);
7527                 }
7528                 ahc_unpause(ahc);
7529                 ccb->ccb_h.status = CAM_REQ_CMP;
7530                 xpt_print_path(ccb->ccb_h.path);
7531                 kprintf("Lun now enabled for target mode\n");
7532         } else {
7533                 struct scb *scb;
7534                 int i, empty;
7535
7536                 if (lstate == NULL) {
7537                         ccb->ccb_h.status = CAM_LUN_INVALID;
7538                         return;
7539                 }
7540
7541                 ccb->ccb_h.status = CAM_REQ_CMP;
7542                 LIST_FOREACH(scb, &ahc->pending_scbs, pending_links) {
7543                         struct ccb_hdr *ccbh;
7544
7545                         ccbh = &scb->io_ctx->ccb_h;
7546                         if (ccbh->func_code == XPT_CONT_TARGET_IO
7547                          && !xpt_path_comp(ccbh->path, ccb->ccb_h.path)){
7548                                 kprintf("CTIO pending\n");
7549                                 ccb->ccb_h.status = CAM_REQ_INVALID;
7550                                 return;
7551                         }
7552                 }
7553
7554                 if (SLIST_FIRST(&lstate->accept_tios) != NULL) {
7555                         kprintf("ATIOs pending\n");
7556                         ccb->ccb_h.status = CAM_REQ_INVALID;
7557                 }
7558
7559                 if (SLIST_FIRST(&lstate->immed_notifies) != NULL) {
7560                         kprintf("INOTs pending\n");
7561                         ccb->ccb_h.status = CAM_REQ_INVALID;
7562                 }
7563
7564                 if (ccb->ccb_h.status != CAM_REQ_CMP) {
7565                         return;
7566                 }
7567
7568                 xpt_print_path(ccb->ccb_h.path);
7569                 kprintf("Target mode disabled\n");
7570                 xpt_free_path(lstate->path);
7571                 kfree(lstate, M_DEVBUF);
7572
7573                 ahc_pause(ahc);
7574                 /* Can we clean up the target too? */
7575                 if (target != CAM_TARGET_WILDCARD) {
7576                         tstate->enabled_luns[lun] = NULL;
7577                         ahc->enabled_luns--;
7578                         for (empty = 1, i = 0; i < 8; i++)
7579                                 if (tstate->enabled_luns[i] != NULL) {
7580                                         empty = 0;
7581                                         break;
7582                                 }
7583
7584                         if (empty) {
7585                                 ahc_free_tstate(ahc, target, channel,
7586                                                 /*force*/FALSE);
7587                                 if (ahc->features & AHC_MULTI_TID) {
7588                                         u_int targid_mask;
7589
7590                                         targid_mask = ahc_inb(ahc, TARGID)
7591                                                     | (ahc_inb(ahc, TARGID + 1)
7592                                                        << 8);
7593
7594                                         targid_mask &= ~target_mask;
7595                                         ahc_outb(ahc, TARGID, targid_mask);
7596                                         ahc_outb(ahc, TARGID+1,
7597                                                  (targid_mask >> 8));
7598                                         ahc_update_scsiid(ahc, targid_mask);
7599                                 }
7600                         }
7601                 } else {
7602
7603                         ahc->black_hole = NULL;
7604
7605                         /*
7606                          * We can't allow selections without
7607                          * our black hole device.
7608                          */
7609                         empty = TRUE;
7610                 }
7611                 if (ahc->enabled_luns == 0) {
7612                         /* Disallow select-in */
7613                         u_int scsiseq;
7614
7615                         scsiseq = ahc_inb(ahc, SCSISEQ_TEMPLATE);
7616                         scsiseq &= ~ENSELI;
7617                         ahc_outb(ahc, SCSISEQ_TEMPLATE, scsiseq);
7618                         scsiseq = ahc_inb(ahc, SCSISEQ);
7619                         scsiseq &= ~ENSELI;
7620                         ahc_outb(ahc, SCSISEQ, scsiseq);
7621
7622                         if ((ahc->features & AHC_MULTIROLE) == 0) {
7623                                 kprintf("Configuring Initiator Mode\n");
7624                                 ahc->flags &= ~AHC_TARGETROLE;
7625                                 ahc->flags |= AHC_INITIATORROLE;
7626                                 /*
7627                                  * Returning to a configuration that
7628                                  * fit previously will always succeed.
7629                                  */
7630                                 (void)ahc_loadseq(ahc);
7631                                 ahc_restart(ahc);
7632                                 /*
7633                                  * Unpaused.  The extra unpause
7634                                  * that follows is harmless.
7635                                  */
7636                         }
7637                 }
7638                 ahc_unpause(ahc);
7639         }
7640 }
7641
7642 static void
7643 ahc_update_scsiid(struct ahc_softc *ahc, u_int targid_mask)
7644 {
7645         u_int scsiid_mask;
7646         u_int scsiid;
7647
7648         if ((ahc->features & AHC_MULTI_TID) == 0)
7649                 panic("ahc_update_scsiid called on non-multitid unit\n");
7650
7651         /*
7652          * Since we will rely on the TARGID mask
7653          * for selection enables, ensure that OID
7654          * in SCSIID is not set to some other ID
7655          * that we don't want to allow selections on.
7656          */
7657         if ((ahc->features & AHC_ULTRA2) != 0)
7658                 scsiid = ahc_inb(ahc, SCSIID_ULTRA2);
7659         else
7660                 scsiid = ahc_inb(ahc, SCSIID);
7661         scsiid_mask = 0x1 << (scsiid & OID);
7662         if ((targid_mask & scsiid_mask) == 0) {
7663                 u_int our_id;
7664
7665                 /* ffs counts from 1 */
7666                 our_id = ffs(targid_mask);
7667                 if (our_id == 0)
7668                         our_id = ahc->our_id;
7669                 else
7670                         our_id--;
7671                 scsiid &= TID;
7672                 scsiid |= our_id;
7673         }
7674         if ((ahc->features & AHC_ULTRA2) != 0)
7675                 ahc_outb(ahc, SCSIID_ULTRA2, scsiid);
7676         else
7677                 ahc_outb(ahc, SCSIID, scsiid);
7678 }
7679
7680 void
7681 ahc_run_tqinfifo(struct ahc_softc *ahc, int paused)
7682 {
7683         struct target_cmd *cmd;
7684
7685         /*
7686          * If the card supports auto-access pause,
7687          * we can access the card directly regardless
7688          * of whether it is paused or not.
7689          */
7690         if ((ahc->features & AHC_AUTOPAUSE) != 0)
7691                 paused = TRUE;
7692
7693         ahc_sync_tqinfifo(ahc, BUS_DMASYNC_POSTREAD);
7694         while ((cmd = &ahc->targetcmds[ahc->tqinfifonext])->cmd_valid != 0) {
7695
7696                 /*
7697                  * Only advance through the queue if we
7698                  * have the resources to process the command.
7699                  */
7700                 if (ahc_handle_target_cmd(ahc, cmd) != 0)
7701                         break;
7702
7703                 cmd->cmd_valid = 0;
7704                 aic_dmamap_sync(ahc, ahc->shared_data_dmat,
7705                                 ahc->shared_data_dmamap,
7706                                 ahc_targetcmd_offset(ahc, ahc->tqinfifonext),
7707                                 sizeof(struct target_cmd),
7708                                 BUS_DMASYNC_PREREAD);
7709                 ahc->tqinfifonext++;
7710
7711                 /*
7712                  * Lazily update our position in the target mode incoming
7713                  * command queue as seen by the sequencer.
7714                  */
7715                 if ((ahc->tqinfifonext & (HOST_TQINPOS - 1)) == 1) {
7716                         if ((ahc->features & AHC_HS_MAILBOX) != 0) {
7717                                 u_int hs_mailbox;
7718
7719                                 hs_mailbox = ahc_inb(ahc, HS_MAILBOX);
7720                                 hs_mailbox &= ~HOST_TQINPOS;
7721                                 hs_mailbox |= ahc->tqinfifonext & HOST_TQINPOS;
7722                                 ahc_outb(ahc, HS_MAILBOX, hs_mailbox);
7723                         } else {
7724                                 if (!paused)
7725                                         ahc_pause(ahc); 
7726                                 ahc_outb(ahc, KERNEL_TQINPOS,
7727                                          ahc->tqinfifonext & HOST_TQINPOS);
7728                                 if (!paused)
7729                                         ahc_unpause(ahc);
7730                         }
7731                 }
7732         }
7733 }
7734
7735 static int
7736 ahc_handle_target_cmd(struct ahc_softc *ahc, struct target_cmd *cmd)
7737 {
7738         struct    ahc_tmode_tstate *tstate;
7739         struct    ahc_tmode_lstate *lstate;
7740         struct    ccb_accept_tio *atio;
7741         uint8_t *byte;
7742         int       initiator;
7743         int       target;
7744         int       lun;
7745
7746         initiator = SCSIID_TARGET(ahc, cmd->scsiid);
7747         target = SCSIID_OUR_ID(cmd->scsiid);
7748         lun    = (cmd->identify & MSG_IDENTIFY_LUNMASK);
7749
7750         byte = cmd->bytes;
7751         tstate = ahc->enabled_targets[target];
7752         lstate = NULL;
7753         if (tstate != NULL)
7754                 lstate = tstate->enabled_luns[lun];
7755
7756         /*
7757          * Commands for disabled luns go to the black hole driver.
7758          */
7759         if (lstate == NULL)
7760                 lstate = ahc->black_hole;
7761
7762         atio = (struct ccb_accept_tio*)SLIST_FIRST(&lstate->accept_tios);
7763         if (atio == NULL) {
7764                 ahc->flags |= AHC_TQINFIFO_BLOCKED;
7765                 /*
7766                  * Wait for more ATIOs from the peripheral driver for this lun.
7767                  */
7768                 if (bootverbose)
7769                         kprintf("%s: ATIOs exhausted\n", ahc_name(ahc));
7770                 return (1);
7771         } else
7772                 ahc->flags &= ~AHC_TQINFIFO_BLOCKED;
7773 #ifdef AHC_DEBUG
7774         if (ahc_debug & AHC_SHOW_TQIN) {
7775                 kprintf("Incoming command from %d for %d:%d%s\n",
7776                        initiator, target, lun,
7777                        lstate == ahc->black_hole ? "(Black Holed)" : "");
7778         }
7779 #endif
7780         SLIST_REMOVE_HEAD(&lstate->accept_tios, sim_links.sle);
7781
7782         if (lstate == ahc->black_hole) {
7783                 /* Fill in the wildcards */
7784                 atio->ccb_h.target_id = target;
7785                 atio->ccb_h.target_lun = lun;
7786         }
7787
7788         /*
7789          * Package it up and send it off to
7790          * whomever has this lun enabled.
7791          */
7792         atio->sense_len = 0;
7793         atio->init_id = initiator;
7794         if (byte[0] != 0xFF) {
7795                 /* Tag was included */
7796                 atio->tag_action = *byte++;
7797                 atio->tag_id = *byte++;
7798                 atio->ccb_h.flags = CAM_TAG_ACTION_VALID;
7799         } else {
7800                 atio->ccb_h.flags = 0;
7801         }
7802         byte++;
7803
7804         /* Okay.  Now determine the cdb size based on the command code */
7805         switch (*byte >> CMD_GROUP_CODE_SHIFT) {
7806         case 0:
7807                 atio->cdb_len = 6;
7808                 break;
7809         case 1:
7810         case 2:
7811                 atio->cdb_len = 10;
7812                 break;
7813         case 4:
7814                 atio->cdb_len = 16;
7815                 break;
7816         case 5:
7817                 atio->cdb_len = 12;
7818                 break;
7819         case 3:
7820         default:
7821                 /* Only copy the opcode. */
7822                 atio->cdb_len = 1;
7823                 kprintf("Reserved or VU command code type encountered\n");
7824                 break;
7825         }
7826         
7827         memcpy(atio->cdb_io.cdb_bytes, byte, atio->cdb_len);
7828
7829         atio->ccb_h.status |= CAM_CDB_RECVD;
7830
7831         if ((cmd->identify & MSG_IDENTIFY_DISCFLAG) == 0) {
7832                 /*
7833                  * We weren't allowed to disconnect.
7834                  * We're hanging on the bus until a
7835                  * continue target I/O comes in response
7836                  * to this accept tio.
7837                  */
7838 #ifdef AHC_DEBUG
7839                 if (ahc_debug & AHC_SHOW_TQIN) {
7840                         kprintf("Received Immediate Command %d:%d:%d - %p\n",
7841                                initiator, target, lun, ahc->pending_device);
7842                 }
7843 #endif
7844                 ahc->pending_device = lstate;
7845                 aic_freeze_ccb((union ccb *)atio);
7846                 atio->ccb_h.flags |= CAM_DIS_DISCONNECT;
7847         }
7848         xpt_done((union ccb*)atio);
7849         return (0);
7850 }
7851
7852 #endif