2 * Core routines and tables shareable across OS platforms.
4 * Copyright (c) 1994-2002 Justin T. Gibbs.
5 * Copyright (c) 2000-2002 Adaptec Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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.
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.
40 * $Id: //depot/aic7xxx/aic7xxx/aic7xxx.c#155 $
44 #include "aic7xxx_osm.h"
45 #include "aic7xxx_inline.h"
46 #include "aicasm/aicasm_insformat.h"
48 #include <dev/aic7xxx/aic7xxx_osm.h>
49 #include <dev/aic7xxx/aic7xxx_inline.h>
50 #include <dev/aic7xxx/aicasm/aicasm_insformat.h>
53 /***************************** Lookup Tables **********************************/
54 char *ahc_chip_names
[] =
71 static const u_int num_chip_names
= ARRAY_SIZE(ahc_chip_names
);
74 * Hardware error codes.
76 struct ahc_hard_error_entry
{
81 static struct ahc_hard_error_entry ahc_hard_errors
[] = {
82 { ILLHADDR
, "Illegal Host Access" },
83 { ILLSADDR
, "Illegal Sequencer Address referrenced" },
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" },
91 static const u_int num_errors
= ARRAY_SIZE(ahc_hard_errors
);
93 static struct ahc_phase_table_entry ahc_phase_table
[] =
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" }
108 * In most cases we only wish to itterate over real phases, so
109 * exclude the last element from the count.
111 static const u_int num_phases
= ARRAY_SIZE(ahc_phase_table
) - 1;
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.
118 static struct ahc_syncrate ahc_syncrates
[] =
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
}
138 /* Our Sequencer Program */
139 #include "aic7xxx_seq.h"
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
);
151 static struct ahc_syncrate
*
152 ahc_devlimited_syncrate(struct ahc_softc
*ahc
,
153 struct ahc_initiator_tinfo
*,
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
,
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
,
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
,
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
);
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
,
200 #ifdef AHC_TARGET_MODE
201 static void ahc_setup_target_msgin(struct ahc_softc
*ahc
,
202 struct ahc_devinfo
*devinfo
,
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
,
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
);
221 static void ahc_dumpseq(struct ahc_softc
*ahc
);
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 #ifdef AHC_TARGET_MODE
230 static void ahc_queue_lstate_event(struct ahc_softc
*ahc
,
231 struct ahc_tmode_lstate
*lstate
,
235 static void ahc_update_scsiid(struct ahc_softc
*ahc
,
237 static int ahc_handle_target_cmd(struct ahc_softc
*ahc
,
238 struct target_cmd
*cmd
);
240 /************************* Sequencer Execution Control ************************/
242 * Restart the sequencer program from address zero
245 ahc_restart(struct ahc_softc
*ahc
)
250 /* No more pending messages. */
251 ahc_clear_msg_state(ahc
);
253 ahc_outb(ahc
, SCSISIGO
, 0); /* De-assert BSY */
254 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
); /* No message to send */
255 ahc_outb(ahc
, SXFRCTL1
, ahc_inb(ahc
, SXFRCTL1
) & ~BITBUCKET
);
256 ahc_outb(ahc
, LASTPHASE
, P_BUSFREE
);
257 ahc_outb(ahc
, SAVED_SCSIID
, 0xFF);
258 ahc_outb(ahc
, SAVED_LUN
, 0xFF);
261 * Ensure that the sequencer's idea of TQINPOS
262 * matches our own. The sequencer increments TQINPOS
263 * only after it sees a DMA complete and a reset could
264 * occur before the increment leaving the kernel to believe
265 * the command arrived but the sequencer to not.
267 ahc_outb(ahc
, TQINPOS
, ahc
->tqinfifonext
);
269 /* Always allow reselection */
270 ahc_outb(ahc
, SCSISEQ
,
271 ahc_inb(ahc
, SCSISEQ_TEMPLATE
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
272 if ((ahc
->features
& AHC_CMD_CHAN
) != 0) {
273 /* Ensure that no DMA operations are in progress */
274 ahc_outb(ahc
, CCSCBCNT
, 0);
275 ahc_outb(ahc
, CCSGCTL
, 0);
276 ahc_outb(ahc
, CCSCBCTL
, 0);
279 * If we were in the process of DMA'ing SCB data into
280 * an SCB, replace that SCB on the free list. This prevents
283 if ((ahc_inb(ahc
, SEQ_FLAGS2
) & SCB_DMA
) != 0) {
284 ahc_add_curscb_to_free_list(ahc
);
285 ahc_outb(ahc
, SEQ_FLAGS2
,
286 ahc_inb(ahc
, SEQ_FLAGS2
) & ~SCB_DMA
);
290 * Clear any pending sequencer interrupt. It is no
291 * longer relevant since we're resetting the Program
294 ahc_outb(ahc
, CLRINT
, CLRSEQINT
);
296 ahc_outb(ahc
, MWI_RESIDUAL
, 0);
297 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
);
298 ahc_outb(ahc
, SEQADDR0
, 0);
299 ahc_outb(ahc
, SEQADDR1
, 0);
304 /************************* Input/Output Queues ********************************/
306 ahc_run_qoutfifo(struct ahc_softc
*ahc
)
311 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
312 while (ahc
->qoutfifo
[ahc
->qoutfifonext
] != SCB_LIST_NULL
) {
314 scb_index
= ahc
->qoutfifo
[ahc
->qoutfifonext
];
315 if ((ahc
->qoutfifonext
& 0x03) == 0x03) {
319 * Clear 32bits of QOUTFIFO at a time
320 * so that we don't clobber an incoming
321 * byte DMA to the array on architectures
322 * that only support 32bit load and store
325 modnext
= ahc
->qoutfifonext
& ~0x3;
326 *((uint32_t *)(&ahc
->qoutfifo
[modnext
])) = 0xFFFFFFFFUL
;
327 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
328 ahc
->shared_data_dmamap
,
329 /*offset*/modnext
, /*len*/4,
330 BUS_DMASYNC_PREREAD
);
334 scb
= ahc_lookup_scb(ahc
, scb_index
);
336 printf("%s: WARNING no command for scb %d "
337 "(cmdcmplt)\nQOUTPOS = %d\n",
338 ahc_name(ahc
), scb_index
,
339 (ahc
->qoutfifonext
- 1) & 0xFF);
344 * Save off the residual
347 ahc_update_residual(ahc
, scb
);
353 ahc_run_untagged_queues(struct ahc_softc
*ahc
)
357 for (i
= 0; i
< 16; i
++)
358 ahc_run_untagged_queue(ahc
, &ahc
->untagged_queues
[i
]);
362 ahc_run_untagged_queue(struct ahc_softc
*ahc
, struct scb_tailq
*queue
)
366 if (ahc
->untagged_queue_lock
!= 0)
369 if ((scb
= TAILQ_FIRST(queue
)) != NULL
370 && (scb
->flags
& SCB_ACTIVE
) == 0) {
371 scb
->flags
|= SCB_ACTIVE
;
372 ahc_queue_scb(ahc
, scb
);
376 /************************* Interrupt Handling *********************************/
378 ahc_handle_brkadrint(struct ahc_softc
*ahc
)
381 * We upset the sequencer :-(
382 * Lookup the error message
387 error
= ahc_inb(ahc
, ERROR
);
388 for (i
= 0; error
!= 1 && i
< num_errors
; i
++)
390 printf("%s: brkadrint, %s at seqaddr = 0x%x\n",
391 ahc_name(ahc
), ahc_hard_errors
[i
].errmesg
,
392 ahc_inb(ahc
, SEQADDR0
) |
393 (ahc_inb(ahc
, SEQADDR1
) << 8));
395 ahc_dump_card_state(ahc
);
397 /* Tell everyone that this HBA is no longer available */
398 ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, ALL_CHANNELS
,
399 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, ROLE_UNKNOWN
,
402 /* Disable all interrupt sources by resetting the controller */
407 ahc_handle_seqint(struct ahc_softc
*ahc
, u_int intstat
)
410 struct ahc_devinfo devinfo
;
412 ahc_fetch_devinfo(ahc
, &devinfo
);
415 * Clear the upper byte that holds SEQINT status
416 * codes and clear the SEQINT bit. We will unpause
417 * the sequencer, if appropriate, after servicing
420 ahc_outb(ahc
, CLRINT
, CLRSEQINT
);
421 switch (intstat
& SEQINT_MASK
) {
425 struct hardware_scb
*hscb
;
428 * Set the default return value to 0 (don't
429 * send sense). The sense code will change
432 ahc_outb(ahc
, RETURN_1
, 0);
435 * The sequencer will notify us when a command
436 * has an error that would be of interest to
437 * the kernel. This allows us to leave the sequencer
438 * running in the common case of command completes
439 * without error. The sequencer will already have
440 * dma'd the SCB back up to us, so we can reference
441 * the in kernel copy directly.
443 scb_index
= ahc_inb(ahc
, SCB_TAG
);
444 scb
= ahc_lookup_scb(ahc
, scb_index
);
446 ahc_print_devinfo(ahc
, &devinfo
);
447 printf("ahc_intr - referenced scb "
448 "not valid during seqint 0x%x scb(%d)\n",
450 ahc_dump_card_state(ahc
);
457 /* Don't want to clobber the original sense code */
458 if ((scb
->flags
& SCB_SENSE
) != 0) {
460 * Clear the SCB_SENSE Flag and have
461 * the sequencer do a normal command
464 scb
->flags
&= ~SCB_SENSE
;
465 ahc_set_transaction_status(scb
, CAM_AUTOSENSE_FAIL
);
468 ahc_set_transaction_status(scb
, CAM_SCSI_STATUS_ERROR
);
469 /* Freeze the queue until the client sees the error. */
470 ahc_freeze_devq(ahc
, scb
);
472 ahc_set_scsi_status(scb
, hscb
->shared_data
.status
.scsi_status
);
473 switch (hscb
->shared_data
.status
.scsi_status
) {
475 printf("%s: Interrupted for staus of 0???\n",
478 case SCSI_STATUS_CMD_TERMINATED
:
479 case SCSI_STATUS_CHECK_COND
:
481 struct ahc_dma_seg
*sg
;
482 struct scsi_sense
*sc
;
483 struct ahc_initiator_tinfo
*targ_info
;
484 struct ahc_tmode_tstate
*tstate
;
485 struct ahc_transinfo
*tinfo
;
487 if (ahc_debug
& AHC_SHOW_SENSE
) {
488 ahc_print_path(ahc
, scb
);
489 printf("SCB %d: requests Check Status\n",
494 if (ahc_perform_autosense(scb
) == 0)
497 targ_info
= ahc_fetch_transinfo(ahc
,
502 tinfo
= &targ_info
->curr
;
504 sc
= (struct scsi_sense
*)(&hscb
->shared_data
.cdb
);
506 * Save off the residual if there is one.
508 ahc_update_residual(ahc
, scb
);
510 if (ahc_debug
& AHC_SHOW_SENSE
) {
511 ahc_print_path(ahc
, scb
);
512 printf("Sending Sense\n");
515 sg
->addr
= ahc_get_sense_bufaddr(ahc
, scb
);
516 sg
->len
= ahc_get_sense_bufsize(ahc
, scb
);
517 sg
->len
|= AHC_DMA_LAST_SEG
;
519 /* Fixup byte order */
520 sg
->addr
= ahc_htole32(sg
->addr
);
521 sg
->len
= ahc_htole32(sg
->len
);
523 sc
->opcode
= REQUEST_SENSE
;
525 if (tinfo
->protocol_version
<= SCSI_REV_2
526 && SCB_GET_LUN(scb
) < 8)
527 sc
->byte2
= SCB_GET_LUN(scb
) << 5;
530 sc
->length
= sg
->len
;
534 * We can't allow the target to disconnect.
535 * This will be an untagged transaction and
536 * having the target disconnect will make this
537 * transaction indestinguishable from outstanding
538 * tagged transactions.
543 * This request sense could be because the
544 * the device lost power or in some other
545 * way has lost our transfer negotiations.
546 * Renegotiate if appropriate. Unit attention
547 * errors will be reported before any data
550 if (ahc_get_residual(scb
)
551 == ahc_get_transfer_length(scb
)) {
552 ahc_update_neg_request(ahc
, &devinfo
,
554 AHC_NEG_IF_NON_ASYNC
);
556 if (tstate
->auto_negotiate
& devinfo
.target_mask
) {
557 hscb
->control
|= MK_MESSAGE
;
558 scb
->flags
&= ~SCB_NEGOTIATE
;
559 scb
->flags
|= SCB_AUTO_NEGOTIATE
;
561 hscb
->cdb_len
= sizeof(*sc
);
562 hscb
->dataptr
= sg
->addr
;
563 hscb
->datacnt
= sg
->len
;
564 hscb
->sgptr
= scb
->sg_list_phys
| SG_FULL_RESID
;
565 hscb
->sgptr
= ahc_htole32(hscb
->sgptr
);
567 scb
->flags
|= SCB_SENSE
;
568 ahc_qinfifo_requeue_tail(ahc
, scb
);
569 ahc_outb(ahc
, RETURN_1
, SEND_SENSE
);
571 * Ensure we have enough time to actually
572 * retrieve the sense.
574 ahc_scb_timer_reset(scb
, 5 * 1000000);
584 /* Ensure we don't leave the selection hardware on */
585 ahc_outb(ahc
, SCSISEQ
,
586 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
588 printf("%s:%c:%d: no active SCB for reconnecting "
589 "target - issuing BUS DEVICE RESET\n",
590 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
);
591 printf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
592 "ARG_1 == 0x%x ACCUM = 0x%x\n",
593 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
594 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
595 printf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
597 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
598 ahc_index_busy_tcl(ahc
,
599 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
600 ahc_inb(ahc
, SAVED_LUN
))),
601 ahc_inb(ahc
, SINDEX
));
602 printf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
603 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
604 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
605 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
606 ahc_inb(ahc
, SCB_CONTROL
));
607 printf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
608 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
609 printf("SXFRCTL0 == 0x%x\n", ahc_inb(ahc
, SXFRCTL0
));
610 printf("SEQCTL == 0x%x\n", ahc_inb(ahc
, SEQCTL
));
611 ahc_dump_card_state(ahc
);
612 ahc
->msgout_buf
[0] = MSG_BUS_DEV_RESET
;
614 ahc
->msgout_index
= 0;
615 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
616 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
622 u_int rejbyte
= ahc_inb(ahc
, ACCUM
);
623 printf("%s:%c:%d: Warning - unknown message received from "
624 "target (0x%x). Rejecting\n",
625 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
, rejbyte
);
628 case PROTO_VIOLATION
:
630 ahc_handle_proto_violation(ahc
);
634 ahc_handle_ign_wide_residue(ahc
, &devinfo
);
637 ahc_reinitialize_dataptrs(ahc
);
643 lastphase
= ahc_inb(ahc
, LASTPHASE
);
644 printf("%s:%c:%d: unknown scsi bus phase %x, "
645 "lastphase = 0x%x. Attempting to continue\n",
646 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
647 lastphase
, ahc_inb(ahc
, SCSISIGI
));
654 lastphase
= ahc_inb(ahc
, LASTPHASE
);
655 printf("%s:%c:%d: Missed busfree. "
656 "Lastphase = 0x%x, Curphase = 0x%x\n",
657 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
658 lastphase
, ahc_inb(ahc
, SCSISIGI
));
665 * The sequencer has encountered a message phase
666 * that requires host assistance for completion.
667 * While handling the message phase(s), we will be
668 * notified by the sequencer after each byte is
669 * transfered so we can track bus phase changes.
671 * If this is the first time we've seen a HOST_MSG_LOOP
672 * interrupt, initialize the state of the host message
675 if (ahc
->msg_type
== MSG_TYPE_NONE
) {
680 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
681 if (bus_phase
!= P_MESGIN
682 && bus_phase
!= P_MESGOUT
) {
683 printf("ahc_intr: HOST_MSG_LOOP bad "
687 * Probably transitioned to bus free before
688 * we got here. Just punt the message.
690 ahc_clear_intstat(ahc
);
695 scb_index
= ahc_inb(ahc
, SCB_TAG
);
696 scb
= ahc_lookup_scb(ahc
, scb_index
);
697 if (devinfo
.role
== ROLE_INITIATOR
) {
699 panic("HOST_MSG_LOOP with "
700 "invalid SCB %x\n", scb_index
);
702 if (bus_phase
== P_MESGOUT
)
703 ahc_setup_initiator_msgout(ahc
,
708 MSG_TYPE_INITIATOR_MSGIN
;
709 ahc
->msgin_index
= 0;
712 #ifdef AHC_TARGET_MODE
714 if (bus_phase
== P_MESGOUT
) {
716 MSG_TYPE_TARGET_MSGOUT
;
717 ahc
->msgin_index
= 0;
720 ahc_setup_target_msgin(ahc
,
727 ahc_handle_message_phase(ahc
);
733 * If we've cleared the parity error interrupt
734 * but the sequencer still believes that SCSIPERR
735 * is true, it must be that the parity error is
736 * for the currently presented byte on the bus,
737 * and we are not in a phase (data-in) where we will
738 * eventually ack this byte. Ack the byte and
739 * throw it away in the hope that the target will
740 * take us to message out to deliver the appropriate
743 if ((intstat
& SCSIINT
) == 0
744 && (ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0) {
746 if ((ahc
->features
& AHC_DT
) == 0) {
750 * The hardware will only let you ack bytes
751 * if the expected phase in SCSISIGO matches
752 * the current phase. Make sure this is
753 * currently the case.
755 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
756 ahc_outb(ahc
, LASTPHASE
, curphase
);
757 ahc_outb(ahc
, SCSISIGO
, curphase
);
759 if ((ahc_inb(ahc
, SCSISIGI
) & (CDI
|MSGI
)) == 0) {
763 * In a data phase. Faster to bitbucket
764 * the data than to individually ack each
765 * byte. This is also the only strategy
766 * that will work with AUTOACK enabled.
768 ahc_outb(ahc
, SXFRCTL1
,
769 ahc_inb(ahc
, SXFRCTL1
) | BITBUCKET
);
771 while (--wait
!= 0) {
772 if ((ahc_inb(ahc
, SCSISIGI
)
777 ahc_outb(ahc
, SXFRCTL1
,
778 ahc_inb(ahc
, SXFRCTL1
) & ~BITBUCKET
);
783 ahc_print_devinfo(ahc
, &devinfo
);
784 printf("Unable to clear parity error. "
786 scb_index
= ahc_inb(ahc
, SCB_TAG
);
787 scb
= ahc_lookup_scb(ahc
, scb_index
);
789 ahc_set_transaction_status(scb
,
791 ahc_reset_channel(ahc
, devinfo
.channel
,
795 ahc_inb(ahc
, SCSIDATL
);
803 * When the sequencer detects an overrun, it
804 * places the controller in "BITBUCKET" mode
805 * and allows the target to complete its transfer.
806 * Unfortunately, none of the counters get updated
807 * when the controller is in this mode, so we have
808 * no way of knowing how large the overrun was.
810 u_int scbindex
= ahc_inb(ahc
, SCB_TAG
);
811 u_int lastphase
= ahc_inb(ahc
, LASTPHASE
);
814 scb
= ahc_lookup_scb(ahc
, scbindex
);
815 for (i
= 0; i
< num_phases
; i
++) {
816 if (lastphase
== ahc_phase_table
[i
].phase
)
819 ahc_print_path(ahc
, scb
);
820 printf("data overrun detected %s."
822 ahc_phase_table
[i
].phasemsg
,
824 ahc_print_path(ahc
, scb
);
825 printf("%s seen Data Phase. Length = %ld. NumSGs = %d.\n",
826 ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
? "Have" : "Haven't",
827 ahc_get_transfer_length(scb
), scb
->sg_count
);
828 if (scb
->sg_count
> 0) {
829 for (i
= 0; i
< scb
->sg_count
; i
++) {
831 printf("sg[%d] - Addr 0x%x%x : Length %d\n",
833 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
834 & SG_HIGH_ADDR_BITS
),
835 ahc_le32toh(scb
->sg_list
[i
].addr
),
836 ahc_le32toh(scb
->sg_list
[i
].len
)
841 * Set this and it will take effect when the
842 * target does a command complete.
844 ahc_freeze_devq(ahc
, scb
);
845 if ((scb
->flags
& SCB_SENSE
) == 0) {
846 ahc_set_transaction_status(scb
, CAM_DATA_RUN_ERR
);
848 scb
->flags
&= ~SCB_SENSE
;
849 ahc_set_transaction_status(scb
, CAM_AUTOSENSE_FAIL
);
853 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
855 * Clear the channel in case we return
856 * to data phase later.
858 ahc_outb(ahc
, SXFRCTL0
,
859 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
860 ahc_outb(ahc
, SXFRCTL0
,
861 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
863 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
866 /* Ensure HHADDR is 0 for future DMA operations. */
867 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
868 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
869 ahc_outb(ahc
, HADDR
, 0);
870 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
878 printf("%s:%c:%d:%d: Attempt to issue message failed\n",
879 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
881 scbindex
= ahc_inb(ahc
, SCB_TAG
);
882 scb
= ahc_lookup_scb(ahc
, scbindex
);
884 && (scb
->flags
& SCB_RECOVERY_SCB
) != 0)
886 * Ensure that we didn't put a second instance of this
887 * SCB into the QINFIFO.
889 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
890 SCB_GET_CHANNEL(ahc
, scb
),
891 SCB_GET_LUN(scb
), scb
->hscb
->tag
,
892 ROLE_INITIATOR
, /*status*/0,
898 printf("%s: No free or disconnected SCBs\n", ahc_name(ahc
));
899 ahc_dump_card_state(ahc
);
907 scbptr
= ahc_inb(ahc
, SCBPTR
);
908 printf("Bogus TAG after DMA. SCBPTR %d, tag %d, our tag %d\n",
909 scbptr
, ahc_inb(ahc
, ARG_1
),
910 ahc
->scb_data
->hscbs
[scbptr
].tag
);
911 ahc_dump_card_state(ahc
);
917 printf("%s: BTT calculation out of range\n", ahc_name(ahc
));
918 printf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
919 "ARG_1 == 0x%x ACCUM = 0x%x\n",
920 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
921 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
922 printf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
923 "SINDEX == 0x%x\n, A == 0x%x\n",
924 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
925 ahc_index_busy_tcl(ahc
,
926 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
927 ahc_inb(ahc
, SAVED_LUN
))),
928 ahc_inb(ahc
, SINDEX
),
929 ahc_inb(ahc
, ACCUM
));
930 printf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
931 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
932 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
933 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
934 ahc_inb(ahc
, SCB_CONTROL
));
935 printf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
936 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
937 ahc_dump_card_state(ahc
);
942 printf("ahc_intr: seqint, "
943 "intstat == 0x%x, scsisigi = 0x%x\n",
944 intstat
, ahc_inb(ahc
, SCSISIGI
));
949 * The sequencer is paused immediately on
950 * a SEQINT, so we should restart it when
957 ahc_handle_scsiint(struct ahc_softc
*ahc
, u_int intstat
)
966 if ((ahc
->features
& AHC_TWIN
) != 0
967 && ((ahc_inb(ahc
, SBLKCTL
) & SELBUSB
) != 0))
971 intr_channel
= cur_channel
;
973 if ((ahc
->features
& AHC_ULTRA2
) != 0)
974 status0
= ahc_inb(ahc
, SSTAT0
) & IOERR
;
977 status
= ahc_inb(ahc
, SSTAT1
) & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
978 if (status
== 0 && status0
== 0) {
979 if ((ahc
->features
& AHC_TWIN
) != 0) {
980 /* Try the other channel */
981 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
982 status
= ahc_inb(ahc
, SSTAT1
)
983 & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
984 intr_channel
= (cur_channel
== 'A') ? 'B' : 'A';
987 printf("%s: Spurious SCSI interrupt\n", ahc_name(ahc
));
988 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
994 /* Make sure the sequencer is in a safe location. */
995 ahc_clear_critical_section(ahc
);
997 scb_index
= ahc_inb(ahc
, SCB_TAG
);
998 scb
= ahc_lookup_scb(ahc
, scb_index
);
1000 && (ahc_inb(ahc
, SEQ_FLAGS
) & NOT_IDENTIFIED
) != 0)
1003 if ((ahc
->features
& AHC_ULTRA2
) != 0
1004 && (status0
& IOERR
) != 0) {
1007 now_lvd
= ahc_inb(ahc
, SBLKCTL
) & ENAB40
;
1008 printf("%s: Transceiver State Has Changed to %s mode\n",
1009 ahc_name(ahc
), now_lvd
? "LVD" : "SE");
1010 ahc_outb(ahc
, CLRSINT0
, CLRIOERR
);
1012 * When transitioning to SE mode, the reset line
1013 * glitches, triggering an arbitration bug in some
1014 * Ultra2 controllers. This bug is cleared when we
1015 * assert the reset line. Since a reset glitch has
1016 * already occurred with this transition and a
1017 * transceiver state change is handled just like
1018 * a bus reset anyway, asserting the reset line
1019 * ourselves is safe.
1021 ahc_reset_channel(ahc
, intr_channel
,
1022 /*Initiate Reset*/now_lvd
== 0);
1023 } else if ((status
& SCSIRSTI
) != 0) {
1024 printf("%s: Someone reset channel %c\n",
1025 ahc_name(ahc
), intr_channel
);
1026 if (intr_channel
!= cur_channel
)
1027 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
1028 ahc_reset_channel(ahc
, intr_channel
, /*Initiate Reset*/FALSE
);
1029 } else if ((status
& SCSIPERR
) != 0) {
1031 * Determine the bus phase and queue an appropriate message.
1032 * SCSIPERR is latched true as soon as a parity error
1033 * occurs. If the sequencer acked the transfer that
1034 * caused the parity error and the currently presented
1035 * transfer on the bus has correct parity, SCSIPERR will
1036 * be cleared by CLRSCSIPERR. Use this to determine if
1037 * we should look at the last phase the sequencer recorded,
1038 * or the current phase presented on the bus.
1040 struct ahc_devinfo devinfo
;
1050 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1051 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
1052 sstat2
= ahc_inb(ahc
, SSTAT2
);
1053 ahc_outb(ahc
, CLRSINT1
, CLRSCSIPERR
);
1055 * For all phases save DATA, the sequencer won't
1056 * automatically ack a byte that has a parity error
1057 * in it. So the only way that the current phase
1058 * could be 'data-in' is if the parity error is for
1059 * an already acked byte in the data phase. During
1060 * synchronous data-in transfers, we may actually
1061 * ack bytes before latching the current phase in
1062 * LASTPHASE, leading to the discrepancy between
1063 * curphase and lastphase.
1065 if ((ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0
1066 || curphase
== P_DATAIN
|| curphase
== P_DATAIN_DT
)
1067 errorphase
= curphase
;
1069 errorphase
= lastphase
;
1071 for (i
= 0; i
< num_phases
; i
++) {
1072 if (errorphase
== ahc_phase_table
[i
].phase
)
1075 mesg_out
= ahc_phase_table
[i
].mesg_out
;
1078 if (SCB_IS_SILENT(scb
))
1081 ahc_print_path(ahc
, scb
);
1082 scb
->flags
|= SCB_TRANSMISSION_ERROR
;
1084 printf("%s:%c:%d: ", ahc_name(ahc
), intr_channel
,
1085 SCSIID_TARGET(ahc
, ahc_inb(ahc
, SAVED_SCSIID
)));
1086 scsirate
= ahc_inb(ahc
, SCSIRATE
);
1087 if (silent
== FALSE
) {
1088 printf("parity error detected %s. "
1089 "SEQADDR(0x%x) SCSIRATE(0x%x)\n",
1090 ahc_phase_table
[i
].phasemsg
,
1091 ahc_inw(ahc
, SEQADDR0
),
1093 if ((ahc
->features
& AHC_DT
) != 0) {
1094 if ((sstat2
& CRCVALERR
) != 0)
1095 printf("\tCRC Value Mismatch\n");
1096 if ((sstat2
& CRCENDERR
) != 0)
1097 printf("\tNo terminal CRC packet "
1099 if ((sstat2
& CRCREQERR
) != 0)
1100 printf("\tIllegal CRC packet "
1102 if ((sstat2
& DUAL_EDGE_ERR
) != 0)
1103 printf("\tUnexpected %sDT Data Phase\n",
1104 (scsirate
& SINGLE_EDGE
)
1109 if ((ahc
->features
& AHC_DT
) != 0
1110 && (sstat2
& DUAL_EDGE_ERR
) != 0) {
1112 * This error applies regardless of
1113 * data direction, so ignore the value
1114 * in the phase table.
1116 mesg_out
= MSG_INITIATOR_DET_ERR
;
1120 * We've set the hardware to assert ATN if we
1121 * get a parity error on "in" phases, so all we
1122 * need to do is stuff the message buffer with
1123 * the appropriate message. "In" phases have set
1124 * mesg_out to something other than MSG_NOP.
1126 if (mesg_out
!= MSG_NOOP
) {
1127 if (ahc
->msg_type
!= MSG_TYPE_NONE
)
1128 ahc
->send_msg_perror
= TRUE
;
1130 ahc_outb(ahc
, MSG_OUT
, mesg_out
);
1133 * Force a renegotiation with this target just in
1134 * case we are out of sync for some external reason
1135 * unknown (or unreported) by the target.
1137 ahc_fetch_devinfo(ahc
, &devinfo
);
1138 ahc_force_renegotiation(ahc
, &devinfo
);
1140 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1142 } else if ((status
& SELTO
) != 0) {
1145 /* Stop the selection */
1146 ahc_outb(ahc
, SCSISEQ
, 0);
1148 /* No more pending messages */
1149 ahc_clear_msg_state(ahc
);
1151 /* Clear interrupt state */
1152 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1153 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRBUSFREE
|CLRSCSIPERR
);
1156 * Although the driver does not care about the
1157 * 'Selection in Progress' status bit, the busy
1158 * LED does. SELINGO is only cleared by a sucessfull
1159 * selection, so we must manually clear it to insure
1160 * the LED turns off just incase no future successful
1161 * selections occur (e.g. no devices on the bus).
1163 ahc_outb(ahc
, CLRSINT0
, CLRSELINGO
);
1165 scbptr
= ahc_inb(ahc
, WAITING_SCBH
);
1166 ahc_outb(ahc
, SCBPTR
, scbptr
);
1167 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1169 scb
= ahc_lookup_scb(ahc
, scb_index
);
1171 printf("%s: ahc_intr - referenced scb not "
1172 "valid during SELTO scb(%d, %d)\n",
1173 ahc_name(ahc
), scbptr
, scb_index
);
1174 ahc_dump_card_state(ahc
);
1176 struct ahc_devinfo devinfo
;
1178 if ((ahc_debug
& AHC_SHOW_SELTO
) != 0) {
1179 ahc_print_path(ahc
, scb
);
1180 printf("Saw Selection Timeout for SCB 0x%x\n",
1184 ahc_scb_devinfo(ahc
, &devinfo
, scb
);
1185 ahc_set_transaction_status(scb
, CAM_SEL_TIMEOUT
);
1186 ahc_freeze_devq(ahc
, scb
);
1189 * Cancel any pending transactions on the device
1190 * now that it seems to be missing. This will
1191 * also revert us to async/narrow transfers until
1192 * we can renegotiate with the device.
1194 ahc_handle_devreset(ahc
, &devinfo
,
1196 "Selection Timeout",
1197 /*verbose_level*/1);
1199 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1201 } else if ((status
& BUSFREE
) != 0
1202 && (ahc_inb(ahc
, SIMODE1
) & ENBUSFREE
) != 0) {
1203 struct ahc_devinfo devinfo
;
1208 u_int initiator_role_id
;
1213 * Clear our selection hardware as soon as possible.
1214 * We may have an entry in the waiting Q for this target,
1215 * that is affected by this busfree and we don't want to
1216 * go about selecting the target while we handle the event.
1218 ahc_outb(ahc
, SCSISEQ
,
1219 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
1222 * Disable busfree interrupts and clear the busfree
1223 * interrupt status. We do this here so that several
1224 * bus transactions occur prior to clearing the SCSIINT
1225 * latch. It can take a bit for the clearing to take effect.
1227 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1228 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
|CLRSCSIPERR
);
1231 * Look at what phase we were last in.
1232 * If its message out, chances are pretty good
1233 * that the busfree was in response to one of
1234 * our abort requests.
1236 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1237 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
1238 saved_lun
= ahc_inb(ahc
, SAVED_LUN
);
1239 target
= SCSIID_TARGET(ahc
, saved_scsiid
);
1240 initiator_role_id
= SCSIID_OUR_ID(saved_scsiid
);
1241 channel
= SCSIID_CHANNEL(ahc
, saved_scsiid
);
1242 ahc_compile_devinfo(&devinfo
, initiator_role_id
,
1243 target
, saved_lun
, channel
, ROLE_INITIATOR
);
1246 if (lastphase
== P_MESGOUT
) {
1249 tag
= SCB_LIST_NULL
;
1250 if (ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT_TAG
, TRUE
)
1251 || ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT
, TRUE
)) {
1252 if (ahc
->msgout_buf
[ahc
->msgout_index
- 1]
1254 tag
= scb
->hscb
->tag
;
1255 ahc_print_path(ahc
, scb
);
1256 printf("SCB %d - Abort%s Completed.\n",
1257 scb
->hscb
->tag
, tag
== SCB_LIST_NULL
?
1259 ahc_abort_scbs(ahc
, target
, channel
,
1264 } else if (ahc_sent_msg(ahc
, AHCMSG_1B
,
1265 MSG_BUS_DEV_RESET
, TRUE
)) {
1268 * Don't mark the user's request for this BDR
1269 * as completing with CAM_BDR_SENT. CAM3
1270 * specifies CAM_REQ_CMP.
1273 && scb
->io_ctx
->ccb_h
.func_code
== XPT_RESET_DEV
1274 && ahc_match_scb(ahc
, scb
, target
, channel
,
1278 ahc_set_transaction_status(scb
, CAM_REQ_CMP
);
1281 ahc_compile_devinfo(&devinfo
,
1287 ahc_handle_devreset(ahc
, &devinfo
,
1290 /*verbose_level*/0);
1292 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1293 MSG_EXT_PPR
, FALSE
)) {
1294 struct ahc_initiator_tinfo
*tinfo
;
1295 struct ahc_tmode_tstate
*tstate
;
1298 * PPR Rejected. Try non-ppr negotiation
1299 * and retry command.
1301 tinfo
= ahc_fetch_transinfo(ahc
,
1306 tinfo
->curr
.transport_version
= 2;
1307 tinfo
->goal
.transport_version
= 2;
1308 tinfo
->goal
.ppr_options
= 0;
1309 ahc_qinfifo_requeue_tail(ahc
, scb
);
1311 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1312 MSG_EXT_WDTR
, FALSE
)) {
1314 * Negotiation Rejected. Go-narrow and
1317 ahc_set_width(ahc
, &devinfo
,
1318 MSG_EXT_WDTR_BUS_8_BIT
,
1319 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1321 ahc_qinfifo_requeue_tail(ahc
, scb
);
1323 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1324 MSG_EXT_SDTR
, FALSE
)) {
1326 * Negotiation Rejected. Go-async and
1329 ahc_set_syncrate(ahc
, &devinfo
,
1331 /*period*/0, /*offset*/0,
1333 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1335 ahc_qinfifo_requeue_tail(ahc
, scb
);
1339 if (printerror
!= 0) {
1345 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
1346 tag
= scb
->hscb
->tag
;
1348 tag
= SCB_LIST_NULL
;
1349 ahc_print_path(ahc
, scb
);
1350 ahc_abort_scbs(ahc
, target
, channel
,
1351 SCB_GET_LUN(scb
), tag
,
1356 * We had not fully identified this connection,
1357 * so we cannot abort anything.
1359 printf("%s: ", ahc_name(ahc
));
1361 for (i
= 0; i
< num_phases
; i
++) {
1362 if (lastphase
== ahc_phase_table
[i
].phase
)
1365 if (lastphase
!= P_BUSFREE
) {
1367 * Renegotiate with this device at the
1368 * next oportunity just in case this busfree
1369 * is due to a negotiation mismatch with the
1372 ahc_force_renegotiation(ahc
, &devinfo
);
1374 printf("Unexpected busfree %s\n"
1375 "SEQADDR == 0x%x\n",
1376 ahc_phase_table
[i
].phasemsg
,
1377 ahc_inb(ahc
, SEQADDR0
)
1378 | (ahc_inb(ahc
, SEQADDR1
) << 8));
1380 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1383 printf("%s: Missing case in ahc_handle_scsiint. status = %x\n",
1384 ahc_name(ahc
), status
);
1385 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1390 * Force renegotiation to occur the next time we initiate
1391 * a command to the current device.
1394 ahc_force_renegotiation(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
1396 struct ahc_initiator_tinfo
*targ_info
;
1397 struct ahc_tmode_tstate
*tstate
;
1399 targ_info
= ahc_fetch_transinfo(ahc
,
1401 devinfo
->our_scsiid
,
1404 ahc_update_neg_request(ahc
, devinfo
, tstate
,
1405 targ_info
, AHC_NEG_IF_NON_ASYNC
);
1408 #define AHC_MAX_STEPS 2000
1410 ahc_clear_critical_section(struct ahc_softc
*ahc
)
1417 if (ahc
->num_critical_sections
== 0)
1429 seqaddr
= ahc_inb(ahc
, SEQADDR0
)
1430 | (ahc_inb(ahc
, SEQADDR1
) << 8);
1433 * Seqaddr represents the next instruction to execute,
1434 * so we are really executing the instruction just
1439 cs
= ahc
->critical_sections
;
1440 for (i
= 0; i
< ahc
->num_critical_sections
; i
++, cs
++) {
1442 if (cs
->begin
< seqaddr
&& cs
->end
>= seqaddr
)
1446 if (i
== ahc
->num_critical_sections
)
1449 if (steps
> AHC_MAX_STEPS
) {
1450 printf("%s: Infinite loop in critical section\n",
1452 ahc_dump_card_state(ahc
);
1453 panic("critical section loop");
1457 if (stepping
== FALSE
) {
1460 * Disable all interrupt sources so that the
1461 * sequencer will not be stuck by a pausing
1462 * interrupt condition while we attempt to
1463 * leave a critical section.
1465 simode0
= ahc_inb(ahc
, SIMODE0
);
1466 ahc_outb(ahc
, SIMODE0
, 0);
1467 simode1
= ahc_inb(ahc
, SIMODE1
);
1468 if ((ahc
->features
& AHC_DT
) != 0)
1470 * On DT class controllers, we
1471 * use the enhanced busfree logic.
1472 * Unfortunately we cannot re-enable
1473 * busfree detection within the
1474 * current connection, so we must
1475 * leave it on while single stepping.
1477 ahc_outb(ahc
, SIMODE1
, simode1
& ENBUSFREE
);
1479 ahc_outb(ahc
, SIMODE1
, 0);
1480 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1481 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
| STEP
);
1484 if ((ahc
->features
& AHC_DT
) != 0) {
1485 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
);
1486 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1488 ahc_outb(ahc
, HCNTRL
, ahc
->unpause
);
1489 while (!ahc_is_paused(ahc
))
1493 ahc_outb(ahc
, SIMODE0
, simode0
);
1494 ahc_outb(ahc
, SIMODE1
, simode1
);
1495 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
);
1500 * Clear any pending interrupt status.
1503 ahc_clear_intstat(struct ahc_softc
*ahc
)
1505 /* Clear any interrupt conditions this may have caused */
1506 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRATNO
|CLRSCSIRSTI
1507 |CLRBUSFREE
|CLRSCSIPERR
|CLRPHASECHG
|
1509 ahc_flush_device_writes(ahc
);
1510 ahc_outb(ahc
, CLRSINT0
, CLRSELDO
|CLRSELDI
|CLRSELINGO
);
1511 ahc_flush_device_writes(ahc
);
1512 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1513 ahc_flush_device_writes(ahc
);
1516 /**************************** Debugging Routines ******************************/
1518 uint32_t ahc_debug
= AHC_DEBUG_OPTS
;
1522 ahc_print_scb(struct scb
*scb
)
1526 struct hardware_scb
*hscb
= scb
->hscb
;
1528 printf("scb:%p control:0x%x scsiid:0x%x lun:%d cdb_len:%d\n",
1534 printf("Shared Data: ");
1535 for (i
= 0; i
< sizeof(hscb
->shared_data
.cdb
); i
++)
1536 printf("%#02x", hscb
->shared_data
.cdb
[i
]);
1537 printf(" dataptr:%#x datacnt:%#x sgptr:%#x tag:%#x\n",
1538 ahc_le32toh(hscb
->dataptr
),
1539 ahc_le32toh(hscb
->datacnt
),
1540 ahc_le32toh(hscb
->sgptr
),
1542 if (scb
->sg_count
> 0) {
1543 for (i
= 0; i
< scb
->sg_count
; i
++) {
1544 printf("sg[%d] - Addr 0x%x%x : Length %d\n",
1546 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
1547 & SG_HIGH_ADDR_BITS
),
1548 ahc_le32toh(scb
->sg_list
[i
].addr
),
1549 ahc_le32toh(scb
->sg_list
[i
].len
));
1554 /************************* Transfer Negotiation *******************************/
1556 * Allocate per target mode instance (ID we respond to as a target)
1557 * transfer negotiation data structures.
1559 static struct ahc_tmode_tstate
*
1560 ahc_alloc_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
)
1562 struct ahc_tmode_tstate
*master_tstate
;
1563 struct ahc_tmode_tstate
*tstate
;
1566 master_tstate
= ahc
->enabled_targets
[ahc
->our_id
];
1567 if (channel
== 'B') {
1569 master_tstate
= ahc
->enabled_targets
[ahc
->our_id_b
+ 8];
1571 if (ahc
->enabled_targets
[scsi_id
] != NULL
1572 && ahc
->enabled_targets
[scsi_id
] != master_tstate
)
1573 panic("%s: ahc_alloc_tstate - Target already allocated",
1575 tstate
= (struct ahc_tmode_tstate
*)malloc(sizeof(*tstate
),
1576 M_DEVBUF
, M_NOWAIT
);
1581 * If we have allocated a master tstate, copy user settings from
1582 * the master tstate (taken from SRAM or the EEPROM) for this
1583 * channel, but reset our current and goal settings to async/narrow
1584 * until an initiator talks to us.
1586 if (master_tstate
!= NULL
) {
1587 memcpy(tstate
, master_tstate
, sizeof(*tstate
));
1588 memset(tstate
->enabled_luns
, 0, sizeof(tstate
->enabled_luns
));
1589 tstate
->ultraenb
= 0;
1590 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
1591 memset(&tstate
->transinfo
[i
].curr
, 0,
1592 sizeof(tstate
->transinfo
[i
].curr
));
1593 memset(&tstate
->transinfo
[i
].goal
, 0,
1594 sizeof(tstate
->transinfo
[i
].goal
));
1597 memset(tstate
, 0, sizeof(*tstate
));
1598 ahc
->enabled_targets
[scsi_id
] = tstate
;
1602 #ifdef AHC_TARGET_MODE
1604 * Free per target mode instance (ID we respond to as a target)
1605 * transfer negotiation data structures.
1608 ahc_free_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
, int force
)
1610 struct ahc_tmode_tstate
*tstate
;
1613 * Don't clean up our "master" tstate.
1614 * It has our default user settings.
1616 if (((channel
== 'B' && scsi_id
== ahc
->our_id_b
)
1617 || (channel
== 'A' && scsi_id
== ahc
->our_id
))
1623 tstate
= ahc
->enabled_targets
[scsi_id
];
1625 free(tstate
, M_DEVBUF
);
1626 ahc
->enabled_targets
[scsi_id
] = NULL
;
1631 * Called when we have an active connection to a target on the bus,
1632 * this function finds the nearest syncrate to the input period limited
1633 * by the capabilities of the bus connectivity of and sync settings for
1636 struct ahc_syncrate
*
1637 ahc_devlimited_syncrate(struct ahc_softc
*ahc
,
1638 struct ahc_initiator_tinfo
*tinfo
,
1639 u_int
*period
, u_int
*ppr_options
, role_t role
)
1641 struct ahc_transinfo
*transinfo
;
1644 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1645 if ((ahc_inb(ahc
, SBLKCTL
) & ENAB40
) != 0
1646 && (ahc_inb(ahc
, SSTAT2
) & EXP_ACTIVE
) == 0) {
1647 maxsync
= AHC_SYNCRATE_DT
;
1649 maxsync
= AHC_SYNCRATE_ULTRA
;
1650 /* Can't do DT on an SE bus */
1651 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1653 } else if ((ahc
->features
& AHC_ULTRA
) != 0) {
1654 maxsync
= AHC_SYNCRATE_ULTRA
;
1656 maxsync
= AHC_SYNCRATE_FAST
;
1659 * Never allow a value higher than our current goal
1660 * period otherwise we may allow a target initiated
1661 * negotiation to go above the limit as set by the
1662 * user. In the case of an initiator initiated
1663 * sync negotiation, we limit based on the user
1664 * setting. This allows the system to still accept
1665 * incoming negotiations even if target initiated
1666 * negotiation is not performed.
1668 if (role
== ROLE_TARGET
)
1669 transinfo
= &tinfo
->user
;
1671 transinfo
= &tinfo
->goal
;
1672 *ppr_options
&= transinfo
->ppr_options
;
1673 if (transinfo
->width
== MSG_EXT_WDTR_BUS_8_BIT
) {
1674 maxsync
= max(maxsync
, (u_int
)AHC_SYNCRATE_ULTRA2
);
1675 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1677 if (transinfo
->period
== 0) {
1682 *period
= max(*period
, (u_int
)transinfo
->period
);
1683 return (ahc_find_syncrate(ahc
, period
, ppr_options
, maxsync
));
1687 * Look up the valid period to SCSIRATE conversion in our table.
1688 * Return the period and offset that should be sent to the target
1689 * if this was the beginning of an SDTR.
1691 struct ahc_syncrate
*
1692 ahc_find_syncrate(struct ahc_softc
*ahc
, u_int
*period
,
1693 u_int
*ppr_options
, u_int maxsync
)
1695 struct ahc_syncrate
*syncrate
;
1697 if ((ahc
->features
& AHC_DT
) == 0)
1698 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1700 /* Skip all DT only entries if DT is not available */
1701 if ((*ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
1702 && maxsync
< AHC_SYNCRATE_ULTRA2
)
1703 maxsync
= AHC_SYNCRATE_ULTRA2
;
1705 for (syncrate
= &ahc_syncrates
[maxsync
];
1706 syncrate
->rate
!= NULL
;
1710 * The Ultra2 table doesn't go as low
1711 * as for the Fast/Ultra cards.
1713 if ((ahc
->features
& AHC_ULTRA2
) != 0
1714 && (syncrate
->sxfr_u2
== 0))
1717 if (*period
<= syncrate
->period
) {
1719 * When responding to a target that requests
1720 * sync, the requested rate may fall between
1721 * two rates that we can output, but still be
1722 * a rate that we can receive. Because of this,
1723 * we want to respond to the target with
1724 * the same rate that it sent to us even
1725 * if the period we use to send data to it
1726 * is lower. Only lower the response period
1729 if (syncrate
== &ahc_syncrates
[maxsync
])
1730 *period
= syncrate
->period
;
1733 * At some speeds, we only support
1736 if ((syncrate
->sxfr_u2
& ST_SXFR
) != 0)
1737 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1743 || (syncrate
->rate
== NULL
)
1744 || ((ahc
->features
& AHC_ULTRA2
) != 0
1745 && (syncrate
->sxfr_u2
== 0))) {
1746 /* Use asynchronous transfers. */
1749 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1755 * Convert from an entry in our syncrate table to the SCSI equivalent
1756 * sync "period" factor.
1759 ahc_find_period(struct ahc_softc
*ahc
, u_int scsirate
, u_int maxsync
)
1761 struct ahc_syncrate
*syncrate
;
1763 if ((ahc
->features
& AHC_ULTRA2
) != 0)
1764 scsirate
&= SXFR_ULTRA2
;
1768 syncrate
= &ahc_syncrates
[maxsync
];
1769 while (syncrate
->rate
!= NULL
) {
1771 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1772 if (syncrate
->sxfr_u2
== 0)
1774 else if (scsirate
== (syncrate
->sxfr_u2
& SXFR_ULTRA2
))
1775 return (syncrate
->period
);
1776 } else if (scsirate
== (syncrate
->sxfr
& SXFR
)) {
1777 return (syncrate
->period
);
1781 return (0); /* async */
1785 * Truncate the given synchronous offset to a value the
1786 * current adapter type and syncrate are capable of.
1789 ahc_validate_offset(struct ahc_softc
*ahc
,
1790 struct ahc_initiator_tinfo
*tinfo
,
1791 struct ahc_syncrate
*syncrate
,
1792 u_int
*offset
, int wide
, role_t role
)
1796 /* Limit offset to what we can do */
1797 if (syncrate
== NULL
) {
1799 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1800 maxoffset
= MAX_OFFSET_ULTRA2
;
1803 maxoffset
= MAX_OFFSET_16BIT
;
1805 maxoffset
= MAX_OFFSET_8BIT
;
1807 *offset
= min(*offset
, maxoffset
);
1808 if (tinfo
!= NULL
) {
1809 if (role
== ROLE_TARGET
)
1810 *offset
= min(*offset
, (u_int
)tinfo
->user
.offset
);
1812 *offset
= min(*offset
, (u_int
)tinfo
->goal
.offset
);
1817 * Truncate the given transfer width parameter to a value the
1818 * current adapter type is capable of.
1821 ahc_validate_width(struct ahc_softc
*ahc
, struct ahc_initiator_tinfo
*tinfo
,
1822 u_int
*bus_width
, role_t role
)
1824 switch (*bus_width
) {
1826 if (ahc
->features
& AHC_WIDE
) {
1828 *bus_width
= MSG_EXT_WDTR_BUS_16_BIT
;
1832 case MSG_EXT_WDTR_BUS_8_BIT
:
1833 *bus_width
= MSG_EXT_WDTR_BUS_8_BIT
;
1836 if (tinfo
!= NULL
) {
1837 if (role
== ROLE_TARGET
)
1838 *bus_width
= min((u_int
)tinfo
->user
.width
, *bus_width
);
1840 *bus_width
= min((u_int
)tinfo
->goal
.width
, *bus_width
);
1845 * Update the bitmask of targets for which the controller should
1846 * negotiate with at the next convenient oportunity. This currently
1847 * means the next time we send the initial identify messages for
1848 * a new transaction.
1851 ahc_update_neg_request(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
1852 struct ahc_tmode_tstate
*tstate
,
1853 struct ahc_initiator_tinfo
*tinfo
, ahc_neg_type neg_type
)
1855 u_int auto_negotiate_orig
;
1857 auto_negotiate_orig
= tstate
->auto_negotiate
;
1858 if (neg_type
== AHC_NEG_ALWAYS
) {
1860 * Force our "current" settings to be
1861 * unknown so that unless a bus reset
1862 * occurs the need to renegotiate is
1863 * recorded persistently.
1865 if ((ahc
->features
& AHC_WIDE
) != 0)
1866 tinfo
->curr
.width
= AHC_WIDTH_UNKNOWN
;
1867 tinfo
->curr
.period
= AHC_PERIOD_UNKNOWN
;
1868 tinfo
->curr
.offset
= AHC_OFFSET_UNKNOWN
;
1870 if (tinfo
->curr
.period
!= tinfo
->goal
.period
1871 || tinfo
->curr
.width
!= tinfo
->goal
.width
1872 || tinfo
->curr
.offset
!= tinfo
->goal
.offset
1873 || tinfo
->curr
.ppr_options
!= tinfo
->goal
.ppr_options
1874 || (neg_type
== AHC_NEG_IF_NON_ASYNC
1875 && (tinfo
->goal
.offset
!= 0
1876 || tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
1877 || tinfo
->goal
.ppr_options
!= 0)))
1878 tstate
->auto_negotiate
|= devinfo
->target_mask
;
1880 tstate
->auto_negotiate
&= ~devinfo
->target_mask
;
1882 return (auto_negotiate_orig
!= tstate
->auto_negotiate
);
1886 * Update the user/goal/curr tables of synchronous negotiation
1887 * parameters as well as, in the case of a current or active update,
1888 * any data structures on the host controller. In the case of an
1889 * active update, the specified target is currently talking to us on
1890 * the bus, so the transfer parameter update must take effect
1894 ahc_set_syncrate(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
1895 struct ahc_syncrate
*syncrate
, u_int period
,
1896 u_int offset
, u_int ppr_options
, u_int type
, int paused
)
1898 struct ahc_initiator_tinfo
*tinfo
;
1899 struct ahc_tmode_tstate
*tstate
;
1906 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
1909 if (syncrate
== NULL
) {
1914 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
1915 devinfo
->target
, &tstate
);
1917 if ((type
& AHC_TRANS_USER
) != 0) {
1918 tinfo
->user
.period
= period
;
1919 tinfo
->user
.offset
= offset
;
1920 tinfo
->user
.ppr_options
= ppr_options
;
1923 if ((type
& AHC_TRANS_GOAL
) != 0) {
1924 tinfo
->goal
.period
= period
;
1925 tinfo
->goal
.offset
= offset
;
1926 tinfo
->goal
.ppr_options
= ppr_options
;
1929 old_period
= tinfo
->curr
.period
;
1930 old_offset
= tinfo
->curr
.offset
;
1931 old_ppr
= tinfo
->curr
.ppr_options
;
1933 if ((type
& AHC_TRANS_CUR
) != 0
1934 && (old_period
!= period
1935 || old_offset
!= offset
1936 || old_ppr
!= ppr_options
)) {
1940 scsirate
= tinfo
->scsirate
;
1941 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1943 scsirate
&= ~(SXFR_ULTRA2
|SINGLE_EDGE
|ENABLE_CRC
);
1944 if (syncrate
!= NULL
) {
1945 scsirate
|= syncrate
->sxfr_u2
;
1946 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) != 0)
1947 scsirate
|= ENABLE_CRC
;
1949 scsirate
|= SINGLE_EDGE
;
1953 scsirate
&= ~(SXFR
|SOFS
);
1955 * Ensure Ultra mode is set properly for
1958 tstate
->ultraenb
&= ~devinfo
->target_mask
;
1959 if (syncrate
!= NULL
) {
1960 if (syncrate
->sxfr
& ULTRA_SXFR
) {
1962 devinfo
->target_mask
;
1964 scsirate
|= syncrate
->sxfr
& SXFR
;
1965 scsirate
|= offset
& SOFS
;
1970 sxfrctl0
= ahc_inb(ahc
, SXFRCTL0
);
1971 sxfrctl0
&= ~FAST20
;
1972 if (tstate
->ultraenb
& devinfo
->target_mask
)
1974 ahc_outb(ahc
, SXFRCTL0
, sxfrctl0
);
1978 ahc_outb(ahc
, SCSIRATE
, scsirate
);
1979 if ((ahc
->features
& AHC_ULTRA2
) != 0)
1980 ahc_outb(ahc
, SCSIOFFSET
, offset
);
1983 tinfo
->scsirate
= scsirate
;
1984 tinfo
->curr
.period
= period
;
1985 tinfo
->curr
.offset
= offset
;
1986 tinfo
->curr
.ppr_options
= ppr_options
;
1988 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
1989 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
);
1992 printf("%s: target %d synchronous at %sMHz%s, "
1993 "offset = 0x%x\n", ahc_name(ahc
),
1994 devinfo
->target
, syncrate
->rate
,
1995 (ppr_options
& MSG_EXT_PPR_DT_REQ
)
1996 ? " DT" : "", offset
);
1998 printf("%s: target %d using "
1999 "asynchronous transfers\n",
2000 ahc_name(ahc
), devinfo
->target
);
2005 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
2006 tinfo
, AHC_NEG_TO_GOAL
);
2009 ahc_update_pending_scbs(ahc
);
2013 * Update the user/goal/curr tables of wide negotiation
2014 * parameters as well as, in the case of a current or active update,
2015 * any data structures on the host controller. In the case of an
2016 * active update, the specified target is currently talking to us on
2017 * the bus, so the transfer parameter update must take effect
2021 ahc_set_width(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2022 u_int width
, u_int type
, int paused
)
2024 struct ahc_initiator_tinfo
*tinfo
;
2025 struct ahc_tmode_tstate
*tstate
;
2030 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
2032 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2033 devinfo
->target
, &tstate
);
2035 if ((type
& AHC_TRANS_USER
) != 0)
2036 tinfo
->user
.width
= width
;
2038 if ((type
& AHC_TRANS_GOAL
) != 0)
2039 tinfo
->goal
.width
= width
;
2041 oldwidth
= tinfo
->curr
.width
;
2042 if ((type
& AHC_TRANS_CUR
) != 0 && oldwidth
!= width
) {
2046 scsirate
= tinfo
->scsirate
;
2047 scsirate
&= ~WIDEXFER
;
2048 if (width
== MSG_EXT_WDTR_BUS_16_BIT
)
2049 scsirate
|= WIDEXFER
;
2051 tinfo
->scsirate
= scsirate
;
2054 ahc_outb(ahc
, SCSIRATE
, scsirate
);
2056 tinfo
->curr
.width
= width
;
2058 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2059 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
);
2061 printf("%s: target %d using %dbit transfers\n",
2062 ahc_name(ahc
), devinfo
->target
,
2063 8 * (0x01 << width
));
2067 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
2068 tinfo
, AHC_NEG_TO_GOAL
);
2070 ahc_update_pending_scbs(ahc
);
2074 * Update the current state of tagged queuing for a given target.
2077 ahc_set_tags(struct ahc_softc
*ahc
, struct scsi_cmnd
*cmd
,
2078 struct ahc_devinfo
*devinfo
, ahc_queue_alg alg
)
2080 struct scsi_device
*sdev
= cmd
->device
;
2082 ahc_platform_set_tags(ahc
, sdev
, devinfo
, alg
);
2083 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2084 devinfo
->lun
, AC_TRANSFER_NEG
);
2088 * When the transfer settings for a connection change, update any
2089 * in-transit SCBs to contain the new data so the hardware will
2090 * be set correctly during future (re)selections.
2093 ahc_update_pending_scbs(struct ahc_softc
*ahc
)
2095 struct scb
*pending_scb
;
2096 int pending_scb_count
;
2102 * Traverse the pending SCB list and ensure that all of the
2103 * SCBs there have the proper settings.
2105 pending_scb_count
= 0;
2106 LIST_FOREACH(pending_scb
, &ahc
->pending_scbs
, pending_links
) {
2107 struct ahc_devinfo devinfo
;
2108 struct hardware_scb
*pending_hscb
;
2109 struct ahc_initiator_tinfo
*tinfo
;
2110 struct ahc_tmode_tstate
*tstate
;
2112 ahc_scb_devinfo(ahc
, &devinfo
, pending_scb
);
2113 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
.channel
,
2115 devinfo
.target
, &tstate
);
2116 pending_hscb
= pending_scb
->hscb
;
2117 pending_hscb
->control
&= ~ULTRAENB
;
2118 if ((tstate
->ultraenb
& devinfo
.target_mask
) != 0)
2119 pending_hscb
->control
|= ULTRAENB
;
2120 pending_hscb
->scsirate
= tinfo
->scsirate
;
2121 pending_hscb
->scsioffset
= tinfo
->curr
.offset
;
2122 if ((tstate
->auto_negotiate
& devinfo
.target_mask
) == 0
2123 && (pending_scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0) {
2124 pending_scb
->flags
&= ~SCB_AUTO_NEGOTIATE
;
2125 pending_hscb
->control
&= ~MK_MESSAGE
;
2127 ahc_sync_scb(ahc
, pending_scb
,
2128 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
2129 pending_scb_count
++;
2132 if (pending_scb_count
== 0)
2135 if (ahc_is_paused(ahc
)) {
2142 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
2143 /* Ensure that the hscbs down on the card match the new information */
2144 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
2145 struct hardware_scb
*pending_hscb
;
2149 ahc_outb(ahc
, SCBPTR
, i
);
2150 scb_tag
= ahc_inb(ahc
, SCB_TAG
);
2151 pending_scb
= ahc_lookup_scb(ahc
, scb_tag
);
2152 if (pending_scb
== NULL
)
2155 pending_hscb
= pending_scb
->hscb
;
2156 control
= ahc_inb(ahc
, SCB_CONTROL
);
2157 control
&= ~(ULTRAENB
|MK_MESSAGE
);
2158 control
|= pending_hscb
->control
& (ULTRAENB
|MK_MESSAGE
);
2159 ahc_outb(ahc
, SCB_CONTROL
, control
);
2160 ahc_outb(ahc
, SCB_SCSIRATE
, pending_hscb
->scsirate
);
2161 ahc_outb(ahc
, SCB_SCSIOFFSET
, pending_hscb
->scsioffset
);
2163 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
2169 /**************************** Pathing Information *****************************/
2171 ahc_fetch_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2177 if (ahc_inb(ahc
, SSTAT0
) & TARGET
)
2180 role
= ROLE_INITIATOR
;
2182 if (role
== ROLE_TARGET
2183 && (ahc
->features
& AHC_MULTI_TID
) != 0
2184 && (ahc_inb(ahc
, SEQ_FLAGS
)
2185 & (CMDPHASE_PENDING
|TARG_CMD_PENDING
|NO_DISCONNECT
)) != 0) {
2186 /* We were selected, so pull our id from TARGIDIN */
2187 our_id
= ahc_inb(ahc
, TARGIDIN
) & OID
;
2188 } else if ((ahc
->features
& AHC_ULTRA2
) != 0)
2189 our_id
= ahc_inb(ahc
, SCSIID_ULTRA2
) & OID
;
2191 our_id
= ahc_inb(ahc
, SCSIID
) & OID
;
2193 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
2194 ahc_compile_devinfo(devinfo
,
2196 SCSIID_TARGET(ahc
, saved_scsiid
),
2197 ahc_inb(ahc
, SAVED_LUN
),
2198 SCSIID_CHANNEL(ahc
, saved_scsiid
),
2202 struct ahc_phase_table_entry
*
2203 ahc_lookup_phase_entry(int phase
)
2205 struct ahc_phase_table_entry
*entry
;
2206 struct ahc_phase_table_entry
*last_entry
;
2209 * num_phases doesn't include the default entry which
2210 * will be returned if the phase doesn't match.
2212 last_entry
= &ahc_phase_table
[num_phases
];
2213 for (entry
= ahc_phase_table
; entry
< last_entry
; entry
++) {
2214 if (phase
== entry
->phase
)
2221 ahc_compile_devinfo(struct ahc_devinfo
*devinfo
, u_int our_id
, u_int target
,
2222 u_int lun
, char channel
, role_t role
)
2224 devinfo
->our_scsiid
= our_id
;
2225 devinfo
->target
= target
;
2227 devinfo
->target_offset
= target
;
2228 devinfo
->channel
= channel
;
2229 devinfo
->role
= role
;
2231 devinfo
->target_offset
+= 8;
2232 devinfo
->target_mask
= (0x01 << devinfo
->target_offset
);
2236 ahc_print_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2238 printf("%s:%c:%d:%d: ", ahc_name(ahc
), devinfo
->channel
,
2239 devinfo
->target
, devinfo
->lun
);
2243 ahc_scb_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2249 our_id
= SCSIID_OUR_ID(scb
->hscb
->scsiid
);
2250 role
= ROLE_INITIATOR
;
2251 if ((scb
->flags
& SCB_TARGET_SCB
) != 0)
2253 ahc_compile_devinfo(devinfo
, our_id
, SCB_GET_TARGET(ahc
, scb
),
2254 SCB_GET_LUN(scb
), SCB_GET_CHANNEL(ahc
, scb
), role
);
2258 /************************ Message Phase Processing ****************************/
2260 ahc_assert_atn(struct ahc_softc
*ahc
)
2265 if ((ahc
->features
& AHC_DT
) == 0)
2266 scsisigo
|= ahc_inb(ahc
, SCSISIGI
);
2267 ahc_outb(ahc
, SCSISIGO
, scsisigo
);
2271 * When an initiator transaction with the MK_MESSAGE flag either reconnects
2272 * or enters the initial message out phase, we are interrupted. Fill our
2273 * outgoing message buffer with the appropriate message and beging handing
2274 * the message phase(s) manually.
2277 ahc_setup_initiator_msgout(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2281 * To facilitate adding multiple messages together,
2282 * each routine should increment the index and len
2283 * variables instead of setting them explicitly.
2285 ahc
->msgout_index
= 0;
2286 ahc
->msgout_len
= 0;
2288 if ((scb
->flags
& SCB_DEVICE_RESET
) == 0
2289 && ahc_inb(ahc
, MSG_OUT
) == MSG_IDENTIFYFLAG
) {
2292 identify_msg
= MSG_IDENTIFYFLAG
| SCB_GET_LUN(scb
);
2293 if ((scb
->hscb
->control
& DISCENB
) != 0)
2294 identify_msg
|= MSG_IDENTIFY_DISCFLAG
;
2295 ahc
->msgout_buf
[ahc
->msgout_index
++] = identify_msg
;
2298 if ((scb
->hscb
->control
& TAG_ENB
) != 0) {
2299 ahc
->msgout_buf
[ahc
->msgout_index
++] =
2300 scb
->hscb
->control
& (TAG_ENB
|SCB_TAG_TYPE
);
2301 ahc
->msgout_buf
[ahc
->msgout_index
++] = scb
->hscb
->tag
;
2302 ahc
->msgout_len
+= 2;
2306 if (scb
->flags
& SCB_DEVICE_RESET
) {
2307 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_BUS_DEV_RESET
;
2309 ahc_print_path(ahc
, scb
);
2310 printf("Bus Device Reset Message Sent\n");
2312 * Clear our selection hardware in advance of
2313 * the busfree. We may have an entry in the waiting
2314 * Q for this target, and we don't want to go about
2315 * selecting while we handle the busfree and blow it
2318 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2319 } else if ((scb
->flags
& SCB_ABORT
) != 0) {
2320 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
2321 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT_TAG
;
2323 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT
;
2325 ahc_print_path(ahc
, scb
);
2326 printf("Abort%s Message Sent\n",
2327 (scb
->hscb
->control
& TAG_ENB
) != 0 ? " Tag" : "");
2329 * Clear our selection hardware in advance of
2330 * the busfree. We may have an entry in the waiting
2331 * Q for this target, and we don't want to go about
2332 * selecting while we handle the busfree and blow it
2335 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2336 } else if ((scb
->flags
& (SCB_AUTO_NEGOTIATE
|SCB_NEGOTIATE
)) != 0) {
2337 ahc_build_transfer_msg(ahc
, devinfo
);
2339 printf("ahc_intr: AWAITING_MSG for an SCB that "
2340 "does not have a waiting message\n");
2341 printf("SCSIID = %x, target_mask = %x\n", scb
->hscb
->scsiid
,
2342 devinfo
->target_mask
);
2343 panic("SCB = %d, SCB Control = %x, MSG_OUT = %x "
2344 "SCB flags = %x", scb
->hscb
->tag
, scb
->hscb
->control
,
2345 ahc_inb(ahc
, MSG_OUT
), scb
->flags
);
2349 * Clear the MK_MESSAGE flag from the SCB so we aren't
2350 * asked to send this message again.
2352 ahc_outb(ahc
, SCB_CONTROL
, ahc_inb(ahc
, SCB_CONTROL
) & ~MK_MESSAGE
);
2353 scb
->hscb
->control
&= ~MK_MESSAGE
;
2354 ahc
->msgout_index
= 0;
2355 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2359 * Build an appropriate transfer negotiation message for the
2360 * currently active target.
2363 ahc_build_transfer_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2366 * We need to initiate transfer negotiations.
2367 * If our current and goal settings are identical,
2368 * we want to renegotiate due to a check condition.
2370 struct ahc_initiator_tinfo
*tinfo
;
2371 struct ahc_tmode_tstate
*tstate
;
2372 struct ahc_syncrate
*rate
;
2380 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2381 devinfo
->target
, &tstate
);
2383 * Filter our period based on the current connection.
2384 * If we can't perform DT transfers on this segment (not in LVD
2385 * mode for instance), then our decision to issue a PPR message
2388 period
= tinfo
->goal
.period
;
2389 offset
= tinfo
->goal
.offset
;
2390 ppr_options
= tinfo
->goal
.ppr_options
;
2391 /* Target initiated PPR is not allowed in the SCSI spec */
2392 if (devinfo
->role
== ROLE_TARGET
)
2394 rate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
2395 &ppr_options
, devinfo
->role
);
2396 dowide
= tinfo
->curr
.width
!= tinfo
->goal
.width
;
2397 dosync
= tinfo
->curr
.offset
!= offset
|| tinfo
->curr
.period
!= period
;
2399 * Only use PPR if we have options that need it, even if the device
2400 * claims to support it. There might be an expander in the way
2403 doppr
= ppr_options
!= 0;
2405 if (!dowide
&& !dosync
&& !doppr
) {
2406 dowide
= tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
;
2407 dosync
= tinfo
->goal
.offset
!= 0;
2410 if (!dowide
&& !dosync
&& !doppr
) {
2412 * Force async with a WDTR message if we have a wide bus,
2413 * or just issue an SDTR with a 0 offset.
2415 if ((ahc
->features
& AHC_WIDE
) != 0)
2421 ahc_print_devinfo(ahc
, devinfo
);
2422 printf("Ensuring async\n");
2426 /* Target initiated PPR is not allowed in the SCSI spec */
2427 if (devinfo
->role
== ROLE_TARGET
)
2431 * Both the PPR message and SDTR message require the
2432 * goal syncrate to be limited to what the target device
2433 * is capable of handling (based on whether an LVD->SE
2434 * expander is on the bus), so combine these two cases.
2435 * Regardless, guarantee that if we are using WDTR and SDTR
2436 * messages that WDTR comes first.
2438 if (doppr
|| (dosync
&& !dowide
)) {
2440 offset
= tinfo
->goal
.offset
;
2441 ahc_validate_offset(ahc
, tinfo
, rate
, &offset
,
2442 doppr
? tinfo
->goal
.width
2443 : tinfo
->curr
.width
,
2446 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
2447 tinfo
->goal
.width
, ppr_options
);
2449 ahc_construct_sdtr(ahc
, devinfo
, period
, offset
);
2452 ahc_construct_wdtr(ahc
, devinfo
, tinfo
->goal
.width
);
2457 * Build a synchronous negotiation message in our message
2458 * buffer based on the input parameters.
2461 ahc_construct_sdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2462 u_int period
, u_int offset
)
2465 period
= AHC_ASYNC_XFER_PERIOD
;
2466 ahc
->msgout_index
+= spi_populate_sync_msg(
2467 ahc
->msgout_buf
+ ahc
->msgout_index
, period
, offset
);
2468 ahc
->msgout_len
+= 5;
2470 printf("(%s:%c:%d:%d): Sending SDTR period %x, offset %x\n",
2471 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
2472 devinfo
->lun
, period
, offset
);
2477 * Build a wide negotiation message in our message
2478 * buffer based on the input parameters.
2481 ahc_construct_wdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2484 ahc
->msgout_index
+= spi_populate_width_msg(
2485 ahc
->msgout_buf
+ ahc
->msgout_index
, bus_width
);
2486 ahc
->msgout_len
+= 4;
2488 printf("(%s:%c:%d:%d): Sending WDTR %x\n",
2489 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
2490 devinfo
->lun
, bus_width
);
2495 * Build a parallel protocol request message in our message
2496 * buffer based on the input parameters.
2499 ahc_construct_ppr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2500 u_int period
, u_int offset
, u_int bus_width
,
2504 period
= AHC_ASYNC_XFER_PERIOD
;
2505 ahc
->msgout_index
+= spi_populate_ppr_msg(
2506 ahc
->msgout_buf
+ ahc
->msgout_index
, period
, offset
,
2507 bus_width
, ppr_options
);
2508 ahc
->msgout_len
+= 8;
2510 printf("(%s:%c:%d:%d): Sending PPR bus_width %x, period %x, "
2511 "offset %x, ppr_options %x\n", ahc_name(ahc
),
2512 devinfo
->channel
, devinfo
->target
, devinfo
->lun
,
2513 bus_width
, period
, offset
, ppr_options
);
2518 * Clear any active message state.
2521 ahc_clear_msg_state(struct ahc_softc
*ahc
)
2523 ahc
->msgout_len
= 0;
2524 ahc
->msgin_index
= 0;
2525 ahc
->msg_type
= MSG_TYPE_NONE
;
2526 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0) {
2528 * The target didn't care to respond to our
2529 * message request, so clear ATN.
2531 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2533 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
2534 ahc_outb(ahc
, SEQ_FLAGS2
,
2535 ahc_inb(ahc
, SEQ_FLAGS2
) & ~TARGET_MSG_PENDING
);
2539 ahc_handle_proto_violation(struct ahc_softc
*ahc
)
2541 struct ahc_devinfo devinfo
;
2549 ahc_fetch_devinfo(ahc
, &devinfo
);
2550 scbid
= ahc_inb(ahc
, SCB_TAG
);
2551 scb
= ahc_lookup_scb(ahc
, scbid
);
2552 seq_flags
= ahc_inb(ahc
, SEQ_FLAGS
);
2553 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
2554 lastphase
= ahc_inb(ahc
, LASTPHASE
);
2555 if ((seq_flags
& NOT_IDENTIFIED
) != 0) {
2558 * The reconnecting target either did not send an
2559 * identify message, or did, but we didn't find an SCB
2562 ahc_print_devinfo(ahc
, &devinfo
);
2563 printf("Target did not send an IDENTIFY message. "
2564 "LASTPHASE = 0x%x.\n", lastphase
);
2566 } else if (scb
== NULL
) {
2568 * We don't seem to have an SCB active for this
2569 * transaction. Print an error and reset the bus.
2571 ahc_print_devinfo(ahc
, &devinfo
);
2572 printf("No SCB found during protocol violation\n");
2573 goto proto_violation_reset
;
2575 ahc_set_transaction_status(scb
, CAM_SEQUENCE_FAIL
);
2576 if ((seq_flags
& NO_CDB_SENT
) != 0) {
2577 ahc_print_path(ahc
, scb
);
2578 printf("No or incomplete CDB sent to device.\n");
2579 } else if ((ahc_inb(ahc
, SCB_CONTROL
) & STATUS_RCVD
) == 0) {
2581 * The target never bothered to provide status to
2582 * us prior to completing the command. Since we don't
2583 * know the disposition of this command, we must attempt
2584 * to abort it. Assert ATN and prepare to send an abort
2587 ahc_print_path(ahc
, scb
);
2588 printf("Completed command without status.\n");
2590 ahc_print_path(ahc
, scb
);
2591 printf("Unknown protocol violation.\n");
2592 ahc_dump_card_state(ahc
);
2595 if ((lastphase
& ~P_DATAIN_DT
) == 0
2596 || lastphase
== P_COMMAND
) {
2597 proto_violation_reset
:
2599 * Target either went directly to data/command
2600 * phase or didn't respond to our ATN.
2601 * The only safe thing to do is to blow
2602 * it away with a bus reset.
2604 found
= ahc_reset_channel(ahc
, 'A', TRUE
);
2605 printf("%s: Issued Channel %c Bus Reset. "
2606 "%d SCBs aborted\n", ahc_name(ahc
), 'A', found
);
2609 * Leave the selection hardware off in case
2610 * this abort attempt will affect yet to
2613 ahc_outb(ahc
, SCSISEQ
,
2614 ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
2615 ahc_assert_atn(ahc
);
2616 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
2618 ahc_print_devinfo(ahc
, &devinfo
);
2619 ahc
->msgout_buf
[0] = MSG_ABORT_TASK
;
2620 ahc
->msgout_len
= 1;
2621 ahc
->msgout_index
= 0;
2622 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2624 ahc_print_path(ahc
, scb
);
2625 scb
->flags
|= SCB_ABORT
;
2627 printf("Protocol violation %s. Attempting to abort.\n",
2628 ahc_lookup_phase_entry(curphase
)->phasemsg
);
2633 * Manual message loop handler.
2636 ahc_handle_message_phase(struct ahc_softc
*ahc
)
2638 struct ahc_devinfo devinfo
;
2642 ahc_fetch_devinfo(ahc
, &devinfo
);
2643 end_session
= FALSE
;
2644 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
2647 switch (ahc
->msg_type
) {
2648 case MSG_TYPE_INITIATOR_MSGOUT
:
2654 if (ahc
->msgout_len
== 0)
2655 panic("HOST_MSG_LOOP interrupt with no active message");
2658 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2659 ahc_print_devinfo(ahc
, &devinfo
);
2660 printf("INITIATOR_MSG_OUT");
2663 phasemis
= bus_phase
!= P_MESGOUT
;
2666 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2667 printf(" PHASEMIS %s\n",
2668 ahc_lookup_phase_entry(bus_phase
)
2672 if (bus_phase
== P_MESGIN
) {
2674 * Change gears and see if
2675 * this messages is of interest to
2676 * us or should be passed back to
2679 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2680 ahc
->send_msg_perror
= FALSE
;
2681 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGIN
;
2682 ahc
->msgin_index
= 0;
2689 if (ahc
->send_msg_perror
) {
2690 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2691 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2693 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2694 printf(" byte 0x%x\n", ahc
->send_msg_perror
);
2696 ahc_outb(ahc
, SCSIDATL
, MSG_PARITY_ERROR
);
2700 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
2703 * The target has requested a retry.
2704 * Re-assert ATN, reset our message index to
2707 ahc
->msgout_index
= 0;
2708 ahc_assert_atn(ahc
);
2711 lastbyte
= ahc
->msgout_index
== (ahc
->msgout_len
- 1);
2713 /* Last byte is signified by dropping ATN */
2714 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2718 * Clear our interrupt status and present
2719 * the next byte on the bus.
2721 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2723 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2724 printf(" byte 0x%x\n",
2725 ahc
->msgout_buf
[ahc
->msgout_index
]);
2727 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
2730 case MSG_TYPE_INITIATOR_MSGIN
:
2736 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2737 ahc_print_devinfo(ahc
, &devinfo
);
2738 printf("INITIATOR_MSG_IN");
2741 phasemis
= bus_phase
!= P_MESGIN
;
2744 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2745 printf(" PHASEMIS %s\n",
2746 ahc_lookup_phase_entry(bus_phase
)
2750 ahc
->msgin_index
= 0;
2751 if (bus_phase
== P_MESGOUT
2752 && (ahc
->send_msg_perror
== TRUE
2753 || (ahc
->msgout_len
!= 0
2754 && ahc
->msgout_index
== 0))) {
2755 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2762 /* Pull the byte in without acking it */
2763 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIBUSL
);
2765 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2766 printf(" byte 0x%x\n",
2767 ahc
->msgin_buf
[ahc
->msgin_index
]);
2770 message_done
= ahc_parse_msg(ahc
, &devinfo
);
2774 * Clear our incoming message buffer in case there
2775 * is another message following this one.
2777 ahc
->msgin_index
= 0;
2780 * If this message illicited a response,
2781 * assert ATN so the target takes us to the
2782 * message out phase.
2784 if (ahc
->msgout_len
!= 0) {
2786 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2787 ahc_print_devinfo(ahc
, &devinfo
);
2788 printf("Asserting ATN for response\n");
2791 ahc_assert_atn(ahc
);
2796 if (message_done
== MSGLOOP_TERMINATED
) {
2800 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2801 ahc_inb(ahc
, SCSIDATL
);
2805 case MSG_TYPE_TARGET_MSGIN
:
2810 if (ahc
->msgout_len
== 0)
2811 panic("Target MSGIN with no active message");
2814 * If we interrupted a mesgout session, the initiator
2815 * will not know this until our first REQ. So, we
2816 * only honor mesgout requests after we've sent our
2819 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0
2820 && ahc
->msgout_index
> 0)
2821 msgout_request
= TRUE
;
2823 msgout_request
= FALSE
;
2825 if (msgout_request
) {
2828 * Change gears and see if
2829 * this messages is of interest to
2830 * us or should be passed back to
2833 ahc
->msg_type
= MSG_TYPE_TARGET_MSGOUT
;
2834 ahc_outb(ahc
, SCSISIGO
, P_MESGOUT
| BSYO
);
2835 ahc
->msgin_index
= 0;
2836 /* Dummy read to REQ for first byte */
2837 ahc_inb(ahc
, SCSIDATL
);
2838 ahc_outb(ahc
, SXFRCTL0
,
2839 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2843 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
2845 ahc_outb(ahc
, SXFRCTL0
,
2846 ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
2852 * Present the next byte on the bus.
2854 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2855 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
2858 case MSG_TYPE_TARGET_MSGOUT
:
2864 * The initiator signals that this is
2865 * the last byte by dropping ATN.
2867 lastbyte
= (ahc_inb(ahc
, SCSISIGI
) & ATNI
) == 0;
2870 * Read the latched byte, but turn off SPIOEN first
2871 * so that we don't inadvertently cause a REQ for the
2874 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
2875 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIDATL
);
2876 msgdone
= ahc_parse_msg(ahc
, &devinfo
);
2877 if (msgdone
== MSGLOOP_TERMINATED
) {
2879 * The message is *really* done in that it caused
2880 * us to go to bus free. The sequencer has already
2881 * been reset at this point, so pull the ejection
2890 * XXX Read spec about initiator dropping ATN too soon
2891 * and use msgdone to detect it.
2893 if (msgdone
== MSGLOOP_MSGCOMPLETE
) {
2894 ahc
->msgin_index
= 0;
2897 * If this message illicited a response, transition
2898 * to the Message in phase and send it.
2900 if (ahc
->msgout_len
!= 0) {
2901 ahc_outb(ahc
, SCSISIGO
, P_MESGIN
| BSYO
);
2902 ahc_outb(ahc
, SXFRCTL0
,
2903 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2904 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
2905 ahc
->msgin_index
= 0;
2913 /* Ask for the next byte. */
2914 ahc_outb(ahc
, SXFRCTL0
,
2915 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2921 panic("Unknown REQINIT message type");
2925 ahc_clear_msg_state(ahc
);
2926 ahc_outb(ahc
, RETURN_1
, EXIT_MSG_LOOP
);
2928 ahc_outb(ahc
, RETURN_1
, CONT_MSG_LOOP
);
2932 * See if we sent a particular extended message to the target.
2933 * If "full" is true, return true only if the target saw the full
2934 * message. If "full" is false, return true if the target saw at
2935 * least the first byte of the message.
2938 ahc_sent_msg(struct ahc_softc
*ahc
, ahc_msgtype type
, u_int msgval
, int full
)
2946 while (index
< ahc
->msgout_len
) {
2947 if (ahc
->msgout_buf
[index
] == MSG_EXTENDED
) {
2950 end_index
= index
+ 1 + ahc
->msgout_buf
[index
+ 1];
2951 if (ahc
->msgout_buf
[index
+2] == msgval
2952 && type
== AHCMSG_EXT
) {
2955 if (ahc
->msgout_index
> end_index
)
2957 } else if (ahc
->msgout_index
> index
)
2961 } else if (ahc
->msgout_buf
[index
] >= MSG_SIMPLE_TASK
2962 && ahc
->msgout_buf
[index
] <= MSG_IGN_WIDE_RESIDUE
) {
2964 /* Skip tag type and tag id or residue param*/
2967 /* Single byte message */
2968 if (type
== AHCMSG_1B
2969 && ahc
->msgout_buf
[index
] == msgval
2970 && ahc
->msgout_index
> index
)
2982 * Wait for a complete incoming message, parse it, and respond accordingly.
2985 ahc_parse_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2987 struct ahc_initiator_tinfo
*tinfo
;
2988 struct ahc_tmode_tstate
*tstate
;
2992 u_int targ_scsirate
;
2994 done
= MSGLOOP_IN_PROG
;
2997 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2998 devinfo
->target
, &tstate
);
2999 targ_scsirate
= tinfo
->scsirate
;
3002 * Parse as much of the message as is available,
3003 * rejecting it if we don't support it. When
3004 * the entire message is available and has been
3005 * handled, return MSGLOOP_MSGCOMPLETE, indicating
3006 * that we have parsed an entire message.
3008 * In the case of extended messages, we accept the length
3009 * byte outright and perform more checking once we know the
3010 * extended message type.
3012 switch (ahc
->msgin_buf
[0]) {
3013 case MSG_DISCONNECT
:
3014 case MSG_SAVEDATAPOINTER
:
3015 case MSG_CMDCOMPLETE
:
3016 case MSG_RESTOREPOINTERS
:
3017 case MSG_IGN_WIDE_RESIDUE
:
3019 * End our message loop as these are messages
3020 * the sequencer handles on its own.
3022 done
= MSGLOOP_TERMINATED
;
3024 case MSG_MESSAGE_REJECT
:
3025 response
= ahc_handle_msg_reject(ahc
, devinfo
);
3028 done
= MSGLOOP_MSGCOMPLETE
;
3032 /* Wait for enough of the message to begin validation */
3033 if (ahc
->msgin_index
< 2)
3035 switch (ahc
->msgin_buf
[2]) {
3038 struct ahc_syncrate
*syncrate
;
3044 if (ahc
->msgin_buf
[1] != MSG_EXT_SDTR_LEN
) {
3050 * Wait until we have both args before validating
3051 * and acting on this message.
3053 * Add one to MSG_EXT_SDTR_LEN to account for
3054 * the extended message preamble.
3056 if (ahc
->msgin_index
< (MSG_EXT_SDTR_LEN
+ 1))
3059 period
= ahc
->msgin_buf
[3];
3061 saved_offset
= offset
= ahc
->msgin_buf
[4];
3062 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3065 ahc_validate_offset(ahc
, tinfo
, syncrate
, &offset
,
3066 targ_scsirate
& WIDEXFER
,
3069 printf("(%s:%c:%d:%d): Received "
3070 "SDTR period %x, offset %x\n\t"
3071 "Filtered to period %x, offset %x\n",
3072 ahc_name(ahc
), devinfo
->channel
,
3073 devinfo
->target
, devinfo
->lun
,
3074 ahc
->msgin_buf
[3], saved_offset
,
3077 ahc_set_syncrate(ahc
, devinfo
,
3079 offset
, ppr_options
,
3080 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3084 * See if we initiated Sync Negotiation
3085 * and didn't have to fall down to async
3088 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, TRUE
)) {
3090 if (saved_offset
!= offset
) {
3091 /* Went too low - force async */
3096 * Send our own SDTR in reply
3099 && devinfo
->role
== ROLE_INITIATOR
) {
3100 printf("(%s:%c:%d:%d): Target "
3102 ahc_name(ahc
), devinfo
->channel
,
3103 devinfo
->target
, devinfo
->lun
);
3105 ahc
->msgout_index
= 0;
3106 ahc
->msgout_len
= 0;
3107 ahc_construct_sdtr(ahc
, devinfo
,
3109 ahc
->msgout_index
= 0;
3112 done
= MSGLOOP_MSGCOMPLETE
;
3119 u_int sending_reply
;
3121 sending_reply
= FALSE
;
3122 if (ahc
->msgin_buf
[1] != MSG_EXT_WDTR_LEN
) {
3128 * Wait until we have our arg before validating
3129 * and acting on this message.
3131 * Add one to MSG_EXT_WDTR_LEN to account for
3132 * the extended message preamble.
3134 if (ahc
->msgin_index
< (MSG_EXT_WDTR_LEN
+ 1))
3137 bus_width
= ahc
->msgin_buf
[3];
3138 saved_width
= bus_width
;
3139 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3142 printf("(%s:%c:%d:%d): Received WDTR "
3143 "%x filtered to %x\n",
3144 ahc_name(ahc
), devinfo
->channel
,
3145 devinfo
->target
, devinfo
->lun
,
3146 saved_width
, bus_width
);
3149 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, TRUE
)) {
3151 * Don't send a WDTR back to the
3152 * target, since we asked first.
3153 * If the width went higher than our
3154 * request, reject it.
3156 if (saved_width
> bus_width
) {
3158 printf("(%s:%c:%d:%d): requested %dBit "
3159 "transfers. Rejecting...\n",
3160 ahc_name(ahc
), devinfo
->channel
,
3161 devinfo
->target
, devinfo
->lun
,
3162 8 * (0x01 << bus_width
));
3167 * Send our own WDTR in reply
3170 && devinfo
->role
== ROLE_INITIATOR
) {
3171 printf("(%s:%c:%d:%d): Target "
3173 ahc_name(ahc
), devinfo
->channel
,
3174 devinfo
->target
, devinfo
->lun
);
3176 ahc
->msgout_index
= 0;
3177 ahc
->msgout_len
= 0;
3178 ahc_construct_wdtr(ahc
, devinfo
, bus_width
);
3179 ahc
->msgout_index
= 0;
3181 sending_reply
= TRUE
;
3184 * After a wide message, we are async, but
3185 * some devices don't seem to honor this portion
3186 * of the spec. Force a renegotiation of the
3187 * sync component of our transfer agreement even
3188 * if our goal is async. By updating our width
3189 * after forcing the negotiation, we avoid
3190 * renegotiating for width.
3192 ahc_update_neg_request(ahc
, devinfo
, tstate
,
3193 tinfo
, AHC_NEG_ALWAYS
);
3194 ahc_set_width(ahc
, devinfo
, bus_width
,
3195 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3197 if (sending_reply
== FALSE
&& reject
== FALSE
) {
3200 * We will always have an SDTR to send.
3202 ahc
->msgout_index
= 0;
3203 ahc
->msgout_len
= 0;
3204 ahc_build_transfer_msg(ahc
, devinfo
);
3205 ahc
->msgout_index
= 0;
3208 done
= MSGLOOP_MSGCOMPLETE
;
3213 struct ahc_syncrate
*syncrate
;
3220 u_int saved_ppr_options
;
3222 if (ahc
->msgin_buf
[1] != MSG_EXT_PPR_LEN
) {
3228 * Wait until we have all args before validating
3229 * and acting on this message.
3231 * Add one to MSG_EXT_PPR_LEN to account for
3232 * the extended message preamble.
3234 if (ahc
->msgin_index
< (MSG_EXT_PPR_LEN
+ 1))
3237 period
= ahc
->msgin_buf
[3];
3238 offset
= ahc
->msgin_buf
[5];
3239 bus_width
= ahc
->msgin_buf
[6];
3240 saved_width
= bus_width
;
3241 ppr_options
= ahc
->msgin_buf
[7];
3243 * According to the spec, a DT only
3244 * period factor with no DT option
3245 * set implies async.
3247 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
3250 saved_ppr_options
= ppr_options
;
3251 saved_offset
= offset
;
3254 * Mask out any options we don't support
3255 * on any controller. Transfer options are
3256 * only available if we are negotiating wide.
3258 ppr_options
&= MSG_EXT_PPR_DT_REQ
;
3262 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3264 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3267 ahc_validate_offset(ahc
, tinfo
, syncrate
,
3271 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, TRUE
)) {
3273 * If we are unable to do any of the
3274 * requested options (we went too low),
3275 * then we'll have to reject the message.
3277 if (saved_width
> bus_width
3278 || saved_offset
!= offset
3279 || saved_ppr_options
!= ppr_options
) {
3288 if (devinfo
->role
!= ROLE_TARGET
)
3289 printf("(%s:%c:%d:%d): Target "
3291 ahc_name(ahc
), devinfo
->channel
,
3292 devinfo
->target
, devinfo
->lun
);
3294 printf("(%s:%c:%d:%d): Initiator "
3296 ahc_name(ahc
), devinfo
->channel
,
3297 devinfo
->target
, devinfo
->lun
);
3298 ahc
->msgout_index
= 0;
3299 ahc
->msgout_len
= 0;
3300 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
3301 bus_width
, ppr_options
);
3302 ahc
->msgout_index
= 0;
3306 printf("(%s:%c:%d:%d): Received PPR width %x, "
3307 "period %x, offset %x,options %x\n"
3308 "\tFiltered to width %x, period %x, "
3309 "offset %x, options %x\n",
3310 ahc_name(ahc
), devinfo
->channel
,
3311 devinfo
->target
, devinfo
->lun
,
3312 saved_width
, ahc
->msgin_buf
[3],
3313 saved_offset
, saved_ppr_options
,
3314 bus_width
, period
, offset
, ppr_options
);
3316 ahc_set_width(ahc
, devinfo
, bus_width
,
3317 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3319 ahc_set_syncrate(ahc
, devinfo
,
3321 offset
, ppr_options
,
3322 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3324 done
= MSGLOOP_MSGCOMPLETE
;
3328 /* Unknown extended message. Reject it. */
3334 #ifdef AHC_TARGET_MODE
3335 case MSG_BUS_DEV_RESET
:
3336 ahc_handle_devreset(ahc
, devinfo
,
3338 "Bus Device Reset Received",
3339 /*verbose_level*/0);
3341 done
= MSGLOOP_TERMINATED
;
3345 case MSG_CLEAR_QUEUE
:
3349 /* Target mode messages */
3350 if (devinfo
->role
!= ROLE_TARGET
) {
3354 tag
= SCB_LIST_NULL
;
3355 if (ahc
->msgin_buf
[0] == MSG_ABORT_TAG
)
3356 tag
= ahc_inb(ahc
, INITIATOR_TAG
);
3357 ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
3358 devinfo
->lun
, tag
, ROLE_TARGET
,
3361 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
3362 if (tstate
!= NULL
) {
3363 struct ahc_tmode_lstate
* lstate
;
3365 lstate
= tstate
->enabled_luns
[devinfo
->lun
];
3366 if (lstate
!= NULL
) {
3367 ahc_queue_lstate_event(ahc
, lstate
,
3368 devinfo
->our_scsiid
,
3371 ahc_send_lstate_events(ahc
, lstate
);
3375 done
= MSGLOOP_TERMINATED
;
3379 case MSG_TERM_IO_PROC
:
3387 * Setup to reject the message.
3389 ahc
->msgout_index
= 0;
3390 ahc
->msgout_len
= 1;
3391 ahc
->msgout_buf
[0] = MSG_MESSAGE_REJECT
;
3392 done
= MSGLOOP_MSGCOMPLETE
;
3396 if (done
!= MSGLOOP_IN_PROG
&& !response
)
3397 /* Clear the outgoing message buffer */
3398 ahc
->msgout_len
= 0;
3404 * Process a message reject message.
3407 ahc_handle_msg_reject(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
3410 * What we care about here is if we had an
3411 * outstanding SDTR or WDTR message for this
3412 * target. If we did, this is a signal that
3413 * the target is refusing negotiation.
3416 struct ahc_initiator_tinfo
*tinfo
;
3417 struct ahc_tmode_tstate
*tstate
;
3422 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3423 scb
= ahc_lookup_scb(ahc
, scb_index
);
3424 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
,
3425 devinfo
->our_scsiid
,
3426 devinfo
->target
, &tstate
);
3427 /* Might be necessary */
3428 last_msg
= ahc_inb(ahc
, LAST_MSG
);
3430 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, /*full*/FALSE
)) {
3432 * Target does not support the PPR message.
3433 * Attempt to negotiate SPI-2 style.
3436 printf("(%s:%c:%d:%d): PPR Rejected. "
3437 "Trying WDTR/SDTR\n",
3438 ahc_name(ahc
), devinfo
->channel
,
3439 devinfo
->target
, devinfo
->lun
);
3441 tinfo
->goal
.ppr_options
= 0;
3442 tinfo
->curr
.transport_version
= 2;
3443 tinfo
->goal
.transport_version
= 2;
3444 ahc
->msgout_index
= 0;
3445 ahc
->msgout_len
= 0;
3446 ahc_build_transfer_msg(ahc
, devinfo
);
3447 ahc
->msgout_index
= 0;
3449 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, /*full*/FALSE
)) {
3451 /* note 8bit xfers */
3452 printf("(%s:%c:%d:%d): refuses WIDE negotiation. Using "
3453 "8bit transfers\n", ahc_name(ahc
),
3454 devinfo
->channel
, devinfo
->target
, devinfo
->lun
);
3455 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
3456 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3459 * No need to clear the sync rate. If the target
3460 * did not accept the command, our syncrate is
3461 * unaffected. If the target started the negotiation,
3462 * but rejected our response, we already cleared the
3463 * sync rate before sending our WDTR.
3465 if (tinfo
->goal
.offset
!= tinfo
->curr
.offset
) {
3467 /* Start the sync negotiation */
3468 ahc
->msgout_index
= 0;
3469 ahc
->msgout_len
= 0;
3470 ahc_build_transfer_msg(ahc
, devinfo
);
3471 ahc
->msgout_index
= 0;
3474 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, /*full*/FALSE
)) {
3475 /* note asynch xfers and clear flag */
3476 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
, /*period*/0,
3477 /*offset*/0, /*ppr_options*/0,
3478 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3480 printf("(%s:%c:%d:%d): refuses synchronous negotiation. "
3481 "Using asynchronous transfers\n",
3482 ahc_name(ahc
), devinfo
->channel
,
3483 devinfo
->target
, devinfo
->lun
);
3484 } else if ((scb
->hscb
->control
& MSG_SIMPLE_TASK
) != 0) {
3488 tag_type
= (scb
->hscb
->control
& MSG_SIMPLE_TASK
);
3490 if (tag_type
== MSG_SIMPLE_TASK
) {
3491 printf("(%s:%c:%d:%d): refuses tagged commands. "
3492 "Performing non-tagged I/O\n", ahc_name(ahc
),
3493 devinfo
->channel
, devinfo
->target
, devinfo
->lun
);
3494 ahc_set_tags(ahc
, scb
->io_ctx
, devinfo
, AHC_QUEUE_NONE
);
3497 printf("(%s:%c:%d:%d): refuses %s tagged commands. "
3498 "Performing simple queue tagged I/O only\n",
3499 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
3500 devinfo
->lun
, tag_type
== MSG_ORDERED_TASK
3501 ? "ordered" : "head of queue");
3502 ahc_set_tags(ahc
, scb
->io_ctx
, devinfo
, AHC_QUEUE_BASIC
);
3507 * Resend the identify for this CCB as the target
3508 * may believe that the selection is invalid otherwise.
3510 ahc_outb(ahc
, SCB_CONTROL
,
3511 ahc_inb(ahc
, SCB_CONTROL
) & mask
);
3512 scb
->hscb
->control
&= mask
;
3513 ahc_set_transaction_tag(scb
, /*enabled*/FALSE
,
3514 /*type*/MSG_SIMPLE_TASK
);
3515 ahc_outb(ahc
, MSG_OUT
, MSG_IDENTIFYFLAG
);
3516 ahc_assert_atn(ahc
);
3519 * This transaction is now at the head of
3520 * the untagged queue for this target.
3522 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
3523 struct scb_tailq
*untagged_q
;
3526 &(ahc
->untagged_queues
[devinfo
->target_offset
]);
3527 TAILQ_INSERT_HEAD(untagged_q
, scb
, links
.tqe
);
3528 scb
->flags
|= SCB_UNTAGGEDQ
;
3530 ahc_busy_tcl(ahc
, BUILD_TCL(scb
->hscb
->scsiid
, devinfo
->lun
),
3534 * Requeue all tagged commands for this target
3535 * currently in our posession so they can be
3536 * converted to untagged commands.
3538 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
3539 SCB_GET_CHANNEL(ahc
, scb
),
3540 SCB_GET_LUN(scb
), /*tag*/SCB_LIST_NULL
,
3541 ROLE_INITIATOR
, CAM_REQUEUE_REQ
,
3545 * Otherwise, we ignore it.
3547 printf("%s:%c:%d: Message reject for %x -- ignored\n",
3548 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
3555 * Process an ingnore wide residue message.
3558 ahc_handle_ign_wide_residue(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
3563 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3564 scb
= ahc_lookup_scb(ahc
, scb_index
);
3566 * XXX Actually check data direction in the sequencer?
3567 * Perhaps add datadir to some spare bits in the hscb?
3569 if ((ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
) == 0
3570 || ahc_get_transfer_dir(scb
) != CAM_DIR_IN
) {
3572 * Ignore the message if we haven't
3573 * seen an appropriate data phase yet.
3577 * If the residual occurred on the last
3578 * transfer and the transfer request was
3579 * expected to end on an odd count, do
3580 * nothing. Otherwise, subtract a byte
3581 * and update the residual count accordingly.
3585 sgptr
= ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
3586 if ((sgptr
& SG_LIST_NULL
) != 0
3587 && (ahc_inb(ahc
, SCB_LUN
) & SCB_XFERLEN_ODD
) != 0) {
3589 * If the residual occurred on the last
3590 * transfer and the transfer request was
3591 * expected to end on an odd count, do
3595 struct ahc_dma_seg
*sg
;
3600 /* Pull in all of the sgptr */
3601 sgptr
= ahc_inl(ahc
, SCB_RESIDUAL_SGPTR
);
3602 data_cnt
= ahc_inl(ahc
, SCB_RESIDUAL_DATACNT
);
3604 if ((sgptr
& SG_LIST_NULL
) != 0) {
3606 * The residual data count is not updated
3607 * for the command run to completion case.
3608 * Explicitly zero the count.
3610 data_cnt
&= ~AHC_SG_LEN_MASK
;
3613 data_addr
= ahc_inl(ahc
, SHADDR
);
3617 sgptr
&= SG_PTR_MASK
;
3619 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
3622 * The residual sg ptr points to the next S/G
3623 * to load so we must go back one.
3626 sglen
= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
3627 if (sg
!= scb
->sg_list
3628 && sglen
< (data_cnt
& AHC_SG_LEN_MASK
)) {
3631 sglen
= ahc_le32toh(sg
->len
);
3633 * Preserve High Address and SG_LIST bits
3634 * while setting the count to 1.
3636 data_cnt
= 1 | (sglen
& (~AHC_SG_LEN_MASK
));
3637 data_addr
= ahc_le32toh(sg
->addr
)
3638 + (sglen
& AHC_SG_LEN_MASK
) - 1;
3641 * Increment sg so it points to the
3645 sgptr
= ahc_sg_virt_to_bus(scb
, sg
);
3647 ahc_outl(ahc
, SCB_RESIDUAL_SGPTR
, sgptr
);
3648 ahc_outl(ahc
, SCB_RESIDUAL_DATACNT
, data_cnt
);
3650 * Toggle the "oddness" of the transfer length
3651 * to handle this mid-transfer ignore wide
3652 * residue. This ensures that the oddness is
3653 * correct for subsequent data transfers.
3655 ahc_outb(ahc
, SCB_LUN
,
3656 ahc_inb(ahc
, SCB_LUN
) ^ SCB_XFERLEN_ODD
);
3663 * Reinitialize the data pointers for the active transfer
3664 * based on its current residual.
3667 ahc_reinitialize_dataptrs(struct ahc_softc
*ahc
)
3670 struct ahc_dma_seg
*sg
;
3676 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3677 scb
= ahc_lookup_scb(ahc
, scb_index
);
3678 sgptr
= (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 3) << 24)
3679 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 2) << 16)
3680 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 1) << 8)
3681 | ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
3683 sgptr
&= SG_PTR_MASK
;
3684 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
3686 /* The residual sg_ptr always points to the next sg */
3689 resid
= (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 2) << 16)
3690 | (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 1) << 8)
3691 | ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
);
3693 dataptr
= ahc_le32toh(sg
->addr
)
3694 + (ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
)
3696 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
3699 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
3700 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
3701 ahc_outb(ahc
, HADDR
,
3702 (ahc_le32toh(sg
->len
) >> 24) & SG_HIGH_ADDR_BITS
);
3703 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
3705 ahc_outb(ahc
, HADDR
+ 3, dataptr
>> 24);
3706 ahc_outb(ahc
, HADDR
+ 2, dataptr
>> 16);
3707 ahc_outb(ahc
, HADDR
+ 1, dataptr
>> 8);
3708 ahc_outb(ahc
, HADDR
, dataptr
);
3709 ahc_outb(ahc
, HCNT
+ 2, resid
>> 16);
3710 ahc_outb(ahc
, HCNT
+ 1, resid
>> 8);
3711 ahc_outb(ahc
, HCNT
, resid
);
3712 if ((ahc
->features
& AHC_ULTRA2
) == 0) {
3713 ahc_outb(ahc
, STCNT
+ 2, resid
>> 16);
3714 ahc_outb(ahc
, STCNT
+ 1, resid
>> 8);
3715 ahc_outb(ahc
, STCNT
, resid
);
3720 * Handle the effects of issuing a bus device reset message.
3723 ahc_handle_devreset(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3724 cam_status status
, char *message
, int verbose_level
)
3726 #ifdef AHC_TARGET_MODE
3727 struct ahc_tmode_tstate
* tstate
;
3732 found
= ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
3733 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, devinfo
->role
,
3736 #ifdef AHC_TARGET_MODE
3738 * Send an immediate notify ccb to all target mord peripheral
3739 * drivers affected by this action.
3741 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
3742 if (tstate
!= NULL
) {
3743 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
3744 struct ahc_tmode_lstate
* lstate
;
3746 lstate
= tstate
->enabled_luns
[lun
];
3750 ahc_queue_lstate_event(ahc
, lstate
, devinfo
->our_scsiid
,
3751 MSG_BUS_DEV_RESET
, /*arg*/0);
3752 ahc_send_lstate_events(ahc
, lstate
);
3758 * Go back to async/narrow transfers and renegotiate.
3760 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
3761 AHC_TRANS_CUR
, /*paused*/TRUE
);
3762 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
,
3763 /*period*/0, /*offset*/0, /*ppr_options*/0,
3764 AHC_TRANS_CUR
, /*paused*/TRUE
);
3766 if (status
!= CAM_SEL_TIMEOUT
)
3767 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
3768 CAM_LUN_WILDCARD
, AC_SENT_BDR
);
3771 && (verbose_level
<= bootverbose
))
3772 printf("%s: %s on %c:%d. %d SCBs aborted\n", ahc_name(ahc
),
3773 message
, devinfo
->channel
, devinfo
->target
, found
);
3776 #ifdef AHC_TARGET_MODE
3778 ahc_setup_target_msgin(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3783 * To facilitate adding multiple messages together,
3784 * each routine should increment the index and len
3785 * variables instead of setting them explicitly.
3787 ahc
->msgout_index
= 0;
3788 ahc
->msgout_len
= 0;
3790 if (scb
!= NULL
&& (scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0)
3791 ahc_build_transfer_msg(ahc
, devinfo
);
3793 panic("ahc_intr: AWAITING target message with no message");
3795 ahc
->msgout_index
= 0;
3796 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
3799 /**************************** Initialization **********************************/
3801 * Allocate a controller structure for a new device
3802 * and perform initial initializion.
3805 ahc_alloc(void *platform_arg
, char *name
)
3807 struct ahc_softc
*ahc
;
3811 ahc
= malloc(sizeof(*ahc
), M_DEVBUF
, M_NOWAIT
);
3813 printf("aic7xxx: cannot malloc softc!\n");
3814 free(name
, M_DEVBUF
);
3818 ahc
= device_get_softc((device_t
)platform_arg
);
3820 memset(ahc
, 0, sizeof(*ahc
));
3821 ahc
->seep_config
= malloc(sizeof(*ahc
->seep_config
),
3822 M_DEVBUF
, M_NOWAIT
);
3823 if (ahc
->seep_config
== NULL
) {
3825 free(ahc
, M_DEVBUF
);
3827 free(name
, M_DEVBUF
);
3830 LIST_INIT(&ahc
->pending_scbs
);
3831 /* We don't know our unit number until the OSM sets it */
3834 ahc
->description
= NULL
;
3836 ahc
->channel_b
= 'B';
3837 ahc
->chip
= AHC_NONE
;
3838 ahc
->features
= AHC_FENONE
;
3839 ahc
->bugs
= AHC_BUGNONE
;
3840 ahc
->flags
= AHC_FNONE
;
3842 * Default to all error reporting enabled with the
3843 * sequencer operating at its fastest speed.
3844 * The bus attach code may modify this.
3846 ahc
->seqctl
= FASTMODE
;
3848 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++)
3849 TAILQ_INIT(&ahc
->untagged_queues
[i
]);
3850 if (ahc_platform_alloc(ahc
, platform_arg
) != 0) {
3858 ahc_softc_init(struct ahc_softc
*ahc
)
3861 /* The IRQMS bit is only valid on VL and EISA chips */
3862 if ((ahc
->chip
& AHC_PCI
) == 0)
3863 ahc
->unpause
= ahc_inb(ahc
, HCNTRL
) & IRQMS
;
3866 ahc
->pause
= ahc
->unpause
| PAUSE
;
3867 /* XXX The shared scb data stuff should be deprecated */
3868 if (ahc
->scb_data
== NULL
) {
3869 ahc
->scb_data
= malloc(sizeof(*ahc
->scb_data
),
3870 M_DEVBUF
, M_NOWAIT
);
3871 if (ahc
->scb_data
== NULL
)
3873 memset(ahc
->scb_data
, 0, sizeof(*ahc
->scb_data
));
3880 ahc_set_unit(struct ahc_softc
*ahc
, int unit
)
3886 ahc_set_name(struct ahc_softc
*ahc
, char *name
)
3888 if (ahc
->name
!= NULL
)
3889 free(ahc
->name
, M_DEVBUF
);
3894 ahc_free(struct ahc_softc
*ahc
)
3898 switch (ahc
->init_level
) {
3904 ahc_dmamap_unload(ahc
, ahc
->shared_data_dmat
,
3905 ahc
->shared_data_dmamap
);
3908 ahc_dmamem_free(ahc
, ahc
->shared_data_dmat
, ahc
->qoutfifo
,
3909 ahc
->shared_data_dmamap
);
3910 ahc_dmamap_destroy(ahc
, ahc
->shared_data_dmat
,
3911 ahc
->shared_data_dmamap
);
3914 ahc_dma_tag_destroy(ahc
, ahc
->shared_data_dmat
);
3917 ahc_dma_tag_destroy(ahc
, ahc
->buffer_dmat
);
3925 ahc_dma_tag_destroy(ahc
, ahc
->parent_dmat
);
3927 ahc_platform_free(ahc
);
3928 ahc_fini_scbdata(ahc
);
3929 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
3930 struct ahc_tmode_tstate
*tstate
;
3932 tstate
= ahc
->enabled_targets
[i
];
3933 if (tstate
!= NULL
) {
3934 #ifdef AHC_TARGET_MODE
3937 for (j
= 0; j
< AHC_NUM_LUNS
; j
++) {
3938 struct ahc_tmode_lstate
*lstate
;
3940 lstate
= tstate
->enabled_luns
[j
];
3941 if (lstate
!= NULL
) {
3942 xpt_free_path(lstate
->path
);
3943 free(lstate
, M_DEVBUF
);
3947 free(tstate
, M_DEVBUF
);
3950 #ifdef AHC_TARGET_MODE
3951 if (ahc
->black_hole
!= NULL
) {
3952 xpt_free_path(ahc
->black_hole
->path
);
3953 free(ahc
->black_hole
, M_DEVBUF
);
3956 if (ahc
->name
!= NULL
)
3957 free(ahc
->name
, M_DEVBUF
);
3958 if (ahc
->seep_config
!= NULL
)
3959 free(ahc
->seep_config
, M_DEVBUF
);
3961 free(ahc
, M_DEVBUF
);
3967 ahc_shutdown(void *arg
)
3969 struct ahc_softc
*ahc
;
3972 ahc
= (struct ahc_softc
*)arg
;
3974 /* This will reset most registers to 0, but not all */
3975 ahc_reset(ahc
, /*reinit*/FALSE
);
3976 ahc_outb(ahc
, SCSISEQ
, 0);
3977 ahc_outb(ahc
, SXFRCTL0
, 0);
3978 ahc_outb(ahc
, DSPCISTATUS
, 0);
3980 for (i
= TARG_SCSIRATE
; i
< SCSICONF
; i
++)
3981 ahc_outb(ahc
, i
, 0);
3985 * Reset the controller and record some information about it
3986 * that is only available just after a reset. If "reinit" is
3987 * non-zero, this reset occured after initial configuration
3988 * and the caller requests that the chip be fully reinitialized
3989 * to a runable state. Chip interrupts are *not* enabled after
3990 * a reinitialization. The caller must enable interrupts via
3991 * ahc_intr_enable().
3994 ahc_reset(struct ahc_softc
*ahc
, int reinit
)
3997 u_int sxfrctl1_a
, sxfrctl1_b
;
4002 * Preserve the value of the SXFRCTL1 register for all channels.
4003 * It contains settings that affect termination and we don't want
4004 * to disturb the integrity of the bus.
4008 if ((ahc
->chip
& AHC_CHIPID_MASK
) == AHC_AIC7770
) {
4012 * Save channel B's settings in case this chip
4013 * is setup for TWIN channel operation.
4015 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
4016 ahc_outb(ahc
, SBLKCTL
, sblkctl
| SELBUSB
);
4017 sxfrctl1_b
= ahc_inb(ahc
, SXFRCTL1
);
4018 ahc_outb(ahc
, SBLKCTL
, sblkctl
& ~SELBUSB
);
4020 sxfrctl1_a
= ahc_inb(ahc
, SXFRCTL1
);
4022 ahc_outb(ahc
, HCNTRL
, CHIPRST
| ahc
->pause
);
4025 * Ensure that the reset has finished. We delay 1000us
4026 * prior to reading the register to make sure the chip
4027 * has sufficiently completed its reset to handle register
4033 } while (--wait
&& !(ahc_inb(ahc
, HCNTRL
) & CHIPRSTACK
));
4036 printf("%s: WARNING - Failed chip reset! "
4037 "Trying to initialize anyway.\n", ahc_name(ahc
));
4039 ahc_outb(ahc
, HCNTRL
, ahc
->pause
);
4041 /* Determine channel configuration */
4042 sblkctl
= ahc_inb(ahc
, SBLKCTL
) & (SELBUSB
|SELWIDE
);
4043 /* No Twin Channel PCI cards */
4044 if ((ahc
->chip
& AHC_PCI
) != 0)
4045 sblkctl
&= ~SELBUSB
;
4048 /* Single Narrow Channel */
4052 ahc
->features
|= AHC_WIDE
;
4056 ahc
->features
|= AHC_TWIN
;
4059 printf(" Unsupported adapter type. Ignoring\n");
4066 * We must always initialize STPWEN to 1 before we
4067 * restore the saved values. STPWEN is initialized
4068 * to a tri-state condition which can only be cleared
4071 if ((ahc
->features
& AHC_TWIN
) != 0) {
4074 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
4075 ahc_outb(ahc
, SBLKCTL
, sblkctl
| SELBUSB
);
4076 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_b
);
4077 ahc_outb(ahc
, SBLKCTL
, sblkctl
& ~SELBUSB
);
4079 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_a
);
4084 * If a recovery action has forced a chip reset,
4085 * re-initialize the chip to our liking.
4087 error
= ahc
->bus_chip_init(ahc
);
4097 * Determine the number of SCBs available on the controller
4100 ahc_probe_scbs(struct ahc_softc
*ahc
) {
4103 for (i
= 0; i
< AHC_SCB_MAX
; i
++) {
4105 ahc_outb(ahc
, SCBPTR
, i
);
4106 ahc_outb(ahc
, SCB_BASE
, i
);
4107 if (ahc_inb(ahc
, SCB_BASE
) != i
)
4109 ahc_outb(ahc
, SCBPTR
, 0);
4110 if (ahc_inb(ahc
, SCB_BASE
) != 0)
4117 ahc_dmamap_cb(void *arg
, bus_dma_segment_t
*segs
, int nseg
, int error
)
4121 baddr
= (dma_addr_t
*)arg
;
4122 *baddr
= segs
->ds_addr
;
4126 ahc_build_free_scb_list(struct ahc_softc
*ahc
)
4132 if ((ahc
->flags
& AHC_LSCBS_ENABLED
) != 0)
4135 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
4138 ahc_outb(ahc
, SCBPTR
, i
);
4141 * Touch all SCB bytes to avoid parity errors
4142 * should one of our debugging routines read
4143 * an otherwise uninitiatlized byte.
4145 for (j
= 0; j
< scbsize
; j
++)
4146 ahc_outb(ahc
, SCB_BASE
+j
, 0xFF);
4148 /* Clear the control byte. */
4149 ahc_outb(ahc
, SCB_CONTROL
, 0);
4151 /* Set the next pointer */
4152 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
4153 ahc_outb(ahc
, SCB_NEXT
, i
+1);
4155 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4157 /* Make the tag number, SCSIID, and lun invalid */
4158 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
4159 ahc_outb(ahc
, SCB_SCSIID
, 0xFF);
4160 ahc_outb(ahc
, SCB_LUN
, 0xFF);
4163 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
4164 /* SCB 0 heads the free list. */
4165 ahc_outb(ahc
, FREE_SCBH
, 0);
4168 ahc_outb(ahc
, FREE_SCBH
, SCB_LIST_NULL
);
4171 /* Make sure that the last SCB terminates the free list */
4172 ahc_outb(ahc
, SCBPTR
, i
-1);
4173 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4177 ahc_init_scbdata(struct ahc_softc
*ahc
)
4179 struct scb_data
*scb_data
;
4181 scb_data
= ahc
->scb_data
;
4182 SLIST_INIT(&scb_data
->free_scbs
);
4183 SLIST_INIT(&scb_data
->sg_maps
);
4185 /* Allocate SCB resources */
4186 scb_data
->scbarray
=
4187 (struct scb
*)malloc(sizeof(struct scb
) * AHC_SCB_MAX_ALLOC
,
4188 M_DEVBUF
, M_NOWAIT
);
4189 if (scb_data
->scbarray
== NULL
)
4191 memset(scb_data
->scbarray
, 0, sizeof(struct scb
) * AHC_SCB_MAX_ALLOC
);
4193 /* Determine the number of hardware SCBs and initialize them */
4195 scb_data
->maxhscbs
= ahc_probe_scbs(ahc
);
4196 if (ahc
->scb_data
->maxhscbs
== 0) {
4197 printf("%s: No SCB space found\n", ahc_name(ahc
));
4202 * Create our DMA tags. These tags define the kinds of device
4203 * accessible memory allocations and memory mappings we will
4204 * need to perform during normal operation.
4206 * Unless we need to further restrict the allocation, we rely
4207 * on the restrictions of the parent dmat, hence the common
4208 * use of MAXADDR and MAXSIZE.
4211 /* DMA tag for our hardware scb structures */
4212 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4213 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4214 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4215 /*highaddr*/BUS_SPACE_MAXADDR
,
4216 /*filter*/NULL
, /*filterarg*/NULL
,
4217 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
),
4219 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4220 /*flags*/0, &scb_data
->hscb_dmat
) != 0) {
4224 scb_data
->init_level
++;
4226 /* Allocation for our hscbs */
4227 if (ahc_dmamem_alloc(ahc
, scb_data
->hscb_dmat
,
4228 (void **)&scb_data
->hscbs
,
4229 BUS_DMA_NOWAIT
, &scb_data
->hscb_dmamap
) != 0) {
4233 scb_data
->init_level
++;
4235 /* And permanently map them */
4236 ahc_dmamap_load(ahc
, scb_data
->hscb_dmat
, scb_data
->hscb_dmamap
,
4238 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
),
4239 ahc_dmamap_cb
, &scb_data
->hscb_busaddr
, /*flags*/0);
4241 scb_data
->init_level
++;
4243 /* DMA tag for our sense buffers */
4244 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4245 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4246 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4247 /*highaddr*/BUS_SPACE_MAXADDR
,
4248 /*filter*/NULL
, /*filterarg*/NULL
,
4249 AHC_SCB_MAX_ALLOC
* sizeof(struct scsi_sense_data
),
4251 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4252 /*flags*/0, &scb_data
->sense_dmat
) != 0) {
4256 scb_data
->init_level
++;
4259 if (ahc_dmamem_alloc(ahc
, scb_data
->sense_dmat
,
4260 (void **)&scb_data
->sense
,
4261 BUS_DMA_NOWAIT
, &scb_data
->sense_dmamap
) != 0) {
4265 scb_data
->init_level
++;
4267 /* And permanently map them */
4268 ahc_dmamap_load(ahc
, scb_data
->sense_dmat
, scb_data
->sense_dmamap
,
4270 AHC_SCB_MAX_ALLOC
* sizeof(struct scsi_sense_data
),
4271 ahc_dmamap_cb
, &scb_data
->sense_busaddr
, /*flags*/0);
4273 scb_data
->init_level
++;
4275 /* DMA tag for our S/G structures. We allocate in page sized chunks */
4276 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/8,
4277 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4278 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4279 /*highaddr*/BUS_SPACE_MAXADDR
,
4280 /*filter*/NULL
, /*filterarg*/NULL
,
4281 PAGE_SIZE
, /*nsegments*/1,
4282 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4283 /*flags*/0, &scb_data
->sg_dmat
) != 0) {
4287 scb_data
->init_level
++;
4289 /* Perform initial CCB allocation */
4290 memset(scb_data
->hscbs
, 0,
4291 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
));
4292 ahc_alloc_scbs(ahc
);
4294 if (scb_data
->numscbs
== 0) {
4295 printf("%s: ahc_init_scbdata - "
4296 "Unable to allocate initial scbs\n",
4302 * Reserve the next queued SCB.
4304 ahc
->next_queued_scb
= ahc_get_scb(ahc
);
4307 * Note that we were successfull
4317 ahc_fini_scbdata(struct ahc_softc
*ahc
)
4319 struct scb_data
*scb_data
;
4321 scb_data
= ahc
->scb_data
;
4322 if (scb_data
== NULL
)
4325 switch (scb_data
->init_level
) {
4329 struct sg_map_node
*sg_map
;
4331 while ((sg_map
= SLIST_FIRST(&scb_data
->sg_maps
))!= NULL
) {
4332 SLIST_REMOVE_HEAD(&scb_data
->sg_maps
, links
);
4333 ahc_dmamap_unload(ahc
, scb_data
->sg_dmat
,
4335 ahc_dmamem_free(ahc
, scb_data
->sg_dmat
,
4338 free(sg_map
, M_DEVBUF
);
4340 ahc_dma_tag_destroy(ahc
, scb_data
->sg_dmat
);
4343 ahc_dmamap_unload(ahc
, scb_data
->sense_dmat
,
4344 scb_data
->sense_dmamap
);
4346 ahc_dmamem_free(ahc
, scb_data
->sense_dmat
, scb_data
->sense
,
4347 scb_data
->sense_dmamap
);
4348 ahc_dmamap_destroy(ahc
, scb_data
->sense_dmat
,
4349 scb_data
->sense_dmamap
);
4351 ahc_dma_tag_destroy(ahc
, scb_data
->sense_dmat
);
4353 ahc_dmamap_unload(ahc
, scb_data
->hscb_dmat
,
4354 scb_data
->hscb_dmamap
);
4356 ahc_dmamem_free(ahc
, scb_data
->hscb_dmat
, scb_data
->hscbs
,
4357 scb_data
->hscb_dmamap
);
4358 ahc_dmamap_destroy(ahc
, scb_data
->hscb_dmat
,
4359 scb_data
->hscb_dmamap
);
4361 ahc_dma_tag_destroy(ahc
, scb_data
->hscb_dmat
);
4366 if (scb_data
->scbarray
!= NULL
)
4367 free(scb_data
->scbarray
, M_DEVBUF
);
4371 ahc_alloc_scbs(struct ahc_softc
*ahc
)
4373 struct scb_data
*scb_data
;
4374 struct scb
*next_scb
;
4375 struct sg_map_node
*sg_map
;
4376 dma_addr_t physaddr
;
4377 struct ahc_dma_seg
*segs
;
4381 scb_data
= ahc
->scb_data
;
4382 if (scb_data
->numscbs
>= AHC_SCB_MAX_ALLOC
)
4383 /* Can't allocate any more */
4386 next_scb
= &scb_data
->scbarray
[scb_data
->numscbs
];
4388 sg_map
= malloc(sizeof(*sg_map
), M_DEVBUF
, M_NOWAIT
);
4393 /* Allocate S/G space for the next batch of SCBS */
4394 if (ahc_dmamem_alloc(ahc
, scb_data
->sg_dmat
,
4395 (void **)&sg_map
->sg_vaddr
,
4396 BUS_DMA_NOWAIT
, &sg_map
->sg_dmamap
) != 0) {
4397 free(sg_map
, M_DEVBUF
);
4401 SLIST_INSERT_HEAD(&scb_data
->sg_maps
, sg_map
, links
);
4403 ahc_dmamap_load(ahc
, scb_data
->sg_dmat
, sg_map
->sg_dmamap
,
4404 sg_map
->sg_vaddr
, PAGE_SIZE
, ahc_dmamap_cb
,
4405 &sg_map
->sg_physaddr
, /*flags*/0);
4407 segs
= sg_map
->sg_vaddr
;
4408 physaddr
= sg_map
->sg_physaddr
;
4410 newcount
= (PAGE_SIZE
/ (AHC_NSEG
* sizeof(struct ahc_dma_seg
)));
4411 newcount
= min(newcount
, (AHC_SCB_MAX_ALLOC
- scb_data
->numscbs
));
4412 for (i
= 0; i
< newcount
; i
++) {
4413 struct scb_platform_data
*pdata
;
4417 pdata
= (struct scb_platform_data
*)malloc(sizeof(*pdata
),
4418 M_DEVBUF
, M_NOWAIT
);
4421 next_scb
->platform_data
= pdata
;
4422 next_scb
->sg_map
= sg_map
;
4423 next_scb
->sg_list
= segs
;
4425 * The sequencer always starts with the second entry.
4426 * The first entry is embedded in the scb.
4428 next_scb
->sg_list_phys
= physaddr
+ sizeof(struct ahc_dma_seg
);
4429 next_scb
->ahc_softc
= ahc
;
4430 next_scb
->flags
= SCB_FREE
;
4432 error
= ahc_dmamap_create(ahc
, ahc
->buffer_dmat
, /*flags*/0,
4437 next_scb
->hscb
= &scb_data
->hscbs
[scb_data
->numscbs
];
4438 next_scb
->hscb
->tag
= ahc
->scb_data
->numscbs
;
4439 SLIST_INSERT_HEAD(&ahc
->scb_data
->free_scbs
,
4440 next_scb
, links
.sle
);
4442 physaddr
+= (AHC_NSEG
* sizeof(struct ahc_dma_seg
));
4444 ahc
->scb_data
->numscbs
++;
4449 ahc_controller_info(struct ahc_softc
*ahc
, char *buf
)
4453 len
= sprintf(buf
, "%s: ", ahc_chip_names
[ahc
->chip
& AHC_CHIPID_MASK
]);
4455 if ((ahc
->features
& AHC_TWIN
) != 0)
4456 len
= sprintf(buf
, "Twin Channel, A SCSI Id=%d, "
4457 "B SCSI Id=%d, primary %c, ",
4458 ahc
->our_id
, ahc
->our_id_b
,
4459 (ahc
->flags
& AHC_PRIMARY_CHANNEL
) + 'A');
4465 if ((ahc
->features
& AHC_ULTRA
) != 0) {
4467 } else if ((ahc
->features
& AHC_DT
) != 0) {
4468 speed
= "Ultra160 ";
4469 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4472 if ((ahc
->features
& AHC_WIDE
) != 0) {
4477 len
= sprintf(buf
, "%s%s Channel %c, SCSI Id=%d, ",
4478 speed
, type
, ahc
->channel
, ahc
->our_id
);
4482 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
4483 sprintf(buf
, "%d/%d SCBs",
4484 ahc
->scb_data
->maxhscbs
, AHC_MAX_QUEUE
);
4486 sprintf(buf
, "%d SCBs", ahc
->scb_data
->maxhscbs
);
4490 ahc_chip_init(struct ahc_softc
*ahc
)
4496 u_int scsiseq_template
;
4499 ahc_outb(ahc
, SEQ_FLAGS
, 0);
4500 ahc_outb(ahc
, SEQ_FLAGS2
, 0);
4502 /* Set the SCSI Id, SXFRCTL0, SXFRCTL1, and SIMODE1, for both channels*/
4503 if (ahc
->features
& AHC_TWIN
) {
4506 * Setup Channel B first.
4508 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) | SELBUSB
);
4509 term
= (ahc
->flags
& AHC_TERM_ENB_B
) != 0 ? STPWEN
: 0;
4510 ahc_outb(ahc
, SCSIID
, ahc
->our_id_b
);
4511 scsi_conf
= ahc_inb(ahc
, SCSICONF
+ 1);
4512 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
4513 |term
|ahc
->seltime_b
|ENSTIMER
|ACTNEGEN
);
4514 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4515 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
4516 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
4517 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
4519 /* Select Channel A */
4520 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~SELBUSB
);
4522 term
= (ahc
->flags
& AHC_TERM_ENB_A
) != 0 ? STPWEN
: 0;
4523 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4524 ahc_outb(ahc
, SCSIID_ULTRA2
, ahc
->our_id
);
4526 ahc_outb(ahc
, SCSIID
, ahc
->our_id
);
4527 scsi_conf
= ahc_inb(ahc
, SCSICONF
);
4528 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
4530 |ENSTIMER
|ACTNEGEN
);
4531 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4532 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
4533 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
4534 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
4536 /* There are no untagged SCBs active yet. */
4537 for (i
= 0; i
< 16; i
++) {
4538 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, 0));
4539 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
4543 * The SCB based BTT allows an entry per
4544 * target and lun pair.
4546 for (lun
= 1; lun
< AHC_NUM_LUNS
; lun
++)
4547 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, lun
));
4551 /* All of our queues are empty */
4552 for (i
= 0; i
< 256; i
++)
4553 ahc
->qoutfifo
[i
] = SCB_LIST_NULL
;
4554 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_PREREAD
);
4556 for (i
= 0; i
< 256; i
++)
4557 ahc
->qinfifo
[i
] = SCB_LIST_NULL
;
4559 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
4560 ahc_outb(ahc
, TARGID
, 0);
4561 ahc_outb(ahc
, TARGID
+ 1, 0);
4565 * Tell the sequencer where it can find our arrays in memory.
4567 physaddr
= ahc
->scb_data
->hscb_busaddr
;
4568 ahc_outb(ahc
, HSCB_ADDR
, physaddr
& 0xFF);
4569 ahc_outb(ahc
, HSCB_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
4570 ahc_outb(ahc
, HSCB_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
4571 ahc_outb(ahc
, HSCB_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
4573 physaddr
= ahc
->shared_data_busaddr
;
4574 ahc_outb(ahc
, SHARED_DATA_ADDR
, physaddr
& 0xFF);
4575 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
4576 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
4577 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
4580 * Initialize the group code to command length table.
4581 * This overrides the values in TARG_SCSIRATE, so only
4582 * setup the table after we have processed that information.
4584 ahc_outb(ahc
, CMDSIZE_TABLE
, 5);
4585 ahc_outb(ahc
, CMDSIZE_TABLE
+ 1, 9);
4586 ahc_outb(ahc
, CMDSIZE_TABLE
+ 2, 9);
4587 ahc_outb(ahc
, CMDSIZE_TABLE
+ 3, 0);
4588 ahc_outb(ahc
, CMDSIZE_TABLE
+ 4, 15);
4589 ahc_outb(ahc
, CMDSIZE_TABLE
+ 5, 11);
4590 ahc_outb(ahc
, CMDSIZE_TABLE
+ 6, 0);
4591 ahc_outb(ahc
, CMDSIZE_TABLE
+ 7, 0);
4593 if ((ahc
->features
& AHC_HS_MAILBOX
) != 0)
4594 ahc_outb(ahc
, HS_MAILBOX
, 0);
4596 /* Tell the sequencer of our initial queue positions */
4597 if ((ahc
->features
& AHC_TARGETMODE
) != 0) {
4598 ahc
->tqinfifonext
= 1;
4599 ahc_outb(ahc
, KERNEL_TQINPOS
, ahc
->tqinfifonext
- 1);
4600 ahc_outb(ahc
, TQINPOS
, ahc
->tqinfifonext
);
4602 ahc
->qinfifonext
= 0;
4603 ahc
->qoutfifonext
= 0;
4604 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
4605 ahc_outb(ahc
, QOFF_CTLSTA
, SCB_QSIZE_256
);
4606 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
4607 ahc_outb(ahc
, SNSCB_QOFF
, ahc
->qinfifonext
);
4608 ahc_outb(ahc
, SDSCB_QOFF
, 0);
4610 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
4611 ahc_outb(ahc
, QINPOS
, ahc
->qinfifonext
);
4612 ahc_outb(ahc
, QOUTPOS
, ahc
->qoutfifonext
);
4615 /* We don't have any waiting selections */
4616 ahc_outb(ahc
, WAITING_SCBH
, SCB_LIST_NULL
);
4618 /* Our disconnection list is empty too */
4619 ahc_outb(ahc
, DISCONNECTED_SCBH
, SCB_LIST_NULL
);
4621 /* Message out buffer starts empty */
4622 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
4625 * Setup the allowed SCSI Sequences based on operational mode.
4626 * If we are a target, we'll enalbe select in operations once
4627 * we've had a lun enabled.
4629 scsiseq_template
= ENSELO
|ENAUTOATNO
|ENAUTOATNP
;
4630 if ((ahc
->flags
& AHC_INITIATORROLE
) != 0)
4631 scsiseq_template
|= ENRSELI
;
4632 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq_template
);
4634 /* Initialize our list of free SCBs. */
4635 ahc_build_free_scb_list(ahc
);
4638 * Tell the sequencer which SCB will be the next one it receives.
4640 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
4643 * Load the Sequencer program and Enable the adapter
4647 printf("%s: Downloading Sequencer Program...",
4650 error
= ahc_loadseq(ahc
);
4654 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4658 * Wait for up to 500ms for our transceivers
4659 * to settle. If the adapter does not have
4660 * a cable attached, the transceivers may
4661 * never settle, so don't complain if we
4665 (ahc_inb(ahc
, SBLKCTL
) & (ENAB40
|ENAB20
)) == 0 && wait
;
4674 * Start the board, ready for normal operation
4677 ahc_init(struct ahc_softc
*ahc
)
4685 size_t driver_data_size
;
4688 if ((ahc_debug
& AHC_DEBUG_SEQUENCER
) != 0)
4689 ahc
->flags
|= AHC_SEQUENCER_DEBUG
;
4692 #ifdef AHC_PRINT_SRAM
4693 printf("Scratch Ram:");
4694 for (i
= 0x20; i
< 0x5f; i
++) {
4695 if (((i
% 8) == 0) && (i
!= 0)) {
4698 printf (" 0x%x", ahc_inb(ahc
, i
));
4700 if ((ahc
->features
& AHC_MORE_SRAM
) != 0) {
4701 for (i
= 0x70; i
< 0x7f; i
++) {
4702 if (((i
% 8) == 0) && (i
!= 0)) {
4705 printf (" 0x%x", ahc_inb(ahc
, i
));
4710 * Reading uninitialized scratch ram may
4711 * generate parity errors.
4713 ahc_outb(ahc
, CLRINT
, CLRPARERR
);
4714 ahc_outb(ahc
, CLRINT
, CLRBRKADRINT
);
4719 * Assume we have a board at this stage and it has been reset.
4721 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0)
4722 ahc
->our_id
= ahc
->our_id_b
= 7;
4725 * Default to allowing initiator operations.
4727 ahc
->flags
|= AHC_INITIATORROLE
;
4730 * Only allow target mode features if this unit has them enabled.
4732 if ((AHC_TMODE_ENABLE
& (0x1 << ahc
->unit
)) == 0)
4733 ahc
->features
&= ~AHC_TARGETMODE
;
4736 /* DMA tag for mapping buffers into device visible space. */
4737 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4738 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4739 /*lowaddr*/ahc
->flags
& AHC_39BIT_ADDRESSING
4740 ? (dma_addr_t
)0x7FFFFFFFFFULL
4741 : BUS_SPACE_MAXADDR_32BIT
,
4742 /*highaddr*/BUS_SPACE_MAXADDR
,
4743 /*filter*/NULL
, /*filterarg*/NULL
,
4744 /*maxsize*/(AHC_NSEG
- 1) * PAGE_SIZE
,
4745 /*nsegments*/AHC_NSEG
,
4746 /*maxsegsz*/AHC_MAXTRANSFER_SIZE
,
4747 /*flags*/BUS_DMA_ALLOCNOW
,
4748 &ahc
->buffer_dmat
) != 0) {
4756 * DMA tag for our command fifos and other data in system memory
4757 * the card's sequencer must be able to access. For initiator
4758 * roles, we need to allocate space for the qinfifo and qoutfifo.
4759 * The qinfifo and qoutfifo are composed of 256 1 byte elements.
4760 * When providing for the target mode role, we must additionally
4761 * provide space for the incoming target command fifo and an extra
4762 * byte to deal with a dma bug in some chip versions.
4764 driver_data_size
= 2 * 256 * sizeof(uint8_t);
4765 if ((ahc
->features
& AHC_TARGETMODE
) != 0)
4766 driver_data_size
+= AHC_TMODE_CMDS
* sizeof(struct target_cmd
)
4767 + /*DMA WideOdd Bug Buffer*/1;
4768 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4769 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4770 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4771 /*highaddr*/BUS_SPACE_MAXADDR
,
4772 /*filter*/NULL
, /*filterarg*/NULL
,
4775 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4776 /*flags*/0, &ahc
->shared_data_dmat
) != 0) {
4782 /* Allocation of driver data */
4783 if (ahc_dmamem_alloc(ahc
, ahc
->shared_data_dmat
,
4784 (void **)&ahc
->qoutfifo
,
4785 BUS_DMA_NOWAIT
, &ahc
->shared_data_dmamap
) != 0) {
4791 /* And permanently map it in */
4792 ahc_dmamap_load(ahc
, ahc
->shared_data_dmat
, ahc
->shared_data_dmamap
,
4793 ahc
->qoutfifo
, driver_data_size
, ahc_dmamap_cb
,
4794 &ahc
->shared_data_busaddr
, /*flags*/0);
4796 if ((ahc
->features
& AHC_TARGETMODE
) != 0) {
4797 ahc
->targetcmds
= (struct target_cmd
*)ahc
->qoutfifo
;
4798 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[AHC_TMODE_CMDS
];
4799 ahc
->dma_bug_buf
= ahc
->shared_data_busaddr
4800 + driver_data_size
- 1;
4801 /* All target command blocks start out invalid. */
4802 for (i
= 0; i
< AHC_TMODE_CMDS
; i
++)
4803 ahc
->targetcmds
[i
].cmd_valid
= 0;
4804 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_PREREAD
);
4805 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[256];
4807 ahc
->qinfifo
= &ahc
->qoutfifo
[256];
4811 /* Allocate SCB data now that buffer_dmat is initialized */
4812 if (ahc
->scb_data
->maxhscbs
== 0)
4813 if (ahc_init_scbdata(ahc
) != 0)
4817 * Allocate a tstate to house information for our
4818 * initiator presence on the bus as well as the user
4819 * data for any target mode initiator.
4821 if (ahc_alloc_tstate(ahc
, ahc
->our_id
, 'A') == NULL
) {
4822 printf("%s: unable to allocate ahc_tmode_tstate. "
4823 "Failing attach\n", ahc_name(ahc
));
4827 if ((ahc
->features
& AHC_TWIN
) != 0) {
4828 if (ahc_alloc_tstate(ahc
, ahc
->our_id_b
, 'B') == NULL
) {
4829 printf("%s: unable to allocate ahc_tmode_tstate. "
4830 "Failing attach\n", ahc_name(ahc
));
4835 if (ahc
->scb_data
->maxhscbs
< AHC_SCB_MAX_ALLOC
) {
4836 ahc
->flags
|= AHC_PAGESCBS
;
4838 ahc
->flags
&= ~AHC_PAGESCBS
;
4842 if (ahc_debug
& AHC_SHOW_MISC
) {
4843 printf("%s: hardware scb %u bytes; kernel scb %u bytes; "
4844 "ahc_dma %u bytes\n",
4846 (u_int
)sizeof(struct hardware_scb
),
4847 (u_int
)sizeof(struct scb
),
4848 (u_int
)sizeof(struct ahc_dma_seg
));
4850 #endif /* AHC_DEBUG */
4853 * Look at the information that board initialization or
4854 * the board bios has left us.
4856 if (ahc
->features
& AHC_TWIN
) {
4857 scsi_conf
= ahc_inb(ahc
, SCSICONF
+ 1);
4858 if ((scsi_conf
& RESET_SCSI
) != 0
4859 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
4860 ahc
->flags
|= AHC_RESET_BUS_B
;
4863 scsi_conf
= ahc_inb(ahc
, SCSICONF
);
4864 if ((scsi_conf
& RESET_SCSI
) != 0
4865 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
4866 ahc
->flags
|= AHC_RESET_BUS_A
;
4869 tagenable
= ALL_TARGETS_MASK
;
4871 /* Grab the disconnection disable table and invert it for our needs */
4872 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0) {
4873 printf("%s: Host Adapter Bios disabled. Using default SCSI "
4874 "device parameters\n", ahc_name(ahc
));
4875 ahc
->flags
|= AHC_EXTENDED_TRANS_A
|AHC_EXTENDED_TRANS_B
|
4876 AHC_TERM_ENB_A
|AHC_TERM_ENB_B
;
4877 discenable
= ALL_TARGETS_MASK
;
4878 if ((ahc
->features
& AHC_ULTRA
) != 0)
4879 ultraenb
= ALL_TARGETS_MASK
;
4881 discenable
= ~((ahc_inb(ahc
, DISC_DSB
+ 1) << 8)
4882 | ahc_inb(ahc
, DISC_DSB
));
4883 if ((ahc
->features
& (AHC_ULTRA
|AHC_ULTRA2
)) != 0)
4884 ultraenb
= (ahc_inb(ahc
, ULTRA_ENB
+ 1) << 8)
4885 | ahc_inb(ahc
, ULTRA_ENB
);
4888 if ((ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) == 0)
4891 for (i
= 0; i
<= max_targ
; i
++) {
4892 struct ahc_initiator_tinfo
*tinfo
;
4893 struct ahc_tmode_tstate
*tstate
;
4899 our_id
= ahc
->our_id
;
4901 if (i
> 7 && (ahc
->features
& AHC_TWIN
) != 0) {
4903 our_id
= ahc
->our_id_b
;
4906 tinfo
= ahc_fetch_transinfo(ahc
, channel
, our_id
,
4907 target_id
, &tstate
);
4908 /* Default to async narrow across the board */
4909 memset(tinfo
, 0, sizeof(*tinfo
));
4910 if (ahc
->flags
& AHC_USEDEFAULTS
) {
4911 if ((ahc
->features
& AHC_WIDE
) != 0)
4912 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
4915 * These will be truncated when we determine the
4916 * connection type we have with the target.
4918 tinfo
->user
.period
= ahc_syncrates
->period
;
4919 tinfo
->user
.offset
= MAX_OFFSET
;
4924 /* Take the settings leftover in scratch RAM. */
4925 scsirate
= ahc_inb(ahc
, TARG_SCSIRATE
+ i
);
4927 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4931 if ((scsirate
& SOFS
) == 0x0F) {
4933 * Haven't negotiated yet,
4934 * so the format is different.
4936 scsirate
= (scsirate
& SXFR
) >> 4
4939 | (scsirate
& WIDEXFER
);
4940 offset
= MAX_OFFSET_ULTRA2
;
4942 offset
= ahc_inb(ahc
, TARG_OFFSET
+ i
);
4943 if ((scsirate
& ~WIDEXFER
) == 0 && offset
!= 0)
4944 /* Set to the lowest sync rate, 5MHz */
4946 maxsync
= AHC_SYNCRATE_ULTRA2
;
4947 if ((ahc
->features
& AHC_DT
) != 0)
4948 maxsync
= AHC_SYNCRATE_DT
;
4949 tinfo
->user
.period
=
4950 ahc_find_period(ahc
, scsirate
, maxsync
);
4952 tinfo
->user
.period
= 0;
4954 tinfo
->user
.offset
= MAX_OFFSET
;
4955 if ((scsirate
& SXFR_ULTRA2
) <= 8/*10MHz*/
4956 && (ahc
->features
& AHC_DT
) != 0)
4957 tinfo
->user
.ppr_options
=
4959 } else if ((scsirate
& SOFS
) != 0) {
4960 if ((scsirate
& SXFR
) == 0x40
4961 && (ultraenb
& mask
) != 0) {
4962 /* Treat 10MHz as a non-ultra speed */
4966 tinfo
->user
.period
=
4967 ahc_find_period(ahc
, scsirate
,
4969 ? AHC_SYNCRATE_ULTRA
4970 : AHC_SYNCRATE_FAST
);
4971 if (tinfo
->user
.period
!= 0)
4972 tinfo
->user
.offset
= MAX_OFFSET
;
4974 if (tinfo
->user
.period
== 0)
4975 tinfo
->user
.offset
= 0;
4976 if ((scsirate
& WIDEXFER
) != 0
4977 && (ahc
->features
& AHC_WIDE
) != 0)
4978 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
4979 tinfo
->user
.protocol_version
= 4;
4980 if ((ahc
->features
& AHC_DT
) != 0)
4981 tinfo
->user
.transport_version
= 3;
4983 tinfo
->user
.transport_version
= 2;
4984 tinfo
->goal
.protocol_version
= 2;
4985 tinfo
->goal
.transport_version
= 2;
4986 tinfo
->curr
.protocol_version
= 2;
4987 tinfo
->curr
.transport_version
= 2;
4989 tstate
->ultraenb
= 0;
4991 ahc
->user_discenable
= discenable
;
4992 ahc
->user_tagenable
= tagenable
;
4994 return (ahc
->bus_chip_init(ahc
));
4998 ahc_intr_enable(struct ahc_softc
*ahc
, int enable
)
5002 hcntrl
= ahc_inb(ahc
, HCNTRL
);
5004 ahc
->pause
&= ~INTEN
;
5005 ahc
->unpause
&= ~INTEN
;
5008 ahc
->pause
|= INTEN
;
5009 ahc
->unpause
|= INTEN
;
5011 ahc_outb(ahc
, HCNTRL
, hcntrl
);
5015 * Ensure that the card is paused in a location
5016 * outside of all critical sections and that all
5017 * pending work is completed prior to returning.
5018 * This routine should only be called from outside
5019 * an interrupt context.
5022 ahc_pause_and_flushwork(struct ahc_softc
*ahc
)
5029 ahc
->flags
|= AHC_ALL_INTERRUPTS
;
5035 * Give the sequencer some time to service
5036 * any active selections.
5043 ahc_outb(ahc
, SCSISEQ
, ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
5044 intstat
= ahc_inb(ahc
, INTSTAT
);
5045 if ((intstat
& INT_PEND
) == 0) {
5046 ahc_clear_critical_section(ahc
);
5047 intstat
= ahc_inb(ahc
, INTSTAT
);
5050 && (intstat
!= 0xFF || (ahc
->features
& AHC_REMOVABLE
) == 0)
5051 && ((intstat
& INT_PEND
) != 0
5052 || (ahc_inb(ahc
, SSTAT0
) & (SELDO
|SELINGO
)) != 0));
5053 if (maxloops
== 0) {
5054 printf("Infinite interrupt loop, INTSTAT = %x",
5055 ahc_inb(ahc
, INTSTAT
));
5057 ahc_platform_flushwork(ahc
);
5058 ahc
->flags
&= ~AHC_ALL_INTERRUPTS
;
5062 ahc_suspend(struct ahc_softc
*ahc
)
5065 ahc_pause_and_flushwork(ahc
);
5067 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
) {
5072 #ifdef AHC_TARGET_MODE
5074 * XXX What about ATIOs that have not yet been serviced?
5075 * Perhaps we should just refuse to be suspended if we
5076 * are acting in a target role.
5078 if (ahc
->pending_device
!= NULL
) {
5088 ahc_resume(struct ahc_softc
*ahc
)
5091 ahc_reset(ahc
, /*reinit*/TRUE
);
5092 ahc_intr_enable(ahc
, TRUE
);
5097 /************************** Busy Target Table *********************************/
5099 * Return the untagged transaction id for a given target/channel lun.
5100 * Optionally, clear the entry.
5103 ahc_index_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5106 u_int target_offset
;
5108 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5111 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5112 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5113 scbid
= ahc_inb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
));
5114 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5116 target_offset
= TCL_TARGET_OFFSET(tcl
);
5117 scbid
= ahc_inb(ahc
, BUSY_TARGETS
+ target_offset
);
5124 ahc_unbusy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5126 u_int target_offset
;
5128 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5131 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5132 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5133 ahc_outb(ahc
, SCB_64_BTT
+TCL_TARGET_OFFSET(tcl
), SCB_LIST_NULL
);
5134 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5136 target_offset
= TCL_TARGET_OFFSET(tcl
);
5137 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, SCB_LIST_NULL
);
5142 ahc_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
, u_int scbid
)
5144 u_int target_offset
;
5146 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5149 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5150 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5151 ahc_outb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
), scbid
);
5152 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5154 target_offset
= TCL_TARGET_OFFSET(tcl
);
5155 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, scbid
);
5159 /************************** SCB and SCB queue management **********************/
5161 ahc_match_scb(struct ahc_softc
*ahc
, struct scb
*scb
, int target
,
5162 char channel
, int lun
, u_int tag
, role_t role
)
5164 int targ
= SCB_GET_TARGET(ahc
, scb
);
5165 char chan
= SCB_GET_CHANNEL(ahc
, scb
);
5166 int slun
= SCB_GET_LUN(scb
);
5169 match
= ((chan
== channel
) || (channel
== ALL_CHANNELS
));
5171 match
= ((targ
== target
) || (target
== CAM_TARGET_WILDCARD
));
5173 match
= ((lun
== slun
) || (lun
== CAM_LUN_WILDCARD
));
5175 #ifdef AHC_TARGET_MODE
5178 group
= XPT_FC_GROUP(scb
->io_ctx
->ccb_h
.func_code
);
5179 if (role
== ROLE_INITIATOR
) {
5180 match
= (group
!= XPT_FC_GROUP_TMODE
)
5181 && ((tag
== scb
->hscb
->tag
)
5182 || (tag
== SCB_LIST_NULL
));
5183 } else if (role
== ROLE_TARGET
) {
5184 match
= (group
== XPT_FC_GROUP_TMODE
)
5185 && ((tag
== scb
->io_ctx
->csio
.tag_id
)
5186 || (tag
== SCB_LIST_NULL
));
5188 #else /* !AHC_TARGET_MODE */
5189 match
= ((tag
== scb
->hscb
->tag
) || (tag
== SCB_LIST_NULL
));
5190 #endif /* AHC_TARGET_MODE */
5197 ahc_freeze_devq(struct ahc_softc
*ahc
, struct scb
*scb
)
5203 target
= SCB_GET_TARGET(ahc
, scb
);
5204 lun
= SCB_GET_LUN(scb
);
5205 channel
= SCB_GET_CHANNEL(ahc
, scb
);
5207 ahc_search_qinfifo(ahc
, target
, channel
, lun
,
5208 /*tag*/SCB_LIST_NULL
, ROLE_UNKNOWN
,
5209 CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
5211 ahc_platform_freeze_devq(ahc
, scb
);
5215 ahc_qinfifo_requeue_tail(struct ahc_softc
*ahc
, struct scb
*scb
)
5217 struct scb
*prev_scb
;
5220 if (ahc_qinfifo_count(ahc
) != 0) {
5224 prev_pos
= ahc
->qinfifonext
- 1;
5225 prev_tag
= ahc
->qinfifo
[prev_pos
];
5226 prev_scb
= ahc_lookup_scb(ahc
, prev_tag
);
5228 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5229 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5230 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5232 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5237 ahc_qinfifo_requeue(struct ahc_softc
*ahc
, struct scb
*prev_scb
,
5240 if (prev_scb
== NULL
) {
5241 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5243 prev_scb
->hscb
->next
= scb
->hscb
->tag
;
5244 ahc_sync_scb(ahc
, prev_scb
,
5245 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5247 ahc
->qinfifo
[ahc
->qinfifonext
++] = scb
->hscb
->tag
;
5248 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5249 ahc_sync_scb(ahc
, scb
, BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5253 ahc_qinfifo_count(struct ahc_softc
*ahc
)
5258 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5259 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
5260 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
5262 qinpos
= ahc_inb(ahc
, QINPOS
);
5263 diff
= ahc
->qinfifonext
- qinpos
;
5268 ahc_search_qinfifo(struct ahc_softc
*ahc
, int target
, char channel
,
5269 int lun
, u_int tag
, role_t role
, uint32_t status
,
5270 ahc_search_action action
)
5273 struct scb
*prev_scb
;
5283 qintail
= ahc
->qinfifonext
;
5284 have_qregs
= (ahc
->features
& AHC_QUEUE_REGS
) != 0;
5286 qinstart
= ahc_inb(ahc
, SNSCB_QOFF
);
5287 ahc_outb(ahc
, SNSCB_QOFF
, qinstart
);
5289 qinstart
= ahc_inb(ahc
, QINPOS
);
5294 if (action
== SEARCH_COMPLETE
) {
5296 * Don't attempt to run any queued untagged transactions
5297 * until we are done with the abort process.
5299 ahc_freeze_untagged_queues(ahc
);
5303 * Start with an empty queue. Entries that are not chosen
5304 * for removal will be re-added to the queue as we go.
5306 ahc
->qinfifonext
= qinpos
;
5307 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
5309 while (qinpos
!= qintail
) {
5310 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinpos
]);
5312 printf("qinpos = %d, SCB index = %d\n",
5313 qinpos
, ahc
->qinfifo
[qinpos
]);
5317 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
, tag
, role
)) {
5319 * We found an scb that needs to be acted on.
5323 case SEARCH_COMPLETE
:
5328 ostat
= ahc_get_transaction_status(scb
);
5329 if (ostat
== CAM_REQ_INPROG
)
5330 ahc_set_transaction_status(scb
, status
);
5331 cstat
= ahc_get_transaction_status(scb
);
5332 if (cstat
!= CAM_REQ_CMP
)
5333 ahc_freeze_scb(scb
);
5334 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5335 printf("Inactive SCB in qinfifo\n");
5343 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5348 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5354 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5355 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5357 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5360 if (action
!= SEARCH_COUNT
5362 && (qinstart
!= ahc
->qinfifonext
)) {
5364 * The sequencer may be in the process of dmaing
5365 * down the SCB at the beginning of the queue.
5366 * This could be problematic if either the first,
5367 * or the second SCB is removed from the queue
5368 * (the first SCB includes a pointer to the "next"
5369 * SCB to dma). If we have removed any entries, swap
5370 * the first element in the queue with the next HSCB
5371 * so the sequencer will notice that NEXT_QUEUED_SCB
5372 * has changed during its dma attempt and will retry
5375 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinstart
]);
5378 printf("found = %d, qinstart = %d, qinfifionext = %d\n",
5379 found
, qinstart
, ahc
->qinfifonext
);
5380 panic("First/Second Qinfifo fixup\n");
5383 * ahc_swap_with_next_hscb forces our next pointer to
5384 * point to the reserved SCB for future commands. Save
5385 * and restore our original next pointer to maintain
5388 next
= scb
->hscb
->next
;
5389 ahc
->scb_data
->scbindex
[scb
->hscb
->tag
] = NULL
;
5390 ahc_swap_with_next_hscb(ahc
, scb
);
5391 scb
->hscb
->next
= next
;
5392 ahc
->qinfifo
[qinstart
] = scb
->hscb
->tag
;
5394 /* Tell the card about the new head of the qinfifo. */
5395 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5397 /* Fixup the tail "next" pointer. */
5398 qintail
= ahc
->qinfifonext
- 1;
5399 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qintail
]);
5400 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5404 * Search waiting for selection list.
5406 curscbptr
= ahc_inb(ahc
, SCBPTR
);
5407 next
= ahc_inb(ahc
, WAITING_SCBH
); /* Start at head of list. */
5408 prev
= SCB_LIST_NULL
;
5410 while (next
!= SCB_LIST_NULL
) {
5413 ahc_outb(ahc
, SCBPTR
, next
);
5414 scb_index
= ahc_inb(ahc
, SCB_TAG
);
5415 if (scb_index
>= ahc
->scb_data
->numscbs
) {
5416 printf("Waiting List inconsistency. "
5417 "SCB index == %d, yet numscbs == %d.",
5418 scb_index
, ahc
->scb_data
->numscbs
);
5419 ahc_dump_card_state(ahc
);
5420 panic("for safety");
5422 scb
= ahc_lookup_scb(ahc
, scb_index
);
5424 printf("scb_index = %d, next = %d\n",
5426 panic("Waiting List traversal\n");
5428 if (ahc_match_scb(ahc
, scb
, target
, channel
,
5429 lun
, SCB_LIST_NULL
, role
)) {
5431 * We found an scb that needs to be acted on.
5435 case SEARCH_COMPLETE
:
5440 ostat
= ahc_get_transaction_status(scb
);
5441 if (ostat
== CAM_REQ_INPROG
)
5442 ahc_set_transaction_status(scb
,
5444 cstat
= ahc_get_transaction_status(scb
);
5445 if (cstat
!= CAM_REQ_CMP
)
5446 ahc_freeze_scb(scb
);
5447 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5448 printf("Inactive SCB in Waiting List\n");
5453 next
= ahc_rem_wscb(ahc
, next
, prev
);
5457 next
= ahc_inb(ahc
, SCB_NEXT
);
5463 next
= ahc_inb(ahc
, SCB_NEXT
);
5466 ahc_outb(ahc
, SCBPTR
, curscbptr
);
5468 found
+= ahc_search_untagged_queues(ahc
, /*ahc_io_ctx_t*/NULL
, target
,
5469 channel
, lun
, status
, action
);
5471 if (action
== SEARCH_COMPLETE
)
5472 ahc_release_untagged_queues(ahc
);
5477 ahc_search_untagged_queues(struct ahc_softc
*ahc
, ahc_io_ctx_t ctx
,
5478 int target
, char channel
, int lun
, uint32_t status
,
5479 ahc_search_action action
)
5486 if (action
== SEARCH_COMPLETE
) {
5488 * Don't attempt to run any queued untagged transactions
5489 * until we are done with the abort process.
5491 ahc_freeze_untagged_queues(ahc
);
5496 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
5499 if (target
!= CAM_TARGET_WILDCARD
) {
5510 for (; i
< maxtarget
; i
++) {
5511 struct scb_tailq
*untagged_q
;
5512 struct scb
*next_scb
;
5514 untagged_q
= &(ahc
->untagged_queues
[i
]);
5515 next_scb
= TAILQ_FIRST(untagged_q
);
5516 while (next_scb
!= NULL
) {
5519 next_scb
= TAILQ_NEXT(scb
, links
.tqe
);
5522 * The head of the list may be the currently
5523 * active untagged command for a device.
5524 * We're only searching for commands that
5525 * have not been started. A transaction
5526 * marked active but still in the qinfifo
5527 * is removed by the qinfifo scanning code
5530 if ((scb
->flags
& SCB_ACTIVE
) != 0)
5533 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
,
5534 SCB_LIST_NULL
, ROLE_INITIATOR
) == 0
5535 || (ctx
!= NULL
&& ctx
!= scb
->io_ctx
))
5539 * We found an scb that needs to be acted on.
5543 case SEARCH_COMPLETE
:
5548 ostat
= ahc_get_transaction_status(scb
);
5549 if (ostat
== CAM_REQ_INPROG
)
5550 ahc_set_transaction_status(scb
, status
);
5551 cstat
= ahc_get_transaction_status(scb
);
5552 if (cstat
!= CAM_REQ_CMP
)
5553 ahc_freeze_scb(scb
);
5554 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5555 printf("Inactive SCB in untaggedQ\n");
5560 scb
->flags
&= ~SCB_UNTAGGEDQ
;
5561 TAILQ_REMOVE(untagged_q
, scb
, links
.tqe
);
5569 if (action
== SEARCH_COMPLETE
)
5570 ahc_release_untagged_queues(ahc
);
5575 ahc_search_disc_list(struct ahc_softc
*ahc
, int target
, char channel
,
5576 int lun
, u_int tag
, int stop_on_first
, int remove
,
5586 next
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
5587 prev
= SCB_LIST_NULL
;
5590 /* restore this when we're done */
5591 active_scb
= ahc_inb(ahc
, SCBPTR
);
5593 /* Silence compiler */
5594 active_scb
= SCB_LIST_NULL
;
5596 while (next
!= SCB_LIST_NULL
) {
5599 ahc_outb(ahc
, SCBPTR
, next
);
5600 scb_index
= ahc_inb(ahc
, SCB_TAG
);
5601 if (scb_index
>= ahc
->scb_data
->numscbs
) {
5602 printf("Disconnected List inconsistency. "
5603 "SCB index == %d, yet numscbs == %d.",
5604 scb_index
, ahc
->scb_data
->numscbs
);
5605 ahc_dump_card_state(ahc
);
5606 panic("for safety");
5610 panic("Disconnected List Loop. "
5611 "cur SCBPTR == %x, prev SCBPTR == %x.",
5614 scbp
= ahc_lookup_scb(ahc
, scb_index
);
5615 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
,
5616 tag
, ROLE_INITIATOR
)) {
5620 ahc_rem_scb_from_disc_list(ahc
, prev
, next
);
5623 next
= ahc_inb(ahc
, SCB_NEXT
);
5629 next
= ahc_inb(ahc
, SCB_NEXT
);
5633 ahc_outb(ahc
, SCBPTR
, active_scb
);
5638 * Remove an SCB from the on chip list of disconnected transactions.
5639 * This is empty/unused if we are not performing SCB paging.
5642 ahc_rem_scb_from_disc_list(struct ahc_softc
*ahc
, u_int prev
, u_int scbptr
)
5646 ahc_outb(ahc
, SCBPTR
, scbptr
);
5647 next
= ahc_inb(ahc
, SCB_NEXT
);
5649 ahc_outb(ahc
, SCB_CONTROL
, 0);
5651 ahc_add_curscb_to_free_list(ahc
);
5653 if (prev
!= SCB_LIST_NULL
) {
5654 ahc_outb(ahc
, SCBPTR
, prev
);
5655 ahc_outb(ahc
, SCB_NEXT
, next
);
5657 ahc_outb(ahc
, DISCONNECTED_SCBH
, next
);
5663 * Add the SCB as selected by SCBPTR onto the on chip list of
5664 * free hardware SCBs. This list is empty/unused if we are not
5665 * performing SCB paging.
5668 ahc_add_curscb_to_free_list(struct ahc_softc
*ahc
)
5671 * Invalidate the tag so that our abort
5672 * routines don't think it's active.
5674 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
5676 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
5677 ahc_outb(ahc
, SCB_NEXT
, ahc_inb(ahc
, FREE_SCBH
));
5678 ahc_outb(ahc
, FREE_SCBH
, ahc_inb(ahc
, SCBPTR
));
5683 * Manipulate the waiting for selection list and return the
5684 * scb that follows the one that we remove.
5687 ahc_rem_wscb(struct ahc_softc
*ahc
, u_int scbpos
, u_int prev
)
5692 * Select the SCB we want to abort and
5693 * pull the next pointer out of it.
5695 curscb
= ahc_inb(ahc
, SCBPTR
);
5696 ahc_outb(ahc
, SCBPTR
, scbpos
);
5697 next
= ahc_inb(ahc
, SCB_NEXT
);
5699 /* Clear the necessary fields */
5700 ahc_outb(ahc
, SCB_CONTROL
, 0);
5702 ahc_add_curscb_to_free_list(ahc
);
5704 /* update the waiting list */
5705 if (prev
== SCB_LIST_NULL
) {
5706 /* First in the list */
5707 ahc_outb(ahc
, WAITING_SCBH
, next
);
5710 * Ensure we aren't attempting to perform
5711 * selection for this entry.
5713 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
5716 * Select the scb that pointed to us
5717 * and update its next pointer.
5719 ahc_outb(ahc
, SCBPTR
, prev
);
5720 ahc_outb(ahc
, SCB_NEXT
, next
);
5724 * Point us back at the original scb position.
5726 ahc_outb(ahc
, SCBPTR
, curscb
);
5730 /******************************** Error Handling ******************************/
5732 * Abort all SCBs that match the given description (target/channel/lun/tag),
5733 * setting their status to the passed in status if the status has not already
5734 * been modified from CAM_REQ_INPROG. This routine assumes that the sequencer
5735 * is paused before it is called.
5738 ahc_abort_scbs(struct ahc_softc
*ahc
, int target
, char channel
,
5739 int lun
, u_int tag
, role_t role
, uint32_t status
)
5742 struct scb
*scbp_next
;
5752 * Don't attempt to run any queued untagged transactions
5753 * until we are done with the abort process.
5755 ahc_freeze_untagged_queues(ahc
);
5757 /* restore this when we're done */
5758 active_scb
= ahc_inb(ahc
, SCBPTR
);
5760 found
= ahc_search_qinfifo(ahc
, target
, channel
, lun
, SCB_LIST_NULL
,
5761 role
, CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
5764 * Clean out the busy target table for any untagged commands.
5768 if (target
!= CAM_TARGET_WILDCARD
) {
5775 if (lun
== CAM_LUN_WILDCARD
) {
5778 * Unless we are using an SCB based
5779 * busy targets table, there is only
5780 * one table entry for all luns of
5785 if ((ahc
->flags
& AHC_SCB_BTT
) != 0)
5786 maxlun
= AHC_NUM_LUNS
;
5792 if (role
!= ROLE_TARGET
) {
5793 for (;i
< maxtarget
; i
++) {
5794 for (j
= minlun
;j
< maxlun
; j
++) {
5798 tcl
= BUILD_TCL(i
<< 4, j
);
5799 scbid
= ahc_index_busy_tcl(ahc
, tcl
);
5800 scbp
= ahc_lookup_scb(ahc
, scbid
);
5802 || ahc_match_scb(ahc
, scbp
, target
, channel
,
5803 lun
, tag
, role
) == 0)
5805 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, j
));
5810 * Go through the disconnected list and remove any entries we
5811 * have queued for completion, 0'ing their control byte too.
5812 * We save the active SCB and restore it ourselves, so there
5813 * is no reason for this search to restore it too.
5815 ahc_search_disc_list(ahc
, target
, channel
, lun
, tag
,
5816 /*stop_on_first*/FALSE
, /*remove*/TRUE
,
5817 /*save_state*/FALSE
);
5821 * Go through the hardware SCB array looking for commands that
5822 * were active but not on any list. In some cases, these remnants
5823 * might not still have mappings in the scbindex array (e.g. unexpected
5824 * bus free with the same scb queued for an abort). Don't hold this
5827 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
5830 ahc_outb(ahc
, SCBPTR
, i
);
5831 scbid
= ahc_inb(ahc
, SCB_TAG
);
5832 scbp
= ahc_lookup_scb(ahc
, scbid
);
5833 if ((scbp
== NULL
&& scbid
!= SCB_LIST_NULL
)
5835 && ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)))
5836 ahc_add_curscb_to_free_list(ahc
);
5840 * Go through the pending CCB list and look for
5841 * commands for this target that are still active.
5842 * These are other tagged commands that were
5843 * disconnected when the reset occurred.
5845 scbp_next
= LIST_FIRST(&ahc
->pending_scbs
);
5846 while (scbp_next
!= NULL
) {
5848 scbp_next
= LIST_NEXT(scbp
, pending_links
);
5849 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)) {
5852 ostat
= ahc_get_transaction_status(scbp
);
5853 if (ostat
== CAM_REQ_INPROG
)
5854 ahc_set_transaction_status(scbp
, status
);
5855 if (ahc_get_transaction_status(scbp
) != CAM_REQ_CMP
)
5856 ahc_freeze_scb(scbp
);
5857 if ((scbp
->flags
& SCB_ACTIVE
) == 0)
5858 printf("Inactive SCB on pending list\n");
5859 ahc_done(ahc
, scbp
);
5863 ahc_outb(ahc
, SCBPTR
, active_scb
);
5864 ahc_platform_abort_scbs(ahc
, target
, channel
, lun
, tag
, role
, status
);
5865 ahc_release_untagged_queues(ahc
);
5870 ahc_reset_current_bus(struct ahc_softc
*ahc
)
5874 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENSCSIRST
);
5875 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
5876 ahc_outb(ahc
, SCSISEQ
, scsiseq
| SCSIRSTO
);
5877 ahc_flush_device_writes(ahc
);
5878 ahc_delay(AHC_BUSRESET_DELAY
);
5879 /* Turn off the bus reset */
5880 ahc_outb(ahc
, SCSISEQ
, scsiseq
& ~SCSIRSTO
);
5882 ahc_clear_intstat(ahc
);
5884 /* Re-enable reset interrupts */
5885 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) | ENSCSIRST
);
5889 ahc_reset_channel(struct ahc_softc
*ahc
, char channel
, int initiate_reset
)
5891 struct ahc_devinfo devinfo
;
5892 u_int initiator
, target
, max_scsiid
;
5900 ahc
->pending_device
= NULL
;
5902 ahc_compile_devinfo(&devinfo
,
5903 CAM_TARGET_WILDCARD
,
5904 CAM_TARGET_WILDCARD
,
5906 channel
, ROLE_UNKNOWN
);
5909 /* Make sure the sequencer is in a safe location. */
5910 ahc_clear_critical_section(ahc
);
5913 * Run our command complete fifos to ensure that we perform
5914 * completion processing on any commands that 'completed'
5915 * before the reset occurred.
5917 ahc_run_qoutfifo(ahc
);
5918 #ifdef AHC_TARGET_MODE
5920 * XXX - In Twin mode, the tqinfifo may have commands
5921 * for an unaffected channel in it. However, if
5922 * we have run out of ATIO resources to drain that
5923 * queue, we may not get them all out here. Further,
5924 * the blocked transactions for the reset channel
5925 * should just be killed off, irrespecitve of whether
5926 * we are blocked on ATIO resources. Write a routine
5927 * to compact the tqinfifo appropriately.
5929 if ((ahc
->flags
& AHC_TARGETROLE
) != 0) {
5930 ahc_run_tqinfifo(ahc
, /*paused*/TRUE
);
5935 * Reset the bus if we are initiating this reset
5937 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
5939 if ((ahc
->features
& AHC_TWIN
) != 0
5940 && ((sblkctl
& SELBUSB
) != 0))
5942 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
5943 if (cur_channel
!= channel
) {
5944 /* Case 1: Command for another bus is active
5945 * Stealthily reset the other bus without
5946 * upsetting the current bus.
5948 ahc_outb(ahc
, SBLKCTL
, sblkctl
^ SELBUSB
);
5949 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
5950 #ifdef AHC_TARGET_MODE
5952 * Bus resets clear ENSELI, so we cannot
5953 * defer re-enabling bus reset interrupts
5954 * if we are in target mode.
5956 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
5957 simode1
|= ENSCSIRST
;
5959 ahc_outb(ahc
, SIMODE1
, simode1
);
5961 ahc_reset_current_bus(ahc
);
5962 ahc_clear_intstat(ahc
);
5963 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
5964 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
5965 restart_needed
= FALSE
;
5967 /* Case 2: A command from this bus is active or we're idle */
5968 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
5969 #ifdef AHC_TARGET_MODE
5971 * Bus resets clear ENSELI, so we cannot
5972 * defer re-enabling bus reset interrupts
5973 * if we are in target mode.
5975 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
5976 simode1
|= ENSCSIRST
;
5978 ahc_outb(ahc
, SIMODE1
, simode1
);
5980 ahc_reset_current_bus(ahc
);
5981 ahc_clear_intstat(ahc
);
5982 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
5983 restart_needed
= TRUE
;
5987 * Clean up all the state information for the
5988 * pending transactions on this bus.
5990 found
= ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, channel
,
5991 CAM_LUN_WILDCARD
, SCB_LIST_NULL
,
5992 ROLE_UNKNOWN
, CAM_SCSI_BUS_RESET
);
5994 max_scsiid
= (ahc
->features
& AHC_WIDE
) ? 15 : 7;
5996 #ifdef AHC_TARGET_MODE
5998 * Send an immediate notify ccb to all target more peripheral
5999 * drivers affected by this action.
6001 for (target
= 0; target
<= max_scsiid
; target
++) {
6002 struct ahc_tmode_tstate
* tstate
;
6005 tstate
= ahc
->enabled_targets
[target
];
6008 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
6009 struct ahc_tmode_lstate
* lstate
;
6011 lstate
= tstate
->enabled_luns
[lun
];
6015 ahc_queue_lstate_event(ahc
, lstate
, CAM_TARGET_WILDCARD
,
6016 EVENT_TYPE_BUS_RESET
, /*arg*/0);
6017 ahc_send_lstate_events(ahc
, lstate
);
6021 /* Notify the XPT that a bus reset occurred */
6022 ahc_send_async(ahc
, devinfo
.channel
, CAM_TARGET_WILDCARD
,
6023 CAM_LUN_WILDCARD
, AC_BUS_RESET
);
6026 * Revert to async/narrow transfers until we renegotiate.
6028 for (target
= 0; target
<= max_scsiid
; target
++) {
6030 if (ahc
->enabled_targets
[target
] == NULL
)
6032 for (initiator
= 0; initiator
<= max_scsiid
; initiator
++) {
6033 struct ahc_devinfo devinfo
;
6035 ahc_compile_devinfo(&devinfo
, target
, initiator
,
6037 channel
, ROLE_UNKNOWN
);
6038 ahc_set_width(ahc
, &devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
6039 AHC_TRANS_CUR
, /*paused*/TRUE
);
6040 ahc_set_syncrate(ahc
, &devinfo
, /*syncrate*/NULL
,
6041 /*period*/0, /*offset*/0,
6042 /*ppr_options*/0, AHC_TRANS_CUR
,
6055 /***************************** Residual Processing ****************************/
6057 * Calculate the residual for a just completed SCB.
6060 ahc_calc_residual(struct ahc_softc
*ahc
, struct scb
*scb
)
6062 struct hardware_scb
*hscb
;
6063 struct status_pkt
*spkt
;
6065 uint32_t resid_sgptr
;
6071 * SG_RESID_VALID clear in sgptr.
6072 * 2) Transferless command
6073 * 3) Never performed any transfers.
6074 * sgptr has SG_FULL_RESID set.
6075 * 4) No residual but target did not
6076 * save data pointers after the
6077 * last transfer, so sgptr was
6079 * 5) We have a partial residual.
6080 * Use residual_sgptr to determine
6085 sgptr
= ahc_le32toh(hscb
->sgptr
);
6086 if ((sgptr
& SG_RESID_VALID
) == 0)
6089 sgptr
&= ~SG_RESID_VALID
;
6091 if ((sgptr
& SG_LIST_NULL
) != 0)
6095 spkt
= &hscb
->shared_data
.status
;
6096 resid_sgptr
= ahc_le32toh(spkt
->residual_sg_ptr
);
6097 if ((sgptr
& SG_FULL_RESID
) != 0) {
6099 resid
= ahc_get_transfer_length(scb
);
6100 } else if ((resid_sgptr
& SG_LIST_NULL
) != 0) {
6103 } else if ((resid_sgptr
& ~SG_PTR_MASK
) != 0) {
6104 panic("Bogus resid sgptr value 0x%x\n", resid_sgptr
);
6106 struct ahc_dma_seg
*sg
;
6109 * Remainder of the SG where the transfer
6112 resid
= ahc_le32toh(spkt
->residual_datacnt
) & AHC_SG_LEN_MASK
;
6113 sg
= ahc_sg_bus_to_virt(scb
, resid_sgptr
& SG_PTR_MASK
);
6115 /* The residual sg_ptr always points to the next sg */
6119 * Add up the contents of all residual
6120 * SG segments that are after the SG where
6121 * the transfer stopped.
6123 while ((ahc_le32toh(sg
->len
) & AHC_DMA_LAST_SEG
) == 0) {
6125 resid
+= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
6128 if ((scb
->flags
& SCB_SENSE
) == 0)
6129 ahc_set_residual(scb
, resid
);
6131 ahc_set_sense_residual(scb
, resid
);
6134 if ((ahc_debug
& AHC_SHOW_MISC
) != 0) {
6135 ahc_print_path(ahc
, scb
);
6136 printf("Handled %sResidual of %d bytes\n",
6137 (scb
->flags
& SCB_SENSE
) ? "Sense " : "", resid
);
6142 /******************************* Target Mode **********************************/
6143 #ifdef AHC_TARGET_MODE
6145 * Add a target mode event to this lun's queue
6148 ahc_queue_lstate_event(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
,
6149 u_int initiator_id
, u_int event_type
, u_int event_arg
)
6151 struct ahc_tmode_event
*event
;
6154 xpt_freeze_devq(lstate
->path
, /*count*/1);
6155 if (lstate
->event_w_idx
>= lstate
->event_r_idx
)
6156 pending
= lstate
->event_w_idx
- lstate
->event_r_idx
;
6158 pending
= AHC_TMODE_EVENT_BUFFER_SIZE
+ 1
6159 - (lstate
->event_r_idx
- lstate
->event_w_idx
);
6161 if (event_type
== EVENT_TYPE_BUS_RESET
6162 || event_type
== MSG_BUS_DEV_RESET
) {
6164 * Any earlier events are irrelevant, so reset our buffer.
6165 * This has the effect of allowing us to deal with reset
6166 * floods (an external device holding down the reset line)
6167 * without losing the event that is really interesting.
6169 lstate
->event_r_idx
= 0;
6170 lstate
->event_w_idx
= 0;
6171 xpt_release_devq(lstate
->path
, pending
, /*runqueue*/FALSE
);
6174 if (pending
== AHC_TMODE_EVENT_BUFFER_SIZE
) {
6175 xpt_print_path(lstate
->path
);
6176 printf("immediate event %x:%x lost\n",
6177 lstate
->event_buffer
[lstate
->event_r_idx
].event_type
,
6178 lstate
->event_buffer
[lstate
->event_r_idx
].event_arg
);
6179 lstate
->event_r_idx
++;
6180 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6181 lstate
->event_r_idx
= 0;
6182 xpt_release_devq(lstate
->path
, /*count*/1, /*runqueue*/FALSE
);
6185 event
= &lstate
->event_buffer
[lstate
->event_w_idx
];
6186 event
->initiator_id
= initiator_id
;
6187 event
->event_type
= event_type
;
6188 event
->event_arg
= event_arg
;
6189 lstate
->event_w_idx
++;
6190 if (lstate
->event_w_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6191 lstate
->event_w_idx
= 0;
6195 * Send any target mode events queued up waiting
6196 * for immediate notify resources.
6199 ahc_send_lstate_events(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
)
6201 struct ccb_hdr
*ccbh
;
6202 struct ccb_immed_notify
*inot
;
6204 while (lstate
->event_r_idx
!= lstate
->event_w_idx
6205 && (ccbh
= SLIST_FIRST(&lstate
->immed_notifies
)) != NULL
) {
6206 struct ahc_tmode_event
*event
;
6208 event
= &lstate
->event_buffer
[lstate
->event_r_idx
];
6209 SLIST_REMOVE_HEAD(&lstate
->immed_notifies
, sim_links
.sle
);
6210 inot
= (struct ccb_immed_notify
*)ccbh
;
6211 switch (event
->event_type
) {
6212 case EVENT_TYPE_BUS_RESET
:
6213 ccbh
->status
= CAM_SCSI_BUS_RESET
|CAM_DEV_QFRZN
;
6216 ccbh
->status
= CAM_MESSAGE_RECV
|CAM_DEV_QFRZN
;
6217 inot
->message_args
[0] = event
->event_type
;
6218 inot
->message_args
[1] = event
->event_arg
;
6221 inot
->initiator_id
= event
->initiator_id
;
6222 inot
->sense_len
= 0;
6223 xpt_done((union ccb
*)inot
);
6224 lstate
->event_r_idx
++;
6225 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6226 lstate
->event_r_idx
= 0;
6231 /******************** Sequencer Program Patching/Download *********************/
6235 ahc_dumpseq(struct ahc_softc
* ahc
)
6239 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6240 ahc_outb(ahc
, SEQADDR0
, 0);
6241 ahc_outb(ahc
, SEQADDR1
, 0);
6242 for (i
= 0; i
< ahc
->instruction_ram_size
; i
++) {
6243 uint8_t ins_bytes
[4];
6245 ahc_insb(ahc
, SEQRAM
, ins_bytes
, 4);
6246 printf("0x%08x\n", ins_bytes
[0] << 24
6247 | ins_bytes
[1] << 16
6255 ahc_loadseq(struct ahc_softc
*ahc
)
6257 struct cs cs_table
[num_critical_sections
];
6258 u_int begin_set
[num_critical_sections
];
6259 u_int end_set
[num_critical_sections
];
6260 struct patch
*cur_patch
;
6265 u_int sg_prefetch_cnt
;
6267 uint8_t download_consts
[7];
6270 * Start out with 0 critical sections
6271 * that apply to this firmware load.
6275 memset(begin_set
, 0, sizeof(begin_set
));
6276 memset(end_set
, 0, sizeof(end_set
));
6278 /* Setup downloadable constant table */
6279 download_consts
[QOUTFIFO_OFFSET
] = 0;
6280 if (ahc
->targetcmds
!= NULL
)
6281 download_consts
[QOUTFIFO_OFFSET
] += 32;
6282 download_consts
[QINFIFO_OFFSET
] = download_consts
[QOUTFIFO_OFFSET
] + 1;
6283 download_consts
[CACHESIZE_MASK
] = ahc
->pci_cachesize
- 1;
6284 download_consts
[INVERTED_CACHESIZE_MASK
] = ~(ahc
->pci_cachesize
- 1);
6285 sg_prefetch_cnt
= ahc
->pci_cachesize
;
6286 if (sg_prefetch_cnt
< (2 * sizeof(struct ahc_dma_seg
)))
6287 sg_prefetch_cnt
= 2 * sizeof(struct ahc_dma_seg
);
6288 download_consts
[SG_PREFETCH_CNT
] = sg_prefetch_cnt
;
6289 download_consts
[SG_PREFETCH_ALIGN_MASK
] = ~(sg_prefetch_cnt
- 1);
6290 download_consts
[SG_PREFETCH_ADDR_MASK
] = (sg_prefetch_cnt
- 1);
6292 cur_patch
= patches
;
6295 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6296 ahc_outb(ahc
, SEQADDR0
, 0);
6297 ahc_outb(ahc
, SEQADDR1
, 0);
6299 for (i
= 0; i
< sizeof(seqprog
)/4; i
++) {
6300 if (ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
) == 0) {
6302 * Don't download this instruction as it
6303 * is in a patch that was removed.
6308 if (downloaded
== ahc
->instruction_ram_size
) {
6310 * We're about to exceed the instruction
6311 * storage capacity for this chip. Fail
6314 printf("\n%s: Program too large for instruction memory "
6315 "size of %d!\n", ahc_name(ahc
),
6316 ahc
->instruction_ram_size
);
6321 * Move through the CS table until we find a CS
6322 * that might apply to this instruction.
6324 for (; cur_cs
< num_critical_sections
; cur_cs
++) {
6325 if (critical_sections
[cur_cs
].end
<= i
) {
6326 if (begin_set
[cs_count
] == TRUE
6327 && end_set
[cs_count
] == FALSE
) {
6328 cs_table
[cs_count
].end
= downloaded
;
6329 end_set
[cs_count
] = TRUE
;
6334 if (critical_sections
[cur_cs
].begin
<= i
6335 && begin_set
[cs_count
] == FALSE
) {
6336 cs_table
[cs_count
].begin
= downloaded
;
6337 begin_set
[cs_count
] = TRUE
;
6341 ahc_download_instr(ahc
, i
, download_consts
);
6345 ahc
->num_critical_sections
= cs_count
;
6346 if (cs_count
!= 0) {
6348 cs_count
*= sizeof(struct cs
);
6349 ahc
->critical_sections
= malloc(cs_count
, M_DEVBUF
, M_NOWAIT
);
6350 if (ahc
->critical_sections
== NULL
)
6351 panic("ahc_loadseq: Could not malloc");
6352 memcpy(ahc
->critical_sections
, cs_table
, cs_count
);
6354 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
);
6357 printf(" %d instructions downloaded\n", downloaded
);
6358 printf("%s: Features 0x%x, Bugs 0x%x, Flags 0x%x\n",
6359 ahc_name(ahc
), ahc
->features
, ahc
->bugs
, ahc
->flags
);
6365 ahc_check_patch(struct ahc_softc
*ahc
, struct patch
**start_patch
,
6366 u_int start_instr
, u_int
*skip_addr
)
6368 struct patch
*cur_patch
;
6369 struct patch
*last_patch
;
6372 num_patches
= ARRAY_SIZE(patches
);
6373 last_patch
= &patches
[num_patches
];
6374 cur_patch
= *start_patch
;
6376 while (cur_patch
< last_patch
&& start_instr
== cur_patch
->begin
) {
6378 if (cur_patch
->patch_func(ahc
) == 0) {
6380 /* Start rejecting code */
6381 *skip_addr
= start_instr
+ cur_patch
->skip_instr
;
6382 cur_patch
+= cur_patch
->skip_patch
;
6384 /* Accepted this patch. Advance to the next
6385 * one and wait for our intruction pointer to
6392 *start_patch
= cur_patch
;
6393 if (start_instr
< *skip_addr
)
6394 /* Still skipping */
6401 ahc_download_instr(struct ahc_softc
*ahc
, u_int instrptr
, uint8_t *dconsts
)
6403 union ins_formats instr
;
6404 struct ins_format1
*fmt1_ins
;
6405 struct ins_format3
*fmt3_ins
;
6409 * The firmware is always compiled into a little endian format.
6411 instr
.integer
= ahc_le32toh(*(uint32_t*)&seqprog
[instrptr
* 4]);
6413 fmt1_ins
= &instr
.format1
;
6416 /* Pull the opcode */
6417 opcode
= instr
.format1
.opcode
;
6428 struct patch
*cur_patch
;
6434 fmt3_ins
= &instr
.format3
;
6436 address
= fmt3_ins
->address
;
6437 cur_patch
= patches
;
6440 for (i
= 0; i
< address
;) {
6442 ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
);
6444 if (skip_addr
> i
) {
6447 end_addr
= min(address
, skip_addr
);
6448 address_offset
+= end_addr
- i
;
6454 address
-= address_offset
;
6455 fmt3_ins
->address
= address
;
6464 if (fmt1_ins
->parity
!= 0) {
6465 fmt1_ins
->immediate
= dconsts
[fmt1_ins
->immediate
];
6467 fmt1_ins
->parity
= 0;
6468 if ((ahc
->features
& AHC_CMD_CHAN
) == 0
6469 && opcode
== AIC_OP_BMOV
) {
6471 * Block move was added at the same time
6472 * as the command channel. Verify that
6473 * this is only a move of a single element
6474 * and convert the BMOV to a MOV
6475 * (AND with an immediate of FF).
6477 if (fmt1_ins
->immediate
!= 1)
6478 panic("%s: BMOV not supported\n",
6480 fmt1_ins
->opcode
= AIC_OP_AND
;
6481 fmt1_ins
->immediate
= 0xff;
6485 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
6488 /* Calculate odd parity for the instruction */
6489 for (i
= 0, count
= 0; i
< 31; i
++) {
6493 if ((instr
.integer
& mask
) != 0)
6496 if ((count
& 0x01) == 0)
6497 instr
.format1
.parity
= 1;
6499 /* Compress the instruction for older sequencers */
6500 if (fmt3_ins
!= NULL
) {
6503 | (fmt3_ins
->source
<< 8)
6504 | (fmt3_ins
->address
<< 16)
6505 | (fmt3_ins
->opcode
<< 25);
6509 | (fmt1_ins
->source
<< 8)
6510 | (fmt1_ins
->destination
<< 16)
6511 | (fmt1_ins
->ret
<< 24)
6512 | (fmt1_ins
->opcode
<< 25);
6515 /* The sequencer is a little endian cpu */
6516 instr
.integer
= ahc_htole32(instr
.integer
);
6517 ahc_outsb(ahc
, SEQRAM
, instr
.bytes
, 4);
6520 panic("Unknown opcode encountered in seq program");
6526 ahc_print_register(ahc_reg_parse_entry_t
*table
, u_int num_entries
,
6527 const char *name
, u_int address
, u_int value
,
6528 u_int
*cur_column
, u_int wrap_point
)
6533 if (cur_column
!= NULL
&& *cur_column
>= wrap_point
) {
6537 printed
= printf("%s[0x%x]", name
, value
);
6538 if (table
== NULL
) {
6539 printed
+= printf(" ");
6540 *cur_column
+= printed
;
6544 while (printed_mask
!= 0xFF) {
6547 for (entry
= 0; entry
< num_entries
; entry
++) {
6548 if (((value
& table
[entry
].mask
)
6549 != table
[entry
].value
)
6550 || ((printed_mask
& table
[entry
].mask
)
6551 == table
[entry
].mask
))
6554 printed
+= printf("%s%s",
6555 printed_mask
== 0 ? ":(" : "|",
6557 printed_mask
|= table
[entry
].mask
;
6561 if (entry
>= num_entries
)
6564 if (printed_mask
!= 0)
6565 printed
+= printf(") ");
6567 printed
+= printf(" ");
6568 if (cur_column
!= NULL
)
6569 *cur_column
+= printed
;
6574 ahc_dump_card_state(struct ahc_softc
*ahc
)
6577 struct scb_tailq
*untagged_q
;
6588 uint8_t saved_scbptr
;
6590 if (ahc_is_paused(ahc
)) {
6597 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
6598 last_phase
= ahc_inb(ahc
, LASTPHASE
);
6599 printf(">>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<<\n"
6600 "%s: Dumping Card State %s, at SEQADDR 0x%x\n",
6601 ahc_name(ahc
), ahc_lookup_phase_entry(last_phase
)->phasemsg
,
6602 ahc_inb(ahc
, SEQADDR0
) | (ahc_inb(ahc
, SEQADDR1
) << 8));
6604 printf("Card was paused\n");
6605 printf("ACCUM = 0x%x, SINDEX = 0x%x, DINDEX = 0x%x, ARG_2 = 0x%x\n",
6606 ahc_inb(ahc
, ACCUM
), ahc_inb(ahc
, SINDEX
), ahc_inb(ahc
, DINDEX
),
6607 ahc_inb(ahc
, ARG_2
));
6608 printf("HCNT = 0x%x SCBPTR = 0x%x\n", ahc_inb(ahc
, HCNT
),
6609 ahc_inb(ahc
, SCBPTR
));
6611 if ((ahc
->features
& AHC_DT
) != 0)
6612 ahc_scsiphase_print(ahc_inb(ahc
, SCSIPHASE
), &cur_col
, 50);
6613 ahc_scsisigi_print(ahc_inb(ahc
, SCSISIGI
), &cur_col
, 50);
6614 ahc_error_print(ahc_inb(ahc
, ERROR
), &cur_col
, 50);
6615 ahc_scsibusl_print(ahc_inb(ahc
, SCSIBUSL
), &cur_col
, 50);
6616 ahc_lastphase_print(ahc_inb(ahc
, LASTPHASE
), &cur_col
, 50);
6617 ahc_scsiseq_print(ahc_inb(ahc
, SCSISEQ
), &cur_col
, 50);
6618 ahc_sblkctl_print(ahc_inb(ahc
, SBLKCTL
), &cur_col
, 50);
6619 ahc_scsirate_print(ahc_inb(ahc
, SCSIRATE
), &cur_col
, 50);
6620 ahc_seqctl_print(ahc_inb(ahc
, SEQCTL
), &cur_col
, 50);
6621 ahc_seq_flags_print(ahc_inb(ahc
, SEQ_FLAGS
), &cur_col
, 50);
6622 ahc_sstat0_print(ahc_inb(ahc
, SSTAT0
), &cur_col
, 50);
6623 ahc_sstat1_print(ahc_inb(ahc
, SSTAT1
), &cur_col
, 50);
6624 ahc_sstat2_print(ahc_inb(ahc
, SSTAT2
), &cur_col
, 50);
6625 ahc_sstat3_print(ahc_inb(ahc
, SSTAT3
), &cur_col
, 50);
6626 ahc_simode0_print(ahc_inb(ahc
, SIMODE0
), &cur_col
, 50);
6627 ahc_simode1_print(ahc_inb(ahc
, SIMODE1
), &cur_col
, 50);
6628 ahc_sxfrctl0_print(ahc_inb(ahc
, SXFRCTL0
), &cur_col
, 50);
6629 ahc_dfcntrl_print(ahc_inb(ahc
, DFCNTRL
), &cur_col
, 50);
6630 ahc_dfstatus_print(ahc_inb(ahc
, DFSTATUS
), &cur_col
, 50);
6634 for (i
= 0; i
< STACK_SIZE
; i
++)
6635 printf(" 0x%x", ahc_inb(ahc
, STACK
)|(ahc_inb(ahc
, STACK
) << 8));
6636 printf("\nSCB count = %d\n", ahc
->scb_data
->numscbs
);
6637 printf("Kernel NEXTQSCB = %d\n", ahc
->next_queued_scb
->hscb
->tag
);
6638 printf("Card NEXTQSCB = %d\n", ahc_inb(ahc
, NEXT_QUEUED_SCB
));
6640 printf("QINFIFO entries: ");
6641 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
6642 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
6643 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
6645 qinpos
= ahc_inb(ahc
, QINPOS
);
6646 qintail
= ahc
->qinfifonext
;
6647 while (qinpos
!= qintail
) {
6648 printf("%d ", ahc
->qinfifo
[qinpos
]);
6653 printf("Waiting Queue entries: ");
6654 scb_index
= ahc_inb(ahc
, WAITING_SCBH
);
6656 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6657 ahc_outb(ahc
, SCBPTR
, scb_index
);
6658 printf("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
6659 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6663 printf("Disconnected Queue entries: ");
6664 scb_index
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
6666 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6667 ahc_outb(ahc
, SCBPTR
, scb_index
);
6668 printf("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
6669 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6673 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
6674 printf("QOUTFIFO entries: ");
6675 qoutpos
= ahc
->qoutfifonext
;
6677 while (ahc
->qoutfifo
[qoutpos
] != SCB_LIST_NULL
&& i
++ < 256) {
6678 printf("%d ", ahc
->qoutfifo
[qoutpos
]);
6683 printf("Sequencer Free SCB List: ");
6684 scb_index
= ahc_inb(ahc
, FREE_SCBH
);
6686 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6687 ahc_outb(ahc
, SCBPTR
, scb_index
);
6688 printf("%d ", scb_index
);
6689 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6693 printf("Sequencer SCB Info: ");
6694 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
6695 ahc_outb(ahc
, SCBPTR
, i
);
6696 cur_col
= printf("\n%3d ", i
);
6698 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
), &cur_col
, 60);
6699 ahc_scb_scsiid_print(ahc_inb(ahc
, SCB_SCSIID
), &cur_col
, 60);
6700 ahc_scb_lun_print(ahc_inb(ahc
, SCB_LUN
), &cur_col
, 60);
6701 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
6705 printf("Pending list: ");
6707 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
6710 cur_col
= printf("\n%3d ", scb
->hscb
->tag
);
6711 ahc_scb_control_print(scb
->hscb
->control
, &cur_col
, 60);
6712 ahc_scb_scsiid_print(scb
->hscb
->scsiid
, &cur_col
, 60);
6713 ahc_scb_lun_print(scb
->hscb
->lun
, &cur_col
, 60);
6714 if ((ahc
->flags
& AHC_PAGESCBS
) == 0) {
6715 ahc_outb(ahc
, SCBPTR
, scb
->hscb
->tag
);
6717 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
),
6719 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
6725 printf("Kernel Free SCB list: ");
6727 SLIST_FOREACH(scb
, &ahc
->scb_data
->free_scbs
, links
.sle
) {
6730 printf("%d ", scb
->hscb
->tag
);
6734 maxtarget
= (ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) ? 15 : 7;
6735 for (target
= 0; target
<= maxtarget
; target
++) {
6736 untagged_q
= &ahc
->untagged_queues
[target
];
6737 if (TAILQ_FIRST(untagged_q
) == NULL
)
6739 printf("Untagged Q(%d): ", target
);
6741 TAILQ_FOREACH(scb
, untagged_q
, links
.tqe
) {
6744 printf("%d ", scb
->hscb
->tag
);
6749 ahc_platform_dump_card_state(ahc
);
6750 printf("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n");
6751 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
6756 /************************* Target Mode ****************************************/
6757 #ifdef AHC_TARGET_MODE
6759 ahc_find_tmode_devs(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
,
6760 struct ahc_tmode_tstate
**tstate
,
6761 struct ahc_tmode_lstate
**lstate
,
6762 int notfound_failure
)
6765 if ((ahc
->features
& AHC_TARGETMODE
) == 0)
6766 return (CAM_REQ_INVALID
);
6769 * Handle the 'black hole' device that sucks up
6770 * requests to unattached luns on enabled targets.
6772 if (ccb
->ccb_h
.target_id
== CAM_TARGET_WILDCARD
6773 && ccb
->ccb_h
.target_lun
== CAM_LUN_WILDCARD
) {
6775 *lstate
= ahc
->black_hole
;
6779 max_id
= (ahc
->features
& AHC_WIDE
) ? 16 : 8;
6780 if (ccb
->ccb_h
.target_id
>= max_id
)
6781 return (CAM_TID_INVALID
);
6783 if (ccb
->ccb_h
.target_lun
>= AHC_NUM_LUNS
)
6784 return (CAM_LUN_INVALID
);
6786 *tstate
= ahc
->enabled_targets
[ccb
->ccb_h
.target_id
];
6788 if (*tstate
!= NULL
)
6790 (*tstate
)->enabled_luns
[ccb
->ccb_h
.target_lun
];
6793 if (notfound_failure
!= 0 && *lstate
== NULL
)
6794 return (CAM_PATH_INVALID
);
6796 return (CAM_REQ_CMP
);
6800 ahc_handle_en_lun(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
)
6802 struct ahc_tmode_tstate
*tstate
;
6803 struct ahc_tmode_lstate
*lstate
;
6804 struct ccb_en_lun
*cel
;
6814 status
= ahc_find_tmode_devs(ahc
, sim
, ccb
, &tstate
, &lstate
,
6815 /*notfound_failure*/FALSE
);
6817 if (status
!= CAM_REQ_CMP
) {
6818 ccb
->ccb_h
.status
= status
;
6822 if (cam_sim_bus(sim
) == 0)
6823 our_id
= ahc
->our_id
;
6825 our_id
= ahc
->our_id_b
;
6827 if (ccb
->ccb_h
.target_id
!= our_id
) {
6829 * our_id represents our initiator ID, or
6830 * the ID of the first target to have an
6831 * enabled lun in target mode. There are
6832 * two cases that may preclude enabling a
6833 * target id other than our_id.
6835 * o our_id is for an active initiator role.
6836 * Since the hardware does not support
6837 * reselections to the initiator role at
6838 * anything other than our_id, and our_id
6839 * is used by the hardware to indicate the
6840 * ID to use for both select-out and
6841 * reselect-out operations, the only target
6842 * ID we can support in this mode is our_id.
6844 * o The MULTARGID feature is not available and
6845 * a previous target mode ID has been enabled.
6847 if ((ahc
->features
& AHC_MULTIROLE
) != 0) {
6849 if ((ahc
->features
& AHC_MULTI_TID
) != 0
6850 && (ahc
->flags
& AHC_INITIATORROLE
) != 0) {
6852 * Only allow additional targets if
6853 * the initiator role is disabled.
6854 * The hardware cannot handle a re-select-in
6855 * on the initiator id during a re-select-out
6856 * on a different target id.
6858 status
= CAM_TID_INVALID
;
6859 } else if ((ahc
->flags
& AHC_INITIATORROLE
) != 0
6860 || ahc
->enabled_luns
> 0) {
6862 * Only allow our target id to change
6863 * if the initiator role is not configured
6864 * and there are no enabled luns which
6865 * are attached to the currently registered
6868 status
= CAM_TID_INVALID
;
6870 } else if ((ahc
->features
& AHC_MULTI_TID
) == 0
6871 && ahc
->enabled_luns
> 0) {
6873 status
= CAM_TID_INVALID
;
6877 if (status
!= CAM_REQ_CMP
) {
6878 ccb
->ccb_h
.status
= status
;
6883 * We now have an id that is valid.
6884 * If we aren't in target mode, switch modes.
6886 if ((ahc
->flags
& AHC_TARGETROLE
) == 0
6887 && ccb
->ccb_h
.target_id
!= CAM_TARGET_WILDCARD
) {
6889 ahc_flag saved_flags
;
6891 printf("Configuring Target Mode\n");
6893 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
) {
6894 ccb
->ccb_h
.status
= CAM_BUSY
;
6895 ahc_unlock(ahc
, &s
);
6898 saved_flags
= ahc
->flags
;
6899 ahc
->flags
|= AHC_TARGETROLE
;
6900 if ((ahc
->features
& AHC_MULTIROLE
) == 0)
6901 ahc
->flags
&= ~AHC_INITIATORROLE
;
6903 error
= ahc_loadseq(ahc
);
6906 * Restore original configuration and notify
6907 * the caller that we cannot support target mode.
6908 * Since the adapter started out in this
6909 * configuration, the firmware load will succeed,
6910 * so there is no point in checking ahc_loadseq's
6913 ahc
->flags
= saved_flags
;
6914 (void)ahc_loadseq(ahc
);
6916 ahc_unlock(ahc
, &s
);
6917 ccb
->ccb_h
.status
= CAM_FUNC_NOTAVAIL
;
6921 ahc_unlock(ahc
, &s
);
6924 target
= ccb
->ccb_h
.target_id
;
6925 lun
= ccb
->ccb_h
.target_lun
;
6926 channel
= SIM_CHANNEL(ahc
, sim
);
6927 target_mask
= 0x01 << target
;
6931 if (cel
->enable
!= 0) {
6934 /* Are we already enabled?? */
6935 if (lstate
!= NULL
) {
6936 xpt_print_path(ccb
->ccb_h
.path
);
6937 printf("Lun already enabled\n");
6938 ccb
->ccb_h
.status
= CAM_LUN_ALRDY_ENA
;
6942 if (cel
->grp6_len
!= 0
6943 || cel
->grp7_len
!= 0) {
6945 * Don't (yet?) support vendor
6946 * specific commands.
6948 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
6949 printf("Non-zero Group Codes\n");
6955 * Setup our data structures.
6957 if (target
!= CAM_TARGET_WILDCARD
&& tstate
== NULL
) {
6958 tstate
= ahc_alloc_tstate(ahc
, target
, channel
);
6959 if (tstate
== NULL
) {
6960 xpt_print_path(ccb
->ccb_h
.path
);
6961 printf("Couldn't allocate tstate\n");
6962 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
6966 lstate
= malloc(sizeof(*lstate
), M_DEVBUF
, M_NOWAIT
);
6967 if (lstate
== NULL
) {
6968 xpt_print_path(ccb
->ccb_h
.path
);
6969 printf("Couldn't allocate lstate\n");
6970 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
6973 memset(lstate
, 0, sizeof(*lstate
));
6974 status
= xpt_create_path(&lstate
->path
, /*periph*/NULL
,
6975 xpt_path_path_id(ccb
->ccb_h
.path
),
6976 xpt_path_target_id(ccb
->ccb_h
.path
),
6977 xpt_path_lun_id(ccb
->ccb_h
.path
));
6978 if (status
!= CAM_REQ_CMP
) {
6979 free(lstate
, M_DEVBUF
);
6980 xpt_print_path(ccb
->ccb_h
.path
);
6981 printf("Couldn't allocate path\n");
6982 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
6985 SLIST_INIT(&lstate
->accept_tios
);
6986 SLIST_INIT(&lstate
->immed_notifies
);
6989 if (target
!= CAM_TARGET_WILDCARD
) {
6990 tstate
->enabled_luns
[lun
] = lstate
;
6991 ahc
->enabled_luns
++;
6993 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
6996 targid_mask
= ahc_inb(ahc
, TARGID
)
6997 | (ahc_inb(ahc
, TARGID
+ 1) << 8);
6999 targid_mask
|= target_mask
;
7000 ahc_outb(ahc
, TARGID
, targid_mask
);
7001 ahc_outb(ahc
, TARGID
+1, (targid_mask
>> 8));
7003 ahc_update_scsiid(ahc
, targid_mask
);
7008 channel
= SIM_CHANNEL(ahc
, sim
);
7009 our_id
= SIM_SCSI_ID(ahc
, sim
);
7012 * This can only happen if selections
7015 if (target
!= our_id
) {
7020 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
7021 cur_channel
= (sblkctl
& SELBUSB
)
7023 if ((ahc
->features
& AHC_TWIN
) == 0)
7025 swap
= cur_channel
!= channel
;
7027 ahc
->our_id
= target
;
7029 ahc
->our_id_b
= target
;
7032 ahc_outb(ahc
, SBLKCTL
,
7035 ahc_outb(ahc
, SCSIID
, target
);
7038 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
7042 ahc
->black_hole
= lstate
;
7043 /* Allow select-in operations */
7044 if (ahc
->black_hole
!= NULL
&& ahc
->enabled_luns
> 0) {
7045 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7047 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7048 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7050 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7053 ahc_unlock(ahc
, &s
);
7054 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7055 xpt_print_path(ccb
->ccb_h
.path
);
7056 printf("Lun now enabled for target mode\n");
7061 if (lstate
== NULL
) {
7062 ccb
->ccb_h
.status
= CAM_LUN_INVALID
;
7068 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7069 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
7070 struct ccb_hdr
*ccbh
;
7072 ccbh
= &scb
->io_ctx
->ccb_h
;
7073 if (ccbh
->func_code
== XPT_CONT_TARGET_IO
7074 && !xpt_path_comp(ccbh
->path
, ccb
->ccb_h
.path
)){
7075 printf("CTIO pending\n");
7076 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7077 ahc_unlock(ahc
, &s
);
7082 if (SLIST_FIRST(&lstate
->accept_tios
) != NULL
) {
7083 printf("ATIOs pending\n");
7084 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7087 if (SLIST_FIRST(&lstate
->immed_notifies
) != NULL
) {
7088 printf("INOTs pending\n");
7089 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7092 if (ccb
->ccb_h
.status
!= CAM_REQ_CMP
) {
7093 ahc_unlock(ahc
, &s
);
7097 xpt_print_path(ccb
->ccb_h
.path
);
7098 printf("Target mode disabled\n");
7099 xpt_free_path(lstate
->path
);
7100 free(lstate
, M_DEVBUF
);
7103 /* Can we clean up the target too? */
7104 if (target
!= CAM_TARGET_WILDCARD
) {
7105 tstate
->enabled_luns
[lun
] = NULL
;
7106 ahc
->enabled_luns
--;
7107 for (empty
= 1, i
= 0; i
< 8; i
++)
7108 if (tstate
->enabled_luns
[i
] != NULL
) {
7114 ahc_free_tstate(ahc
, target
, channel
,
7116 if (ahc
->features
& AHC_MULTI_TID
) {
7119 targid_mask
= ahc_inb(ahc
, TARGID
)
7120 | (ahc_inb(ahc
, TARGID
+ 1)
7123 targid_mask
&= ~target_mask
;
7124 ahc_outb(ahc
, TARGID
, targid_mask
);
7125 ahc_outb(ahc
, TARGID
+1,
7126 (targid_mask
>> 8));
7127 ahc_update_scsiid(ahc
, targid_mask
);
7132 ahc
->black_hole
= NULL
;
7135 * We can't allow selections without
7136 * our black hole device.
7140 if (ahc
->enabled_luns
== 0) {
7141 /* Disallow select-in */
7144 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7146 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7147 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7149 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7151 if ((ahc
->features
& AHC_MULTIROLE
) == 0) {
7152 printf("Configuring Initiator Mode\n");
7153 ahc
->flags
&= ~AHC_TARGETROLE
;
7154 ahc
->flags
|= AHC_INITIATORROLE
;
7156 * Returning to a configuration that
7157 * fit previously will always succeed.
7159 (void)ahc_loadseq(ahc
);
7162 * Unpaused. The extra unpause
7163 * that follows is harmless.
7168 ahc_unlock(ahc
, &s
);
7173 ahc_update_scsiid(struct ahc_softc
*ahc
, u_int targid_mask
)
7178 if ((ahc
->features
& AHC_MULTI_TID
) == 0)
7179 panic("ahc_update_scsiid called on non-multitid unit\n");
7182 * Since we will rely on the TARGID mask
7183 * for selection enables, ensure that OID
7184 * in SCSIID is not set to some other ID
7185 * that we don't want to allow selections on.
7187 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7188 scsiid
= ahc_inb(ahc
, SCSIID_ULTRA2
);
7190 scsiid
= ahc_inb(ahc
, SCSIID
);
7191 scsiid_mask
= 0x1 << (scsiid
& OID
);
7192 if ((targid_mask
& scsiid_mask
) == 0) {
7195 /* ffs counts from 1 */
7196 our_id
= ffs(targid_mask
);
7198 our_id
= ahc
->our_id
;
7204 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7205 ahc_outb(ahc
, SCSIID_ULTRA2
, scsiid
);
7207 ahc_outb(ahc
, SCSIID
, scsiid
);
7211 ahc_run_tqinfifo(struct ahc_softc
*ahc
, int paused
)
7213 struct target_cmd
*cmd
;
7216 * If the card supports auto-access pause,
7217 * we can access the card directly regardless
7218 * of whether it is paused or not.
7220 if ((ahc
->features
& AHC_AUTOPAUSE
) != 0)
7223 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_POSTREAD
);
7224 while ((cmd
= &ahc
->targetcmds
[ahc
->tqinfifonext
])->cmd_valid
!= 0) {
7227 * Only advance through the queue if we
7228 * have the resources to process the command.
7230 if (ahc_handle_target_cmd(ahc
, cmd
) != 0)
7234 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
7235 ahc
->shared_data_dmamap
,
7236 ahc_targetcmd_offset(ahc
, ahc
->tqinfifonext
),
7237 sizeof(struct target_cmd
),
7238 BUS_DMASYNC_PREREAD
);
7239 ahc
->tqinfifonext
++;
7242 * Lazily update our position in the target mode incoming
7243 * command queue as seen by the sequencer.
7245 if ((ahc
->tqinfifonext
& (HOST_TQINPOS
- 1)) == 1) {
7246 if ((ahc
->features
& AHC_HS_MAILBOX
) != 0) {
7249 hs_mailbox
= ahc_inb(ahc
, HS_MAILBOX
);
7250 hs_mailbox
&= ~HOST_TQINPOS
;
7251 hs_mailbox
|= ahc
->tqinfifonext
& HOST_TQINPOS
;
7252 ahc_outb(ahc
, HS_MAILBOX
, hs_mailbox
);
7256 ahc_outb(ahc
, KERNEL_TQINPOS
,
7257 ahc
->tqinfifonext
& HOST_TQINPOS
);
7266 ahc_handle_target_cmd(struct ahc_softc
*ahc
, struct target_cmd
*cmd
)
7268 struct ahc_tmode_tstate
*tstate
;
7269 struct ahc_tmode_lstate
*lstate
;
7270 struct ccb_accept_tio
*atio
;
7276 initiator
= SCSIID_TARGET(ahc
, cmd
->scsiid
);
7277 target
= SCSIID_OUR_ID(cmd
->scsiid
);
7278 lun
= (cmd
->identify
& MSG_IDENTIFY_LUNMASK
);
7281 tstate
= ahc
->enabled_targets
[target
];
7284 lstate
= tstate
->enabled_luns
[lun
];
7287 * Commands for disabled luns go to the black hole driver.
7290 lstate
= ahc
->black_hole
;
7292 atio
= (struct ccb_accept_tio
*)SLIST_FIRST(&lstate
->accept_tios
);
7294 ahc
->flags
|= AHC_TQINFIFO_BLOCKED
;
7296 * Wait for more ATIOs from the peripheral driver for this lun.
7299 printf("%s: ATIOs exhausted\n", ahc_name(ahc
));
7302 ahc
->flags
&= ~AHC_TQINFIFO_BLOCKED
;
7304 printf("Incoming command from %d for %d:%d%s\n",
7305 initiator
, target
, lun
,
7306 lstate
== ahc
->black_hole
? "(Black Holed)" : "");
7308 SLIST_REMOVE_HEAD(&lstate
->accept_tios
, sim_links
.sle
);
7310 if (lstate
== ahc
->black_hole
) {
7311 /* Fill in the wildcards */
7312 atio
->ccb_h
.target_id
= target
;
7313 atio
->ccb_h
.target_lun
= lun
;
7317 * Package it up and send it off to
7318 * whomever has this lun enabled.
7320 atio
->sense_len
= 0;
7321 atio
->init_id
= initiator
;
7322 if (byte
[0] != 0xFF) {
7323 /* Tag was included */
7324 atio
->tag_action
= *byte
++;
7325 atio
->tag_id
= *byte
++;
7326 atio
->ccb_h
.flags
= CAM_TAG_ACTION_VALID
;
7328 atio
->ccb_h
.flags
= 0;
7332 /* Okay. Now determine the cdb size based on the command code */
7333 switch (*byte
>> CMD_GROUP_CODE_SHIFT
) {
7349 /* Only copy the opcode. */
7351 printf("Reserved or VU command code type encountered\n");
7355 memcpy(atio
->cdb_io
.cdb_bytes
, byte
, atio
->cdb_len
);
7357 atio
->ccb_h
.status
|= CAM_CDB_RECVD
;
7359 if ((cmd
->identify
& MSG_IDENTIFY_DISCFLAG
) == 0) {
7361 * We weren't allowed to disconnect.
7362 * We're hanging on the bus until a
7363 * continue target I/O comes in response
7364 * to this accept tio.
7367 printf("Received Immediate Command %d:%d:%d - %p\n",
7368 initiator
, target
, lun
, ahc
->pending_device
);
7370 ahc
->pending_device
= lstate
;
7371 ahc_freeze_ccb((union ccb
*)atio
);
7372 atio
->ccb_h
.flags
|= CAM_DIS_DISCONNECT
;
7374 xpt_done((union ccb
*)atio
);