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#134 $
42 * $FreeBSD: src/sys/dev/aic7xxx/aic7xxx.c,v 1.41.2.27 2003/06/10 03:26:08 gibbs Exp $
43 * $DragonFly: src/sys/dev/disk/aic7xxx/aic7xxx.c,v 1.10 2006/12/20 18:14:38 dillon Exp $
46 #include "aic7xxx_osm.h"
47 #include "aic7xxx_inline.h"
48 #include "aicasm/aicasm_insformat.h"
50 /****************************** Softc Data ************************************/
51 struct ahc_softc_tailq ahc_tailq
= TAILQ_HEAD_INITIALIZER(ahc_tailq
);
53 /***************************** Lookup Tables **********************************/
54 char *ahc_chip_names
[] =
71 static const u_int num_chip_names
= NUM_ELEMENTS(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
= NUM_ELEMENTS(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
= NUM_ELEMENTS(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
);
288 ahc_outb(ahc
, MWI_RESIDUAL
, 0);
289 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
);
290 ahc_outb(ahc
, SEQADDR0
, 0);
291 ahc_outb(ahc
, SEQADDR1
, 0);
295 /************************* Input/Output Queues ********************************/
297 ahc_run_qoutfifo(struct ahc_softc
*ahc
)
302 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
303 while (ahc
->qoutfifo
[ahc
->qoutfifonext
] != SCB_LIST_NULL
) {
305 scb_index
= ahc
->qoutfifo
[ahc
->qoutfifonext
];
306 if ((ahc
->qoutfifonext
& 0x03) == 0x03) {
310 * Clear 32bits of QOUTFIFO at a time
311 * so that we don't clobber an incoming
312 * byte DMA to the array on architectures
313 * that only support 32bit load and store
316 modnext
= ahc
->qoutfifonext
& ~0x3;
317 *((uint32_t *)(&ahc
->qoutfifo
[modnext
])) = 0xFFFFFFFFUL
;
318 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
319 ahc
->shared_data_dmamap
,
320 /*offset*/modnext
, /*len*/4,
321 BUS_DMASYNC_PREREAD
);
325 scb
= ahc_lookup_scb(ahc
, scb_index
);
327 printf("%s: WARNING no command for scb %d "
328 "(cmdcmplt)\nQOUTPOS = %d\n",
329 ahc_name(ahc
), scb_index
,
330 (ahc
->qoutfifonext
- 1) & 0xFF);
335 * Save off the residual
338 ahc_update_residual(ahc
, scb
);
344 ahc_run_untagged_queues(struct ahc_softc
*ahc
)
348 for (i
= 0; i
< 16; i
++)
349 ahc_run_untagged_queue(ahc
, &ahc
->untagged_queues
[i
]);
353 ahc_run_untagged_queue(struct ahc_softc
*ahc
, struct scb_tailq
*queue
)
357 if (ahc
->untagged_queue_lock
!= 0)
360 if ((scb
= TAILQ_FIRST(queue
)) != NULL
361 && (scb
->flags
& SCB_ACTIVE
) == 0) {
362 scb
->flags
|= SCB_ACTIVE
;
363 ahc_queue_scb(ahc
, scb
);
367 /************************* Interrupt Handling *********************************/
369 ahc_handle_brkadrint(struct ahc_softc
*ahc
)
372 * We upset the sequencer :-(
373 * Lookup the error message
378 error
= ahc_inb(ahc
, ERROR
);
379 for (i
= 0; error
!= 1 && i
< num_errors
; i
++)
381 printf("%s: brkadrint, %s at seqaddr = 0x%x\n",
382 ahc_name(ahc
), ahc_hard_errors
[i
].errmesg
,
383 ahc_inb(ahc
, SEQADDR0
) |
384 (ahc_inb(ahc
, SEQADDR1
) << 8));
386 ahc_dump_card_state(ahc
);
388 /* Tell everyone that this HBA is no longer available */
389 ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, ALL_CHANNELS
,
390 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, ROLE_UNKNOWN
,
393 /* Disable all interrupt sources by resetting the controller */
398 ahc_handle_seqint(struct ahc_softc
*ahc
, u_int intstat
)
401 struct ahc_devinfo devinfo
;
403 ahc_fetch_devinfo(ahc
, &devinfo
);
406 * Clear the upper byte that holds SEQINT status
407 * codes and clear the SEQINT bit. We will unpause
408 * the sequencer, if appropriate, after servicing
411 ahc_outb(ahc
, CLRINT
, CLRSEQINT
);
412 switch (intstat
& SEQINT_MASK
) {
416 struct hardware_scb
*hscb
;
419 * Set the default return value to 0 (don't
420 * send sense). The sense code will change
423 ahc_outb(ahc
, RETURN_1
, 0);
426 * The sequencer will notify us when a command
427 * has an error that would be of interest to
428 * the kernel. This allows us to leave the sequencer
429 * running in the common case of command completes
430 * without error. The sequencer will already have
431 * dma'd the SCB back up to us, so we can reference
432 * the in kernel copy directly.
434 scb_index
= ahc_inb(ahc
, SCB_TAG
);
435 scb
= ahc_lookup_scb(ahc
, scb_index
);
437 ahc_print_devinfo(ahc
, &devinfo
);
438 printf("ahc_intr - referenced scb "
439 "not valid during seqint 0x%x scb(%d)\n",
441 ahc_dump_card_state(ahc
);
448 /* Don't want to clobber the original sense code */
449 if ((scb
->flags
& SCB_SENSE
) != 0) {
451 * Clear the SCB_SENSE Flag and have
452 * the sequencer do a normal command
455 scb
->flags
&= ~SCB_SENSE
;
456 ahc_set_transaction_status(scb
, CAM_AUTOSENSE_FAIL
);
459 ahc_set_transaction_status(scb
, CAM_SCSI_STATUS_ERROR
);
460 /* Freeze the queue until the client sees the error. */
461 ahc_freeze_devq(ahc
, scb
);
463 ahc_set_scsi_status(scb
, hscb
->shared_data
.status
.scsi_status
);
464 switch (hscb
->shared_data
.status
.scsi_status
) {
466 printf("%s: Interrupted for staus of 0???\n",
469 case SCSI_STATUS_CMD_TERMINATED
:
470 case SCSI_STATUS_CHECK_COND
:
472 struct ahc_dma_seg
*sg
;
473 struct scsi_sense
*sc
;
474 struct ahc_initiator_tinfo
*targ_info
;
475 struct ahc_tmode_tstate
*tstate
;
476 struct ahc_transinfo
*tinfo
;
478 if (ahc_debug
& AHC_SHOW_SENSE
) {
479 ahc_print_path(ahc
, scb
);
480 printf("SCB %d: requests Check Status\n",
485 if (ahc_perform_autosense(scb
) == 0)
488 targ_info
= ahc_fetch_transinfo(ahc
,
493 tinfo
= &targ_info
->curr
;
495 sc
= (struct scsi_sense
*)(&hscb
->shared_data
.cdb
);
497 * Save off the residual if there is one.
499 ahc_update_residual(ahc
, scb
);
501 if (ahc_debug
& AHC_SHOW_SENSE
) {
502 ahc_print_path(ahc
, scb
);
503 printf("Sending Sense\n");
506 sg
->addr
= ahc_get_sense_bufaddr(ahc
, scb
);
507 sg
->len
= ahc_get_sense_bufsize(ahc
, scb
);
508 sg
->len
|= AHC_DMA_LAST_SEG
;
510 /* Fixup byte order */
511 sg
->addr
= ahc_htole32(sg
->addr
);
512 sg
->len
= ahc_htole32(sg
->len
);
514 sc
->opcode
= REQUEST_SENSE
;
516 if (tinfo
->protocol_version
<= SCSI_REV_2
517 && SCB_GET_LUN(scb
) < 8)
518 sc
->byte2
= SCB_GET_LUN(scb
) << 5;
521 sc
->length
= sg
->len
;
525 * We can't allow the target to disconnect.
526 * This will be an untagged transaction and
527 * having the target disconnect will make this
528 * transaction indestinguishable from outstanding
529 * tagged transactions.
534 * This request sense could be because the
535 * the device lost power or in some other
536 * way has lost our transfer negotiations.
537 * Renegotiate if appropriate. Unit attention
538 * errors will be reported before any data
541 if (ahc_get_residual(scb
)
542 == ahc_get_transfer_length(scb
)) {
543 ahc_update_neg_request(ahc
, &devinfo
,
545 AHC_NEG_IF_NON_ASYNC
);
547 if (tstate
->auto_negotiate
& devinfo
.target_mask
) {
548 hscb
->control
|= MK_MESSAGE
;
549 scb
->flags
&= ~SCB_NEGOTIATE
;
550 scb
->flags
|= SCB_AUTO_NEGOTIATE
;
552 hscb
->cdb_len
= sizeof(*sc
);
553 hscb
->dataptr
= sg
->addr
;
554 hscb
->datacnt
= sg
->len
;
555 hscb
->sgptr
= scb
->sg_list_phys
| SG_FULL_RESID
;
556 hscb
->sgptr
= ahc_htole32(hscb
->sgptr
);
558 scb
->flags
|= SCB_SENSE
;
559 ahc_qinfifo_requeue_tail(ahc
, scb
);
560 ahc_outb(ahc
, RETURN_1
, SEND_SENSE
);
562 * Ensure we have enough time to actually
563 * retrieve the sense.
565 ahc_scb_timer_reset(scb
, 5 * 1000000);
575 /* Ensure we don't leave the selection hardware on */
576 ahc_outb(ahc
, SCSISEQ
,
577 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
579 printf("%s:%c:%d: no active SCB for reconnecting "
580 "target - issuing BUS DEVICE RESET\n",
581 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
);
582 printf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
583 "ARG_1 == 0x%x ACCUM = 0x%x\n",
584 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
585 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
586 printf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
588 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
589 ahc_index_busy_tcl(ahc
,
590 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
591 ahc_inb(ahc
, SAVED_LUN
))),
592 ahc_inb(ahc
, SINDEX
));
593 printf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
594 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
595 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
596 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
597 ahc_inb(ahc
, SCB_CONTROL
));
598 printf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
599 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
600 printf("SXFRCTL0 == 0x%x\n", ahc_inb(ahc
, SXFRCTL0
));
601 printf("SEQCTL == 0x%x\n", ahc_inb(ahc
, SEQCTL
));
602 ahc_dump_card_state(ahc
);
603 ahc
->msgout_buf
[0] = MSG_BUS_DEV_RESET
;
605 ahc
->msgout_index
= 0;
606 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
607 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
613 u_int rejbyte
= ahc_inb(ahc
, ACCUM
);
614 printf("%s:%c:%d: Warning - unknown message received from "
615 "target (0x%x). Rejecting\n",
616 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
, rejbyte
);
619 case PROTO_VIOLATION
:
621 ahc_handle_proto_violation(ahc
);
625 ahc_handle_ign_wide_residue(ahc
, &devinfo
);
628 ahc_reinitialize_dataptrs(ahc
);
634 lastphase
= ahc_inb(ahc
, LASTPHASE
);
635 printf("%s:%c:%d: unknown scsi bus phase %x, "
636 "lastphase = 0x%x. Attempting to continue\n",
637 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
638 lastphase
, ahc_inb(ahc
, SCSISIGI
));
645 lastphase
= ahc_inb(ahc
, LASTPHASE
);
646 printf("%s:%c:%d: Missed busfree. "
647 "Lastphase = 0x%x, Curphase = 0x%x\n",
648 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
649 lastphase
, ahc_inb(ahc
, SCSISIGI
));
656 * The sequencer has encountered a message phase
657 * that requires host assistance for completion.
658 * While handling the message phase(s), we will be
659 * notified by the sequencer after each byte is
660 * transfered so we can track bus phase changes.
662 * If this is the first time we've seen a HOST_MSG_LOOP
663 * interrupt, initialize the state of the host message
666 if (ahc
->msg_type
== MSG_TYPE_NONE
) {
671 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
672 if (bus_phase
!= P_MESGIN
673 && bus_phase
!= P_MESGOUT
) {
674 printf("ahc_intr: HOST_MSG_LOOP bad "
678 * Probably transitioned to bus free before
679 * we got here. Just punt the message.
681 ahc_clear_intstat(ahc
);
686 scb_index
= ahc_inb(ahc
, SCB_TAG
);
687 scb
= ahc_lookup_scb(ahc
, scb_index
);
688 if (devinfo
.role
== ROLE_INITIATOR
) {
690 panic("HOST_MSG_LOOP with "
691 "invalid SCB %x\n", scb_index
);
693 if (bus_phase
== P_MESGOUT
)
694 ahc_setup_initiator_msgout(ahc
,
699 MSG_TYPE_INITIATOR_MSGIN
;
700 ahc
->msgin_index
= 0;
703 #ifdef AHC_TARGET_MODE
705 if (bus_phase
== P_MESGOUT
) {
707 MSG_TYPE_TARGET_MSGOUT
;
708 ahc
->msgin_index
= 0;
711 ahc_setup_target_msgin(ahc
,
718 ahc_handle_message_phase(ahc
);
724 * If we've cleared the parity error interrupt
725 * but the sequencer still believes that SCSIPERR
726 * is true, it must be that the parity error is
727 * for the currently presented byte on the bus,
728 * and we are not in a phase (data-in) where we will
729 * eventually ack this byte. Ack the byte and
730 * throw it away in the hope that the target will
731 * take us to message out to deliver the appropriate
734 if ((intstat
& SCSIINT
) == 0
735 && (ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0) {
737 if ((ahc
->features
& AHC_DT
) == 0) {
741 * The hardware will only let you ack bytes
742 * if the expected phase in SCSISIGO matches
743 * the current phase. Make sure this is
744 * currently the case.
746 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
747 ahc_outb(ahc
, LASTPHASE
, curphase
);
748 ahc_outb(ahc
, SCSISIGO
, curphase
);
750 if ((ahc_inb(ahc
, SCSISIGI
) & (CDI
|MSGI
)) == 0) {
754 * In a data phase. Faster to bitbucket
755 * the data than to individually ack each
756 * byte. This is also the only strategy
757 * that will work with AUTOACK enabled.
759 ahc_outb(ahc
, SXFRCTL1
,
760 ahc_inb(ahc
, SXFRCTL1
) | BITBUCKET
);
762 while (--wait
!= 0) {
763 if ((ahc_inb(ahc
, SCSISIGI
)
768 ahc_outb(ahc
, SXFRCTL1
,
769 ahc_inb(ahc
, SXFRCTL1
) & ~BITBUCKET
);
774 ahc_print_devinfo(ahc
, &devinfo
);
775 printf("Unable to clear parity error. "
777 scb_index
= ahc_inb(ahc
, SCB_TAG
);
778 scb
= ahc_lookup_scb(ahc
, scb_index
);
780 ahc_set_transaction_status(scb
,
782 ahc_reset_channel(ahc
, devinfo
.channel
,
786 ahc_inb(ahc
, SCSIDATL
);
794 * When the sequencer detects an overrun, it
795 * places the controller in "BITBUCKET" mode
796 * and allows the target to complete its transfer.
797 * Unfortunately, none of the counters get updated
798 * when the controller is in this mode, so we have
799 * no way of knowing how large the overrun was.
801 u_int scbindex
= ahc_inb(ahc
, SCB_TAG
);
802 u_int lastphase
= ahc_inb(ahc
, LASTPHASE
);
805 scb
= ahc_lookup_scb(ahc
, scbindex
);
806 for (i
= 0; i
< num_phases
; i
++) {
807 if (lastphase
== ahc_phase_table
[i
].phase
)
810 ahc_print_path(ahc
, scb
);
811 printf("data overrun detected %s."
813 ahc_phase_table
[i
].phasemsg
,
815 ahc_print_path(ahc
, scb
);
816 printf("%s seen Data Phase. Length = %ld. NumSGs = %d.\n",
817 ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
? "Have" : "Haven't",
818 ahc_get_transfer_length(scb
), scb
->sg_count
);
819 if (scb
->sg_count
> 0) {
820 for (i
= 0; i
< scb
->sg_count
; i
++) {
822 printf("sg[%d] - Addr 0x%x%x : Length %d\n",
824 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
825 & SG_HIGH_ADDR_BITS
),
826 ahc_le32toh(scb
->sg_list
[i
].addr
),
827 ahc_le32toh(scb
->sg_list
[i
].len
)
832 * Set this and it will take effect when the
833 * target does a command complete.
835 ahc_freeze_devq(ahc
, scb
);
836 if ((scb
->flags
& SCB_SENSE
) == 0) {
837 ahc_set_transaction_status(scb
, CAM_DATA_RUN_ERR
);
839 scb
->flags
&= ~SCB_SENSE
;
840 ahc_set_transaction_status(scb
, CAM_AUTOSENSE_FAIL
);
844 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
846 * Clear the channel in case we return
847 * to data phase later.
849 ahc_outb(ahc
, SXFRCTL0
,
850 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
851 ahc_outb(ahc
, SXFRCTL0
,
852 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
854 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
857 /* Ensure HHADDR is 0 for future DMA operations. */
858 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
859 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
860 ahc_outb(ahc
, HADDR
, 0);
861 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
869 printf("%s:%c:%d:%d: Attempt to issue message failed\n",
870 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
872 scbindex
= ahc_inb(ahc
, SCB_TAG
);
873 scb
= ahc_lookup_scb(ahc
, scbindex
);
875 && (scb
->flags
& SCB_RECOVERY_SCB
) != 0)
877 * Ensure that we didn't put a second instance of this
878 * SCB into the QINFIFO.
880 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
881 SCB_GET_CHANNEL(ahc
, scb
),
882 SCB_GET_LUN(scb
), scb
->hscb
->tag
,
883 ROLE_INITIATOR
, /*status*/0,
889 printf("%s: No free or disconnected SCBs\n", ahc_name(ahc
));
890 ahc_dump_card_state(ahc
);
898 scbptr
= ahc_inb(ahc
, SCBPTR
);
899 printf("Bogus TAG after DMA. SCBPTR %d, tag %d, our tag %d\n",
900 scbptr
, ahc_inb(ahc
, ARG_1
),
901 ahc
->scb_data
->hscbs
[scbptr
].tag
);
902 ahc_dump_card_state(ahc
);
908 printf("%s: BTT calculation out of range\n", ahc_name(ahc
));
909 printf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
910 "ARG_1 == 0x%x ACCUM = 0x%x\n",
911 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
912 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
913 printf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
914 "SINDEX == 0x%x\n, A == 0x%x\n",
915 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
916 ahc_index_busy_tcl(ahc
,
917 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
918 ahc_inb(ahc
, SAVED_LUN
))),
919 ahc_inb(ahc
, SINDEX
),
920 ahc_inb(ahc
, ACCUM
));
921 printf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
922 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
923 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
924 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
925 ahc_inb(ahc
, SCB_CONTROL
));
926 printf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
927 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
928 ahc_dump_card_state(ahc
);
933 printf("ahc_intr: seqint, "
934 "intstat == 0x%x, scsisigi = 0x%x\n",
935 intstat
, ahc_inb(ahc
, SCSISIGI
));
940 * The sequencer is paused immediately on
941 * a SEQINT, so we should restart it when
948 ahc_handle_scsiint(struct ahc_softc
*ahc
, u_int intstat
)
957 if ((ahc
->features
& AHC_TWIN
) != 0
958 && ((ahc_inb(ahc
, SBLKCTL
) & SELBUSB
) != 0))
962 intr_channel
= cur_channel
;
964 if ((ahc
->features
& AHC_ULTRA2
) != 0)
965 status0
= ahc_inb(ahc
, SSTAT0
) & IOERR
;
968 status
= ahc_inb(ahc
, SSTAT1
) & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
969 if (status
== 0 && status0
== 0) {
970 if ((ahc
->features
& AHC_TWIN
) != 0) {
971 /* Try the other channel */
972 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
973 status
= ahc_inb(ahc
, SSTAT1
)
974 & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
975 intr_channel
= (cur_channel
== 'A') ? 'B' : 'A';
978 printf("%s: Spurious SCSI interrupt\n", ahc_name(ahc
));
979 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
985 /* Make sure the sequencer is in a safe location. */
986 ahc_clear_critical_section(ahc
);
988 scb_index
= ahc_inb(ahc
, SCB_TAG
);
989 scb
= ahc_lookup_scb(ahc
, scb_index
);
991 && (ahc_inb(ahc
, SEQ_FLAGS
) & NOT_IDENTIFIED
) != 0)
994 if ((ahc
->features
& AHC_ULTRA2
) != 0
995 && (status0
& IOERR
) != 0) {
998 now_lvd
= ahc_inb(ahc
, SBLKCTL
) & ENAB40
;
999 printf("%s: Transceiver State Has Changed to %s mode\n",
1000 ahc_name(ahc
), now_lvd
? "LVD" : "SE");
1001 ahc_outb(ahc
, CLRSINT0
, CLRIOERR
);
1003 * When transitioning to SE mode, the reset line
1004 * glitches, triggering an arbitration bug in some
1005 * Ultra2 controllers. This bug is cleared when we
1006 * assert the reset line. Since a reset glitch has
1007 * already occurred with this transition and a
1008 * transceiver state change is handled just like
1009 * a bus reset anyway, asserting the reset line
1010 * ourselves is safe.
1012 ahc_reset_channel(ahc
, intr_channel
,
1013 /*Initiate Reset*/now_lvd
== 0);
1014 } else if ((status
& SCSIRSTI
) != 0) {
1015 printf("%s: Someone reset channel %c\n",
1016 ahc_name(ahc
), intr_channel
);
1017 if (intr_channel
!= cur_channel
)
1018 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
1019 ahc_reset_channel(ahc
, intr_channel
, /*Initiate Reset*/FALSE
);
1020 } else if ((status
& SCSIPERR
) != 0) {
1022 * Determine the bus phase and queue an appropriate message.
1023 * SCSIPERR is latched true as soon as a parity error
1024 * occurs. If the sequencer acked the transfer that
1025 * caused the parity error and the currently presented
1026 * transfer on the bus has correct parity, SCSIPERR will
1027 * be cleared by CLRSCSIPERR. Use this to determine if
1028 * we should look at the last phase the sequencer recorded,
1029 * or the current phase presented on the bus.
1031 struct ahc_devinfo devinfo
;
1041 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1042 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
1043 sstat2
= ahc_inb(ahc
, SSTAT2
);
1044 ahc_outb(ahc
, CLRSINT1
, CLRSCSIPERR
);
1046 * For all phases save DATA, the sequencer won't
1047 * automatically ack a byte that has a parity error
1048 * in it. So the only way that the current phase
1049 * could be 'data-in' is if the parity error is for
1050 * an already acked byte in the data phase. During
1051 * synchronous data-in transfers, we may actually
1052 * ack bytes before latching the current phase in
1053 * LASTPHASE, leading to the discrepancy between
1054 * curphase and lastphase.
1056 if ((ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0
1057 || curphase
== P_DATAIN
|| curphase
== P_DATAIN_DT
)
1058 errorphase
= curphase
;
1060 errorphase
= lastphase
;
1062 for (i
= 0; i
< num_phases
; i
++) {
1063 if (errorphase
== ahc_phase_table
[i
].phase
)
1066 mesg_out
= ahc_phase_table
[i
].mesg_out
;
1069 if (SCB_IS_SILENT(scb
))
1072 ahc_print_path(ahc
, scb
);
1073 scb
->flags
|= SCB_TRANSMISSION_ERROR
;
1075 printf("%s:%c:%d: ", ahc_name(ahc
), intr_channel
,
1076 SCSIID_TARGET(ahc
, ahc_inb(ahc
, SAVED_SCSIID
)));
1077 scsirate
= ahc_inb(ahc
, SCSIRATE
);
1078 if (silent
== FALSE
) {
1079 printf("parity error detected %s. "
1080 "SEQADDR(0x%x) SCSIRATE(0x%x)\n",
1081 ahc_phase_table
[i
].phasemsg
,
1082 ahc_inw(ahc
, SEQADDR0
),
1084 if ((ahc
->features
& AHC_DT
) != 0) {
1085 if ((sstat2
& CRCVALERR
) != 0)
1086 printf("\tCRC Value Mismatch\n");
1087 if ((sstat2
& CRCENDERR
) != 0)
1088 printf("\tNo terminal CRC packet "
1090 if ((sstat2
& CRCREQERR
) != 0)
1091 printf("\tIllegal CRC packet "
1093 if ((sstat2
& DUAL_EDGE_ERR
) != 0)
1094 printf("\tUnexpected %sDT Data Phase\n",
1095 (scsirate
& SINGLE_EDGE
)
1100 if ((ahc
->features
& AHC_DT
) != 0
1101 && (sstat2
& DUAL_EDGE_ERR
) != 0) {
1103 * This error applies regardless of
1104 * data direction, so ignore the value
1105 * in the phase table.
1107 mesg_out
= MSG_INITIATOR_DET_ERR
;
1111 * We've set the hardware to assert ATN if we
1112 * get a parity error on "in" phases, so all we
1113 * need to do is stuff the message buffer with
1114 * the appropriate message. "In" phases have set
1115 * mesg_out to something other than MSG_NOP.
1117 if (mesg_out
!= MSG_NOOP
) {
1118 if (ahc
->msg_type
!= MSG_TYPE_NONE
)
1119 ahc
->send_msg_perror
= TRUE
;
1121 ahc_outb(ahc
, MSG_OUT
, mesg_out
);
1124 * Force a renegotiation with this target just in
1125 * case we are out of sync for some external reason
1126 * unknown (or unreported) by the target.
1128 ahc_fetch_devinfo(ahc
, &devinfo
);
1129 ahc_force_renegotiation(ahc
, &devinfo
);
1131 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1133 } else if ((status
& SELTO
) != 0) {
1136 /* Stop the selection */
1137 ahc_outb(ahc
, SCSISEQ
, 0);
1139 /* No more pending messages */
1140 ahc_clear_msg_state(ahc
);
1142 /* Clear interrupt state */
1143 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1144 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRBUSFREE
|CLRSCSIPERR
);
1147 * Although the driver does not care about the
1148 * 'Selection in Progress' status bit, the busy
1149 * LED does. SELINGO is only cleared by a successful
1150 * selection, so we must manually clear it to insure
1151 * the LED turns off just in case no future successful
1152 * selections occur (e.g. no devices on the bus).
1154 ahc_outb(ahc
, CLRSINT0
, CLRSELINGO
);
1156 scbptr
= ahc_inb(ahc
, WAITING_SCBH
);
1157 ahc_outb(ahc
, SCBPTR
, scbptr
);
1158 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1160 scb
= ahc_lookup_scb(ahc
, scb_index
);
1162 printf("%s: ahc_intr - referenced scb not "
1163 "valid during SELTO scb(%d, %d)\n",
1164 ahc_name(ahc
), scbptr
, scb_index
);
1165 ahc_dump_card_state(ahc
);
1167 struct ahc_devinfo devinfo
;
1169 if ((ahc_debug
& AHC_SHOW_SELTO
) != 0) {
1170 ahc_print_path(ahc
, scb
);
1171 printf("Saw Selection Timeout for SCB 0x%x\n",
1176 * Force a renegotiation with this target just in
1177 * case the cable was pulled and will later be
1178 * re-attached. The target may forget its negotiation
1179 * settings with us should it attempt to reselect
1180 * during the interruption. The target will not issue
1181 * a unit attention in this case, so we must always
1184 ahc_scb_devinfo(ahc
, &devinfo
, scb
);
1185 ahc_force_renegotiation(ahc
, &devinfo
);
1186 ahc_set_transaction_status(scb
, CAM_SEL_TIMEOUT
);
1187 ahc_freeze_devq(ahc
, scb
);
1189 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1191 } else if ((status
& BUSFREE
) != 0
1192 && (ahc_inb(ahc
, SIMODE1
) & ENBUSFREE
) != 0) {
1193 struct ahc_devinfo devinfo
;
1198 u_int initiator_role_id
;
1203 * Clear our selection hardware as soon as possible.
1204 * We may have an entry in the waiting Q for this target,
1205 * that is affected by this busfree and we don't want to
1206 * go about selecting the target while we handle the event.
1208 ahc_outb(ahc
, SCSISEQ
,
1209 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
1212 * Disable busfree interrupts and clear the busfree
1213 * interrupt status. We do this here so that several
1214 * bus transactions occur prior to clearing the SCSIINT
1215 * latch. It can take a bit for the clearing to take effect.
1217 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1218 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
|CLRSCSIPERR
);
1221 * Look at what phase we were last in.
1222 * If its message out, chances are pretty good
1223 * that the busfree was in response to one of
1224 * our abort requests.
1226 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1227 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
1228 saved_lun
= ahc_inb(ahc
, SAVED_LUN
);
1229 target
= SCSIID_TARGET(ahc
, saved_scsiid
);
1230 initiator_role_id
= SCSIID_OUR_ID(saved_scsiid
);
1231 channel
= SCSIID_CHANNEL(ahc
, saved_scsiid
);
1232 ahc_compile_devinfo(&devinfo
, initiator_role_id
,
1233 target
, saved_lun
, channel
, ROLE_INITIATOR
);
1236 if (lastphase
== P_MESGOUT
) {
1239 tag
= SCB_LIST_NULL
;
1240 if (ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT_TAG
, TRUE
)
1241 || ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT
, TRUE
)) {
1242 if (ahc
->msgout_buf
[ahc
->msgout_index
- 1]
1244 tag
= scb
->hscb
->tag
;
1245 ahc_print_path(ahc
, scb
);
1246 printf("SCB %d - Abort%s Completed.\n",
1247 scb
->hscb
->tag
, tag
== SCB_LIST_NULL
?
1249 ahc_abort_scbs(ahc
, target
, channel
,
1254 } else if (ahc_sent_msg(ahc
, AHCMSG_1B
,
1255 MSG_BUS_DEV_RESET
, TRUE
)) {
1256 #if defined(__DragonFly__) || defined(__FreeBSD__)
1258 * Don't mark the user's request for this BDR
1259 * as completing with CAM_BDR_SENT. CAM3
1260 * specifies CAM_REQ_CMP.
1263 && scb
->io_ctx
->ccb_h
.func_code
== XPT_RESET_DEV
1264 && ahc_match_scb(ahc
, scb
, target
, channel
,
1268 ahc_set_transaction_status(scb
, CAM_REQ_CMP
);
1271 ahc_compile_devinfo(&devinfo
,
1277 ahc_handle_devreset(ahc
, &devinfo
,
1280 /*verbose_level*/0);
1282 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1283 MSG_EXT_PPR
, FALSE
)) {
1284 struct ahc_initiator_tinfo
*tinfo
;
1285 struct ahc_tmode_tstate
*tstate
;
1288 * PPR Rejected. Try non-ppr negotiation
1289 * and retry command.
1291 tinfo
= ahc_fetch_transinfo(ahc
,
1296 tinfo
->curr
.transport_version
= 2;
1297 tinfo
->goal
.transport_version
= 2;
1298 tinfo
->goal
.ppr_options
= 0;
1299 ahc_qinfifo_requeue_tail(ahc
, scb
);
1301 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1302 MSG_EXT_WDTR
, FALSE
)) {
1304 * Negotiation Rejected. Go-narrow and
1307 ahc_set_width(ahc
, &devinfo
,
1308 MSG_EXT_WDTR_BUS_8_BIT
,
1309 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1311 ahc_qinfifo_requeue_tail(ahc
, scb
);
1313 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1314 MSG_EXT_SDTR
, FALSE
)) {
1316 * Negotiation Rejected. Go-async and
1319 ahc_set_syncrate(ahc
, &devinfo
,
1321 /*period*/0, /*offset*/0,
1323 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1325 ahc_qinfifo_requeue_tail(ahc
, scb
);
1329 if (printerror
!= 0) {
1335 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
1336 tag
= scb
->hscb
->tag
;
1338 tag
= SCB_LIST_NULL
;
1339 ahc_print_path(ahc
, scb
);
1340 ahc_abort_scbs(ahc
, target
, channel
,
1341 SCB_GET_LUN(scb
), tag
,
1346 * We had not fully identified this connection,
1347 * so we cannot abort anything.
1349 printf("%s: ", ahc_name(ahc
));
1351 for (i
= 0; i
< num_phases
; i
++) {
1352 if (lastphase
== ahc_phase_table
[i
].phase
)
1355 if (lastphase
!= P_BUSFREE
) {
1357 * Renegotiate with this device at the
1358 * next oportunity just in case this busfree
1359 * is due to a negotiation mismatch with the
1362 ahc_force_renegotiation(ahc
, &devinfo
);
1364 printf("Unexpected busfree %s\n"
1365 "SEQADDR == 0x%x\n",
1366 ahc_phase_table
[i
].phasemsg
,
1367 ahc_inb(ahc
, SEQADDR0
)
1368 | (ahc_inb(ahc
, SEQADDR1
) << 8));
1370 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1373 printf("%s: Missing case in ahc_handle_scsiint. status = %x\n",
1374 ahc_name(ahc
), status
);
1375 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1380 * Force renegotiation to occur the next time we initiate
1381 * a command to the current device.
1384 ahc_force_renegotiation(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
1386 struct ahc_initiator_tinfo
*targ_info
;
1387 struct ahc_tmode_tstate
*tstate
;
1389 targ_info
= ahc_fetch_transinfo(ahc
,
1391 devinfo
->our_scsiid
,
1394 ahc_update_neg_request(ahc
, devinfo
, tstate
,
1395 targ_info
, AHC_NEG_IF_NON_ASYNC
);
1398 #define AHC_MAX_STEPS 2000
1400 ahc_clear_critical_section(struct ahc_softc
*ahc
)
1407 if (ahc
->num_critical_sections
== 0)
1419 seqaddr
= ahc_inb(ahc
, SEQADDR0
)
1420 | (ahc_inb(ahc
, SEQADDR1
) << 8);
1423 * Seqaddr represents the next instruction to execute,
1424 * so we are really executing the instruction just
1429 cs
= ahc
->critical_sections
;
1430 for (i
= 0; i
< ahc
->num_critical_sections
; i
++, cs
++) {
1432 if (cs
->begin
< seqaddr
&& cs
->end
>= seqaddr
)
1436 if (i
== ahc
->num_critical_sections
)
1439 if (steps
> AHC_MAX_STEPS
) {
1440 printf("%s: Infinite loop in critical section\n",
1442 ahc_dump_card_state(ahc
);
1443 panic("critical section loop");
1447 if (stepping
== FALSE
) {
1450 * Disable all interrupt sources so that the
1451 * sequencer will not be stuck by a pausing
1452 * interrupt condition while we attempt to
1453 * leave a critical section.
1455 simode0
= ahc_inb(ahc
, SIMODE0
);
1456 ahc_outb(ahc
, SIMODE0
, 0);
1457 simode1
= ahc_inb(ahc
, SIMODE1
);
1458 if ((ahc
->features
& AHC_DT
) != 0)
1460 * On DT class controllers, we
1461 * use the enhanced busfree logic.
1462 * Unfortunately we cannot re-enable
1463 * busfree detection within the
1464 * current connection, so we must
1465 * leave it on while single stepping.
1467 ahc_outb(ahc
, SIMODE1
, simode1
& ENBUSFREE
);
1469 ahc_outb(ahc
, SIMODE1
, 0);
1470 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1471 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
| STEP
);
1474 if ((ahc
->features
& AHC_DT
) != 0) {
1475 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
);
1476 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1478 ahc_outb(ahc
, HCNTRL
, ahc
->unpause
);
1479 while (!ahc_is_paused(ahc
))
1483 ahc_outb(ahc
, SIMODE0
, simode0
);
1484 ahc_outb(ahc
, SIMODE1
, simode1
);
1485 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
);
1490 * Clear any pending interrupt status.
1493 ahc_clear_intstat(struct ahc_softc
*ahc
)
1495 /* Clear any interrupt conditions this may have caused */
1496 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRATNO
|CLRSCSIRSTI
1497 |CLRBUSFREE
|CLRSCSIPERR
|CLRPHASECHG
|
1499 ahc_flush_device_writes(ahc
);
1500 ahc_outb(ahc
, CLRSINT0
, CLRSELDO
|CLRSELDI
|CLRSELINGO
);
1501 ahc_flush_device_writes(ahc
);
1502 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1503 ahc_flush_device_writes(ahc
);
1506 /**************************** Debugging Routines ******************************/
1508 uint32_t ahc_debug
= AHC_DEBUG_OPTS
;
1512 ahc_print_scb(struct scb
*scb
)
1516 struct hardware_scb
*hscb
= scb
->hscb
;
1518 printf("scb:%p control:0x%x scsiid:0x%x lun:%d cdb_len:%d\n",
1524 printf("Shared Data: ");
1525 for (i
= 0; i
< sizeof(hscb
->shared_data
.cdb
); i
++)
1526 printf("%#02x", hscb
->shared_data
.cdb
[i
]);
1527 printf(" dataptr:%#x datacnt:%#x sgptr:%#x tag:%#x\n",
1528 ahc_le32toh(hscb
->dataptr
),
1529 ahc_le32toh(hscb
->datacnt
),
1530 ahc_le32toh(hscb
->sgptr
),
1532 if (scb
->sg_count
> 0) {
1533 for (i
= 0; i
< scb
->sg_count
; i
++) {
1534 printf("sg[%d] - Addr 0x%x%x : Length %d\n",
1536 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
1537 & SG_HIGH_ADDR_BITS
),
1538 ahc_le32toh(scb
->sg_list
[i
].addr
),
1539 ahc_le32toh(scb
->sg_list
[i
].len
));
1544 /************************* Transfer Negotiation *******************************/
1546 * Allocate per target mode instance (ID we respond to as a target)
1547 * transfer negotiation data structures.
1549 static struct ahc_tmode_tstate
*
1550 ahc_alloc_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
)
1552 struct ahc_tmode_tstate
*master_tstate
;
1553 struct ahc_tmode_tstate
*tstate
;
1556 master_tstate
= ahc
->enabled_targets
[ahc
->our_id
];
1557 if (channel
== 'B') {
1559 master_tstate
= ahc
->enabled_targets
[ahc
->our_id_b
+ 8];
1561 if (ahc
->enabled_targets
[scsi_id
] != NULL
1562 && ahc
->enabled_targets
[scsi_id
] != master_tstate
)
1563 panic("%s: ahc_alloc_tstate - Target already allocated",
1565 tstate
= kmalloc(sizeof(*tstate
), M_DEVBUF
, M_INTWAIT
);
1568 * If we have allocated a master tstate, copy user settings from
1569 * the master tstate (taken from SRAM or the EEPROM) for this
1570 * channel, but reset our current and goal settings to async/narrow
1571 * until an initiator talks to us.
1573 if (master_tstate
!= NULL
) {
1574 memcpy(tstate
, master_tstate
, sizeof(*tstate
));
1575 memset(tstate
->enabled_luns
, 0, sizeof(tstate
->enabled_luns
));
1576 tstate
->ultraenb
= 0;
1577 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
1578 memset(&tstate
->transinfo
[i
].curr
, 0,
1579 sizeof(tstate
->transinfo
[i
].curr
));
1580 memset(&tstate
->transinfo
[i
].goal
, 0,
1581 sizeof(tstate
->transinfo
[i
].goal
));
1584 memset(tstate
, 0, sizeof(*tstate
));
1585 ahc
->enabled_targets
[scsi_id
] = tstate
;
1589 #ifdef AHC_TARGET_MODE
1591 * Free per target mode instance (ID we respond to as a target)
1592 * transfer negotiation data structures.
1595 ahc_free_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
, int force
)
1597 struct ahc_tmode_tstate
*tstate
;
1600 * Don't clean up our "master" tstate.
1601 * It has our default user settings.
1603 if (((channel
== 'B' && scsi_id
== ahc
->our_id_b
)
1604 || (channel
== 'A' && scsi_id
== ahc
->our_id
))
1610 tstate
= ahc
->enabled_targets
[scsi_id
];
1612 kfree(tstate
, M_DEVBUF
);
1613 ahc
->enabled_targets
[scsi_id
] = NULL
;
1618 * Called when we have an active connection to a target on the bus,
1619 * this function finds the nearest syncrate to the input period limited
1620 * by the capabilities of the bus connectivity of and sync settings for
1623 struct ahc_syncrate
*
1624 ahc_devlimited_syncrate(struct ahc_softc
*ahc
,
1625 struct ahc_initiator_tinfo
*tinfo
,
1626 u_int
*period
, u_int
*ppr_options
, role_t role
)
1628 struct ahc_transinfo
*transinfo
;
1631 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1632 if ((ahc_inb(ahc
, SBLKCTL
) & ENAB40
) != 0
1633 && (ahc_inb(ahc
, SSTAT2
) & EXP_ACTIVE
) == 0) {
1634 maxsync
= AHC_SYNCRATE_DT
;
1636 maxsync
= AHC_SYNCRATE_ULTRA
;
1637 /* Can't do DT on an SE bus */
1638 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1640 } else if ((ahc
->features
& AHC_ULTRA
) != 0) {
1641 maxsync
= AHC_SYNCRATE_ULTRA
;
1643 maxsync
= AHC_SYNCRATE_FAST
;
1646 * Never allow a value higher than our current goal
1647 * period otherwise we may allow a target initiated
1648 * negotiation to go above the limit as set by the
1649 * user. In the case of an initiator initiated
1650 * sync negotiation, we limit based on the user
1651 * setting. This allows the system to still accept
1652 * incoming negotiations even if target initiated
1653 * negotiation is not performed.
1655 if (role
== ROLE_TARGET
)
1656 transinfo
= &tinfo
->user
;
1658 transinfo
= &tinfo
->goal
;
1659 *ppr_options
&= transinfo
->ppr_options
;
1660 if (transinfo
->width
== MSG_EXT_WDTR_BUS_8_BIT
) {
1661 maxsync
= MAX(maxsync
, AHC_SYNCRATE_ULTRA2
);
1662 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1664 if (transinfo
->period
== 0) {
1669 *period
= MAX(*period
, transinfo
->period
);
1670 return (ahc_find_syncrate(ahc
, period
, ppr_options
, maxsync
));
1674 * Look up the valid period to SCSIRATE conversion in our table.
1675 * Return the period and offset that should be sent to the target
1676 * if this was the beginning of an SDTR.
1678 struct ahc_syncrate
*
1679 ahc_find_syncrate(struct ahc_softc
*ahc
, u_int
*period
,
1680 u_int
*ppr_options
, u_int maxsync
)
1682 struct ahc_syncrate
*syncrate
;
1684 if ((ahc
->features
& AHC_DT
) == 0)
1685 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1687 /* Skip all DT only entries if DT is not available */
1688 if ((*ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
1689 && maxsync
< AHC_SYNCRATE_ULTRA2
)
1690 maxsync
= AHC_SYNCRATE_ULTRA2
;
1692 for (syncrate
= &ahc_syncrates
[maxsync
];
1693 syncrate
->rate
!= NULL
;
1697 * The Ultra2 table doesn't go as low
1698 * as for the Fast/Ultra cards.
1700 if ((ahc
->features
& AHC_ULTRA2
) != 0
1701 && (syncrate
->sxfr_u2
== 0))
1704 if (*period
<= syncrate
->period
) {
1706 * When responding to a target that requests
1707 * sync, the requested rate may fall between
1708 * two rates that we can output, but still be
1709 * a rate that we can receive. Because of this,
1710 * we want to respond to the target with
1711 * the same rate that it sent to us even
1712 * if the period we use to send data to it
1713 * is lower. Only lower the response period
1716 if (syncrate
== &ahc_syncrates
[maxsync
])
1717 *period
= syncrate
->period
;
1720 * At some speeds, we only support
1723 if ((syncrate
->sxfr_u2
& ST_SXFR
) != 0)
1724 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1730 || (syncrate
->rate
== NULL
)
1731 || ((ahc
->features
& AHC_ULTRA2
) != 0
1732 && (syncrate
->sxfr_u2
== 0))) {
1733 /* Use asynchronous transfers. */
1736 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1742 * Convert from an entry in our syncrate table to the SCSI equivalent
1743 * sync "period" factor.
1746 ahc_find_period(struct ahc_softc
*ahc
, u_int scsirate
, u_int maxsync
)
1748 struct ahc_syncrate
*syncrate
;
1750 if ((ahc
->features
& AHC_ULTRA2
) != 0)
1751 scsirate
&= SXFR_ULTRA2
;
1755 syncrate
= &ahc_syncrates
[maxsync
];
1756 while (syncrate
->rate
!= NULL
) {
1758 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1759 if (syncrate
->sxfr_u2
== 0)
1761 else if (scsirate
== (syncrate
->sxfr_u2
& SXFR_ULTRA2
))
1762 return (syncrate
->period
);
1763 } else if (scsirate
== (syncrate
->sxfr
& SXFR
)) {
1764 return (syncrate
->period
);
1768 return (0); /* async */
1772 * Truncate the given synchronous offset to a value the
1773 * current adapter type and syncrate are capable of.
1776 ahc_validate_offset(struct ahc_softc
*ahc
,
1777 struct ahc_initiator_tinfo
*tinfo
,
1778 struct ahc_syncrate
*syncrate
,
1779 u_int
*offset
, int wide
, role_t role
)
1783 /* Limit offset to what we can do */
1784 if (syncrate
== NULL
) {
1786 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1787 maxoffset
= MAX_OFFSET_ULTRA2
;
1790 maxoffset
= MAX_OFFSET_16BIT
;
1792 maxoffset
= MAX_OFFSET_8BIT
;
1794 *offset
= MIN(*offset
, maxoffset
);
1795 if (tinfo
!= NULL
) {
1796 if (role
== ROLE_TARGET
)
1797 *offset
= MIN(*offset
, tinfo
->user
.offset
);
1799 *offset
= MIN(*offset
, tinfo
->goal
.offset
);
1804 * Truncate the given transfer width parameter to a value the
1805 * current adapter type is capable of.
1808 ahc_validate_width(struct ahc_softc
*ahc
, struct ahc_initiator_tinfo
*tinfo
,
1809 u_int
*bus_width
, role_t role
)
1811 switch (*bus_width
) {
1813 if (ahc
->features
& AHC_WIDE
) {
1815 *bus_width
= MSG_EXT_WDTR_BUS_16_BIT
;
1819 case MSG_EXT_WDTR_BUS_8_BIT
:
1820 *bus_width
= MSG_EXT_WDTR_BUS_8_BIT
;
1823 if (tinfo
!= NULL
) {
1824 if (role
== ROLE_TARGET
)
1825 *bus_width
= MIN(tinfo
->user
.width
, *bus_width
);
1827 *bus_width
= MIN(tinfo
->goal
.width
, *bus_width
);
1832 * Update the bitmask of targets for which the controller should
1833 * negotiate with at the next convenient oportunity. This currently
1834 * means the next time we send the initial identify messages for
1835 * a new transaction.
1838 ahc_update_neg_request(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
1839 struct ahc_tmode_tstate
*tstate
,
1840 struct ahc_initiator_tinfo
*tinfo
, ahc_neg_type neg_type
)
1842 u_int auto_negotiate_orig
;
1844 auto_negotiate_orig
= tstate
->auto_negotiate
;
1845 if (neg_type
== AHC_NEG_ALWAYS
) {
1847 * Force our "current" settings to be
1848 * unknown so that unless a bus reset
1849 * occurs the need to renegotiate is
1850 * recorded persistently.
1852 if ((ahc
->features
& AHC_WIDE
) != 0)
1853 tinfo
->curr
.width
= AHC_WIDTH_UNKNOWN
;
1854 tinfo
->curr
.period
= AHC_PERIOD_UNKNOWN
;
1855 tinfo
->curr
.offset
= AHC_OFFSET_UNKNOWN
;
1857 if (tinfo
->curr
.period
!= tinfo
->goal
.period
1858 || tinfo
->curr
.width
!= tinfo
->goal
.width
1859 || tinfo
->curr
.offset
!= tinfo
->goal
.offset
1860 || tinfo
->curr
.ppr_options
!= tinfo
->goal
.ppr_options
1861 || (neg_type
== AHC_NEG_IF_NON_ASYNC
1862 && (tinfo
->goal
.offset
!= 0
1863 || tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
1864 || tinfo
->goal
.ppr_options
!= 0)))
1865 tstate
->auto_negotiate
|= devinfo
->target_mask
;
1867 tstate
->auto_negotiate
&= ~devinfo
->target_mask
;
1869 return (auto_negotiate_orig
!= tstate
->auto_negotiate
);
1873 * Update the user/goal/curr tables of synchronous negotiation
1874 * parameters as well as, in the case of a current or active update,
1875 * any data structures on the host controller. In the case of an
1876 * active update, the specified target is currently talking to us on
1877 * the bus, so the transfer parameter update must take effect
1881 ahc_set_syncrate(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
1882 struct ahc_syncrate
*syncrate
, u_int period
,
1883 u_int offset
, u_int ppr_options
, u_int type
, int paused
)
1885 struct ahc_initiator_tinfo
*tinfo
;
1886 struct ahc_tmode_tstate
*tstate
;
1893 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
1896 if (syncrate
== NULL
) {
1901 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
1902 devinfo
->target
, &tstate
);
1904 if ((type
& AHC_TRANS_USER
) != 0) {
1905 tinfo
->user
.period
= period
;
1906 tinfo
->user
.offset
= offset
;
1907 tinfo
->user
.ppr_options
= ppr_options
;
1910 if ((type
& AHC_TRANS_GOAL
) != 0) {
1911 tinfo
->goal
.period
= period
;
1912 tinfo
->goal
.offset
= offset
;
1913 tinfo
->goal
.ppr_options
= ppr_options
;
1916 old_period
= tinfo
->curr
.period
;
1917 old_offset
= tinfo
->curr
.offset
;
1918 old_ppr
= tinfo
->curr
.ppr_options
;
1920 if ((type
& AHC_TRANS_CUR
) != 0
1921 && (old_period
!= period
1922 || old_offset
!= offset
1923 || old_ppr
!= ppr_options
)) {
1927 scsirate
= tinfo
->scsirate
;
1928 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1930 scsirate
&= ~(SXFR_ULTRA2
|SINGLE_EDGE
|ENABLE_CRC
);
1931 if (syncrate
!= NULL
) {
1932 scsirate
|= syncrate
->sxfr_u2
;
1933 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) != 0)
1934 scsirate
|= ENABLE_CRC
;
1936 scsirate
|= SINGLE_EDGE
;
1940 scsirate
&= ~(SXFR
|SOFS
);
1942 * Ensure Ultra mode is set properly for
1945 tstate
->ultraenb
&= ~devinfo
->target_mask
;
1946 if (syncrate
!= NULL
) {
1947 if (syncrate
->sxfr
& ULTRA_SXFR
) {
1949 devinfo
->target_mask
;
1951 scsirate
|= syncrate
->sxfr
& SXFR
;
1952 scsirate
|= offset
& SOFS
;
1957 sxfrctl0
= ahc_inb(ahc
, SXFRCTL0
);
1958 sxfrctl0
&= ~FAST20
;
1959 if (tstate
->ultraenb
& devinfo
->target_mask
)
1961 ahc_outb(ahc
, SXFRCTL0
, sxfrctl0
);
1965 ahc_outb(ahc
, SCSIRATE
, scsirate
);
1966 if ((ahc
->features
& AHC_ULTRA2
) != 0)
1967 ahc_outb(ahc
, SCSIOFFSET
, offset
);
1970 tinfo
->scsirate
= scsirate
;
1971 tinfo
->curr
.period
= period
;
1972 tinfo
->curr
.offset
= offset
;
1973 tinfo
->curr
.ppr_options
= ppr_options
;
1975 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
1976 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
, NULL
);
1979 printf("%s: target %d synchronous at %sMHz%s, "
1980 "offset = 0x%x\n", ahc_name(ahc
),
1981 devinfo
->target
, syncrate
->rate
,
1982 (ppr_options
& MSG_EXT_PPR_DT_REQ
)
1983 ? " DT" : "", offset
);
1985 printf("%s: target %d using "
1986 "asynchronous transfers\n",
1987 ahc_name(ahc
), devinfo
->target
);
1992 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
1993 tinfo
, AHC_NEG_TO_GOAL
);
1996 ahc_update_pending_scbs(ahc
);
2000 * Update the user/goal/curr tables of wide negotiation
2001 * parameters as well as, in the case of a current or active update,
2002 * any data structures on the host controller. In the case of an
2003 * active update, the specified target is currently talking to us on
2004 * the bus, so the transfer parameter update must take effect
2008 ahc_set_width(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2009 u_int width
, u_int type
, int paused
)
2011 struct ahc_initiator_tinfo
*tinfo
;
2012 struct ahc_tmode_tstate
*tstate
;
2017 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
2019 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2020 devinfo
->target
, &tstate
);
2022 if ((type
& AHC_TRANS_USER
) != 0)
2023 tinfo
->user
.width
= width
;
2025 if ((type
& AHC_TRANS_GOAL
) != 0)
2026 tinfo
->goal
.width
= width
;
2028 oldwidth
= tinfo
->curr
.width
;
2029 if ((type
& AHC_TRANS_CUR
) != 0 && oldwidth
!= width
) {
2033 scsirate
= tinfo
->scsirate
;
2034 scsirate
&= ~WIDEXFER
;
2035 if (width
== MSG_EXT_WDTR_BUS_16_BIT
)
2036 scsirate
|= WIDEXFER
;
2038 tinfo
->scsirate
= scsirate
;
2041 ahc_outb(ahc
, SCSIRATE
, scsirate
);
2043 tinfo
->curr
.width
= width
;
2045 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2046 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
, NULL
);
2048 printf("%s: target %d using %dbit transfers\n",
2049 ahc_name(ahc
), devinfo
->target
,
2050 8 * (0x01 << width
));
2054 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
2055 tinfo
, AHC_NEG_TO_GOAL
);
2057 ahc_update_pending_scbs(ahc
);
2061 * Update the current state of tagged queuing for a given target.
2064 ahc_set_tags(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2067 ahc_platform_set_tags(ahc
, devinfo
, alg
);
2068 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2069 devinfo
->lun
, AC_TRANSFER_NEG
, &alg
);
2073 * When the transfer settings for a connection change, update any
2074 * in-transit SCBs to contain the new data so the hardware will
2075 * be set correctly during future (re)selections.
2078 ahc_update_pending_scbs(struct ahc_softc
*ahc
)
2080 struct scb
*pending_scb
;
2081 int pending_scb_count
;
2087 * Traverse the pending SCB list and ensure that all of the
2088 * SCBs there have the proper settings.
2090 pending_scb_count
= 0;
2091 LIST_FOREACH(pending_scb
, &ahc
->pending_scbs
, pending_links
) {
2092 struct ahc_devinfo devinfo
;
2093 struct hardware_scb
*pending_hscb
;
2094 struct ahc_initiator_tinfo
*tinfo
;
2095 struct ahc_tmode_tstate
*tstate
;
2097 ahc_scb_devinfo(ahc
, &devinfo
, pending_scb
);
2098 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
.channel
,
2100 devinfo
.target
, &tstate
);
2101 pending_hscb
= pending_scb
->hscb
;
2102 pending_hscb
->control
&= ~ULTRAENB
;
2103 if ((tstate
->ultraenb
& devinfo
.target_mask
) != 0)
2104 pending_hscb
->control
|= ULTRAENB
;
2105 pending_hscb
->scsirate
= tinfo
->scsirate
;
2106 pending_hscb
->scsioffset
= tinfo
->curr
.offset
;
2107 if ((tstate
->auto_negotiate
& devinfo
.target_mask
) == 0
2108 && (pending_scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0) {
2109 pending_scb
->flags
&= ~SCB_AUTO_NEGOTIATE
;
2110 pending_hscb
->control
&= ~MK_MESSAGE
;
2112 ahc_sync_scb(ahc
, pending_scb
,
2113 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
2114 pending_scb_count
++;
2117 if (pending_scb_count
== 0)
2120 if (ahc_is_paused(ahc
)) {
2127 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
2128 /* Ensure that the hscbs down on the card match the new information */
2129 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
2130 struct hardware_scb
*pending_hscb
;
2134 ahc_outb(ahc
, SCBPTR
, i
);
2135 scb_tag
= ahc_inb(ahc
, SCB_TAG
);
2136 pending_scb
= ahc_lookup_scb(ahc
, scb_tag
);
2137 if (pending_scb
== NULL
)
2140 pending_hscb
= pending_scb
->hscb
;
2141 control
= ahc_inb(ahc
, SCB_CONTROL
);
2142 control
&= ~(ULTRAENB
|MK_MESSAGE
);
2143 control
|= pending_hscb
->control
& (ULTRAENB
|MK_MESSAGE
);
2144 ahc_outb(ahc
, SCB_CONTROL
, control
);
2145 ahc_outb(ahc
, SCB_SCSIRATE
, pending_hscb
->scsirate
);
2146 ahc_outb(ahc
, SCB_SCSIOFFSET
, pending_hscb
->scsioffset
);
2148 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
2154 /**************************** Pathing Information *****************************/
2156 ahc_fetch_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2162 if (ahc_inb(ahc
, SSTAT0
) & TARGET
)
2165 role
= ROLE_INITIATOR
;
2167 if (role
== ROLE_TARGET
2168 && (ahc
->features
& AHC_MULTI_TID
) != 0
2169 && (ahc_inb(ahc
, SEQ_FLAGS
)
2170 & (CMDPHASE_PENDING
|TARG_CMD_PENDING
|NO_DISCONNECT
)) != 0) {
2171 /* We were selected, so pull our id from TARGIDIN */
2172 our_id
= ahc_inb(ahc
, TARGIDIN
) & OID
;
2173 } else if ((ahc
->features
& AHC_ULTRA2
) != 0)
2174 our_id
= ahc_inb(ahc
, SCSIID_ULTRA2
) & OID
;
2176 our_id
= ahc_inb(ahc
, SCSIID
) & OID
;
2178 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
2179 ahc_compile_devinfo(devinfo
,
2181 SCSIID_TARGET(ahc
, saved_scsiid
),
2182 ahc_inb(ahc
, SAVED_LUN
),
2183 SCSIID_CHANNEL(ahc
, saved_scsiid
),
2187 struct ahc_phase_table_entry
*
2188 ahc_lookup_phase_entry(int phase
)
2190 struct ahc_phase_table_entry
*entry
;
2191 struct ahc_phase_table_entry
*last_entry
;
2194 * num_phases doesn't include the default entry which
2195 * will be returned if the phase doesn't match.
2197 last_entry
= &ahc_phase_table
[num_phases
];
2198 for (entry
= ahc_phase_table
; entry
< last_entry
; entry
++) {
2199 if (phase
== entry
->phase
)
2206 ahc_compile_devinfo(struct ahc_devinfo
*devinfo
, u_int our_id
, u_int target
,
2207 u_int lun
, char channel
, role_t role
)
2209 devinfo
->our_scsiid
= our_id
;
2210 devinfo
->target
= target
;
2212 devinfo
->target_offset
= target
;
2213 devinfo
->channel
= channel
;
2214 devinfo
->role
= role
;
2216 devinfo
->target_offset
+= 8;
2217 devinfo
->target_mask
= (0x01 << devinfo
->target_offset
);
2221 ahc_print_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2223 printf("%s:%c:%d:%d: ", ahc_name(ahc
), devinfo
->channel
,
2224 devinfo
->target
, devinfo
->lun
);
2228 ahc_scb_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2234 our_id
= SCSIID_OUR_ID(scb
->hscb
->scsiid
);
2235 role
= ROLE_INITIATOR
;
2236 if ((scb
->flags
& SCB_TARGET_SCB
) != 0)
2238 ahc_compile_devinfo(devinfo
, our_id
, SCB_GET_TARGET(ahc
, scb
),
2239 SCB_GET_LUN(scb
), SCB_GET_CHANNEL(ahc
, scb
), role
);
2243 /************************ Message Phase Processing ****************************/
2245 ahc_assert_atn(struct ahc_softc
*ahc
)
2250 if ((ahc
->features
& AHC_DT
) == 0)
2251 scsisigo
|= ahc_inb(ahc
, SCSISIGI
);
2252 ahc_outb(ahc
, SCSISIGO
, scsisigo
);
2256 * When an initiator transaction with the MK_MESSAGE flag either reconnects
2257 * or enters the initial message out phase, we are interrupted. Fill our
2258 * outgoing message buffer with the appropriate message and beging handing
2259 * the message phase(s) manually.
2262 ahc_setup_initiator_msgout(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2266 * To facilitate adding multiple messages together,
2267 * each routine should increment the index and len
2268 * variables instead of setting them explicitly.
2270 ahc
->msgout_index
= 0;
2271 ahc
->msgout_len
= 0;
2273 if ((scb
->flags
& SCB_DEVICE_RESET
) == 0
2274 && ahc_inb(ahc
, MSG_OUT
) == MSG_IDENTIFYFLAG
) {
2277 identify_msg
= MSG_IDENTIFYFLAG
| SCB_GET_LUN(scb
);
2278 if ((scb
->hscb
->control
& DISCENB
) != 0)
2279 identify_msg
|= MSG_IDENTIFY_DISCFLAG
;
2280 ahc
->msgout_buf
[ahc
->msgout_index
++] = identify_msg
;
2283 if ((scb
->hscb
->control
& TAG_ENB
) != 0) {
2284 ahc
->msgout_buf
[ahc
->msgout_index
++] =
2285 scb
->hscb
->control
& (TAG_ENB
|SCB_TAG_TYPE
);
2286 ahc
->msgout_buf
[ahc
->msgout_index
++] = scb
->hscb
->tag
;
2287 ahc
->msgout_len
+= 2;
2291 if (scb
->flags
& SCB_DEVICE_RESET
) {
2292 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_BUS_DEV_RESET
;
2294 ahc_print_path(ahc
, scb
);
2295 printf("Bus Device Reset Message Sent\n");
2297 * Clear our selection hardware in advance of
2298 * the busfree. We may have an entry in the waiting
2299 * Q for this target, and we don't want to go about
2300 * selecting while we handle the busfree and blow it
2303 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2304 } else if ((scb
->flags
& SCB_ABORT
) != 0) {
2305 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
2306 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT_TAG
;
2308 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT
;
2310 ahc_print_path(ahc
, scb
);
2311 printf("Abort%s Message Sent\n",
2312 (scb
->hscb
->control
& TAG_ENB
) != 0 ? " Tag" : "");
2314 * Clear our selection hardware in advance of
2315 * the busfree. We may have an entry in the waiting
2316 * Q for this target, and we don't want to go about
2317 * selecting while we handle the busfree and blow it
2320 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2321 } else if ((scb
->flags
& (SCB_AUTO_NEGOTIATE
|SCB_NEGOTIATE
)) != 0) {
2322 ahc_build_transfer_msg(ahc
, devinfo
);
2324 printf("ahc_intr: AWAITING_MSG for an SCB that "
2325 "does not have a waiting message\n");
2326 printf("SCSIID = %x, target_mask = %x\n", scb
->hscb
->scsiid
,
2327 devinfo
->target_mask
);
2328 panic("SCB = %d, SCB Control = %x, MSG_OUT = %x "
2329 "SCB flags = %x", scb
->hscb
->tag
, scb
->hscb
->control
,
2330 ahc_inb(ahc
, MSG_OUT
), scb
->flags
);
2334 * Clear the MK_MESSAGE flag from the SCB so we aren't
2335 * asked to send this message again.
2337 ahc_outb(ahc
, SCB_CONTROL
, ahc_inb(ahc
, SCB_CONTROL
) & ~MK_MESSAGE
);
2338 scb
->hscb
->control
&= ~MK_MESSAGE
;
2339 ahc
->msgout_index
= 0;
2340 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2344 * Build an appropriate transfer negotiation message for the
2345 * currently active target.
2348 ahc_build_transfer_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2351 * We need to initiate transfer negotiations.
2352 * If our current and goal settings are identical,
2353 * we want to renegotiate due to a check condition.
2355 struct ahc_initiator_tinfo
*tinfo
;
2356 struct ahc_tmode_tstate
*tstate
;
2357 struct ahc_syncrate
*rate
;
2365 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2366 devinfo
->target
, &tstate
);
2368 * Filter our period based on the current connection.
2369 * If we can't perform DT transfers on this segment (not in LVD
2370 * mode for instance), then our decision to issue a PPR message
2373 period
= tinfo
->goal
.period
;
2374 offset
= tinfo
->goal
.offset
;
2375 ppr_options
= tinfo
->goal
.ppr_options
;
2376 /* Target initiated PPR is not allowed in the SCSI spec */
2377 if (devinfo
->role
== ROLE_TARGET
)
2379 rate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
2380 &ppr_options
, devinfo
->role
);
2381 dowide
= tinfo
->curr
.width
!= tinfo
->goal
.width
;
2382 dosync
= tinfo
->curr
.offset
!= offset
|| tinfo
->curr
.period
!= period
;
2384 * Only use PPR if we have options that need it, even if the device
2385 * claims to support it. There might be an expander in the way
2388 doppr
= ppr_options
!= 0;
2390 if (!dowide
&& !dosync
&& !doppr
) {
2391 dowide
= tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
;
2392 dosync
= tinfo
->goal
.offset
!= 0;
2395 if (!dowide
&& !dosync
&& !doppr
) {
2397 * Force async with a WDTR message if we have a wide bus,
2398 * or just issue an SDTR with a 0 offset.
2400 if ((ahc
->features
& AHC_WIDE
) != 0)
2406 ahc_print_devinfo(ahc
, devinfo
);
2407 printf("Ensuring async\n");
2411 /* Target initiated PPR is not allowed in the SCSI spec */
2412 if (devinfo
->role
== ROLE_TARGET
)
2416 * Both the PPR message and SDTR message require the
2417 * goal syncrate to be limited to what the target device
2418 * is capable of handling (based on whether an LVD->SE
2419 * expander is on the bus), so combine these two cases.
2420 * Regardless, guarantee that if we are using WDTR and SDTR
2421 * messages that WDTR comes first.
2423 if (doppr
|| (dosync
&& !dowide
)) {
2425 offset
= tinfo
->goal
.offset
;
2426 ahc_validate_offset(ahc
, tinfo
, rate
, &offset
,
2427 doppr
? tinfo
->goal
.width
2428 : tinfo
->curr
.width
,
2431 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
2432 tinfo
->goal
.width
, ppr_options
);
2434 ahc_construct_sdtr(ahc
, devinfo
, period
, offset
);
2437 ahc_construct_wdtr(ahc
, devinfo
, tinfo
->goal
.width
);
2442 * Build a synchronous negotiation message in our message
2443 * buffer based on the input parameters.
2446 ahc_construct_sdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2447 u_int period
, u_int offset
)
2450 period
= AHC_ASYNC_XFER_PERIOD
;
2451 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXTENDED
;
2452 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_SDTR_LEN
;
2453 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_SDTR
;
2454 ahc
->msgout_buf
[ahc
->msgout_index
++] = period
;
2455 ahc
->msgout_buf
[ahc
->msgout_index
++] = offset
;
2456 ahc
->msgout_len
+= 5;
2458 printf("(%s:%c:%d:%d): Sending SDTR period %x, offset %x\n",
2459 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
2460 devinfo
->lun
, period
, offset
);
2465 * Build a wide negotiation message in our message
2466 * buffer based on the input parameters.
2469 ahc_construct_wdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2472 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXTENDED
;
2473 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_WDTR_LEN
;
2474 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_WDTR
;
2475 ahc
->msgout_buf
[ahc
->msgout_index
++] = bus_width
;
2476 ahc
->msgout_len
+= 4;
2478 printf("(%s:%c:%d:%d): Sending WDTR %x\n",
2479 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
2480 devinfo
->lun
, bus_width
);
2485 * Build a parallel protocol request message in our message
2486 * buffer based on the input parameters.
2489 ahc_construct_ppr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2490 u_int period
, u_int offset
, u_int bus_width
,
2494 period
= AHC_ASYNC_XFER_PERIOD
;
2495 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXTENDED
;
2496 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_PPR_LEN
;
2497 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_PPR
;
2498 ahc
->msgout_buf
[ahc
->msgout_index
++] = period
;
2499 ahc
->msgout_buf
[ahc
->msgout_index
++] = 0;
2500 ahc
->msgout_buf
[ahc
->msgout_index
++] = offset
;
2501 ahc
->msgout_buf
[ahc
->msgout_index
++] = bus_width
;
2502 ahc
->msgout_buf
[ahc
->msgout_index
++] = ppr_options
;
2503 ahc
->msgout_len
+= 8;
2505 printf("(%s:%c:%d:%d): Sending PPR bus_width %x, period %x, "
2506 "offset %x, ppr_options %x\n", ahc_name(ahc
),
2507 devinfo
->channel
, devinfo
->target
, devinfo
->lun
,
2508 bus_width
, period
, offset
, ppr_options
);
2513 * Clear any active message state.
2516 ahc_clear_msg_state(struct ahc_softc
*ahc
)
2518 ahc
->msgout_len
= 0;
2519 ahc
->msgin_index
= 0;
2520 ahc
->msg_type
= MSG_TYPE_NONE
;
2521 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0) {
2523 * The target didn't care to respond to our
2524 * message request, so clear ATN.
2526 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2528 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
2529 ahc_outb(ahc
, SEQ_FLAGS2
,
2530 ahc_inb(ahc
, SEQ_FLAGS2
) & ~TARGET_MSG_PENDING
);
2534 ahc_handle_proto_violation(struct ahc_softc
*ahc
)
2536 struct ahc_devinfo devinfo
;
2544 ahc_fetch_devinfo(ahc
, &devinfo
);
2545 scbid
= ahc_inb(ahc
, SCB_TAG
);
2546 scb
= ahc_lookup_scb(ahc
, scbid
);
2547 seq_flags
= ahc_inb(ahc
, SEQ_FLAGS
);
2548 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
2549 lastphase
= ahc_inb(ahc
, LASTPHASE
);
2550 if ((seq_flags
& NOT_IDENTIFIED
) != 0) {
2553 * The reconnecting target either did not send an
2554 * identify message, or did, but we didn't find an SCB
2557 ahc_print_devinfo(ahc
, &devinfo
);
2558 printf("Target did not send an IDENTIFY message. "
2559 "LASTPHASE = 0x%x.\n", lastphase
);
2561 } else if (scb
== NULL
) {
2563 * We don't seem to have an SCB active for this
2564 * transaction. Print an error and reset the bus.
2566 ahc_print_devinfo(ahc
, &devinfo
);
2567 printf("No SCB found during protocol violation\n");
2568 goto proto_violation_reset
;
2570 ahc_set_transaction_status(scb
, CAM_SEQUENCE_FAIL
);
2571 if ((seq_flags
& NO_CDB_SENT
) != 0) {
2572 ahc_print_path(ahc
, scb
);
2573 printf("No or incomplete CDB sent to device.\n");
2574 } else if ((ahc_inb(ahc
, SCB_CONTROL
) & STATUS_RCVD
) == 0) {
2576 * The target never bothered to provide status to
2577 * us prior to completing the command. Since we don't
2578 * know the disposition of this command, we must attempt
2579 * to abort it. Assert ATN and prepare to send an abort
2582 ahc_print_path(ahc
, scb
);
2583 printf("Completed command without status.\n");
2585 ahc_print_path(ahc
, scb
);
2586 printf("Unknown protocol violation.\n");
2587 ahc_dump_card_state(ahc
);
2590 if ((lastphase
& ~P_DATAIN_DT
) == 0
2591 || lastphase
== P_COMMAND
) {
2592 proto_violation_reset
:
2594 * Target either went directly to data/command
2595 * phase or didn't respond to our ATN.
2596 * The only safe thing to do is to blow
2597 * it away with a bus reset.
2599 found
= ahc_reset_channel(ahc
, 'A', TRUE
);
2600 printf("%s: Issued Channel %c Bus Reset. "
2601 "%d SCBs aborted\n", ahc_name(ahc
), 'A', found
);
2604 * Leave the selection hardware off in case
2605 * this abort attempt will affect yet to
2608 ahc_outb(ahc
, SCSISEQ
,
2609 ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
2610 ahc_assert_atn(ahc
);
2611 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
2613 ahc_print_devinfo(ahc
, &devinfo
);
2614 ahc
->msgout_buf
[0] = MSG_ABORT_TASK
;
2615 ahc
->msgout_len
= 1;
2616 ahc
->msgout_index
= 0;
2617 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2619 ahc_print_path(ahc
, scb
);
2620 scb
->flags
|= SCB_ABORT
;
2622 printf("Protocol violation %s. Attempting to abort.\n",
2623 ahc_lookup_phase_entry(curphase
)->phasemsg
);
2628 * Manual message loop handler.
2631 ahc_handle_message_phase(struct ahc_softc
*ahc
)
2633 struct ahc_devinfo devinfo
;
2637 ahc_fetch_devinfo(ahc
, &devinfo
);
2638 end_session
= FALSE
;
2639 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
2642 switch (ahc
->msg_type
) {
2643 case MSG_TYPE_INITIATOR_MSGOUT
:
2649 if (ahc
->msgout_len
== 0)
2650 panic("HOST_MSG_LOOP interrupt with no active message");
2653 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2654 ahc_print_devinfo(ahc
, &devinfo
);
2655 printf("INITIATOR_MSG_OUT");
2658 phasemis
= bus_phase
!= P_MESGOUT
;
2661 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2662 printf(" PHASEMIS %s\n",
2663 ahc_lookup_phase_entry(bus_phase
)
2667 if (bus_phase
== P_MESGIN
) {
2669 * Change gears and see if
2670 * this messages is of interest to
2671 * us or should be passed back to
2674 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2675 ahc
->send_msg_perror
= FALSE
;
2676 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGIN
;
2677 ahc
->msgin_index
= 0;
2684 if (ahc
->send_msg_perror
) {
2685 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2686 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2688 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2689 printf(" byte 0x%x\n", ahc
->send_msg_perror
);
2691 ahc_outb(ahc
, SCSIDATL
, MSG_PARITY_ERROR
);
2695 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
2698 * The target has requested a retry.
2699 * Re-assert ATN, reset our message index to
2702 ahc
->msgout_index
= 0;
2703 ahc_assert_atn(ahc
);
2706 lastbyte
= ahc
->msgout_index
== (ahc
->msgout_len
- 1);
2708 /* Last byte is signified by dropping ATN */
2709 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2713 * Clear our interrupt status and present
2714 * the next byte on the bus.
2716 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2718 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2719 printf(" byte 0x%x\n",
2720 ahc
->msgout_buf
[ahc
->msgout_index
]);
2722 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
2725 case MSG_TYPE_INITIATOR_MSGIN
:
2731 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2732 ahc_print_devinfo(ahc
, &devinfo
);
2733 printf("INITIATOR_MSG_IN");
2736 phasemis
= bus_phase
!= P_MESGIN
;
2739 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2740 printf(" PHASEMIS %s\n",
2741 ahc_lookup_phase_entry(bus_phase
)
2745 ahc
->msgin_index
= 0;
2746 if (bus_phase
== P_MESGOUT
2747 && (ahc
->send_msg_perror
== TRUE
2748 || (ahc
->msgout_len
!= 0
2749 && ahc
->msgout_index
== 0))) {
2750 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2757 /* Pull the byte in without acking it */
2758 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIBUSL
);
2760 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2761 printf(" byte 0x%x\n",
2762 ahc
->msgin_buf
[ahc
->msgin_index
]);
2765 message_done
= ahc_parse_msg(ahc
, &devinfo
);
2769 * Clear our incoming message buffer in case there
2770 * is another message following this one.
2772 ahc
->msgin_index
= 0;
2775 * If this message illicited a response,
2776 * assert ATN so the target takes us to the
2777 * message out phase.
2779 if (ahc
->msgout_len
!= 0) {
2781 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2782 ahc_print_devinfo(ahc
, &devinfo
);
2783 printf("Asserting ATN for response\n");
2786 ahc_assert_atn(ahc
);
2791 if (message_done
== MSGLOOP_TERMINATED
) {
2795 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2796 ahc_inb(ahc
, SCSIDATL
);
2800 case MSG_TYPE_TARGET_MSGIN
:
2805 if (ahc
->msgout_len
== 0)
2806 panic("Target MSGIN with no active message");
2809 * If we interrupted a mesgout session, the initiator
2810 * will not know this until our first REQ. So, we
2811 * only honor mesgout requests after we've sent our
2814 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0
2815 && ahc
->msgout_index
> 0)
2816 msgout_request
= TRUE
;
2818 msgout_request
= FALSE
;
2820 if (msgout_request
) {
2823 * Change gears and see if
2824 * this messages is of interest to
2825 * us or should be passed back to
2828 ahc
->msg_type
= MSG_TYPE_TARGET_MSGOUT
;
2829 ahc_outb(ahc
, SCSISIGO
, P_MESGOUT
| BSYO
);
2830 ahc
->msgin_index
= 0;
2831 /* Dummy read to REQ for first byte */
2832 ahc_inb(ahc
, SCSIDATL
);
2833 ahc_outb(ahc
, SXFRCTL0
,
2834 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2838 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
2840 ahc_outb(ahc
, SXFRCTL0
,
2841 ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
2847 * Present the next byte on the bus.
2849 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2850 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
2853 case MSG_TYPE_TARGET_MSGOUT
:
2859 * The initiator signals that this is
2860 * the last byte by dropping ATN.
2862 lastbyte
= (ahc_inb(ahc
, SCSISIGI
) & ATNI
) == 0;
2865 * Read the latched byte, but turn off SPIOEN first
2866 * so that we don't inadvertently cause a REQ for the
2869 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
2870 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIDATL
);
2871 msgdone
= ahc_parse_msg(ahc
, &devinfo
);
2872 if (msgdone
== MSGLOOP_TERMINATED
) {
2874 * The message is *really* done in that it caused
2875 * us to go to bus free. The sequencer has already
2876 * been reset at this point, so pull the ejection
2885 * XXX Read spec about initiator dropping ATN too soon
2886 * and use msgdone to detect it.
2888 if (msgdone
== MSGLOOP_MSGCOMPLETE
) {
2889 ahc
->msgin_index
= 0;
2892 * If this message illicited a response, transition
2893 * to the Message in phase and send it.
2895 if (ahc
->msgout_len
!= 0) {
2896 ahc_outb(ahc
, SCSISIGO
, P_MESGIN
| BSYO
);
2897 ahc_outb(ahc
, SXFRCTL0
,
2898 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2899 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
2900 ahc
->msgin_index
= 0;
2908 /* Ask for the next byte. */
2909 ahc_outb(ahc
, SXFRCTL0
,
2910 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2916 panic("Unknown REQINIT message type");
2920 ahc_clear_msg_state(ahc
);
2921 ahc_outb(ahc
, RETURN_1
, EXIT_MSG_LOOP
);
2923 ahc_outb(ahc
, RETURN_1
, CONT_MSG_LOOP
);
2927 * See if we sent a particular extended message to the target.
2928 * If "full" is true, return true only if the target saw the full
2929 * message. If "full" is false, return true if the target saw at
2930 * least the first byte of the message.
2933 ahc_sent_msg(struct ahc_softc
*ahc
, ahc_msgtype type
, u_int msgval
, int full
)
2941 while (index
< ahc
->msgout_len
) {
2942 if (ahc
->msgout_buf
[index
] == MSG_EXTENDED
) {
2945 end_index
= index
+ 1 + ahc
->msgout_buf
[index
+ 1];
2946 if (ahc
->msgout_buf
[index
+2] == msgval
2947 && type
== AHCMSG_EXT
) {
2950 if (ahc
->msgout_index
> end_index
)
2952 } else if (ahc
->msgout_index
> index
)
2956 } else if (ahc
->msgout_buf
[index
] >= MSG_SIMPLE_TASK
2957 && ahc
->msgout_buf
[index
] <= MSG_IGN_WIDE_RESIDUE
) {
2959 /* Skip tag type and tag id or residue param*/
2962 /* Single byte message */
2963 if (type
== AHCMSG_1B
2964 && ahc
->msgout_buf
[index
] == msgval
2965 && ahc
->msgout_index
> index
)
2977 * Wait for a complete incoming message, parse it, and respond accordingly.
2980 ahc_parse_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2982 struct ahc_initiator_tinfo
*tinfo
;
2983 struct ahc_tmode_tstate
*tstate
;
2987 u_int targ_scsirate
;
2989 done
= MSGLOOP_IN_PROG
;
2992 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2993 devinfo
->target
, &tstate
);
2994 targ_scsirate
= tinfo
->scsirate
;
2997 * Parse as much of the message as is available,
2998 * rejecting it if we don't support it. When
2999 * the entire message is available and has been
3000 * handled, return MSGLOOP_MSGCOMPLETE, indicating
3001 * that we have parsed an entire message.
3003 * In the case of extended messages, we accept the length
3004 * byte outright and perform more checking once we know the
3005 * extended message type.
3007 switch (ahc
->msgin_buf
[0]) {
3008 case MSG_DISCONNECT
:
3009 case MSG_SAVEDATAPOINTER
:
3010 case MSG_CMDCOMPLETE
:
3011 case MSG_RESTOREPOINTERS
:
3012 case MSG_IGN_WIDE_RESIDUE
:
3014 * End our message loop as these are messages
3015 * the sequencer handles on its own.
3017 done
= MSGLOOP_TERMINATED
;
3019 case MSG_MESSAGE_REJECT
:
3020 response
= ahc_handle_msg_reject(ahc
, devinfo
);
3023 done
= MSGLOOP_MSGCOMPLETE
;
3027 /* Wait for enough of the message to begin validation */
3028 if (ahc
->msgin_index
< 2)
3030 switch (ahc
->msgin_buf
[2]) {
3033 struct ahc_syncrate
*syncrate
;
3039 if (ahc
->msgin_buf
[1] != MSG_EXT_SDTR_LEN
) {
3045 * Wait until we have both args before validating
3046 * and acting on this message.
3048 * Add one to MSG_EXT_SDTR_LEN to account for
3049 * the extended message preamble.
3051 if (ahc
->msgin_index
< (MSG_EXT_SDTR_LEN
+ 1))
3054 period
= ahc
->msgin_buf
[3];
3056 saved_offset
= offset
= ahc
->msgin_buf
[4];
3057 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3060 ahc_validate_offset(ahc
, tinfo
, syncrate
, &offset
,
3061 targ_scsirate
& WIDEXFER
,
3064 printf("(%s:%c:%d:%d): Received "
3065 "SDTR period %x, offset %x\n\t"
3066 "Filtered to period %x, offset %x\n",
3067 ahc_name(ahc
), devinfo
->channel
,
3068 devinfo
->target
, devinfo
->lun
,
3069 ahc
->msgin_buf
[3], saved_offset
,
3072 ahc_set_syncrate(ahc
, devinfo
,
3074 offset
, ppr_options
,
3075 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3079 * See if we initiated Sync Negotiation
3080 * and didn't have to fall down to async
3083 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, TRUE
)) {
3085 if (saved_offset
!= offset
) {
3086 /* Went too low - force async */
3091 * Send our own SDTR in reply
3094 && devinfo
->role
== ROLE_INITIATOR
) {
3095 printf("(%s:%c:%d:%d): Target "
3097 ahc_name(ahc
), devinfo
->channel
,
3098 devinfo
->target
, devinfo
->lun
);
3100 ahc
->msgout_index
= 0;
3101 ahc
->msgout_len
= 0;
3102 ahc_construct_sdtr(ahc
, devinfo
,
3104 ahc
->msgout_index
= 0;
3107 done
= MSGLOOP_MSGCOMPLETE
;
3114 u_int sending_reply
;
3116 sending_reply
= FALSE
;
3117 if (ahc
->msgin_buf
[1] != MSG_EXT_WDTR_LEN
) {
3123 * Wait until we have our arg before validating
3124 * and acting on this message.
3126 * Add one to MSG_EXT_WDTR_LEN to account for
3127 * the extended message preamble.
3129 if (ahc
->msgin_index
< (MSG_EXT_WDTR_LEN
+ 1))
3132 bus_width
= ahc
->msgin_buf
[3];
3133 saved_width
= bus_width
;
3134 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3137 printf("(%s:%c:%d:%d): Received WDTR "
3138 "%x filtered to %x\n",
3139 ahc_name(ahc
), devinfo
->channel
,
3140 devinfo
->target
, devinfo
->lun
,
3141 saved_width
, bus_width
);
3144 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, TRUE
)) {
3146 * Don't send a WDTR back to the
3147 * target, since we asked first.
3148 * If the width went higher than our
3149 * request, reject it.
3151 if (saved_width
> bus_width
) {
3153 printf("(%s:%c:%d:%d): requested %dBit "
3154 "transfers. Rejecting...\n",
3155 ahc_name(ahc
), devinfo
->channel
,
3156 devinfo
->target
, devinfo
->lun
,
3157 8 * (0x01 << bus_width
));
3162 * Send our own WDTR in reply
3165 && devinfo
->role
== ROLE_INITIATOR
) {
3166 printf("(%s:%c:%d:%d): Target "
3168 ahc_name(ahc
), devinfo
->channel
,
3169 devinfo
->target
, devinfo
->lun
);
3171 ahc
->msgout_index
= 0;
3172 ahc
->msgout_len
= 0;
3173 ahc_construct_wdtr(ahc
, devinfo
, bus_width
);
3174 ahc
->msgout_index
= 0;
3176 sending_reply
= TRUE
;
3179 * After a wide message, we are async, but
3180 * some devices don't seem to honor this portion
3181 * of the spec. Force a renegotiation of the
3182 * sync component of our transfer agreement even
3183 * if our goal is async. By updating our width
3184 * after forcing the negotiation, we avoid
3185 * renegotiating for width.
3187 ahc_update_neg_request(ahc
, devinfo
, tstate
,
3188 tinfo
, AHC_NEG_ALWAYS
);
3189 ahc_set_width(ahc
, devinfo
, bus_width
,
3190 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3192 if (sending_reply
== FALSE
&& reject
== FALSE
) {
3195 * We will always have an SDTR to send.
3197 ahc
->msgout_index
= 0;
3198 ahc
->msgout_len
= 0;
3199 ahc_build_transfer_msg(ahc
, devinfo
);
3200 ahc
->msgout_index
= 0;
3203 done
= MSGLOOP_MSGCOMPLETE
;
3208 struct ahc_syncrate
*syncrate
;
3215 u_int saved_ppr_options
;
3217 if (ahc
->msgin_buf
[1] != MSG_EXT_PPR_LEN
) {
3223 * Wait until we have all args before validating
3224 * and acting on this message.
3226 * Add one to MSG_EXT_PPR_LEN to account for
3227 * the extended message preamble.
3229 if (ahc
->msgin_index
< (MSG_EXT_PPR_LEN
+ 1))
3232 period
= ahc
->msgin_buf
[3];
3233 offset
= ahc
->msgin_buf
[5];
3234 bus_width
= ahc
->msgin_buf
[6];
3235 saved_width
= bus_width
;
3236 ppr_options
= ahc
->msgin_buf
[7];
3238 * According to the spec, a DT only
3239 * period factor with no DT option
3240 * set implies async.
3242 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
3245 saved_ppr_options
= ppr_options
;
3246 saved_offset
= offset
;
3249 * Mask out any options we don't support
3250 * on any controller. Transfer options are
3251 * only available if we are negotiating wide.
3253 ppr_options
&= MSG_EXT_PPR_DT_REQ
;
3257 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3259 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3262 ahc_validate_offset(ahc
, tinfo
, syncrate
,
3266 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, TRUE
)) {
3268 * If we are unable to do any of the
3269 * requested options (we went too low),
3270 * then we'll have to reject the message.
3272 if (saved_width
> bus_width
3273 || saved_offset
!= offset
3274 || saved_ppr_options
!= ppr_options
) {
3283 if (devinfo
->role
!= ROLE_TARGET
)
3284 printf("(%s:%c:%d:%d): Target "
3286 ahc_name(ahc
), devinfo
->channel
,
3287 devinfo
->target
, devinfo
->lun
);
3289 printf("(%s:%c:%d:%d): Initiator "
3291 ahc_name(ahc
), devinfo
->channel
,
3292 devinfo
->target
, devinfo
->lun
);
3293 ahc
->msgout_index
= 0;
3294 ahc
->msgout_len
= 0;
3295 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
3296 bus_width
, ppr_options
);
3297 ahc
->msgout_index
= 0;
3301 printf("(%s:%c:%d:%d): Received PPR width %x, "
3302 "period %x, offset %x,options %x\n"
3303 "\tFiltered to width %x, period %x, "
3304 "offset %x, options %x\n",
3305 ahc_name(ahc
), devinfo
->channel
,
3306 devinfo
->target
, devinfo
->lun
,
3307 saved_width
, ahc
->msgin_buf
[3],
3308 saved_offset
, saved_ppr_options
,
3309 bus_width
, period
, offset
, ppr_options
);
3311 ahc_set_width(ahc
, devinfo
, bus_width
,
3312 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3314 ahc_set_syncrate(ahc
, devinfo
,
3316 offset
, ppr_options
,
3317 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3319 done
= MSGLOOP_MSGCOMPLETE
;
3323 /* Unknown extended message. Reject it. */
3329 #ifdef AHC_TARGET_MODE
3330 case MSG_BUS_DEV_RESET
:
3331 ahc_handle_devreset(ahc
, devinfo
,
3333 "Bus Device Reset Received",
3334 /*verbose_level*/0);
3336 done
= MSGLOOP_TERMINATED
;
3340 case MSG_CLEAR_QUEUE
:
3344 /* Target mode messages */
3345 if (devinfo
->role
!= ROLE_TARGET
) {
3349 tag
= SCB_LIST_NULL
;
3350 if (ahc
->msgin_buf
[0] == MSG_ABORT_TAG
)
3351 tag
= ahc_inb(ahc
, INITIATOR_TAG
);
3352 ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
3353 devinfo
->lun
, tag
, ROLE_TARGET
,
3356 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
3357 if (tstate
!= NULL
) {
3358 struct ahc_tmode_lstate
* lstate
;
3360 lstate
= tstate
->enabled_luns
[devinfo
->lun
];
3361 if (lstate
!= NULL
) {
3362 ahc_queue_lstate_event(ahc
, lstate
,
3363 devinfo
->our_scsiid
,
3366 ahc_send_lstate_events(ahc
, lstate
);
3370 done
= MSGLOOP_TERMINATED
;
3374 case MSG_TERM_IO_PROC
:
3382 * Setup to reject the message.
3384 ahc
->msgout_index
= 0;
3385 ahc
->msgout_len
= 1;
3386 ahc
->msgout_buf
[0] = MSG_MESSAGE_REJECT
;
3387 done
= MSGLOOP_MSGCOMPLETE
;
3391 if (done
!= MSGLOOP_IN_PROG
&& !response
)
3392 /* Clear the outgoing message buffer */
3393 ahc
->msgout_len
= 0;
3399 * Process a message reject message.
3402 ahc_handle_msg_reject(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
3405 * What we care about here is if we had an
3406 * outstanding SDTR or WDTR message for this
3407 * target. If we did, this is a signal that
3408 * the target is refusing negotiation.
3411 struct ahc_initiator_tinfo
*tinfo
;
3412 struct ahc_tmode_tstate
*tstate
;
3417 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3418 scb
= ahc_lookup_scb(ahc
, scb_index
);
3419 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
,
3420 devinfo
->our_scsiid
,
3421 devinfo
->target
, &tstate
);
3422 /* Might be necessary */
3423 last_msg
= ahc_inb(ahc
, LAST_MSG
);
3425 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, /*full*/FALSE
)) {
3427 * Target does not support the PPR message.
3428 * Attempt to negotiate SPI-2 style.
3431 printf("(%s:%c:%d:%d): PPR Rejected. "
3432 "Trying WDTR/SDTR\n",
3433 ahc_name(ahc
), devinfo
->channel
,
3434 devinfo
->target
, devinfo
->lun
);
3436 tinfo
->goal
.ppr_options
= 0;
3437 tinfo
->curr
.transport_version
= 2;
3438 tinfo
->goal
.transport_version
= 2;
3439 ahc
->msgout_index
= 0;
3440 ahc
->msgout_len
= 0;
3441 ahc_build_transfer_msg(ahc
, devinfo
);
3442 ahc
->msgout_index
= 0;
3444 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, /*full*/FALSE
)) {
3446 /* note 8bit xfers */
3447 printf("(%s:%c:%d:%d): refuses WIDE negotiation. Using "
3448 "8bit transfers\n", ahc_name(ahc
),
3449 devinfo
->channel
, devinfo
->target
, devinfo
->lun
);
3450 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
3451 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3454 * No need to clear the sync rate. If the target
3455 * did not accept the command, our syncrate is
3456 * unaffected. If the target started the negotiation,
3457 * but rejected our response, we already cleared the
3458 * sync rate before sending our WDTR.
3460 if (tinfo
->goal
.offset
!= tinfo
->curr
.offset
) {
3462 /* Start the sync negotiation */
3463 ahc
->msgout_index
= 0;
3464 ahc
->msgout_len
= 0;
3465 ahc_build_transfer_msg(ahc
, devinfo
);
3466 ahc
->msgout_index
= 0;
3469 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, /*full*/FALSE
)) {
3470 /* note asynch xfers and clear flag */
3471 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
, /*period*/0,
3472 /*offset*/0, /*ppr_options*/0,
3473 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3475 printf("(%s:%c:%d:%d): refuses synchronous negotiation. "
3476 "Using asynchronous transfers\n",
3477 ahc_name(ahc
), devinfo
->channel
,
3478 devinfo
->target
, devinfo
->lun
);
3479 } else if ((scb
->hscb
->control
& MSG_SIMPLE_TASK
) != 0) {
3483 tag_type
= (scb
->hscb
->control
& MSG_SIMPLE_TASK
);
3485 if (tag_type
== MSG_SIMPLE_TASK
) {
3486 printf("(%s:%c:%d:%d): refuses tagged commands. "
3487 "Performing non-tagged I/O\n", ahc_name(ahc
),
3488 devinfo
->channel
, devinfo
->target
, devinfo
->lun
);
3489 ahc_set_tags(ahc
, devinfo
, AHC_QUEUE_NONE
);
3492 printf("(%s:%c:%d:%d): refuses %s tagged commands. "
3493 "Performing simple queue tagged I/O only\n",
3494 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
3495 devinfo
->lun
, tag_type
== MSG_ORDERED_TASK
3496 ? "ordered" : "head of queue");
3497 ahc_set_tags(ahc
, devinfo
, AHC_QUEUE_BASIC
);
3502 * Resend the identify for this CCB as the target
3503 * may believe that the selection is invalid otherwise.
3505 ahc_outb(ahc
, SCB_CONTROL
,
3506 ahc_inb(ahc
, SCB_CONTROL
) & mask
);
3507 scb
->hscb
->control
&= mask
;
3508 ahc_set_transaction_tag(scb
, /*enabled*/FALSE
,
3509 /*type*/MSG_SIMPLE_TASK
);
3510 ahc_outb(ahc
, MSG_OUT
, MSG_IDENTIFYFLAG
);
3511 ahc_assert_atn(ahc
);
3514 * This transaction is now at the head of
3515 * the untagged queue for this target.
3517 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
3518 struct scb_tailq
*untagged_q
;
3521 &(ahc
->untagged_queues
[devinfo
->target_offset
]);
3522 TAILQ_INSERT_HEAD(untagged_q
, scb
, links
.tqe
);
3523 scb
->flags
|= SCB_UNTAGGEDQ
;
3525 ahc_busy_tcl(ahc
, BUILD_TCL(scb
->hscb
->scsiid
, devinfo
->lun
),
3529 * Requeue all tagged commands for this target
3530 * currently in our posession so they can be
3531 * converted to untagged commands.
3533 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
3534 SCB_GET_CHANNEL(ahc
, scb
),
3535 SCB_GET_LUN(scb
), /*tag*/SCB_LIST_NULL
,
3536 ROLE_INITIATOR
, CAM_REQUEUE_REQ
,
3540 * Otherwise, we ignore it.
3542 printf("%s:%c:%d: Message reject for %x -- ignored\n",
3543 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
3550 * Process an ingnore wide residue message.
3553 ahc_handle_ign_wide_residue(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
3558 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3559 scb
= ahc_lookup_scb(ahc
, scb_index
);
3561 * XXX Actually check data direction in the sequencer?
3562 * Perhaps add datadir to some spare bits in the hscb?
3564 if ((ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
) == 0
3565 || ahc_get_transfer_dir(scb
) != CAM_DIR_IN
) {
3567 * Ignore the message if we haven't
3568 * seen an appropriate data phase yet.
3572 * If the residual occurred on the last
3573 * transfer and the transfer request was
3574 * expected to end on an odd count, do
3575 * nothing. Otherwise, subtract a byte
3576 * and update the residual count accordingly.
3580 sgptr
= ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
3581 if ((sgptr
& SG_LIST_NULL
) != 0
3582 && (ahc_inb(ahc
, SCB_LUN
) & SCB_XFERLEN_ODD
) != 0) {
3584 * If the residual occurred on the last
3585 * transfer and the transfer request was
3586 * expected to end on an odd count, do
3590 struct ahc_dma_seg
*sg
;
3595 /* Pull in all of the sgptr */
3596 sgptr
= ahc_inl(ahc
, SCB_RESIDUAL_SGPTR
);
3597 data_cnt
= ahc_inl(ahc
, SCB_RESIDUAL_DATACNT
);
3599 if ((sgptr
& SG_LIST_NULL
) != 0) {
3601 * The residual data count is not updated
3602 * for the command run to completion case.
3603 * Explicitly zero the count.
3605 data_cnt
&= ~AHC_SG_LEN_MASK
;
3608 data_addr
= ahc_inl(ahc
, SHADDR
);
3612 sgptr
&= SG_PTR_MASK
;
3614 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
3617 * The residual sg ptr points to the next S/G
3618 * to load so we must go back one.
3621 sglen
= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
3622 if (sg
!= scb
->sg_list
3623 && sglen
< (data_cnt
& AHC_SG_LEN_MASK
)) {
3626 sglen
= ahc_le32toh(sg
->len
);
3628 * Preserve High Address and SG_LIST bits
3629 * while setting the count to 1.
3631 data_cnt
= 1 | (sglen
& (~AHC_SG_LEN_MASK
));
3632 data_addr
= ahc_le32toh(sg
->addr
)
3633 + (sglen
& AHC_SG_LEN_MASK
) - 1;
3636 * Increment sg so it points to the
3640 sgptr
= ahc_sg_virt_to_bus(scb
, sg
);
3642 ahc_outl(ahc
, SCB_RESIDUAL_SGPTR
, sgptr
);
3643 ahc_outl(ahc
, SCB_RESIDUAL_DATACNT
, data_cnt
);
3645 * Toggle the "oddness" of the transfer length
3646 * to handle this mid-transfer ignore wide
3647 * residue. This ensures that the oddness is
3648 * correct for subsequent data transfers.
3650 ahc_outb(ahc
, SCB_LUN
,
3651 ahc_inb(ahc
, SCB_LUN
) ^ SCB_XFERLEN_ODD
);
3658 * Reinitialize the data pointers for the active transfer
3659 * based on its current residual.
3662 ahc_reinitialize_dataptrs(struct ahc_softc
*ahc
)
3665 struct ahc_dma_seg
*sg
;
3671 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3672 scb
= ahc_lookup_scb(ahc
, scb_index
);
3673 sgptr
= (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 3) << 24)
3674 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 2) << 16)
3675 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 1) << 8)
3676 | ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
3678 sgptr
&= SG_PTR_MASK
;
3679 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
3681 /* The residual sg_ptr always points to the next sg */
3684 resid
= (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 2) << 16)
3685 | (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 1) << 8)
3686 | ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
);
3688 dataptr
= ahc_le32toh(sg
->addr
)
3689 + (ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
)
3691 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
3694 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
3695 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
3696 ahc_outb(ahc
, HADDR
,
3697 (ahc_le32toh(sg
->len
) >> 24) & SG_HIGH_ADDR_BITS
);
3698 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
3700 ahc_outb(ahc
, HADDR
+ 3, dataptr
>> 24);
3701 ahc_outb(ahc
, HADDR
+ 2, dataptr
>> 16);
3702 ahc_outb(ahc
, HADDR
+ 1, dataptr
>> 8);
3703 ahc_outb(ahc
, HADDR
, dataptr
);
3704 ahc_outb(ahc
, HCNT
+ 2, resid
>> 16);
3705 ahc_outb(ahc
, HCNT
+ 1, resid
>> 8);
3706 ahc_outb(ahc
, HCNT
, resid
);
3707 if ((ahc
->features
& AHC_ULTRA2
) == 0) {
3708 ahc_outb(ahc
, STCNT
+ 2, resid
>> 16);
3709 ahc_outb(ahc
, STCNT
+ 1, resid
>> 8);
3710 ahc_outb(ahc
, STCNT
, resid
);
3715 * Handle the effects of issuing a bus device reset message.
3718 ahc_handle_devreset(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3719 cam_status status
, char *message
, int verbose_level
)
3721 #ifdef AHC_TARGET_MODE
3722 struct ahc_tmode_tstate
* tstate
;
3727 found
= ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
3728 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, devinfo
->role
,
3731 #ifdef AHC_TARGET_MODE
3733 * Send an immediate notify ccb to all target mord peripheral
3734 * drivers affected by this action.
3736 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
3737 if (tstate
!= NULL
) {
3738 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
3739 struct ahc_tmode_lstate
* lstate
;
3741 lstate
= tstate
->enabled_luns
[lun
];
3745 ahc_queue_lstate_event(ahc
, lstate
, devinfo
->our_scsiid
,
3746 MSG_BUS_DEV_RESET
, /*arg*/0);
3747 ahc_send_lstate_events(ahc
, lstate
);
3753 * Go back to async/narrow transfers and renegotiate.
3755 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
3756 AHC_TRANS_CUR
, /*paused*/TRUE
);
3757 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
,
3758 /*period*/0, /*offset*/0, /*ppr_options*/0,
3759 AHC_TRANS_CUR
, /*paused*/TRUE
);
3761 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
3762 CAM_LUN_WILDCARD
, AC_SENT_BDR
, NULL
);
3765 && (verbose_level
<= bootverbose
))
3766 printf("%s: %s on %c:%d. %d SCBs aborted\n", ahc_name(ahc
),
3767 message
, devinfo
->channel
, devinfo
->target
, found
);
3770 #ifdef AHC_TARGET_MODE
3772 ahc_setup_target_msgin(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3777 * To facilitate adding multiple messages together,
3778 * each routine should increment the index and len
3779 * variables instead of setting them explicitly.
3781 ahc
->msgout_index
= 0;
3782 ahc
->msgout_len
= 0;
3784 if (scb
!= NULL
&& (scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0)
3785 ahc_build_transfer_msg(ahc
, devinfo
);
3787 panic("ahc_intr: AWAITING target message with no message");
3789 ahc
->msgout_index
= 0;
3790 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
3793 /**************************** Initialization **********************************/
3795 * Allocate a controller structure for a new device
3796 * and perform initial initializion.
3799 ahc_alloc(void *platform_arg
, char *name
)
3801 struct ahc_softc
*ahc
;
3804 #if !defined(__DragonFly__) && !defined(__FreeBSD__)
3805 ahc
= kmalloc(sizeof(*ahc
), M_DEVBUF
, M_WAITOK
);
3807 ahc
= device_get_softc((device_t
)platform_arg
);
3809 memset(ahc
, 0, sizeof(*ahc
));
3810 ahc
->seep_config
= kmalloc(sizeof(*ahc
->seep_config
),
3811 M_DEVBUF
, M_WAITOK
);
3812 LIST_INIT(&ahc
->pending_scbs
);
3813 /* We don't know our unit number until the OSM sets it */
3816 ahc
->description
= NULL
;
3818 ahc
->channel_b
= 'B';
3819 ahc
->chip
= AHC_NONE
;
3820 ahc
->features
= AHC_FENONE
;
3821 ahc
->bugs
= AHC_BUGNONE
;
3822 ahc
->flags
= AHC_FNONE
;
3824 * Default to all error reporting enabled with the
3825 * sequencer operating at its fastest speed.
3826 * The bus attach code may modify this.
3828 ahc
->seqctl
= FASTMODE
;
3830 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++)
3831 TAILQ_INIT(&ahc
->untagged_queues
[i
]);
3832 if (ahc_platform_alloc(ahc
, platform_arg
) != 0) {
3840 ahc_softc_init(struct ahc_softc
*ahc
)
3843 /* The IRQMS bit is only valid on VL and EISA chips */
3844 if ((ahc
->chip
& AHC_PCI
) == 0)
3845 ahc
->unpause
= ahc_inb(ahc
, HCNTRL
) & IRQMS
;
3848 ahc
->pause
= ahc
->unpause
| PAUSE
;
3849 /* XXX The shared scb data stuff should be deprecated */
3850 if (ahc
->scb_data
== NULL
) {
3851 ahc
->scb_data
= kmalloc(sizeof(*ahc
->scb_data
),
3852 M_DEVBUF
, M_WAITOK
| M_ZERO
);
3859 ahc_softc_insert(struct ahc_softc
*ahc
)
3861 struct ahc_softc
*list_ahc
;
3863 #if AHC_PCI_CONFIG > 0
3865 * Second Function PCI devices need to inherit some
3866 * settings from function 0.
3868 if ((ahc
->chip
& AHC_BUS_MASK
) == AHC_PCI
3869 && (ahc
->features
& AHC_MULTI_FUNC
) != 0) {
3870 TAILQ_FOREACH(list_ahc
, &ahc_tailq
, links
) {
3871 ahc_dev_softc_t list_pci
;
3872 ahc_dev_softc_t pci
;
3874 list_pci
= list_ahc
->dev_softc
;
3875 pci
= ahc
->dev_softc
;
3876 if (ahc_get_pci_slot(list_pci
) == ahc_get_pci_slot(pci
)
3877 && ahc_get_pci_bus(list_pci
) == ahc_get_pci_bus(pci
)) {
3878 struct ahc_softc
*master
;
3879 struct ahc_softc
*slave
;
3881 if (ahc_get_pci_function(list_pci
) == 0) {
3888 slave
->flags
&= ~AHC_BIOS_ENABLED
;
3890 master
->flags
& AHC_BIOS_ENABLED
;
3891 slave
->flags
&= ~AHC_PRIMARY_CHANNEL
;
3893 master
->flags
& AHC_PRIMARY_CHANNEL
;
3901 * Insertion sort into our list of softcs.
3903 list_ahc
= TAILQ_FIRST(&ahc_tailq
);
3904 while (list_ahc
!= NULL
3905 && ahc_softc_comp(ahc
, list_ahc
) <= 0)
3906 list_ahc
= TAILQ_NEXT(list_ahc
, links
);
3907 if (list_ahc
!= NULL
)
3908 TAILQ_INSERT_BEFORE(list_ahc
, ahc
, links
);
3910 TAILQ_INSERT_TAIL(&ahc_tailq
, ahc
, links
);
3915 * Verify that the passed in softc pointer is for a
3916 * controller that is still configured.
3919 ahc_find_softc(struct ahc_softc
*ahc
)
3921 struct ahc_softc
*list_ahc
;
3923 TAILQ_FOREACH(list_ahc
, &ahc_tailq
, links
) {
3924 if (list_ahc
== ahc
)
3931 ahc_set_unit(struct ahc_softc
*ahc
, int unit
)
3937 ahc_set_name(struct ahc_softc
*ahc
, char *name
)
3939 if (ahc
->name
!= NULL
)
3940 kfree(ahc
->name
, M_DEVBUF
);
3945 ahc_free(struct ahc_softc
*ahc
)
3949 switch (ahc
->init_level
) {
3953 TAILQ_REMOVE(&ahc_tailq
, ahc
, links
);
3956 ahc_dmamap_unload(ahc
, ahc
->shared_data_dmat
,
3957 ahc
->shared_data_dmamap
);
3960 ahc_dmamem_free(ahc
, ahc
->shared_data_dmat
, ahc
->qoutfifo
,
3961 ahc
->shared_data_dmamap
);
3962 ahc_dmamap_destroy(ahc
, ahc
->shared_data_dmat
,
3963 ahc
->shared_data_dmamap
);
3966 ahc_dma_tag_destroy(ahc
, ahc
->shared_data_dmat
);
3969 ahc_dma_tag_destroy(ahc
, ahc
->buffer_dmat
);
3977 ahc_dma_tag_destroy(ahc
, ahc
->parent_dmat
);
3979 ahc_platform_free(ahc
);
3980 ahc_fini_scbdata(ahc
);
3981 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
3982 struct ahc_tmode_tstate
*tstate
;
3984 tstate
= ahc
->enabled_targets
[i
];
3985 if (tstate
!= NULL
) {
3986 #ifdef AHC_TARGET_MODE
3989 for (j
= 0; j
< AHC_NUM_LUNS
; j
++) {
3990 struct ahc_tmode_lstate
*lstate
;
3992 lstate
= tstate
->enabled_luns
[j
];
3993 if (lstate
!= NULL
) {
3994 xpt_free_path(lstate
->path
);
3995 kfree(lstate
, M_DEVBUF
);
3999 kfree(tstate
, M_DEVBUF
);
4002 #ifdef AHC_TARGET_MODE
4003 if (ahc
->black_hole
!= NULL
) {
4004 xpt_free_path(ahc
->black_hole
->path
);
4005 kfree(ahc
->black_hole
, M_DEVBUF
);
4008 if (ahc
->name
!= NULL
)
4009 kfree(ahc
->name
, M_DEVBUF
);
4010 if (ahc
->seep_config
!= NULL
)
4011 kfree(ahc
->seep_config
, M_DEVBUF
);
4012 #if !defined(__DragonFly__) && !defined(__FreeBSD__)
4013 kfree(ahc
, M_DEVBUF
);
4019 ahc_shutdown(void *arg
)
4021 struct ahc_softc
*ahc
;
4024 ahc
= (struct ahc_softc
*)arg
;
4026 /* This will reset most registers to 0, but not all */
4027 ahc_reset(ahc
, /*reinit*/FALSE
);
4028 ahc_outb(ahc
, SCSISEQ
, 0);
4029 ahc_outb(ahc
, SXFRCTL0
, 0);
4030 ahc_outb(ahc
, DSPCISTATUS
, 0);
4032 for (i
= TARG_SCSIRATE
; i
< SCSICONF
; i
++)
4033 ahc_outb(ahc
, i
, 0);
4037 * Reset the controller and record some information about it
4038 * that is only available just after a reset. If "reinit" is
4039 * non-zero, this reset occured after initial configuration
4040 * and the caller requests that the chip be fully reinitialized
4041 * to a runable state. Chip interrupts are *not* enabled after
4042 * a reinitialization. The caller must enable interrupts via
4043 * ahc_intr_enable().
4046 ahc_reset(struct ahc_softc
*ahc
, int reinit
)
4049 u_int sxfrctl1_a
, sxfrctl1_b
;
4054 * Preserve the value of the SXFRCTL1 register for all channels.
4055 * It contains settings that affect termination and we don't want
4056 * to disturb the integrity of the bus.
4059 if ((ahc_inb(ahc
, HCNTRL
) & CHIPRST
) != 0) {
4061 * The chip has not been initialized since
4062 * PCI/EISA/VLB bus reset. Don't trust
4063 * "left over BIOS data".
4065 ahc
->flags
|= AHC_NO_BIOS_INIT
;
4068 if ((ahc
->chip
& AHC_CHIPID_MASK
) == AHC_AIC7770
) {
4072 * Save channel B's settings in case this chip
4073 * is setup for TWIN channel operation.
4075 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
4076 ahc_outb(ahc
, SBLKCTL
, sblkctl
| SELBUSB
);
4077 sxfrctl1_b
= ahc_inb(ahc
, SXFRCTL1
);
4078 ahc_outb(ahc
, SBLKCTL
, sblkctl
& ~SELBUSB
);
4080 sxfrctl1_a
= ahc_inb(ahc
, SXFRCTL1
);
4082 ahc_outb(ahc
, HCNTRL
, CHIPRST
| ahc
->pause
);
4085 * Ensure that the reset has finished. We delay 1000us
4086 * prior to reading the register to make sure the chip
4087 * has sufficiently completed its reset to handle register
4093 } while (--wait
&& !(ahc_inb(ahc
, HCNTRL
) & CHIPRSTACK
));
4096 printf("%s: WARNING - Failed chip reset! "
4097 "Trying to initialize anyway.\n", ahc_name(ahc
));
4099 ahc_outb(ahc
, HCNTRL
, ahc
->pause
);
4101 /* Determine channel configuration */
4102 sblkctl
= ahc_inb(ahc
, SBLKCTL
) & (SELBUSB
|SELWIDE
);
4103 /* No Twin Channel PCI cards */
4104 if ((ahc
->chip
& AHC_PCI
) != 0)
4105 sblkctl
&= ~SELBUSB
;
4108 /* Single Narrow Channel */
4112 ahc
->features
|= AHC_WIDE
;
4116 ahc
->features
|= AHC_TWIN
;
4119 printf(" Unsupported adapter type. Ignoring\n");
4126 * We must always initialize STPWEN to 1 before we
4127 * restore the saved values. STPWEN is initialized
4128 * to a tri-state condition which can only be cleared
4131 if ((ahc
->features
& AHC_TWIN
) != 0) {
4134 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
4135 ahc_outb(ahc
, SBLKCTL
, sblkctl
| SELBUSB
);
4136 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_b
);
4137 ahc_outb(ahc
, SBLKCTL
, sblkctl
& ~SELBUSB
);
4139 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_a
);
4144 * If a recovery action has forced a chip reset,
4145 * re-initialize the chip to our liking.
4147 error
= ahc
->bus_chip_init(ahc
);
4157 * Determine the number of SCBs available on the controller
4160 ahc_probe_scbs(struct ahc_softc
*ahc
) {
4163 for (i
= 0; i
< AHC_SCB_MAX
; i
++) {
4165 ahc_outb(ahc
, SCBPTR
, i
);
4166 ahc_outb(ahc
, SCB_BASE
, i
);
4167 if (ahc_inb(ahc
, SCB_BASE
) != i
)
4169 ahc_outb(ahc
, SCBPTR
, 0);
4170 if (ahc_inb(ahc
, SCB_BASE
) != 0)
4177 ahc_dmamap_cb(void *arg
, bus_dma_segment_t
*segs
, int nseg
, int error
)
4181 baddr
= (bus_addr_t
*)arg
;
4182 *baddr
= segs
->ds_addr
;
4186 ahc_build_free_scb_list(struct ahc_softc
*ahc
)
4192 if ((ahc
->flags
& AHC_LSCBS_ENABLED
) != 0)
4195 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
4198 ahc_outb(ahc
, SCBPTR
, i
);
4201 * Touch all SCB bytes to avoid parity errors
4202 * should one of our debugging routines read
4203 * an otherwise uninitiatlized byte.
4205 for (j
= 0; j
< scbsize
; j
++)
4206 ahc_outb(ahc
, SCB_BASE
+j
, 0xFF);
4208 /* Clear the control byte. */
4209 ahc_outb(ahc
, SCB_CONTROL
, 0);
4211 /* Set the next pointer */
4212 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
4213 ahc_outb(ahc
, SCB_NEXT
, i
+1);
4215 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4217 /* Make the tag number, SCSIID, and lun invalid */
4218 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
4219 ahc_outb(ahc
, SCB_SCSIID
, 0xFF);
4220 ahc_outb(ahc
, SCB_LUN
, 0xFF);
4223 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
4224 /* SCB 0 heads the free list. */
4225 ahc_outb(ahc
, FREE_SCBH
, 0);
4228 ahc_outb(ahc
, FREE_SCBH
, SCB_LIST_NULL
);
4231 /* Make sure that the last SCB terminates the free list */
4232 ahc_outb(ahc
, SCBPTR
, i
-1);
4233 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4237 ahc_init_scbdata(struct ahc_softc
*ahc
)
4239 struct scb_data
*scb_data
;
4241 scb_data
= ahc
->scb_data
;
4242 SLIST_INIT(&scb_data
->free_scbs
);
4243 SLIST_INIT(&scb_data
->sg_maps
);
4245 /* Allocate SCB resources */
4246 scb_data
->scbarray
= kmalloc(sizeof(struct scb
) * AHC_SCB_MAX_ALLOC
,
4247 M_DEVBUF
, M_INTWAIT
| M_ZERO
);
4249 /* Determine the number of hardware SCBs and initialize them */
4251 scb_data
->maxhscbs
= ahc_probe_scbs(ahc
);
4252 if (ahc
->scb_data
->maxhscbs
== 0) {
4253 printf("%s: No SCB space found\n", ahc_name(ahc
));
4258 * Create our DMA tags. These tags define the kinds of device
4259 * accessible memory allocations and memory mappings we will
4260 * need to perform during normal operation.
4262 * Unless we need to further restrict the allocation, we rely
4263 * on the restrictions of the parent dmat, hence the common
4264 * use of MAXADDR and MAXSIZE.
4267 /* DMA tag for our hardware scb structures */
4268 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4269 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4270 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4271 /*highaddr*/BUS_SPACE_MAXADDR
,
4272 /*filter*/NULL
, /*filterarg*/NULL
,
4273 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
),
4275 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4276 /*flags*/0, &scb_data
->hscb_dmat
) != 0) {
4280 scb_data
->init_level
++;
4282 /* Allocation for our hscbs */
4283 if (ahc_dmamem_alloc(ahc
, scb_data
->hscb_dmat
,
4284 (void **)&scb_data
->hscbs
,
4285 BUS_DMA_NOWAIT
, &scb_data
->hscb_dmamap
) != 0) {
4289 scb_data
->init_level
++;
4291 /* And permanently map them */
4292 ahc_dmamap_load(ahc
, scb_data
->hscb_dmat
, scb_data
->hscb_dmamap
,
4294 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
),
4295 ahc_dmamap_cb
, &scb_data
->hscb_busaddr
, /*flags*/0);
4297 scb_data
->init_level
++;
4299 /* DMA tag for our sense buffers */
4300 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4301 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4302 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4303 /*highaddr*/BUS_SPACE_MAXADDR
,
4304 /*filter*/NULL
, /*filterarg*/NULL
,
4305 AHC_SCB_MAX_ALLOC
* sizeof(struct scsi_sense_data
),
4307 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4308 /*flags*/0, &scb_data
->sense_dmat
) != 0) {
4312 scb_data
->init_level
++;
4315 if (ahc_dmamem_alloc(ahc
, scb_data
->sense_dmat
,
4316 (void **)&scb_data
->sense
,
4317 BUS_DMA_NOWAIT
, &scb_data
->sense_dmamap
) != 0) {
4321 scb_data
->init_level
++;
4323 /* And permanently map them */
4324 ahc_dmamap_load(ahc
, scb_data
->sense_dmat
, scb_data
->sense_dmamap
,
4326 AHC_SCB_MAX_ALLOC
* sizeof(struct scsi_sense_data
),
4327 ahc_dmamap_cb
, &scb_data
->sense_busaddr
, /*flags*/0);
4329 scb_data
->init_level
++;
4331 /* DMA tag for our S/G structures. We allocate in page sized chunks */
4332 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/8,
4333 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4334 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4335 /*highaddr*/BUS_SPACE_MAXADDR
,
4336 /*filter*/NULL
, /*filterarg*/NULL
,
4337 PAGE_SIZE
, /*nsegments*/1,
4338 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4339 /*flags*/0, &scb_data
->sg_dmat
) != 0) {
4343 scb_data
->init_level
++;
4345 /* Perform initial CCB allocation */
4346 memset(scb_data
->hscbs
, 0,
4347 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
));
4348 ahc_alloc_scbs(ahc
);
4350 if (scb_data
->numscbs
== 0) {
4351 printf("%s: ahc_init_scbdata - "
4352 "Unable to allocate initial scbs\n",
4358 * Reserve the next queued SCB.
4360 ahc
->next_queued_scb
= ahc_get_scb(ahc
);
4363 * Note that we were successful
4373 ahc_fini_scbdata(struct ahc_softc
*ahc
)
4375 struct scb_data
*scb_data
;
4377 scb_data
= ahc
->scb_data
;
4378 if (scb_data
== NULL
)
4381 switch (scb_data
->init_level
) {
4385 struct sg_map_node
*sg_map
;
4387 while ((sg_map
= SLIST_FIRST(&scb_data
->sg_maps
))!= NULL
) {
4388 SLIST_REMOVE_HEAD(&scb_data
->sg_maps
, links
);
4389 ahc_dmamap_unload(ahc
, scb_data
->sg_dmat
,
4391 ahc_dmamem_free(ahc
, scb_data
->sg_dmat
,
4394 kfree(sg_map
, M_DEVBUF
);
4396 ahc_dma_tag_destroy(ahc
, scb_data
->sg_dmat
);
4399 ahc_dmamap_unload(ahc
, scb_data
->sense_dmat
,
4400 scb_data
->sense_dmamap
);
4402 ahc_dmamem_free(ahc
, scb_data
->sense_dmat
, scb_data
->sense
,
4403 scb_data
->sense_dmamap
);
4404 ahc_dmamap_destroy(ahc
, scb_data
->sense_dmat
,
4405 scb_data
->sense_dmamap
);
4407 ahc_dma_tag_destroy(ahc
, scb_data
->sense_dmat
);
4409 ahc_dmamap_unload(ahc
, scb_data
->hscb_dmat
,
4410 scb_data
->hscb_dmamap
);
4412 ahc_dmamem_free(ahc
, scb_data
->hscb_dmat
, scb_data
->hscbs
,
4413 scb_data
->hscb_dmamap
);
4414 ahc_dmamap_destroy(ahc
, scb_data
->hscb_dmat
,
4415 scb_data
->hscb_dmamap
);
4417 ahc_dma_tag_destroy(ahc
, scb_data
->hscb_dmat
);
4422 if (scb_data
->scbarray
!= NULL
)
4423 kfree(scb_data
->scbarray
, M_DEVBUF
);
4427 ahc_alloc_scbs(struct ahc_softc
*ahc
)
4429 struct scb_data
*scb_data
;
4430 struct scb
*next_scb
;
4431 struct sg_map_node
*sg_map
;
4432 bus_addr_t physaddr
;
4433 struct ahc_dma_seg
*segs
;
4437 scb_data
= ahc
->scb_data
;
4438 if (scb_data
->numscbs
>= AHC_SCB_MAX_ALLOC
)
4439 /* Can't allocate any more */
4442 next_scb
= &scb_data
->scbarray
[scb_data
->numscbs
];
4444 sg_map
= kmalloc(sizeof(*sg_map
), M_DEVBUF
, M_INTWAIT
);
4446 /* Allocate S/G space for the next batch of SCBS */
4447 if (ahc_dmamem_alloc(ahc
, scb_data
->sg_dmat
,
4448 (void **)&sg_map
->sg_vaddr
,
4449 BUS_DMA_NOWAIT
, &sg_map
->sg_dmamap
) != 0) {
4450 kfree(sg_map
, M_DEVBUF
);
4454 SLIST_INSERT_HEAD(&scb_data
->sg_maps
, sg_map
, links
);
4456 ahc_dmamap_load(ahc
, scb_data
->sg_dmat
, sg_map
->sg_dmamap
,
4457 sg_map
->sg_vaddr
, PAGE_SIZE
, ahc_dmamap_cb
,
4458 &sg_map
->sg_physaddr
, /*flags*/0);
4460 segs
= sg_map
->sg_vaddr
;
4461 physaddr
= sg_map
->sg_physaddr
;
4463 newcount
= (PAGE_SIZE
/ (AHC_NSEG
* sizeof(struct ahc_dma_seg
)));
4464 newcount
= MIN(newcount
, (AHC_SCB_MAX_ALLOC
- scb_data
->numscbs
));
4465 for (i
= 0; i
< newcount
; i
++) {
4466 struct scb_platform_data
*pdata
;
4470 pdata
= kmalloc(sizeof(*pdata
), M_DEVBUF
, M_INTWAIT
);
4471 next_scb
->platform_data
= pdata
;
4472 next_scb
->sg_map
= sg_map
;
4473 next_scb
->sg_list
= segs
;
4475 * The sequencer always starts with the second entry.
4476 * The first entry is embedded in the scb.
4478 next_scb
->sg_list_phys
= physaddr
+ sizeof(struct ahc_dma_seg
);
4479 next_scb
->ahc_softc
= ahc
;
4480 next_scb
->flags
= SCB_FREE
;
4482 error
= ahc_dmamap_create(ahc
, ahc
->buffer_dmat
, /*flags*/0,
4487 next_scb
->hscb
= &scb_data
->hscbs
[scb_data
->numscbs
];
4488 next_scb
->hscb
->tag
= ahc
->scb_data
->numscbs
;
4489 SLIST_INSERT_HEAD(&ahc
->scb_data
->free_scbs
,
4490 next_scb
, links
.sle
);
4492 physaddr
+= (AHC_NSEG
* sizeof(struct ahc_dma_seg
));
4494 ahc
->scb_data
->numscbs
++;
4499 ahc_controller_info(struct ahc_softc
*ahc
, char *buf
)
4503 len
= ksprintf(buf
, "%s: ",
4504 ahc_chip_names
[ahc
->chip
& AHC_CHIPID_MASK
]);
4506 if ((ahc
->features
& AHC_TWIN
) != 0) {
4507 len
= ksprintf(buf
, "Twin Channel, A SCSI Id=%d, "
4508 "B SCSI Id=%d, primary %c, ",
4509 ahc
->our_id
, ahc
->our_id_b
,
4510 (ahc
->flags
& AHC_PRIMARY_CHANNEL
) + 'A');
4516 if ((ahc
->features
& AHC_ULTRA
) != 0) {
4518 } else if ((ahc
->features
& AHC_DT
) != 0) {
4519 speed
= "Ultra160 ";
4520 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4523 if ((ahc
->features
& AHC_WIDE
) != 0) {
4528 len
= ksprintf(buf
, "%s%s Channel %c, SCSI Id=%d, ",
4529 speed
, type
, ahc
->channel
, ahc
->our_id
);
4533 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
4534 ksprintf(buf
, "%d/%d SCBs",
4535 ahc
->scb_data
->maxhscbs
, AHC_MAX_QUEUE
);
4537 ksprintf(buf
, "%d SCBs", ahc
->scb_data
->maxhscbs
);
4541 ahc_chip_init(struct ahc_softc
*ahc
)
4547 u_int scsiseq_template
;
4550 ahc_outb(ahc
, SEQ_FLAGS
, 0);
4551 ahc_outb(ahc
, SEQ_FLAGS2
, 0);
4553 /* Set the SCSI Id, SXFRCTL0, SXFRCTL1, and SIMODE1, for both channels*/
4554 if (ahc
->features
& AHC_TWIN
) {
4557 * Setup Channel B first.
4559 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) | SELBUSB
);
4560 term
= (ahc
->flags
& AHC_TERM_ENB_B
) != 0 ? STPWEN
: 0;
4561 ahc_outb(ahc
, SCSIID
, ahc
->our_id_b
);
4562 scsi_conf
= ahc_inb(ahc
, SCSICONF
+ 1);
4563 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
4564 |term
|ahc
->seltime_b
|ENSTIMER
|ACTNEGEN
);
4565 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4566 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
4567 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
4568 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
4570 /* Select Channel A */
4571 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~SELBUSB
);
4573 term
= (ahc
->flags
& AHC_TERM_ENB_A
) != 0 ? STPWEN
: 0;
4574 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4575 ahc_outb(ahc
, SCSIID_ULTRA2
, ahc
->our_id
);
4577 ahc_outb(ahc
, SCSIID
, ahc
->our_id
);
4578 scsi_conf
= ahc_inb(ahc
, SCSICONF
);
4579 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
4581 |ENSTIMER
|ACTNEGEN
);
4582 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4583 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
4584 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
4585 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
4587 /* There are no untagged SCBs active yet. */
4588 for (i
= 0; i
< 16; i
++) {
4589 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, 0));
4590 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
4594 * The SCB based BTT allows an entry per
4595 * target and lun pair.
4597 for (lun
= 1; lun
< AHC_NUM_LUNS
; lun
++)
4598 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, lun
));
4602 /* All of our queues are empty */
4603 for (i
= 0; i
< 256; i
++)
4604 ahc
->qoutfifo
[i
] = SCB_LIST_NULL
;
4605 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_PREREAD
);
4607 for (i
= 0; i
< 256; i
++)
4608 ahc
->qinfifo
[i
] = SCB_LIST_NULL
;
4610 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
4611 ahc_outb(ahc
, TARGID
, 0);
4612 ahc_outb(ahc
, TARGID
+ 1, 0);
4616 * Tell the sequencer where it can find our arrays in memory.
4618 physaddr
= ahc
->scb_data
->hscb_busaddr
;
4619 ahc_outb(ahc
, HSCB_ADDR
, physaddr
& 0xFF);
4620 ahc_outb(ahc
, HSCB_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
4621 ahc_outb(ahc
, HSCB_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
4622 ahc_outb(ahc
, HSCB_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
4624 physaddr
= ahc
->shared_data_busaddr
;
4625 ahc_outb(ahc
, SHARED_DATA_ADDR
, physaddr
& 0xFF);
4626 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
4627 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
4628 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
4631 * Initialize the group code to command length table.
4632 * This overrides the values in TARG_SCSIRATE, so only
4633 * setup the table after we have processed that information.
4635 ahc_outb(ahc
, CMDSIZE_TABLE
, 5);
4636 ahc_outb(ahc
, CMDSIZE_TABLE
+ 1, 9);
4637 ahc_outb(ahc
, CMDSIZE_TABLE
+ 2, 9);
4638 ahc_outb(ahc
, CMDSIZE_TABLE
+ 3, 0);
4639 ahc_outb(ahc
, CMDSIZE_TABLE
+ 4, 15);
4640 ahc_outb(ahc
, CMDSIZE_TABLE
+ 5, 11);
4641 ahc_outb(ahc
, CMDSIZE_TABLE
+ 6, 0);
4642 ahc_outb(ahc
, CMDSIZE_TABLE
+ 7, 0);
4644 if ((ahc
->features
& AHC_HS_MAILBOX
) != 0)
4645 ahc_outb(ahc
, HS_MAILBOX
, 0);
4647 /* Tell the sequencer of our initial queue positions */
4648 if ((ahc
->features
& AHC_TARGETMODE
) != 0) {
4649 ahc
->tqinfifonext
= 1;
4650 ahc_outb(ahc
, KERNEL_TQINPOS
, ahc
->tqinfifonext
- 1);
4651 ahc_outb(ahc
, TQINPOS
, ahc
->tqinfifonext
);
4653 ahc
->qinfifonext
= 0;
4654 ahc
->qoutfifonext
= 0;
4655 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
4656 ahc_outb(ahc
, QOFF_CTLSTA
, SCB_QSIZE_256
);
4657 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
4658 ahc_outb(ahc
, SNSCB_QOFF
, ahc
->qinfifonext
);
4659 ahc_outb(ahc
, SDSCB_QOFF
, 0);
4661 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
4662 ahc_outb(ahc
, QINPOS
, ahc
->qinfifonext
);
4663 ahc_outb(ahc
, QOUTPOS
, ahc
->qoutfifonext
);
4666 /* We don't have any waiting selections */
4667 ahc_outb(ahc
, WAITING_SCBH
, SCB_LIST_NULL
);
4669 /* Our disconnection list is empty too */
4670 ahc_outb(ahc
, DISCONNECTED_SCBH
, SCB_LIST_NULL
);
4672 /* Message out buffer starts empty */
4673 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
4676 * Setup the allowed SCSI Sequences based on operational mode.
4677 * If we are a target, we'll enalbe select in operations once
4678 * we've had a lun enabled.
4680 scsiseq_template
= ENSELO
|ENAUTOATNO
|ENAUTOATNP
;
4681 if ((ahc
->flags
& AHC_INITIATORROLE
) != 0)
4682 scsiseq_template
|= ENRSELI
;
4683 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq_template
);
4685 /* Initialize our list of free SCBs. */
4686 ahc_build_free_scb_list(ahc
);
4689 * Tell the sequencer which SCB will be the next one it receives.
4691 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
4694 * Load the Sequencer program and Enable the adapter
4698 printf("%s: Downloading Sequencer Program...",
4701 error
= ahc_loadseq(ahc
);
4705 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4709 * Wait for up to 500ms for our transceivers
4710 * to settle. If the adapter does not have
4711 * a cable attached, the transceivers may
4712 * never settle, so don't complain if we
4716 (ahc_inb(ahc
, SBLKCTL
) & (ENAB40
|ENAB20
)) == 0 && wait
;
4725 * Start the board, ready for normal operation
4728 ahc_init(struct ahc_softc
*ahc
)
4736 size_t driver_data_size
;
4739 if ((ahc_debug
& AHC_DEBUG_SEQUENCER
) != 0)
4740 ahc
->flags
|= AHC_SEQUENCER_DEBUG
;
4743 #ifdef AHC_PRINT_SRAM
4744 printf("Scratch Ram:");
4745 for (i
= 0x20; i
< 0x5f; i
++) {
4746 if (((i
% 8) == 0) && (i
!= 0)) {
4749 printf (" 0x%x", ahc_inb(ahc
, i
));
4751 if ((ahc
->features
& AHC_MORE_SRAM
) != 0) {
4752 for (i
= 0x70; i
< 0x7f; i
++) {
4753 if (((i
% 8) == 0) && (i
!= 0)) {
4756 printf (" 0x%x", ahc_inb(ahc
, i
));
4761 * Reading uninitialized scratch ram may
4762 * generate parity errors.
4764 ahc_outb(ahc
, CLRINT
, CLRPARERR
);
4765 ahc_outb(ahc
, CLRINT
, CLRBRKADRINT
);
4770 * Assume we have a board at this stage and it has been reset.
4772 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0)
4773 ahc
->our_id
= ahc
->our_id_b
= 7;
4776 * Default to allowing initiator operations.
4778 ahc
->flags
|= AHC_INITIATORROLE
;
4781 * Only allow target mode features if this unit has them enabled.
4783 if ((AHC_TMODE_ENABLE
& (0x1 << ahc
->unit
)) == 0)
4784 ahc
->features
&= ~AHC_TARGETMODE
;
4787 /* DMA tag for mapping buffers into device visible space. */
4788 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4789 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4790 /*lowaddr*/ahc
->flags
& AHC_39BIT_ADDRESSING
4791 ? (bus_addr_t
)0x7FFFFFFFFFULL
4792 : BUS_SPACE_MAXADDR_32BIT
,
4793 /*highaddr*/BUS_SPACE_MAXADDR
,
4794 /*filter*/NULL
, /*filterarg*/NULL
,
4795 /*maxsize*/(AHC_NSEG
- 1) * PAGE_SIZE
,
4796 /*nsegments*/AHC_NSEG
,
4797 /*maxsegsz*/AHC_MAXTRANSFER_SIZE
,
4798 /*flags*/BUS_DMA_ALLOCNOW
,
4799 &ahc
->buffer_dmat
) != 0) {
4807 * DMA tag for our command fifos and other data in system memory
4808 * the card's sequencer must be able to access. For initiator
4809 * roles, we need to allocate space for the qinfifo and qoutfifo.
4810 * The qinfifo and qoutfifo are composed of 256 1 byte elements.
4811 * When providing for the target mode role, we must additionally
4812 * provide space for the incoming target command fifo and an extra
4813 * byte to deal with a dma bug in some chip versions.
4815 driver_data_size
= 2 * 256 * sizeof(uint8_t);
4816 if ((ahc
->features
& AHC_TARGETMODE
) != 0)
4817 driver_data_size
+= AHC_TMODE_CMDS
* sizeof(struct target_cmd
)
4818 + /*DMA WideOdd Bug Buffer*/1;
4819 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4820 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4821 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4822 /*highaddr*/BUS_SPACE_MAXADDR
,
4823 /*filter*/NULL
, /*filterarg*/NULL
,
4826 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4827 /*flags*/0, &ahc
->shared_data_dmat
) != 0) {
4833 /* Allocation of driver data */
4834 if (ahc_dmamem_alloc(ahc
, ahc
->shared_data_dmat
,
4835 (void **)&ahc
->qoutfifo
,
4836 BUS_DMA_NOWAIT
, &ahc
->shared_data_dmamap
) != 0) {
4842 /* And permanently map it in */
4843 ahc_dmamap_load(ahc
, ahc
->shared_data_dmat
, ahc
->shared_data_dmamap
,
4844 ahc
->qoutfifo
, driver_data_size
, ahc_dmamap_cb
,
4845 &ahc
->shared_data_busaddr
, /*flags*/0);
4847 if ((ahc
->features
& AHC_TARGETMODE
) != 0) {
4848 ahc
->targetcmds
= (struct target_cmd
*)ahc
->qoutfifo
;
4849 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[AHC_TMODE_CMDS
];
4850 ahc
->dma_bug_buf
= ahc
->shared_data_busaddr
4851 + driver_data_size
- 1;
4852 /* All target command blocks start out invalid. */
4853 for (i
= 0; i
< AHC_TMODE_CMDS
; i
++)
4854 ahc
->targetcmds
[i
].cmd_valid
= 0;
4855 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_PREREAD
);
4856 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[256];
4858 ahc
->qinfifo
= &ahc
->qoutfifo
[256];
4862 /* Allocate SCB data now that buffer_dmat is initialized */
4863 if (ahc
->scb_data
->maxhscbs
== 0)
4864 if (ahc_init_scbdata(ahc
) != 0)
4868 * Allocate a tstate to house information for our
4869 * initiator presence on the bus as well as the user
4870 * data for any target mode initiator.
4872 if (ahc_alloc_tstate(ahc
, ahc
->our_id
, 'A') == NULL
) {
4873 printf("%s: unable to allocate ahc_tmode_tstate. "
4874 "Failing attach\n", ahc_name(ahc
));
4878 if ((ahc
->features
& AHC_TWIN
) != 0) {
4879 if (ahc_alloc_tstate(ahc
, ahc
->our_id_b
, 'B') == NULL
) {
4880 printf("%s: unable to allocate ahc_tmode_tstate. "
4881 "Failing attach\n", ahc_name(ahc
));
4886 if (ahc
->scb_data
->maxhscbs
< AHC_SCB_MAX_ALLOC
) {
4887 ahc
->flags
|= AHC_PAGESCBS
;
4889 ahc
->flags
&= ~AHC_PAGESCBS
;
4893 if (ahc_debug
& AHC_SHOW_MISC
) {
4894 printf("%s: hardware scb %u bytes; kernel scb %u bytes; "
4895 "ahc_dma %u bytes\n",
4897 (u_int
)sizeof(struct hardware_scb
),
4898 (u_int
)sizeof(struct scb
),
4899 (u_int
)sizeof(struct ahc_dma_seg
));
4901 #endif /* AHC_DEBUG */
4904 * Look at the information that board initialization or
4905 * the board bios has left us.
4907 if (ahc
->features
& AHC_TWIN
) {
4908 scsi_conf
= ahc_inb(ahc
, SCSICONF
+ 1);
4909 if ((scsi_conf
& RESET_SCSI
) != 0
4910 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
4911 ahc
->flags
|= AHC_RESET_BUS_B
;
4914 scsi_conf
= ahc_inb(ahc
, SCSICONF
);
4915 if ((scsi_conf
& RESET_SCSI
) != 0
4916 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
4917 ahc
->flags
|= AHC_RESET_BUS_A
;
4920 tagenable
= ALL_TARGETS_MASK
;
4922 /* Grab the disconnection disable table and invert it for our needs */
4923 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0) {
4924 printf("%s: Host Adapter Bios disabled. Using default SCSI "
4925 "device parameters\n", ahc_name(ahc
));
4926 ahc
->flags
|= AHC_EXTENDED_TRANS_A
|AHC_EXTENDED_TRANS_B
|
4927 AHC_TERM_ENB_A
|AHC_TERM_ENB_B
;
4928 discenable
= ALL_TARGETS_MASK
;
4929 if ((ahc
->features
& AHC_ULTRA
) != 0)
4930 ultraenb
= ALL_TARGETS_MASK
;
4932 discenable
= ~((ahc_inb(ahc
, DISC_DSB
+ 1) << 8)
4933 | ahc_inb(ahc
, DISC_DSB
));
4934 if ((ahc
->features
& (AHC_ULTRA
|AHC_ULTRA2
)) != 0)
4935 ultraenb
= (ahc_inb(ahc
, ULTRA_ENB
+ 1) << 8)
4936 | ahc_inb(ahc
, ULTRA_ENB
);
4939 if ((ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) == 0)
4942 for (i
= 0; i
<= max_targ
; i
++) {
4943 struct ahc_initiator_tinfo
*tinfo
;
4944 struct ahc_tmode_tstate
*tstate
;
4950 our_id
= ahc
->our_id
;
4952 if (i
> 7 && (ahc
->features
& AHC_TWIN
) != 0) {
4954 our_id
= ahc
->our_id_b
;
4957 tinfo
= ahc_fetch_transinfo(ahc
, channel
, our_id
,
4958 target_id
, &tstate
);
4959 /* Default to async narrow across the board */
4960 memset(tinfo
, 0, sizeof(*tinfo
));
4961 if (ahc
->flags
& AHC_USEDEFAULTS
) {
4962 if ((ahc
->features
& AHC_WIDE
) != 0)
4963 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
4966 * These will be truncated when we determine the
4967 * connection type we have with the target.
4969 tinfo
->user
.period
= ahc_syncrates
->period
;
4970 tinfo
->user
.offset
= MAX_OFFSET
;
4975 /* Take the settings leftover in scratch RAM. */
4976 scsirate
= ahc_inb(ahc
, TARG_SCSIRATE
+ i
);
4978 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4982 if ((scsirate
& SOFS
) == 0x0F) {
4984 * Haven't negotiated yet,
4985 * so the format is different.
4987 scsirate
= (scsirate
& SXFR
) >> 4
4990 | (scsirate
& WIDEXFER
);
4991 offset
= MAX_OFFSET_ULTRA2
;
4993 offset
= ahc_inb(ahc
, TARG_OFFSET
+ i
);
4994 if ((scsirate
& ~WIDEXFER
) == 0 && offset
!= 0)
4995 /* Set to the lowest sync rate, 5MHz */
4997 maxsync
= AHC_SYNCRATE_ULTRA2
;
4998 if ((ahc
->features
& AHC_DT
) != 0)
4999 maxsync
= AHC_SYNCRATE_DT
;
5000 tinfo
->user
.period
=
5001 ahc_find_period(ahc
, scsirate
, maxsync
);
5003 tinfo
->user
.period
= 0;
5005 tinfo
->user
.offset
= MAX_OFFSET
;
5006 if ((scsirate
& SXFR_ULTRA2
) <= 8/*10MHz*/
5007 && (ahc
->features
& AHC_DT
) != 0)
5008 tinfo
->user
.ppr_options
=
5010 } else if ((scsirate
& SOFS
) != 0) {
5011 if ((scsirate
& SXFR
) == 0x40
5012 && (ultraenb
& mask
) != 0) {
5013 /* Treat 10MHz as a non-ultra speed */
5017 tinfo
->user
.period
=
5018 ahc_find_period(ahc
, scsirate
,
5020 ? AHC_SYNCRATE_ULTRA
5021 : AHC_SYNCRATE_FAST
);
5022 if (tinfo
->user
.period
!= 0)
5023 tinfo
->user
.offset
= MAX_OFFSET
;
5025 if (tinfo
->user
.period
== 0)
5026 tinfo
->user
.offset
= 0;
5027 if ((scsirate
& WIDEXFER
) != 0
5028 && (ahc
->features
& AHC_WIDE
) != 0)
5029 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
5030 tinfo
->user
.protocol_version
= 4;
5031 if ((ahc
->features
& AHC_DT
) != 0)
5032 tinfo
->user
.transport_version
= 3;
5034 tinfo
->user
.transport_version
= 2;
5035 tinfo
->goal
.protocol_version
= 2;
5036 tinfo
->goal
.transport_version
= 2;
5037 tinfo
->curr
.protocol_version
= 2;
5038 tinfo
->curr
.transport_version
= 2;
5040 tstate
->ultraenb
= 0;
5042 ahc
->user_discenable
= discenable
;
5043 ahc
->user_tagenable
= tagenable
;
5045 return (ahc
->bus_chip_init(ahc
));
5049 ahc_intr_enable(struct ahc_softc
*ahc
, int enable
)
5053 hcntrl
= ahc_inb(ahc
, HCNTRL
);
5055 ahc
->pause
&= ~INTEN
;
5056 ahc
->unpause
&= ~INTEN
;
5059 ahc
->pause
|= INTEN
;
5060 ahc
->unpause
|= INTEN
;
5062 ahc_outb(ahc
, HCNTRL
, hcntrl
);
5066 * Ensure that the card is paused in a location
5067 * outside of all critical sections and that all
5068 * pending work is completed prior to returning.
5069 * This routine should only be called from outside
5070 * an interrupt context.
5073 ahc_pause_and_flushwork(struct ahc_softc
*ahc
)
5080 ahc
->flags
|= AHC_ALL_INTERRUPTS
;
5088 ahc_outb(ahc
, SCSISEQ
, ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
5089 ahc_clear_critical_section(ahc
);
5090 intstat
= ahc_inb(ahc
, INTSTAT
);
5092 && (intstat
!= 0xFF || (ahc
->features
& AHC_REMOVABLE
) == 0)
5093 && ((intstat
& INT_PEND
) != 0
5094 || (ahc_inb(ahc
, SSTAT0
) & (SELDO
|SELINGO
)) != 0));
5095 if (maxloops
== 0) {
5096 printf("Infinite interrupt loop, INTSTAT = %x",
5097 ahc_inb(ahc
, INTSTAT
));
5099 ahc_platform_flushwork(ahc
);
5100 ahc
->flags
&= ~AHC_ALL_INTERRUPTS
;
5104 ahc_suspend(struct ahc_softc
*ahc
)
5107 ahc_pause_and_flushwork(ahc
);
5109 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
) {
5114 #ifdef AHC_TARGET_MODE
5116 * XXX What about ATIOs that have not yet been serviced?
5117 * Perhaps we should just refuse to be suspended if we
5118 * are acting in a target role.
5120 if (ahc
->pending_device
!= NULL
) {
5130 ahc_resume(struct ahc_softc
*ahc
)
5133 ahc_reset(ahc
, /*reinit*/TRUE
);
5134 ahc_intr_enable(ahc
, TRUE
);
5139 /************************** Busy Target Table *********************************/
5141 * Return the untagged transaction id for a given target/channel lun.
5142 * Optionally, clear the entry.
5145 ahc_index_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5148 u_int target_offset
;
5150 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5153 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5154 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5155 scbid
= ahc_inb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
));
5156 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5158 target_offset
= TCL_TARGET_OFFSET(tcl
);
5159 scbid
= ahc_inb(ahc
, BUSY_TARGETS
+ target_offset
);
5166 ahc_unbusy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5168 u_int target_offset
;
5170 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5173 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5174 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5175 ahc_outb(ahc
, SCB_64_BTT
+TCL_TARGET_OFFSET(tcl
), SCB_LIST_NULL
);
5176 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5178 target_offset
= TCL_TARGET_OFFSET(tcl
);
5179 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, SCB_LIST_NULL
);
5184 ahc_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
, u_int scbid
)
5186 u_int target_offset
;
5188 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5191 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5192 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5193 ahc_outb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
), scbid
);
5194 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5196 target_offset
= TCL_TARGET_OFFSET(tcl
);
5197 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, scbid
);
5201 /************************** SCB and SCB queue management **********************/
5203 ahc_match_scb(struct ahc_softc
*ahc
, struct scb
*scb
, int target
,
5204 char channel
, int lun
, u_int tag
, role_t role
)
5206 int targ
= SCB_GET_TARGET(ahc
, scb
);
5207 char chan
= SCB_GET_CHANNEL(ahc
, scb
);
5208 int slun
= SCB_GET_LUN(scb
);
5211 match
= ((chan
== channel
) || (channel
== ALL_CHANNELS
));
5213 match
= ((targ
== target
) || (target
== CAM_TARGET_WILDCARD
));
5215 match
= ((lun
== slun
) || (lun
== CAM_LUN_WILDCARD
));
5217 #ifdef AHC_TARGET_MODE
5220 group
= XPT_FC_GROUP(scb
->io_ctx
->ccb_h
.func_code
);
5221 if (role
== ROLE_INITIATOR
) {
5222 match
= (group
!= XPT_FC_GROUP_TMODE
)
5223 && ((tag
== scb
->hscb
->tag
)
5224 || (tag
== SCB_LIST_NULL
));
5225 } else if (role
== ROLE_TARGET
) {
5226 match
= (group
== XPT_FC_GROUP_TMODE
)
5227 && ((tag
== scb
->io_ctx
->csio
.tag_id
)
5228 || (tag
== SCB_LIST_NULL
));
5230 #else /* !AHC_TARGET_MODE */
5231 match
= ((tag
== scb
->hscb
->tag
) || (tag
== SCB_LIST_NULL
));
5232 #endif /* AHC_TARGET_MODE */
5239 ahc_freeze_devq(struct ahc_softc
*ahc
, struct scb
*scb
)
5245 target
= SCB_GET_TARGET(ahc
, scb
);
5246 lun
= SCB_GET_LUN(scb
);
5247 channel
= SCB_GET_CHANNEL(ahc
, scb
);
5249 ahc_search_qinfifo(ahc
, target
, channel
, lun
,
5250 /*tag*/SCB_LIST_NULL
, ROLE_UNKNOWN
,
5251 CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
5253 ahc_platform_freeze_devq(ahc
, scb
);
5257 ahc_qinfifo_requeue_tail(struct ahc_softc
*ahc
, struct scb
*scb
)
5259 struct scb
*prev_scb
;
5262 if (ahc_qinfifo_count(ahc
) != 0) {
5266 prev_pos
= ahc
->qinfifonext
- 1;
5267 prev_tag
= ahc
->qinfifo
[prev_pos
];
5268 prev_scb
= ahc_lookup_scb(ahc
, prev_tag
);
5270 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5271 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5272 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5274 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5279 ahc_qinfifo_requeue(struct ahc_softc
*ahc
, struct scb
*prev_scb
,
5282 if (prev_scb
== NULL
) {
5283 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5285 prev_scb
->hscb
->next
= scb
->hscb
->tag
;
5286 ahc_sync_scb(ahc
, prev_scb
,
5287 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5289 ahc
->qinfifo
[ahc
->qinfifonext
++] = scb
->hscb
->tag
;
5290 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5291 ahc_sync_scb(ahc
, scb
, BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5295 ahc_qinfifo_count(struct ahc_softc
*ahc
)
5300 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5301 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
5302 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
5304 qinpos
= ahc_inb(ahc
, QINPOS
);
5305 diff
= ahc
->qinfifonext
- qinpos
;
5310 ahc_search_qinfifo(struct ahc_softc
*ahc
, int target
, char channel
,
5311 int lun
, u_int tag
, role_t role
, uint32_t status
,
5312 ahc_search_action action
)
5315 struct scb
*prev_scb
;
5325 qintail
= ahc
->qinfifonext
;
5326 have_qregs
= (ahc
->features
& AHC_QUEUE_REGS
) != 0;
5328 qinstart
= ahc_inb(ahc
, SNSCB_QOFF
);
5329 ahc_outb(ahc
, SNSCB_QOFF
, qinstart
);
5331 qinstart
= ahc_inb(ahc
, QINPOS
);
5336 if (action
== SEARCH_COMPLETE
) {
5338 * Don't attempt to run any queued untagged transactions
5339 * until we are done with the abort process.
5341 ahc_freeze_untagged_queues(ahc
);
5345 * Start with an empty queue. Entries that are not chosen
5346 * for removal will be re-added to the queue as we go.
5348 ahc
->qinfifonext
= qinpos
;
5349 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
5351 while (qinpos
!= qintail
) {
5352 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinpos
]);
5354 printf("qinpos = %d, SCB index = %d\n",
5355 qinpos
, ahc
->qinfifo
[qinpos
]);
5359 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
, tag
, role
)) {
5361 * We found an scb that needs to be acted on.
5365 case SEARCH_COMPLETE
:
5370 ostat
= ahc_get_transaction_status(scb
);
5371 if (ostat
== CAM_REQ_INPROG
)
5372 ahc_set_transaction_status(scb
, status
);
5373 cstat
= ahc_get_transaction_status(scb
);
5374 if (cstat
!= CAM_REQ_CMP
)
5375 ahc_freeze_scb(scb
);
5376 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5377 printf("Inactive SCB in qinfifo\n");
5385 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5390 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5396 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5397 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5399 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5402 if (action
!= SEARCH_COUNT
5404 && (qinstart
!= ahc
->qinfifonext
)) {
5406 * The sequencer may be in the process of dmaing
5407 * down the SCB at the beginning of the queue.
5408 * This could be problematic if either the first,
5409 * or the second SCB is removed from the queue
5410 * (the first SCB includes a pointer to the "next"
5411 * SCB to dma). If we have removed any entries, swap
5412 * the first element in the queue with the next HSCB
5413 * so the sequencer will notice that NEXT_QUEUED_SCB
5414 * has changed during its dma attempt and will retry
5417 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinstart
]);
5420 printf("found = %d, qinstart = %d, qinfifionext = %d\n",
5421 found
, qinstart
, ahc
->qinfifonext
);
5422 panic("First/Second Qinfifo fixup\n");
5425 * ahc_swap_with_next_hscb forces our next pointer to
5426 * point to the reserved SCB for future commands. Save
5427 * and restore our original next pointer to maintain
5430 next
= scb
->hscb
->next
;
5431 ahc
->scb_data
->scbindex
[scb
->hscb
->tag
] = NULL
;
5432 ahc_swap_with_next_hscb(ahc
, scb
);
5433 scb
->hscb
->next
= next
;
5434 ahc
->qinfifo
[qinstart
] = scb
->hscb
->tag
;
5436 /* Tell the card about the new head of the qinfifo. */
5437 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5439 /* Fixup the tail "next" pointer. */
5440 qintail
= ahc
->qinfifonext
- 1;
5441 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qintail
]);
5442 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5446 * Search waiting for selection list.
5448 curscbptr
= ahc_inb(ahc
, SCBPTR
);
5449 next
= ahc_inb(ahc
, WAITING_SCBH
); /* Start at head of list. */
5450 prev
= SCB_LIST_NULL
;
5452 while (next
!= SCB_LIST_NULL
) {
5455 ahc_outb(ahc
, SCBPTR
, next
);
5456 scb_index
= ahc_inb(ahc
, SCB_TAG
);
5457 if (scb_index
>= ahc
->scb_data
->numscbs
) {
5458 printf("Waiting List inconsistency. "
5459 "SCB index == %d, yet numscbs == %d.",
5460 scb_index
, ahc
->scb_data
->numscbs
);
5461 ahc_dump_card_state(ahc
);
5462 panic("for safety");
5464 scb
= ahc_lookup_scb(ahc
, scb_index
);
5466 printf("scb_index = %d, next = %d\n",
5468 panic("Waiting List traversal\n");
5470 if (ahc_match_scb(ahc
, scb
, target
, channel
,
5471 lun
, SCB_LIST_NULL
, role
)) {
5473 * We found an scb that needs to be acted on.
5477 case SEARCH_COMPLETE
:
5482 ostat
= ahc_get_transaction_status(scb
);
5483 if (ostat
== CAM_REQ_INPROG
)
5484 ahc_set_transaction_status(scb
,
5486 cstat
= ahc_get_transaction_status(scb
);
5487 if (cstat
!= CAM_REQ_CMP
)
5488 ahc_freeze_scb(scb
);
5489 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5490 printf("Inactive SCB in Waiting List\n");
5495 next
= ahc_rem_wscb(ahc
, next
, prev
);
5499 next
= ahc_inb(ahc
, SCB_NEXT
);
5505 next
= ahc_inb(ahc
, SCB_NEXT
);
5508 ahc_outb(ahc
, SCBPTR
, curscbptr
);
5510 found
+= ahc_search_untagged_queues(ahc
, /*ahc_io_ctx_t*/NULL
, target
,
5511 channel
, lun
, status
, action
);
5513 if (action
== SEARCH_COMPLETE
)
5514 ahc_release_untagged_queues(ahc
);
5519 ahc_search_untagged_queues(struct ahc_softc
*ahc
, ahc_io_ctx_t ctx
,
5520 int target
, char channel
, int lun
, uint32_t status
,
5521 ahc_search_action action
)
5528 if (action
== SEARCH_COMPLETE
) {
5530 * Don't attempt to run any queued untagged transactions
5531 * until we are done with the abort process.
5533 ahc_freeze_untagged_queues(ahc
);
5538 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
5541 if (target
!= CAM_TARGET_WILDCARD
) {
5552 for (; i
< maxtarget
; i
++) {
5553 struct scb_tailq
*untagged_q
;
5554 struct scb
*next_scb
;
5556 untagged_q
= &(ahc
->untagged_queues
[i
]);
5557 next_scb
= TAILQ_FIRST(untagged_q
);
5558 while (next_scb
!= NULL
) {
5561 next_scb
= TAILQ_NEXT(scb
, links
.tqe
);
5564 * The head of the list may be the currently
5565 * active untagged command for a device.
5566 * We're only searching for commands that
5567 * have not been started. A transaction
5568 * marked active but still in the qinfifo
5569 * is removed by the qinfifo scanning code
5572 if ((scb
->flags
& SCB_ACTIVE
) != 0)
5575 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
,
5576 SCB_LIST_NULL
, ROLE_INITIATOR
) == 0
5577 || (ctx
!= NULL
&& ctx
!= scb
->io_ctx
))
5581 * We found an scb that needs to be acted on.
5585 case SEARCH_COMPLETE
:
5590 ostat
= ahc_get_transaction_status(scb
);
5591 if (ostat
== CAM_REQ_INPROG
)
5592 ahc_set_transaction_status(scb
, status
);
5593 cstat
= ahc_get_transaction_status(scb
);
5594 if (cstat
!= CAM_REQ_CMP
)
5595 ahc_freeze_scb(scb
);
5596 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5597 printf("Inactive SCB in untaggedQ\n");
5602 scb
->flags
&= ~SCB_UNTAGGEDQ
;
5603 TAILQ_REMOVE(untagged_q
, scb
, links
.tqe
);
5611 if (action
== SEARCH_COMPLETE
)
5612 ahc_release_untagged_queues(ahc
);
5617 ahc_search_disc_list(struct ahc_softc
*ahc
, int target
, char channel
,
5618 int lun
, u_int tag
, int stop_on_first
, int remove
,
5628 next
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
5629 prev
= SCB_LIST_NULL
;
5632 /* restore this when we're done */
5633 active_scb
= ahc_inb(ahc
, SCBPTR
);
5635 /* Silence compiler */
5636 active_scb
= SCB_LIST_NULL
;
5638 while (next
!= SCB_LIST_NULL
) {
5641 ahc_outb(ahc
, SCBPTR
, next
);
5642 scb_index
= ahc_inb(ahc
, SCB_TAG
);
5643 if (scb_index
>= ahc
->scb_data
->numscbs
) {
5644 printf("Disconnected List inconsistency. "
5645 "SCB index == %d, yet numscbs == %d.",
5646 scb_index
, ahc
->scb_data
->numscbs
);
5647 ahc_dump_card_state(ahc
);
5648 panic("for safety");
5652 panic("Disconnected List Loop. "
5653 "cur SCBPTR == %x, prev SCBPTR == %x.",
5656 scbp
= ahc_lookup_scb(ahc
, scb_index
);
5657 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
,
5658 tag
, ROLE_INITIATOR
)) {
5662 ahc_rem_scb_from_disc_list(ahc
, prev
, next
);
5665 next
= ahc_inb(ahc
, SCB_NEXT
);
5671 next
= ahc_inb(ahc
, SCB_NEXT
);
5675 ahc_outb(ahc
, SCBPTR
, active_scb
);
5680 * Remove an SCB from the on chip list of disconnected transactions.
5681 * This is empty/unused if we are not performing SCB paging.
5684 ahc_rem_scb_from_disc_list(struct ahc_softc
*ahc
, u_int prev
, u_int scbptr
)
5688 ahc_outb(ahc
, SCBPTR
, scbptr
);
5689 next
= ahc_inb(ahc
, SCB_NEXT
);
5691 ahc_outb(ahc
, SCB_CONTROL
, 0);
5693 ahc_add_curscb_to_free_list(ahc
);
5695 if (prev
!= SCB_LIST_NULL
) {
5696 ahc_outb(ahc
, SCBPTR
, prev
);
5697 ahc_outb(ahc
, SCB_NEXT
, next
);
5699 ahc_outb(ahc
, DISCONNECTED_SCBH
, next
);
5705 * Add the SCB as selected by SCBPTR onto the on chip list of
5706 * free hardware SCBs. This list is empty/unused if we are not
5707 * performing SCB paging.
5710 ahc_add_curscb_to_free_list(struct ahc_softc
*ahc
)
5713 * Invalidate the tag so that our abort
5714 * routines don't think it's active.
5716 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
5718 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
5719 ahc_outb(ahc
, SCB_NEXT
, ahc_inb(ahc
, FREE_SCBH
));
5720 ahc_outb(ahc
, FREE_SCBH
, ahc_inb(ahc
, SCBPTR
));
5725 * Manipulate the waiting for selection list and return the
5726 * scb that follows the one that we remove.
5729 ahc_rem_wscb(struct ahc_softc
*ahc
, u_int scbpos
, u_int prev
)
5734 * Select the SCB we want to abort and
5735 * pull the next pointer out of it.
5737 curscb
= ahc_inb(ahc
, SCBPTR
);
5738 ahc_outb(ahc
, SCBPTR
, scbpos
);
5739 next
= ahc_inb(ahc
, SCB_NEXT
);
5741 /* Clear the necessary fields */
5742 ahc_outb(ahc
, SCB_CONTROL
, 0);
5744 ahc_add_curscb_to_free_list(ahc
);
5746 /* update the waiting list */
5747 if (prev
== SCB_LIST_NULL
) {
5748 /* First in the list */
5749 ahc_outb(ahc
, WAITING_SCBH
, next
);
5752 * Ensure we aren't attempting to perform
5753 * selection for this entry.
5755 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
5758 * Select the scb that pointed to us
5759 * and update its next pointer.
5761 ahc_outb(ahc
, SCBPTR
, prev
);
5762 ahc_outb(ahc
, SCB_NEXT
, next
);
5766 * Point us back at the original scb position.
5768 ahc_outb(ahc
, SCBPTR
, curscb
);
5772 /******************************** Error Handling ******************************/
5774 * Abort all SCBs that match the given description (target/channel/lun/tag),
5775 * setting their status to the passed in status if the status has not already
5776 * been modified from CAM_REQ_INPROG. This routine assumes that the sequencer
5777 * is paused before it is called.
5780 ahc_abort_scbs(struct ahc_softc
*ahc
, int target
, char channel
,
5781 int lun
, u_int tag
, role_t role
, uint32_t status
)
5784 struct scb
*scbp_next
;
5794 * Don't attempt to run any queued untagged transactions
5795 * until we are done with the abort process.
5797 ahc_freeze_untagged_queues(ahc
);
5799 /* restore this when we're done */
5800 active_scb
= ahc_inb(ahc
, SCBPTR
);
5802 found
= ahc_search_qinfifo(ahc
, target
, channel
, lun
, SCB_LIST_NULL
,
5803 role
, CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
5806 * Clean out the busy target table for any untagged commands.
5810 if (target
!= CAM_TARGET_WILDCARD
) {
5817 if (lun
== CAM_LUN_WILDCARD
) {
5820 * Unless we are using an SCB based
5821 * busy targets table, there is only
5822 * one table entry for all luns of
5827 if ((ahc
->flags
& AHC_SCB_BTT
) != 0)
5828 maxlun
= AHC_NUM_LUNS
;
5834 if (role
!= ROLE_TARGET
) {
5835 for (;i
< maxtarget
; i
++) {
5836 for (j
= minlun
;j
< maxlun
; j
++) {
5840 tcl
= BUILD_TCL(i
<< 4, j
);
5841 scbid
= ahc_index_busy_tcl(ahc
, tcl
);
5842 scbp
= ahc_lookup_scb(ahc
, scbid
);
5844 || ahc_match_scb(ahc
, scbp
, target
, channel
,
5845 lun
, tag
, role
) == 0)
5847 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, j
));
5852 * Go through the disconnected list and remove any entries we
5853 * have queued for completion, 0'ing their control byte too.
5854 * We save the active SCB and restore it ourselves, so there
5855 * is no reason for this search to restore it too.
5857 ahc_search_disc_list(ahc
, target
, channel
, lun
, tag
,
5858 /*stop_on_first*/FALSE
, /*remove*/TRUE
,
5859 /*save_state*/FALSE
);
5863 * Go through the hardware SCB array looking for commands that
5864 * were active but not on any list. In some cases, these remnants
5865 * might not still have mappings in the scbindex array (e.g. unexpected
5866 * bus free with the same scb queued for an abort). Don't hold this
5869 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
5872 ahc_outb(ahc
, SCBPTR
, i
);
5873 scbid
= ahc_inb(ahc
, SCB_TAG
);
5874 scbp
= ahc_lookup_scb(ahc
, scbid
);
5875 if ((scbp
== NULL
&& scbid
!= SCB_LIST_NULL
)
5877 && ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)))
5878 ahc_add_curscb_to_free_list(ahc
);
5882 * Go through the pending CCB list and look for
5883 * commands for this target that are still active.
5884 * These are other tagged commands that were
5885 * disconnected when the reset occurred.
5887 scbp_next
= LIST_FIRST(&ahc
->pending_scbs
);
5888 while (scbp_next
!= NULL
) {
5890 scbp_next
= LIST_NEXT(scbp
, pending_links
);
5891 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)) {
5894 ostat
= ahc_get_transaction_status(scbp
);
5895 if (ostat
== CAM_REQ_INPROG
)
5896 ahc_set_transaction_status(scbp
, status
);
5897 if (ahc_get_transaction_status(scbp
) != CAM_REQ_CMP
)
5898 ahc_freeze_scb(scbp
);
5899 if ((scbp
->flags
& SCB_ACTIVE
) == 0)
5900 printf("Inactive SCB on pending list\n");
5901 ahc_done(ahc
, scbp
);
5905 ahc_outb(ahc
, SCBPTR
, active_scb
);
5906 ahc_platform_abort_scbs(ahc
, target
, channel
, lun
, tag
, role
, status
);
5907 ahc_release_untagged_queues(ahc
);
5912 ahc_reset_current_bus(struct ahc_softc
*ahc
)
5916 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENSCSIRST
);
5917 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
5918 ahc_outb(ahc
, SCSISEQ
, scsiseq
| SCSIRSTO
);
5919 ahc_flush_device_writes(ahc
);
5920 ahc_delay(AHC_BUSRESET_DELAY
);
5921 /* Turn off the bus reset */
5922 ahc_outb(ahc
, SCSISEQ
, scsiseq
& ~SCSIRSTO
);
5924 ahc_clear_intstat(ahc
);
5926 /* Re-enable reset interrupts */
5927 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) | ENSCSIRST
);
5931 ahc_reset_channel(struct ahc_softc
*ahc
, char channel
, int initiate_reset
)
5933 struct ahc_devinfo devinfo
;
5934 u_int initiator
, target
, max_scsiid
;
5942 ahc
->pending_device
= NULL
;
5944 ahc_compile_devinfo(&devinfo
,
5945 CAM_TARGET_WILDCARD
,
5946 CAM_TARGET_WILDCARD
,
5948 channel
, ROLE_UNKNOWN
);
5951 /* Make sure the sequencer is in a safe location. */
5952 ahc_clear_critical_section(ahc
);
5955 * Run our command complete fifos to ensure that we perform
5956 * completion processing on any commands that 'completed'
5957 * before the reset occurred.
5959 ahc_run_qoutfifo(ahc
);
5960 #ifdef AHC_TARGET_MODE
5962 * XXX - In Twin mode, the tqinfifo may have commands
5963 * for an unaffected channel in it. However, if
5964 * we have run out of ATIO resources to drain that
5965 * queue, we may not get them all out here. Further,
5966 * the blocked transactions for the reset channel
5967 * should just be killed off, irrespecitve of whether
5968 * we are blocked on ATIO resources. Write a routine
5969 * to compact the tqinfifo appropriately.
5971 if ((ahc
->flags
& AHC_TARGETROLE
) != 0) {
5972 ahc_run_tqinfifo(ahc
, /*paused*/TRUE
);
5977 * Reset the bus if we are initiating this reset
5979 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
5981 if ((ahc
->features
& AHC_TWIN
) != 0
5982 && ((sblkctl
& SELBUSB
) != 0))
5984 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
5985 if (cur_channel
!= channel
) {
5986 /* Case 1: Command for another bus is active
5987 * Stealthily reset the other bus without
5988 * upsetting the current bus.
5990 ahc_outb(ahc
, SBLKCTL
, sblkctl
^ SELBUSB
);
5991 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
5992 #ifdef AHC_TARGET_MODE
5994 * Bus resets clear ENSELI, so we cannot
5995 * defer re-enabling bus reset interrupts
5996 * if we are in target mode.
5998 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
5999 simode1
|= ENSCSIRST
;
6001 ahc_outb(ahc
, SIMODE1
, simode1
);
6003 ahc_reset_current_bus(ahc
);
6004 ahc_clear_intstat(ahc
);
6005 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
6006 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
6007 restart_needed
= FALSE
;
6009 /* Case 2: A command from this bus is active or we're idle */
6010 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
6011 #ifdef AHC_TARGET_MODE
6013 * Bus resets clear ENSELI, so we cannot
6014 * defer re-enabling bus reset interrupts
6015 * if we are in target mode.
6017 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
6018 simode1
|= ENSCSIRST
;
6020 ahc_outb(ahc
, SIMODE1
, simode1
);
6022 ahc_reset_current_bus(ahc
);
6023 ahc_clear_intstat(ahc
);
6024 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
6025 restart_needed
= TRUE
;
6029 * Clean up all the state information for the
6030 * pending transactions on this bus.
6032 found
= ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, channel
,
6033 CAM_LUN_WILDCARD
, SCB_LIST_NULL
,
6034 ROLE_UNKNOWN
, CAM_SCSI_BUS_RESET
);
6036 max_scsiid
= (ahc
->features
& AHC_WIDE
) ? 15 : 7;
6038 #ifdef AHC_TARGET_MODE
6040 * Send an immediate notify ccb to all target more peripheral
6041 * drivers affected by this action.
6043 for (target
= 0; target
<= max_scsiid
; target
++) {
6044 struct ahc_tmode_tstate
* tstate
;
6047 tstate
= ahc
->enabled_targets
[target
];
6050 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
6051 struct ahc_tmode_lstate
* lstate
;
6053 lstate
= tstate
->enabled_luns
[lun
];
6057 ahc_queue_lstate_event(ahc
, lstate
, CAM_TARGET_WILDCARD
,
6058 EVENT_TYPE_BUS_RESET
, /*arg*/0);
6059 ahc_send_lstate_events(ahc
, lstate
);
6063 /* Notify the XPT that a bus reset occurred */
6064 ahc_send_async(ahc
, devinfo
.channel
, CAM_TARGET_WILDCARD
,
6065 CAM_LUN_WILDCARD
, AC_BUS_RESET
, NULL
);
6068 * Revert to async/narrow transfers until we renegotiate.
6070 for (target
= 0; target
<= max_scsiid
; target
++) {
6072 if (ahc
->enabled_targets
[target
] == NULL
)
6074 for (initiator
= 0; initiator
<= max_scsiid
; initiator
++) {
6075 struct ahc_devinfo devinfo
;
6077 ahc_compile_devinfo(&devinfo
, target
, initiator
,
6079 channel
, ROLE_UNKNOWN
);
6080 ahc_set_width(ahc
, &devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
6081 AHC_TRANS_CUR
, /*paused*/TRUE
);
6082 ahc_set_syncrate(ahc
, &devinfo
, /*syncrate*/NULL
,
6083 /*period*/0, /*offset*/0,
6084 /*ppr_options*/0, AHC_TRANS_CUR
,
6097 /***************************** Residual Processing ****************************/
6099 * Calculate the residual for a just completed SCB.
6102 ahc_calc_residual(struct ahc_softc
*ahc
, struct scb
*scb
)
6104 struct hardware_scb
*hscb
;
6105 struct status_pkt
*spkt
;
6107 uint32_t resid_sgptr
;
6113 * SG_RESID_VALID clear in sgptr.
6114 * 2) Transferless command
6115 * 3) Never performed any transfers.
6116 * sgptr has SG_FULL_RESID set.
6117 * 4) No residual but target did not
6118 * save data pointers after the
6119 * last transfer, so sgptr was
6121 * 5) We have a partial residual.
6122 * Use residual_sgptr to determine
6127 sgptr
= ahc_le32toh(hscb
->sgptr
);
6128 if ((sgptr
& SG_RESID_VALID
) == 0)
6131 sgptr
&= ~SG_RESID_VALID
;
6133 if ((sgptr
& SG_LIST_NULL
) != 0)
6137 spkt
= &hscb
->shared_data
.status
;
6138 resid_sgptr
= ahc_le32toh(spkt
->residual_sg_ptr
);
6139 if ((sgptr
& SG_FULL_RESID
) != 0) {
6141 resid
= ahc_get_transfer_length(scb
);
6142 } else if ((resid_sgptr
& SG_LIST_NULL
) != 0) {
6145 } else if ((resid_sgptr
& ~SG_PTR_MASK
) != 0) {
6146 panic("Bogus resid sgptr value 0x%x\n", resid_sgptr
);
6148 struct ahc_dma_seg
*sg
;
6151 * Remainder of the SG where the transfer
6154 resid
= ahc_le32toh(spkt
->residual_datacnt
) & AHC_SG_LEN_MASK
;
6155 sg
= ahc_sg_bus_to_virt(scb
, resid_sgptr
& SG_PTR_MASK
);
6157 /* The residual sg_ptr always points to the next sg */
6161 * Add up the contents of all residual
6162 * SG segments that are after the SG where
6163 * the transfer stopped.
6165 while ((ahc_le32toh(sg
->len
) & AHC_DMA_LAST_SEG
) == 0) {
6167 resid
+= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
6170 if ((scb
->flags
& SCB_SENSE
) == 0)
6171 ahc_set_residual(scb
, resid
);
6173 ahc_set_sense_residual(scb
, resid
);
6176 if ((ahc_debug
& AHC_SHOW_MISC
) != 0) {
6177 ahc_print_path(ahc
, scb
);
6178 printf("Handled %sResidual of %d bytes\n",
6179 (scb
->flags
& SCB_SENSE
) ? "Sense " : "", resid
);
6184 /******************************* Target Mode **********************************/
6185 #ifdef AHC_TARGET_MODE
6187 * Add a target mode event to this lun's queue
6190 ahc_queue_lstate_event(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
,
6191 u_int initiator_id
, u_int event_type
, u_int event_arg
)
6193 struct ahc_tmode_event
*event
;
6196 xpt_freeze_devq(lstate
->path
, /*count*/1);
6197 if (lstate
->event_w_idx
>= lstate
->event_r_idx
)
6198 pending
= lstate
->event_w_idx
- lstate
->event_r_idx
;
6200 pending
= AHC_TMODE_EVENT_BUFFER_SIZE
+ 1
6201 - (lstate
->event_r_idx
- lstate
->event_w_idx
);
6203 if (event_type
== EVENT_TYPE_BUS_RESET
6204 || event_type
== MSG_BUS_DEV_RESET
) {
6206 * Any earlier events are irrelevant, so reset our buffer.
6207 * This has the effect of allowing us to deal with reset
6208 * floods (an external device holding down the reset line)
6209 * without losing the event that is really interesting.
6211 lstate
->event_r_idx
= 0;
6212 lstate
->event_w_idx
= 0;
6213 xpt_release_devq(lstate
->path
, pending
, /*runqueue*/FALSE
);
6216 if (pending
== AHC_TMODE_EVENT_BUFFER_SIZE
) {
6217 xpt_print_path(lstate
->path
);
6218 printf("immediate event %x:%x lost\n",
6219 lstate
->event_buffer
[lstate
->event_r_idx
].event_type
,
6220 lstate
->event_buffer
[lstate
->event_r_idx
].event_arg
);
6221 lstate
->event_r_idx
++;
6222 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6223 lstate
->event_r_idx
= 0;
6224 xpt_release_devq(lstate
->path
, /*count*/1, /*runqueue*/FALSE
);
6227 event
= &lstate
->event_buffer
[lstate
->event_w_idx
];
6228 event
->initiator_id
= initiator_id
;
6229 event
->event_type
= event_type
;
6230 event
->event_arg
= event_arg
;
6231 lstate
->event_w_idx
++;
6232 if (lstate
->event_w_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6233 lstate
->event_w_idx
= 0;
6237 * Send any target mode events queued up waiting
6238 * for immediate notify resources.
6241 ahc_send_lstate_events(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
)
6243 struct ccb_hdr
*ccbh
;
6244 struct ccb_immed_notify
*inot
;
6246 while (lstate
->event_r_idx
!= lstate
->event_w_idx
6247 && (ccbh
= SLIST_FIRST(&lstate
->immed_notifies
)) != NULL
) {
6248 struct ahc_tmode_event
*event
;
6250 event
= &lstate
->event_buffer
[lstate
->event_r_idx
];
6251 SLIST_REMOVE_HEAD(&lstate
->immed_notifies
, sim_links
.sle
);
6252 inot
= (struct ccb_immed_notify
*)ccbh
;
6253 switch (event
->event_type
) {
6254 case EVENT_TYPE_BUS_RESET
:
6255 ccbh
->status
= CAM_SCSI_BUS_RESET
|CAM_DEV_QFRZN
;
6258 ccbh
->status
= CAM_MESSAGE_RECV
|CAM_DEV_QFRZN
;
6259 inot
->message_args
[0] = event
->event_type
;
6260 inot
->message_args
[1] = event
->event_arg
;
6263 inot
->initiator_id
= event
->initiator_id
;
6264 inot
->sense_len
= 0;
6265 xpt_done((union ccb
*)inot
);
6266 lstate
->event_r_idx
++;
6267 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6268 lstate
->event_r_idx
= 0;
6273 /******************** Sequencer Program Patching/Download *********************/
6277 ahc_dumpseq(struct ahc_softc
* ahc
)
6281 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6282 ahc_outb(ahc
, SEQADDR0
, 0);
6283 ahc_outb(ahc
, SEQADDR1
, 0);
6284 for (i
= 0; i
< ahc
->instruction_ram_size
; i
++) {
6285 uint8_t ins_bytes
[4];
6287 ahc_insb(ahc
, SEQRAM
, ins_bytes
, 4);
6288 printf("0x%08x\n", ins_bytes
[0] << 24
6289 | ins_bytes
[1] << 16
6297 ahc_loadseq(struct ahc_softc
*ahc
)
6299 struct cs cs_table
[num_critical_sections
];
6300 u_int begin_set
[num_critical_sections
];
6301 u_int end_set
[num_critical_sections
];
6302 struct patch
*cur_patch
;
6307 u_int sg_prefetch_cnt
;
6309 uint8_t download_consts
[7];
6312 * Start out with 0 critical sections
6313 * that apply to this firmware load.
6317 memset(begin_set
, 0, sizeof(begin_set
));
6318 memset(end_set
, 0, sizeof(end_set
));
6320 /* Setup downloadable constant table */
6321 download_consts
[QOUTFIFO_OFFSET
] = 0;
6322 if (ahc
->targetcmds
!= NULL
)
6323 download_consts
[QOUTFIFO_OFFSET
] += 32;
6324 download_consts
[QINFIFO_OFFSET
] = download_consts
[QOUTFIFO_OFFSET
] + 1;
6325 download_consts
[CACHESIZE_MASK
] = ahc
->pci_cachesize
- 1;
6326 download_consts
[INVERTED_CACHESIZE_MASK
] = ~(ahc
->pci_cachesize
- 1);
6327 sg_prefetch_cnt
= ahc
->pci_cachesize
;
6328 if (sg_prefetch_cnt
< (2 * sizeof(struct ahc_dma_seg
)))
6329 sg_prefetch_cnt
= 2 * sizeof(struct ahc_dma_seg
);
6330 download_consts
[SG_PREFETCH_CNT
] = sg_prefetch_cnt
;
6331 download_consts
[SG_PREFETCH_ALIGN_MASK
] = ~(sg_prefetch_cnt
- 1);
6332 download_consts
[SG_PREFETCH_ADDR_MASK
] = (sg_prefetch_cnt
- 1);
6334 cur_patch
= patches
;
6337 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6338 ahc_outb(ahc
, SEQADDR0
, 0);
6339 ahc_outb(ahc
, SEQADDR1
, 0);
6341 for (i
= 0; i
< sizeof(seqprog
)/4; i
++) {
6342 if (ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
) == 0) {
6344 * Don't download this instruction as it
6345 * is in a patch that was removed.
6350 if (downloaded
== ahc
->instruction_ram_size
) {
6352 * We're about to exceed the instruction
6353 * storage capacity for this chip. Fail
6356 printf("\n%s: Program too large for instruction memory "
6357 "size of %d!\n", ahc_name(ahc
),
6358 ahc
->instruction_ram_size
);
6363 * Move through the CS table until we find a CS
6364 * that might apply to this instruction.
6366 for (; cur_cs
< num_critical_sections
; cur_cs
++) {
6367 if (critical_sections
[cur_cs
].end
<= i
) {
6368 if (begin_set
[cs_count
] == TRUE
6369 && end_set
[cs_count
] == FALSE
) {
6370 cs_table
[cs_count
].end
= downloaded
;
6371 end_set
[cs_count
] = TRUE
;
6376 if (critical_sections
[cur_cs
].begin
<= i
6377 && begin_set
[cs_count
] == FALSE
) {
6378 cs_table
[cs_count
].begin
= downloaded
;
6379 begin_set
[cs_count
] = TRUE
;
6383 ahc_download_instr(ahc
, i
, download_consts
);
6387 ahc
->num_critical_sections
= cs_count
;
6388 if (cs_count
!= 0) {
6389 cs_count
*= sizeof(struct cs
);
6390 ahc
->critical_sections
= kmalloc(cs_count
, M_DEVBUF
, M_INTWAIT
);
6391 memcpy(ahc
->critical_sections
, cs_table
, cs_count
);
6393 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
);
6396 printf(" %d instructions downloaded\n", downloaded
);
6397 printf("%s: Features 0x%x, Bugs 0x%x, Flags 0x%x\n",
6398 ahc_name(ahc
), ahc
->features
, ahc
->bugs
, ahc
->flags
);
6404 ahc_check_patch(struct ahc_softc
*ahc
, struct patch
**start_patch
,
6405 u_int start_instr
, u_int
*skip_addr
)
6407 struct patch
*cur_patch
;
6408 struct patch
*last_patch
;
6411 num_patches
= sizeof(patches
)/sizeof(struct patch
);
6412 last_patch
= &patches
[num_patches
];
6413 cur_patch
= *start_patch
;
6415 while (cur_patch
< last_patch
&& start_instr
== cur_patch
->begin
) {
6417 if (cur_patch
->patch_func(ahc
) == 0) {
6419 /* Start rejecting code */
6420 *skip_addr
= start_instr
+ cur_patch
->skip_instr
;
6421 cur_patch
+= cur_patch
->skip_patch
;
6423 /* Accepted this patch. Advance to the next
6424 * one and wait for our intruction pointer to
6431 *start_patch
= cur_patch
;
6432 if (start_instr
< *skip_addr
)
6433 /* Still skipping */
6440 ahc_download_instr(struct ahc_softc
*ahc
, u_int instrptr
, uint8_t *dconsts
)
6442 union ins_formats instr
;
6443 struct ins_format1
*fmt1_ins
;
6444 struct ins_format3
*fmt3_ins
;
6448 * The firmware is always compiled into a little endian format.
6450 instr
.integer
= ahc_le32toh(*(uint32_t*)&seqprog
[instrptr
* 4]);
6452 fmt1_ins
= &instr
.format1
;
6455 /* Pull the opcode */
6456 opcode
= instr
.format1
.opcode
;
6467 struct patch
*cur_patch
;
6473 fmt3_ins
= &instr
.format3
;
6475 address
= fmt3_ins
->address
;
6476 cur_patch
= patches
;
6479 for (i
= 0; i
< address
;) {
6481 ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
);
6483 if (skip_addr
> i
) {
6486 end_addr
= MIN(address
, skip_addr
);
6487 address_offset
+= end_addr
- i
;
6493 address
-= address_offset
;
6494 fmt3_ins
->address
= address
;
6503 if (fmt1_ins
->parity
!= 0) {
6504 fmt1_ins
->immediate
= dconsts
[fmt1_ins
->immediate
];
6506 fmt1_ins
->parity
= 0;
6507 if ((ahc
->features
& AHC_CMD_CHAN
) == 0
6508 && opcode
== AIC_OP_BMOV
) {
6510 * Block move was added at the same time
6511 * as the command channel. Verify that
6512 * this is only a move of a single element
6513 * and convert the BMOV to a MOV
6514 * (AND with an immediate of FF).
6516 if (fmt1_ins
->immediate
!= 1)
6517 panic("%s: BMOV not supported\n",
6519 fmt1_ins
->opcode
= AIC_OP_AND
;
6520 fmt1_ins
->immediate
= 0xff;
6524 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
6527 /* Calculate odd parity for the instruction */
6528 for (i
= 0, count
= 0; i
< 31; i
++) {
6532 if ((instr
.integer
& mask
) != 0)
6535 if ((count
& 0x01) == 0)
6536 instr
.format1
.parity
= 1;
6538 /* Compress the instruction for older sequencers */
6539 if (fmt3_ins
!= NULL
) {
6542 | (fmt3_ins
->source
<< 8)
6543 | (fmt3_ins
->address
<< 16)
6544 | (fmt3_ins
->opcode
<< 25);
6548 | (fmt1_ins
->source
<< 8)
6549 | (fmt1_ins
->destination
<< 16)
6550 | (fmt1_ins
->ret
<< 24)
6551 | (fmt1_ins
->opcode
<< 25);
6554 /* The sequencer is a little endian cpu */
6555 instr
.integer
= ahc_htole32(instr
.integer
);
6556 ahc_outsb(ahc
, SEQRAM
, instr
.bytes
, 4);
6559 panic("Unknown opcode encountered in seq program");
6565 ahc_print_register(ahc_reg_parse_entry_t
*table
, u_int num_entries
,
6566 const char *name
, u_int address
, u_int value
,
6567 u_int
*cur_column
, u_int wrap_point
)
6572 if (cur_column
!= NULL
&& *cur_column
>= wrap_point
) {
6576 printed
= printf("%s[0x%x]", name
, value
);
6577 if (table
== NULL
) {
6578 printed
+= printf(" ");
6579 *cur_column
+= printed
;
6583 while (printed_mask
!= 0xFF) {
6586 for (entry
= 0; entry
< num_entries
; entry
++) {
6587 if (((value
& table
[entry
].mask
)
6588 != table
[entry
].value
)
6589 || ((printed_mask
& table
[entry
].mask
)
6590 == table
[entry
].mask
))
6593 printed
+= printf("%s%s",
6594 printed_mask
== 0 ? ":(" : "|",
6596 printed_mask
|= table
[entry
].mask
;
6600 if (entry
>= num_entries
)
6603 if (printed_mask
!= 0)
6604 printed
+= printf(") ");
6606 printed
+= printf(" ");
6607 if (cur_column
!= NULL
)
6608 *cur_column
+= printed
;
6613 ahc_dump_card_state(struct ahc_softc
*ahc
)
6616 struct scb_tailq
*untagged_q
;
6627 uint8_t saved_scbptr
;
6629 if (ahc_is_paused(ahc
)) {
6636 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
6637 last_phase
= ahc_inb(ahc
, LASTPHASE
);
6638 printf(">>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<<\n"
6639 "%s: Dumping Card State %s, at SEQADDR 0x%x\n",
6640 ahc_name(ahc
), ahc_lookup_phase_entry(last_phase
)->phasemsg
,
6641 ahc_inb(ahc
, SEQADDR0
) | (ahc_inb(ahc
, SEQADDR1
) << 8));
6643 printf("Card was paused\n");
6644 printf("ACCUM = 0x%x, SINDEX = 0x%x, DINDEX = 0x%x, ARG_2 = 0x%x\n",
6645 ahc_inb(ahc
, ACCUM
), ahc_inb(ahc
, SINDEX
), ahc_inb(ahc
, DINDEX
),
6646 ahc_inb(ahc
, ARG_2
));
6647 printf("HCNT = 0x%x SCBPTR = 0x%x\n", ahc_inb(ahc
, HCNT
),
6648 ahc_inb(ahc
, SCBPTR
));
6650 if ((ahc
->features
& AHC_DT
) != 0)
6651 ahc_scsiphase_print(ahc_inb(ahc
, SCSIPHASE
), &cur_col
, 50);
6652 ahc_scsisigi_print(ahc_inb(ahc
, SCSISIGI
), &cur_col
, 50);
6653 ahc_error_print(ahc_inb(ahc
, ERROR
), &cur_col
, 50);
6654 ahc_scsibusl_print(ahc_inb(ahc
, SCSIBUSL
), &cur_col
, 50);
6655 ahc_lastphase_print(ahc_inb(ahc
, LASTPHASE
), &cur_col
, 50);
6656 ahc_scsiseq_print(ahc_inb(ahc
, SCSISEQ
), &cur_col
, 50);
6657 ahc_sblkctl_print(ahc_inb(ahc
, SBLKCTL
), &cur_col
, 50);
6658 ahc_scsirate_print(ahc_inb(ahc
, SCSIRATE
), &cur_col
, 50);
6659 ahc_seqctl_print(ahc_inb(ahc
, SEQCTL
), &cur_col
, 50);
6660 ahc_seq_flags_print(ahc_inb(ahc
, SEQ_FLAGS
), &cur_col
, 50);
6661 ahc_sstat0_print(ahc_inb(ahc
, SSTAT0
), &cur_col
, 50);
6662 ahc_sstat1_print(ahc_inb(ahc
, SSTAT1
), &cur_col
, 50);
6663 ahc_sstat2_print(ahc_inb(ahc
, SSTAT2
), &cur_col
, 50);
6664 ahc_sstat3_print(ahc_inb(ahc
, SSTAT3
), &cur_col
, 50);
6665 ahc_simode0_print(ahc_inb(ahc
, SIMODE0
), &cur_col
, 50);
6666 ahc_simode1_print(ahc_inb(ahc
, SIMODE1
), &cur_col
, 50);
6667 ahc_sxfrctl0_print(ahc_inb(ahc
, SXFRCTL0
), &cur_col
, 50);
6668 ahc_dfcntrl_print(ahc_inb(ahc
, DFCNTRL
), &cur_col
, 50);
6669 ahc_dfstatus_print(ahc_inb(ahc
, DFSTATUS
), &cur_col
, 50);
6673 for (i
= 0; i
< STACK_SIZE
; i
++)
6674 printf(" 0x%x", ahc_inb(ahc
, STACK
)|(ahc_inb(ahc
, STACK
) << 8));
6675 printf("\nSCB count = %d\n", ahc
->scb_data
->numscbs
);
6676 printf("Kernel NEXTQSCB = %d\n", ahc
->next_queued_scb
->hscb
->tag
);
6677 printf("Card NEXTQSCB = %d\n", ahc_inb(ahc
, NEXT_QUEUED_SCB
));
6679 printf("QINFIFO entries: ");
6680 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
6681 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
6682 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
6684 qinpos
= ahc_inb(ahc
, QINPOS
);
6685 qintail
= ahc
->qinfifonext
;
6686 while (qinpos
!= qintail
) {
6687 printf("%d ", ahc
->qinfifo
[qinpos
]);
6692 printf("Waiting Queue entries: ");
6693 scb_index
= ahc_inb(ahc
, WAITING_SCBH
);
6695 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6696 ahc_outb(ahc
, SCBPTR
, scb_index
);
6697 printf("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
6698 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6702 printf("Disconnected Queue entries: ");
6703 scb_index
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
6705 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6706 ahc_outb(ahc
, SCBPTR
, scb_index
);
6707 printf("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
6708 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6712 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
6713 printf("QOUTFIFO entries: ");
6714 qoutpos
= ahc
->qoutfifonext
;
6716 while (ahc
->qoutfifo
[qoutpos
] != SCB_LIST_NULL
&& i
++ < 256) {
6717 printf("%d ", ahc
->qoutfifo
[qoutpos
]);
6722 printf("Sequencer Free SCB List: ");
6723 scb_index
= ahc_inb(ahc
, FREE_SCBH
);
6725 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6726 ahc_outb(ahc
, SCBPTR
, scb_index
);
6727 printf("%d ", scb_index
);
6728 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6732 printf("Sequencer SCB Info: ");
6733 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
6734 ahc_outb(ahc
, SCBPTR
, i
);
6735 cur_col
= printf("\n%3d ", i
);
6737 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
), &cur_col
, 60);
6738 ahc_scb_scsiid_print(ahc_inb(ahc
, SCB_SCSIID
), &cur_col
, 60);
6739 ahc_scb_lun_print(ahc_inb(ahc
, SCB_LUN
), &cur_col
, 60);
6740 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
6744 printf("Pending list: ");
6746 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
6749 cur_col
= printf("\n%3d ", scb
->hscb
->tag
);
6750 ahc_scb_control_print(scb
->hscb
->control
, &cur_col
, 60);
6751 ahc_scb_scsiid_print(scb
->hscb
->scsiid
, &cur_col
, 60);
6752 ahc_scb_lun_print(scb
->hscb
->lun
, &cur_col
, 60);
6753 if ((ahc
->flags
& AHC_PAGESCBS
) == 0) {
6754 ahc_outb(ahc
, SCBPTR
, scb
->hscb
->tag
);
6756 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
),
6758 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
6764 printf("Kernel Free SCB list: ");
6766 SLIST_FOREACH(scb
, &ahc
->scb_data
->free_scbs
, links
.sle
) {
6769 printf("%d ", scb
->hscb
->tag
);
6773 maxtarget
= (ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) ? 15 : 7;
6774 for (target
= 0; target
<= maxtarget
; target
++) {
6775 untagged_q
= &ahc
->untagged_queues
[target
];
6776 if (TAILQ_FIRST(untagged_q
) == NULL
)
6778 printf("Untagged Q(%d): ", target
);
6780 TAILQ_FOREACH(scb
, untagged_q
, links
.tqe
) {
6783 printf("%d ", scb
->hscb
->tag
);
6788 ahc_platform_dump_card_state(ahc
);
6789 printf("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n");
6790 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
6795 /************************* Target Mode ****************************************/
6796 #ifdef AHC_TARGET_MODE
6798 ahc_find_tmode_devs(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
,
6799 struct ahc_tmode_tstate
**tstate
,
6800 struct ahc_tmode_lstate
**lstate
,
6801 int notfound_failure
)
6804 if ((ahc
->features
& AHC_TARGETMODE
) == 0)
6805 return (CAM_REQ_INVALID
);
6808 * Handle the 'black hole' device that sucks up
6809 * requests to unattached luns on enabled targets.
6811 if (ccb
->ccb_h
.target_id
== CAM_TARGET_WILDCARD
6812 && ccb
->ccb_h
.target_lun
== CAM_LUN_WILDCARD
) {
6814 *lstate
= ahc
->black_hole
;
6818 max_id
= (ahc
->features
& AHC_WIDE
) ? 15 : 7;
6819 if (ccb
->ccb_h
.target_id
> max_id
)
6820 return (CAM_TID_INVALID
);
6822 if (ccb
->ccb_h
.target_lun
>= AHC_NUM_LUNS
)
6823 return (CAM_LUN_INVALID
);
6825 *tstate
= ahc
->enabled_targets
[ccb
->ccb_h
.target_id
];
6827 if (*tstate
!= NULL
)
6829 (*tstate
)->enabled_luns
[ccb
->ccb_h
.target_lun
];
6832 if (notfound_failure
!= 0 && *lstate
== NULL
)
6833 return (CAM_PATH_INVALID
);
6835 return (CAM_REQ_CMP
);
6839 ahc_handle_en_lun(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
)
6841 struct ahc_tmode_tstate
*tstate
;
6842 struct ahc_tmode_lstate
*lstate
;
6843 struct ccb_en_lun
*cel
;
6853 status
= ahc_find_tmode_devs(ahc
, sim
, ccb
, &tstate
, &lstate
,
6854 /*notfound_failure*/FALSE
);
6856 if (status
!= CAM_REQ_CMP
) {
6857 ccb
->ccb_h
.status
= status
;
6861 if (cam_sim_bus(sim
) == 0)
6862 our_id
= ahc
->our_id
;
6864 our_id
= ahc
->our_id_b
;
6866 if (ccb
->ccb_h
.target_id
!= our_id
) {
6868 * our_id represents our initiator ID, or
6869 * the ID of the first target to have an
6870 * enabled lun in target mode. There are
6871 * two cases that may preclude enabling a
6872 * target id other than our_id.
6874 * o our_id is for an active initiator role.
6875 * Since the hardware does not support
6876 * reselections to the initiator role at
6877 * anything other than our_id, and our_id
6878 * is used by the hardware to indicate the
6879 * ID to use for both select-out and
6880 * reselect-out operations, the only target
6881 * ID we can support in this mode is our_id.
6883 * o The MULTARGID feature is not available and
6884 * a previous target mode ID has been enabled.
6886 if ((ahc
->features
& AHC_MULTIROLE
) != 0) {
6888 if ((ahc
->features
& AHC_MULTI_TID
) != 0
6889 && (ahc
->flags
& AHC_INITIATORROLE
) != 0) {
6891 * Only allow additional targets if
6892 * the initiator role is disabled.
6893 * The hardware cannot handle a re-select-in
6894 * on the initiator id during a re-select-out
6895 * on a different target id.
6897 status
= CAM_TID_INVALID
;
6898 } else if ((ahc
->flags
& AHC_INITIATORROLE
) != 0
6899 || ahc
->enabled_luns
> 0) {
6901 * Only allow our target id to change
6902 * if the initiator role is not configured
6903 * and there are no enabled luns which
6904 * are attached to the currently registered
6907 status
= CAM_TID_INVALID
;
6909 } else if ((ahc
->features
& AHC_MULTI_TID
) == 0
6910 && ahc
->enabled_luns
> 0) {
6912 status
= CAM_TID_INVALID
;
6916 if (status
!= CAM_REQ_CMP
) {
6917 ccb
->ccb_h
.status
= status
;
6922 * We now have an id that is valid.
6923 * If we aren't in target mode, switch modes.
6925 if ((ahc
->flags
& AHC_TARGETROLE
) == 0
6926 && ccb
->ccb_h
.target_id
!= CAM_TARGET_WILDCARD
) {
6928 ahc_flag saved_flags
;
6930 printf("Configuring Target Mode\n");
6932 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
) {
6933 ccb
->ccb_h
.status
= CAM_BUSY
;
6934 ahc_unlock(ahc
, &s
);
6937 saved_flags
= ahc
->flags
;
6938 ahc
->flags
|= AHC_TARGETROLE
;
6939 if ((ahc
->features
& AHC_MULTIROLE
) == 0)
6940 ahc
->flags
&= ~AHC_INITIATORROLE
;
6942 error
= ahc_loadseq(ahc
);
6945 * Restore original configuration and notify
6946 * the caller that we cannot support target mode.
6947 * Since the adapter started out in this
6948 * configuration, the firmware load will succeed,
6949 * so there is no point in checking ahc_loadseq's
6952 ahc
->flags
= saved_flags
;
6953 (void)ahc_loadseq(ahc
);
6955 ahc_unlock(ahc
, &s
);
6956 ccb
->ccb_h
.status
= CAM_FUNC_NOTAVAIL
;
6960 ahc_unlock(ahc
, &s
);
6963 target
= ccb
->ccb_h
.target_id
;
6964 lun
= ccb
->ccb_h
.target_lun
;
6965 channel
= SIM_CHANNEL(ahc
, sim
);
6966 target_mask
= 0x01 << target
;
6970 if (cel
->enable
!= 0) {
6973 /* Are we already enabled?? */
6974 if (lstate
!= NULL
) {
6975 xpt_print_path(ccb
->ccb_h
.path
);
6976 printf("Lun already enabled\n");
6977 ccb
->ccb_h
.status
= CAM_LUN_ALRDY_ENA
;
6981 if (cel
->grp6_len
!= 0
6982 || cel
->grp7_len
!= 0) {
6984 * Don't (yet?) support vendor
6985 * specific commands.
6987 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
6988 printf("Non-zero Group Codes\n");
6994 * Setup our data structures.
6996 if (target
!= CAM_TARGET_WILDCARD
&& tstate
== NULL
) {
6997 tstate
= ahc_alloc_tstate(ahc
, target
, channel
);
6998 if (tstate
== NULL
) {
6999 xpt_print_path(ccb
->ccb_h
.path
);
7000 printf("Couldn't allocate tstate\n");
7001 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
7005 lstate
= kmalloc(sizeof(*lstate
), M_DEVBUF
, M_INTWAIT
| M_ZERO
);
7006 status
= xpt_create_path(&lstate
->path
, /*periph*/NULL
,
7007 xpt_path_path_id(ccb
->ccb_h
.path
),
7008 xpt_path_target_id(ccb
->ccb_h
.path
),
7009 xpt_path_lun_id(ccb
->ccb_h
.path
));
7010 if (status
!= CAM_REQ_CMP
) {
7011 kfree(lstate
, M_DEVBUF
);
7012 xpt_print_path(ccb
->ccb_h
.path
);
7013 printf("Couldn't allocate path\n");
7014 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
7017 SLIST_INIT(&lstate
->accept_tios
);
7018 SLIST_INIT(&lstate
->immed_notifies
);
7021 if (target
!= CAM_TARGET_WILDCARD
) {
7022 tstate
->enabled_luns
[lun
] = lstate
;
7023 ahc
->enabled_luns
++;
7025 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
7028 targid_mask
= ahc_inb(ahc
, TARGID
)
7029 | (ahc_inb(ahc
, TARGID
+ 1) << 8);
7031 targid_mask
|= target_mask
;
7032 ahc_outb(ahc
, TARGID
, targid_mask
);
7033 ahc_outb(ahc
, TARGID
+1, (targid_mask
>> 8));
7035 ahc_update_scsiid(ahc
, targid_mask
);
7040 channel
= SIM_CHANNEL(ahc
, sim
);
7041 our_id
= SIM_SCSI_ID(ahc
, sim
);
7044 * This can only happen if selections
7047 if (target
!= our_id
) {
7052 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
7053 cur_channel
= (sblkctl
& SELBUSB
)
7055 if ((ahc
->features
& AHC_TWIN
) == 0)
7057 swap
= cur_channel
!= channel
;
7059 ahc
->our_id
= target
;
7061 ahc
->our_id_b
= target
;
7064 ahc_outb(ahc
, SBLKCTL
,
7067 ahc_outb(ahc
, SCSIID
, target
);
7070 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
7074 ahc
->black_hole
= lstate
;
7075 /* Allow select-in operations */
7076 if (ahc
->black_hole
!= NULL
&& ahc
->enabled_luns
> 0) {
7077 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7079 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7080 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7082 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7085 ahc_unlock(ahc
, &s
);
7086 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7087 xpt_print_path(ccb
->ccb_h
.path
);
7088 printf("Lun now enabled for target mode\n");
7093 if (lstate
== NULL
) {
7094 ccb
->ccb_h
.status
= CAM_LUN_INVALID
;
7100 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7101 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
7102 struct ccb_hdr
*ccbh
;
7104 ccbh
= &scb
->io_ctx
->ccb_h
;
7105 if (ccbh
->func_code
== XPT_CONT_TARGET_IO
7106 && !xpt_path_comp(ccbh
->path
, ccb
->ccb_h
.path
)){
7107 printf("CTIO pending\n");
7108 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7109 ahc_unlock(ahc
, &s
);
7114 if (SLIST_FIRST(&lstate
->accept_tios
) != NULL
) {
7115 printf("ATIOs pending\n");
7116 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7119 if (SLIST_FIRST(&lstate
->immed_notifies
) != NULL
) {
7120 printf("INOTs pending\n");
7121 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7124 if (ccb
->ccb_h
.status
!= CAM_REQ_CMP
) {
7125 ahc_unlock(ahc
, &s
);
7129 xpt_print_path(ccb
->ccb_h
.path
);
7130 printf("Target mode disabled\n");
7131 xpt_free_path(lstate
->path
);
7132 kfree(lstate
, M_DEVBUF
);
7135 /* Can we clean up the target too? */
7136 if (target
!= CAM_TARGET_WILDCARD
) {
7137 tstate
->enabled_luns
[lun
] = NULL
;
7138 ahc
->enabled_luns
--;
7139 for (empty
= 1, i
= 0; i
< 8; i
++)
7140 if (tstate
->enabled_luns
[i
] != NULL
) {
7146 ahc_free_tstate(ahc
, target
, channel
,
7148 if (ahc
->features
& AHC_MULTI_TID
) {
7151 targid_mask
= ahc_inb(ahc
, TARGID
)
7152 | (ahc_inb(ahc
, TARGID
+ 1)
7155 targid_mask
&= ~target_mask
;
7156 ahc_outb(ahc
, TARGID
, targid_mask
);
7157 ahc_outb(ahc
, TARGID
+1,
7158 (targid_mask
>> 8));
7159 ahc_update_scsiid(ahc
, targid_mask
);
7164 ahc
->black_hole
= NULL
;
7167 * We can't allow selections without
7168 * our black hole device.
7172 if (ahc
->enabled_luns
== 0) {
7173 /* Disallow select-in */
7176 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7178 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7179 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7181 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7183 if ((ahc
->features
& AHC_MULTIROLE
) == 0) {
7184 printf("Configuring Initiator Mode\n");
7185 ahc
->flags
&= ~AHC_TARGETROLE
;
7186 ahc
->flags
|= AHC_INITIATORROLE
;
7188 * Returning to a configuration that
7189 * fit previously will always succeed.
7191 (void)ahc_loadseq(ahc
);
7194 * Unpaused. The extra unpause
7195 * that follows is harmless.
7200 ahc_unlock(ahc
, &s
);
7205 ahc_update_scsiid(struct ahc_softc
*ahc
, u_int targid_mask
)
7210 if ((ahc
->features
& AHC_MULTI_TID
) == 0)
7211 panic("ahc_update_scsiid called on non-multitid unit\n");
7214 * Since we will rely on the TARGID mask
7215 * for selection enables, ensure that OID
7216 * in SCSIID is not set to some other ID
7217 * that we don't want to allow selections on.
7219 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7220 scsiid
= ahc_inb(ahc
, SCSIID_ULTRA2
);
7222 scsiid
= ahc_inb(ahc
, SCSIID
);
7223 scsiid_mask
= 0x1 << (scsiid
& OID
);
7224 if ((targid_mask
& scsiid_mask
) == 0) {
7227 /* ffs counts from 1 */
7228 our_id
= ffs(targid_mask
);
7230 our_id
= ahc
->our_id
;
7236 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7237 ahc_outb(ahc
, SCSIID_ULTRA2
, scsiid
);
7239 ahc_outb(ahc
, SCSIID
, scsiid
);
7243 ahc_run_tqinfifo(struct ahc_softc
*ahc
, int paused
)
7245 struct target_cmd
*cmd
;
7248 * If the card supports auto-access pause,
7249 * we can access the card directly regardless
7250 * of whether it is paused or not.
7252 if ((ahc
->features
& AHC_AUTOPAUSE
) != 0)
7255 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_POSTREAD
);
7256 while ((cmd
= &ahc
->targetcmds
[ahc
->tqinfifonext
])->cmd_valid
!= 0) {
7259 * Only advance through the queue if we
7260 * have the resources to process the command.
7262 if (ahc_handle_target_cmd(ahc
, cmd
) != 0)
7266 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
7267 ahc
->shared_data_dmamap
,
7268 ahc_targetcmd_offset(ahc
, ahc
->tqinfifonext
),
7269 sizeof(struct target_cmd
),
7270 BUS_DMASYNC_PREREAD
);
7271 ahc
->tqinfifonext
++;
7274 * Lazily update our position in the target mode incoming
7275 * command queue as seen by the sequencer.
7277 if ((ahc
->tqinfifonext
& (HOST_TQINPOS
- 1)) == 1) {
7278 if ((ahc
->features
& AHC_HS_MAILBOX
) != 0) {
7281 hs_mailbox
= ahc_inb(ahc
, HS_MAILBOX
);
7282 hs_mailbox
&= ~HOST_TQINPOS
;
7283 hs_mailbox
|= ahc
->tqinfifonext
& HOST_TQINPOS
;
7284 ahc_outb(ahc
, HS_MAILBOX
, hs_mailbox
);
7288 ahc_outb(ahc
, KERNEL_TQINPOS
,
7289 ahc
->tqinfifonext
& HOST_TQINPOS
);
7298 ahc_handle_target_cmd(struct ahc_softc
*ahc
, struct target_cmd
*cmd
)
7300 struct ahc_tmode_tstate
*tstate
;
7301 struct ahc_tmode_lstate
*lstate
;
7302 struct ccb_accept_tio
*atio
;
7308 initiator
= SCSIID_TARGET(ahc
, cmd
->scsiid
);
7309 target
= SCSIID_OUR_ID(cmd
->scsiid
);
7310 lun
= (cmd
->identify
& MSG_IDENTIFY_LUNMASK
);
7313 tstate
= ahc
->enabled_targets
[target
];
7316 lstate
= tstate
->enabled_luns
[lun
];
7319 * Commands for disabled luns go to the black hole driver.
7322 lstate
= ahc
->black_hole
;
7324 atio
= (struct ccb_accept_tio
*)SLIST_FIRST(&lstate
->accept_tios
);
7326 ahc
->flags
|= AHC_TQINFIFO_BLOCKED
;
7328 * Wait for more ATIOs from the peripheral driver for this lun.
7331 printf("%s: ATIOs exhausted\n", ahc_name(ahc
));
7334 ahc
->flags
&= ~AHC_TQINFIFO_BLOCKED
;
7336 printf("Incoming command from %d for %d:%d%s\n",
7337 initiator
, target
, lun
,
7338 lstate
== ahc
->black_hole
? "(Black Holed)" : "");
7340 SLIST_REMOVE_HEAD(&lstate
->accept_tios
, sim_links
.sle
);
7342 if (lstate
== ahc
->black_hole
) {
7343 /* Fill in the wildcards */
7344 atio
->ccb_h
.target_id
= target
;
7345 atio
->ccb_h
.target_lun
= lun
;
7349 * Package it up and send it off to
7350 * whomever has this lun enabled.
7352 atio
->sense_len
= 0;
7353 atio
->init_id
= initiator
;
7354 if (byte
[0] != 0xFF) {
7355 /* Tag was included */
7356 atio
->tag_action
= *byte
++;
7357 atio
->tag_id
= *byte
++;
7358 atio
->ccb_h
.flags
= CAM_TAG_ACTION_VALID
;
7360 atio
->ccb_h
.flags
= 0;
7364 /* Okay. Now determine the cdb size based on the command code */
7365 switch (*byte
>> CMD_GROUP_CODE_SHIFT
) {
7381 /* Only copy the opcode. */
7383 printf("Reserved or VU command code type encountered\n");
7387 memcpy(atio
->cdb_io
.cdb_bytes
, byte
, atio
->cdb_len
);
7389 atio
->ccb_h
.status
|= CAM_CDB_RECVD
;
7391 if ((cmd
->identify
& MSG_IDENTIFY_DISCFLAG
) == 0) {
7393 * We weren't allowed to disconnect.
7394 * We're hanging on the bus until a
7395 * continue target I/O comes in response
7396 * to this accept tio.
7399 printf("Received Immediate Command %d:%d:%d - %p\n",
7400 initiator
, target
, lun
, ahc
->pending_device
);
7402 ahc
->pending_device
= lstate
;
7403 ahc_freeze_ccb((union ccb
*)atio
);
7404 atio
->ccb_h
.flags
|= CAM_DIS_DISCONNECT
;
7406 xpt_done((union ccb
*)atio
);