1 /* $NetBSD: aic7xxx.c,v 1.129 2009/09/03 14:37:58 tsutsui Exp $ */
4 * Core routines and tables shareable across OS platforms.
6 * Copyright (c) 1994-2002 Justin T. Gibbs.
7 * Copyright (c) 2000-2002 Adaptec Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions, and the following disclaimer,
15 * without modification.
16 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
17 * substantially similar to the "NO WARRANTY" disclaimer below
18 * ("Disclaimer") and any redistribution must be conditioned upon
19 * including a substantially similar Disclaimer requirement for further
20 * binary redistribution.
21 * 3. Neither the names of the above-listed copyright holders nor the names
22 * of any contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * Alternatively, this software may be distributed under the terms of the
26 * GNU General Public License ("GPL") version 2 as published by the Free
27 * Software Foundation.
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
33 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
38 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
39 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 * POSSIBILITY OF SUCH DAMAGES.
42 * $Id: aic7xxx.c,v 1.130 2009/09/03 14:40:43 tsutsui Exp $
44 * //depot/aic7xxx/aic7xxx/aic7xxx.c#112 $
46 * $FreeBSD: /repoman/r/ncvs/src/sys/dev/aic7xxx/aic7xxx.c,v 1.88 2003/01/20 20:44:55 gibbs Exp $
49 * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc. - April 2003
52 #include <sys/cdefs.h>
53 __KERNEL_RCSID(0, "$NetBSD: aic7xxx.c,v 1.129 2009/09/03 14:37:58 tsutsui Exp $");
55 #include <dev/ic/aic7xxx_osm.h>
56 #include <dev/ic/aic7xxx_inline.h>
57 #include <dev/ic/aic7xxx_cam.h>
59 /****************************** Softc Data ************************************/
60 struct ahc_softc_tailq ahc_tailq
= TAILQ_HEAD_INITIALIZER(ahc_tailq
);
62 /***************************** Lookup Tables **********************************/
63 const char *ahc_chip_names
[] =
82 * Hardware error codes.
84 struct ahc_hard_error_entry
{
89 static struct ahc_hard_error_entry ahc_hard_errors
[] = {
90 { ILLHADDR
, "Illegal Host Access" },
91 { ILLSADDR
, "Illegal Sequencer Address referrenced" },
92 { ILLOPCODE
, "Illegal Opcode in sequencer program" },
93 { SQPARERR
, "Sequencer Parity Error" },
94 { DPARERR
, "Data-path Parity Error" },
95 { MPARERR
, "Scratch or SCB Memory Parity Error" },
96 { PCIERRSTAT
, "PCI Error detected" },
97 { CIOPARERR
, "CIOBUS Parity Error" },
99 static const u_int num_errors
= NUM_ELEMENTS(ahc_hard_errors
);
101 static struct ahc_phase_table_entry ahc_phase_table
[] =
103 { P_DATAOUT
, MSG_NOOP
, "in Data-out phase" },
104 { P_DATAIN
, MSG_INITIATOR_DET_ERR
, "in Data-in phase" },
105 { P_DATAOUT_DT
, MSG_NOOP
, "in DT Data-out phase" },
106 { P_DATAIN_DT
, MSG_INITIATOR_DET_ERR
, "in DT Data-in phase" },
107 { P_COMMAND
, MSG_NOOP
, "in Command phase" },
108 { P_MESGOUT
, MSG_NOOP
, "in Message-out phase" },
109 { P_STATUS
, MSG_INITIATOR_DET_ERR
, "in Status phase" },
110 { P_MESGIN
, MSG_PARITY_ERROR
, "in Message-in phase" },
111 { P_BUSFREE
, MSG_NOOP
, "while idle" },
112 { 0, MSG_NOOP
, "in unknown phase" }
116 * In most cases we only wish to itterate over real phases, so
117 * exclude the last element from the count.
119 static const u_int num_phases
= NUM_ELEMENTS(ahc_phase_table
) - 1;
122 * Valid SCSIRATE values. (p. 3-17)
123 * Provides a mapping of transfer periods in ns to the proper value to
124 * stick in the scsixfer reg.
126 static struct ahc_syncrate ahc_syncrates
[] =
128 /* ultra2 fast/ultra period rate */
129 { 0x42, 0x000, 9, "80.0" },
130 { 0x03, 0x000, 10, "40.0" },
131 { 0x04, 0x000, 11, "33.0" },
132 { 0x05, 0x100, 12, "20.0" },
133 { 0x06, 0x110, 15, "16.0" },
134 { 0x07, 0x120, 18, "13.4" },
135 { 0x08, 0x000, 25, "10.0" },
136 { 0x19, 0x010, 31, "8.0" },
137 { 0x1a, 0x020, 37, "6.67" },
138 { 0x1b, 0x030, 43, "5.7" },
139 { 0x1c, 0x040, 50, "5.0" },
140 { 0x00, 0x050, 56, "4.4" },
141 { 0x00, 0x060, 62, "4.0" },
142 { 0x00, 0x070, 68, "3.6" },
143 { 0x00, 0x000, 0, NULL
}
146 /* Our Sequencer Program */
147 #include <dev/microcode/aic7xxx/aic7xxx_seq.h>
149 /**************************** Function Declarations ***************************/
150 static void ahc_force_renegotiation(struct ahc_softc
*ahc
);
151 static struct ahc_tmode_tstate
*
152 ahc_alloc_tstate(struct ahc_softc
*ahc
,
153 u_int scsi_id
, char channel
);
154 #ifdef AHC_TARGET_MODE
155 static void ahc_free_tstate(struct ahc_softc
*ahc
,
156 u_int scsi_id
, char channel
, int force
);
158 static struct ahc_syncrate
*
159 ahc_devlimited_syncrate(struct ahc_softc
*ahc
,
160 struct ahc_initiator_tinfo
*,
164 static void ahc_update_pending_scbs(struct ahc_softc
*ahc
);
165 static void ahc_fetch_devinfo(struct ahc_softc
*ahc
,
166 struct ahc_devinfo
*devinfo
);
167 static void ahc_scb_devinfo(struct ahc_softc
*ahc
,
168 struct ahc_devinfo
*devinfo
,
170 static void ahc_assert_atn(struct ahc_softc
*ahc
);
171 static void ahc_setup_initiator_msgout(struct ahc_softc
*ahc
,
172 struct ahc_devinfo
*devinfo
,
174 static void ahc_build_transfer_msg(struct ahc_softc
*ahc
,
175 struct ahc_devinfo
*devinfo
);
176 static void ahc_construct_sdtr(struct ahc_softc
*ahc
,
177 struct ahc_devinfo
*devinfo
,
178 u_int period
, u_int offset
);
179 static void ahc_construct_wdtr(struct ahc_softc
*ahc
,
180 struct ahc_devinfo
*devinfo
,
182 static void ahc_construct_ppr(struct ahc_softc
*ahc
,
183 struct ahc_devinfo
*devinfo
,
184 u_int period
, u_int offset
,
185 u_int bus_width
, u_int ppr_options
);
186 static void ahc_clear_msg_state(struct ahc_softc
*ahc
);
187 static void ahc_handle_proto_violation(struct ahc_softc
*ahc
);
188 static void ahc_handle_message_phase(struct ahc_softc
*ahc
);
194 static int ahc_sent_msg(struct ahc_softc
*ahc
, ahc_msgtype type
,
195 u_int msgval
, int full
);
196 static int ahc_parse_msg(struct ahc_softc
*ahc
,
197 struct ahc_devinfo
*devinfo
);
198 static int ahc_handle_msg_reject(struct ahc_softc
*ahc
,
199 struct ahc_devinfo
*devinfo
);
200 static void ahc_handle_ign_wide_residue(struct ahc_softc
*ahc
,
201 struct ahc_devinfo
*devinfo
);
202 static void ahc_reinitialize_dataptrs(struct ahc_softc
*ahc
);
203 static void ahc_handle_devreset(struct ahc_softc
*ahc
,
204 struct ahc_devinfo
*devinfo
,
209 static void ahc_setup_target_msgin(struct ahc_softc
*ahc
,
210 struct ahc_devinfo
*devinfo
,
215 static bus_dmamap_callback_t ahc_dmamap_cb
;
217 static void ahc_build_free_scb_list(struct ahc_softc
*ahc
);
218 static int ahc_init_scbdata(struct ahc_softc
*ahc
);
219 static void ahc_fini_scbdata(struct ahc_softc
*ahc
);
220 static void ahc_qinfifo_requeue(struct ahc_softc
*ahc
,
221 struct scb
*prev_scb
,
223 static int ahc_qinfifo_count(struct ahc_softc
*ahc
);
224 static u_int
ahc_rem_scb_from_disc_list(struct ahc_softc
*ahc
,
225 u_int prev
, u_int scbptr
);
226 static void ahc_add_curscb_to_free_list(struct ahc_softc
*ahc
);
227 static u_int
ahc_rem_wscb(struct ahc_softc
*ahc
,
228 u_int scbpos
, u_int prev
);
229 static void ahc_reset_current_bus(struct ahc_softc
*ahc
);
231 static void ahc_dumpseq(struct ahc_softc
*ahc
);
233 static void ahc_loadseq(struct ahc_softc
*ahc
);
234 static int ahc_check_patch(struct ahc_softc
*ahc
,
235 struct patch
**start_patch
,
236 u_int start_instr
, u_int
*skip_addr
);
237 static void ahc_download_instr(struct ahc_softc
*ahc
,
238 u_int instrptr
, uint8_t *dconsts
);
239 #ifdef AHC_TARGET_MODE
240 static void ahc_queue_lstate_event(struct ahc_softc
*ahc
,
241 struct ahc_tmode_lstate
*lstate
,
245 static void ahc_update_scsiid(struct ahc_softc
*ahc
,
247 static int ahc_handle_target_cmd(struct ahc_softc
*ahc
,
248 struct target_cmd
*cmd
);
251 /************************** Added for porting to NetBSD ***********************/
252 static int ahc_createdmamem(bus_dma_tag_t tag
,
258 bus_dma_segment_t
*seg
,
260 const char *myname
, const char *what
);
261 static void ahc_freedmamem(bus_dma_tag_t tag
,
265 bus_dma_segment_t
*seg
,
268 /************************* Sequencer Execution Control ************************/
270 * Restart the sequencer program from address zero
273 ahc_restart(struct ahc_softc
*ahc
)
278 /* No more pending messages. */
279 ahc_clear_msg_state(ahc
);
281 ahc_outb(ahc
, SCSISIGO
, 0); /* De-assert BSY */
282 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
); /* No message to send */
283 ahc_outb(ahc
, SXFRCTL1
, ahc_inb(ahc
, SXFRCTL1
) & ~BITBUCKET
);
284 ahc_outb(ahc
, LASTPHASE
, P_BUSFREE
);
285 ahc_outb(ahc
, SAVED_SCSIID
, 0xFF);
286 ahc_outb(ahc
, SAVED_LUN
, 0xFF);
289 * Ensure that the sequencer's idea of TQINPOS
290 * matches our own. The sequencer increments TQINPOS
291 * only after it sees a DMA complete and a reset could
292 * occur before the increment leaving the kernel to believe
293 * the command arrived but the sequencer to not.
295 ahc_outb(ahc
, TQINPOS
, ahc
->tqinfifonext
);
297 /* Always allow reselection */
298 ahc_outb(ahc
, SCSISEQ
,
299 ahc_inb(ahc
, SCSISEQ_TEMPLATE
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
300 if ((ahc
->features
& AHC_CMD_CHAN
) != 0) {
301 /* Ensure that no DMA operations are in progress */
302 ahc_outb(ahc
, CCSCBCNT
, 0);
303 ahc_outb(ahc
, CCSGCTL
, 0);
304 ahc_outb(ahc
, CCSCBCTL
, 0);
307 * If we were in the process of DMA'ing SCB data into
308 * an SCB, replace that SCB on the free list. This prevents
311 if ((ahc_inb(ahc
, SEQ_FLAGS2
) & SCB_DMA
) != 0) {
312 ahc_add_curscb_to_free_list(ahc
);
313 ahc_outb(ahc
, SEQ_FLAGS2
,
314 ahc_inb(ahc
, SEQ_FLAGS2
) & ~SCB_DMA
);
316 ahc_outb(ahc
, MWI_RESIDUAL
, 0);
317 ahc_outb(ahc
, SEQCTL
, FASTMODE
);
318 ahc_outb(ahc
, SEQADDR0
, 0);
319 ahc_outb(ahc
, SEQADDR1
, 0);
323 /************************* Input/Output Queues ********************************/
325 ahc_run_qoutfifo(struct ahc_softc
*ahc
)
330 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
331 while (ahc
->qoutfifo
[ahc
->qoutfifonext
] != SCB_LIST_NULL
) {
333 scb_index
= ahc
->qoutfifo
[ahc
->qoutfifonext
];
334 if ((ahc
->qoutfifonext
& 0x03) == 0x03) {
338 * Clear 32bits of QOUTFIFO at a time
339 * so that we don't clobber an incoming
340 * byte DMA to the array on architectures
341 * that only support 32bit load and store
344 modnext
= ahc
->qoutfifonext
& ~0x3;
345 *((uint32_t *)(&ahc
->qoutfifo
[modnext
])) = 0xFFFFFFFFUL
;
347 ahc
->parent_dmat
/*shared_data_dmat*/,
348 ahc
->shared_data_dmamap
,
349 /*offset*/modnext
, /*len*/4,
350 BUS_DMASYNC_PREREAD
);
354 scb
= ahc_lookup_scb(ahc
, scb_index
);
356 printf("%s: WARNING no command for scb %d "
357 "(cmdcmplt)\nQOUTPOS = %d\n",
358 ahc_name(ahc
), scb_index
,
359 (ahc
->qoutfifonext
- 1) & 0xFF);
364 * Save off the residual
367 ahc_update_residual(ahc
, scb
);
373 ahc_run_untagged_queues(struct ahc_softc
*ahc
)
377 for (i
= 0; i
< 16; i
++)
378 ahc_run_untagged_queue(ahc
, &ahc
->untagged_queues
[i
]);
382 ahc_run_untagged_queue(struct ahc_softc
*ahc
, struct scb_tailq
*queue
)
386 if (ahc
->untagged_queue_lock
!= 0)
389 if ((scb
= TAILQ_FIRST(queue
)) != NULL
390 && (scb
->flags
& SCB_ACTIVE
) == 0) {
391 scb
->flags
|= SCB_ACTIVE
;
392 ahc_queue_scb(ahc
, scb
);
396 /************************* Interrupt Handling *********************************/
398 ahc_handle_brkadrint(struct ahc_softc
*ahc
)
401 * We upset the sequencer :-(
402 * Lookup the error message
407 error
= ahc_inb(ahc
, ERROR
);
408 for (i
= 0; error
!= 1 && i
< num_errors
; i
++)
410 printf("%s: brkadrint, %s at seqaddr = 0x%x\n",
411 ahc_name(ahc
), ahc_hard_errors
[i
].errmesg
,
412 ahc_inb(ahc
, SEQADDR0
) |
413 (ahc_inb(ahc
, SEQADDR1
) << 8));
415 ahc_dump_card_state(ahc
);
417 /* Tell everyone that this HBA is no longer available */
418 ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, ALL_CHANNELS
,
419 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, ROLE_UNKNOWN
,
422 /* Disable all interrupt sources by resetting the controller */
427 ahc_handle_seqint(struct ahc_softc
*ahc
, u_int intstat
)
430 struct ahc_devinfo devinfo
;
432 ahc_fetch_devinfo(ahc
, &devinfo
);
435 * Clear the upper byte that holds SEQINT status
436 * codes and clear the SEQINT bit. We will unpause
437 * the sequencer, if appropriate, after servicing
440 ahc_outb(ahc
, CLRINT
, CLRSEQINT
);
441 switch (intstat
& SEQINT_MASK
) {
445 struct hardware_scb
*hscb
;
448 * Set the default return value to 0 (don't
449 * send sense). The sense code will change
452 ahc_outb(ahc
, RETURN_1
, 0);
455 * The sequencer will notify us when a command
456 * has an error that would be of interest to
457 * the kernel. This allows us to leave the sequencer
458 * running in the common case of command completes
459 * without error. The sequencer will already have
460 * DMA'd the SCB back up to us, so we can reference
461 * the in kernel copy directly.
463 scb_index
= ahc_inb(ahc
, SCB_TAG
);
464 scb
= ahc_lookup_scb(ahc
, scb_index
);
466 ahc_print_devinfo(ahc
, &devinfo
);
467 printf("ahc_intr - referenced scb "
468 "not valid during seqint 0x%x scb(%d)\n",
470 ahc_dump_card_state(ahc
);
477 /* Don't want to clobber the original sense code */
478 if ((scb
->flags
& SCB_SENSE
) != 0) {
480 * Clear the SCB_SENSE Flag and have
481 * the sequencer do a normal command
484 scb
->flags
&= ~SCB_SENSE
;
487 /* Freeze the queue until the client sees the error. */
488 ahc_freeze_devq(ahc
, scb
);
490 ahc_set_scsi_status(scb
, hscb
->shared_data
.status
.scsi_status
);
491 switch (hscb
->shared_data
.status
.scsi_status
) {
493 printf("%s: Interrupted for status of 0 (?)\n",
496 case SCSI_STATUS_CMD_TERMINATED
:
497 case SCSI_STATUS_CHECK_COND
:
499 struct ahc_dma_seg
*sg
;
500 struct scsi_request_sense
*sc
;
501 struct ahc_initiator_tinfo
*targ_info
;
502 struct ahc_tmode_tstate
*tstate
;
503 struct ahc_transinfo
*tinfo
;
506 if (ahc_debug
& AHC_SHOW_SENSE
) {
507 ahc_print_path(ahc
, scb
);
508 printf("SCB %d: requests Check Status\n",
513 if (ahc_perform_autosense(scb
) == 0)
516 targ_info
= ahc_fetch_transinfo(ahc
,
521 tinfo
= &targ_info
->curr
;
523 sc
= (struct scsi_request_sense
*)
524 (&hscb
->shared_data
.cdb
);
526 * Save off the residual if there is one.
528 ahc_update_residual(ahc
, scb
);
530 if (ahc_debug
& AHC_SHOW_SENSE
) {
531 ahc_print_path(ahc
, scb
);
532 printf("Sending Sense\n");
535 sg
->addr
= ahc_htole32(ahc_get_sense_bufaddr(ahc
, scb
));
536 len
= ahc_get_sense_bufsize(ahc
, scb
);
537 sg
->len
= ahc_htole32(len
| AHC_DMA_LAST_SEG
);
539 memset(sc
, 0, sizeof(*sc
));
540 sc
->opcode
= SCSI_REQUEST_SENSE
;
541 if (tinfo
->protocol_version
<= SCSI_REV_2
542 && SCB_GET_LUN(scb
) < 8)
543 sc
->byte2
= SCB_GET_LUN(scb
) << 5;
547 * We can't allow the target to disconnect.
548 * This will be an untagged transaction and
549 * having the target disconnect will make this
550 * transaction indistinguishable from outstanding
551 * tagged transactions.
556 * This request sense could be because the
557 * the device lost power or in some other
558 * way has lost our transfer negotiations.
559 * Renegotiate if appropriate. Unit attention
560 * errors will be reported before any data
563 if (ahc_get_residual(scb
)
564 == ahc_get_transfer_length(scb
)) {
565 ahc_update_neg_request(ahc
, &devinfo
,
567 AHC_NEG_IF_NON_ASYNC
);
569 if (tstate
->auto_negotiate
& devinfo
.target_mask
) {
570 hscb
->control
|= MK_MESSAGE
;
571 scb
->flags
&= ~SCB_NEGOTIATE
;
572 scb
->flags
|= SCB_AUTO_NEGOTIATE
;
574 hscb
->cdb_len
= sizeof(*sc
);
575 hscb
->dataptr
= sg
->addr
;
576 hscb
->datacnt
= sg
->len
;
578 ahc_htole32(scb
->sg_list_phys
| SG_FULL_RESID
);
580 scb
->flags
|= SCB_SENSE
;
581 ahc_qinfifo_requeue_tail(ahc
, scb
);
582 ahc_outb(ahc
, RETURN_1
, SEND_SENSE
);
584 * Ensure we have enough time to actually
585 * retrieve the sense.
587 ahc_scb_timer_reset(scb
, 5 * 1000000);
597 /* Ensure we don't leave the selection hardware on */
598 ahc_outb(ahc
, SCSISEQ
,
599 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
601 printf("%s:%c:%d: no active SCB for reconnecting "
602 "target - issuing BUS DEVICE RESET\n",
603 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
);
604 printf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
605 "ARG_1 == 0x%x ACCUM = 0x%x\n",
606 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
607 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
608 printf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
610 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
611 ahc_index_busy_tcl(ahc
,
612 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
613 ahc_inb(ahc
, SAVED_LUN
))),
614 ahc_inb(ahc
, SINDEX
));
615 printf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
616 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
617 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
618 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
619 ahc_inb(ahc
, SCB_CONTROL
));
620 printf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
621 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
622 printf("SXFRCTL0 == 0x%x\n", ahc_inb(ahc
, SXFRCTL0
));
623 printf("SEQCTL == 0x%x\n", ahc_inb(ahc
, SEQCTL
));
624 ahc_dump_card_state(ahc
);
625 ahc
->msgout_buf
[0] = MSG_BUS_DEV_RESET
;
627 ahc
->msgout_index
= 0;
628 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
629 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
635 u_int rejbyte
= ahc_inb(ahc
, ACCUM
);
636 printf("%s:%c:%d: Warning - unknown message received from "
637 "target (0x%x). Rejecting\n",
638 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
, rejbyte
);
641 case PROTO_VIOLATION
:
643 ahc_handle_proto_violation(ahc
);
647 ahc_handle_ign_wide_residue(ahc
, &devinfo
);
650 ahc_reinitialize_dataptrs(ahc
);
656 lastphase
= ahc_inb(ahc
, LASTPHASE
);
657 printf("%s:%c:%d: unknown scsi bus phase %x, "
658 "lastphase = 0x%x. Attempting to continue\n",
659 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
660 lastphase
, ahc_inb(ahc
, SCSISIGI
));
667 lastphase
= ahc_inb(ahc
, LASTPHASE
);
668 printf("%s:%c:%d: Missed busfree. "
669 "Lastphase = 0x%x, Curphase = 0x%x\n",
670 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
671 lastphase
, ahc_inb(ahc
, SCSISIGI
));
678 * The sequencer has encountered a message phase
679 * that requires host assistance for completion.
680 * While handling the message phase(s), we will be
681 * notified by the sequencer after each byte is
682 * transferred so we can track bus phase changes.
684 * If this is the first time we've seen a HOST_MSG_LOOP
685 * interrupt, initialize the state of the host message
688 if (ahc
->msg_type
== MSG_TYPE_NONE
) {
693 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
694 if (bus_phase
!= P_MESGIN
695 && bus_phase
!= P_MESGOUT
) {
696 printf("ahc_intr: HOST_MSG_LOOP bad "
700 * Probably transitioned to bus free before
701 * we got here. Just punt the message.
703 ahc_clear_intstat(ahc
);
708 scb_index
= ahc_inb(ahc
, SCB_TAG
);
709 scb1
= ahc_lookup_scb(ahc
, scb_index
);
710 if (devinfo
.role
== ROLE_INITIATOR
) {
712 panic("HOST_MSG_LOOP with "
713 "invalid SCB %x\n", scb_index
);
715 if (bus_phase
== P_MESGOUT
)
716 ahc_setup_initiator_msgout(ahc
,
721 MSG_TYPE_INITIATOR_MSGIN
;
722 ahc
->msgin_index
= 0;
727 if (bus_phase
== P_MESGOUT
) {
729 MSG_TYPE_TARGET_MSGOUT
;
730 ahc
->msgin_index
= 0;
733 ahc_setup_target_msgin(ahc
,
740 ahc_handle_message_phase(ahc
);
746 * If we've cleared the parity error interrupt
747 * but the sequencer still believes that SCSIPERR
748 * is true, it must be that the parity error is
749 * for the currently presented byte on the bus,
750 * and we are not in a phase (data-in) where we will
751 * eventually ack this byte. Ack the byte and
752 * throw it away in the hope that the target will
753 * take us to message out to deliver the appropriate
756 if ((intstat
& SCSIINT
) == 0
757 && (ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0) {
759 if ((ahc
->features
& AHC_DT
) == 0) {
763 * The hardware will only let you ack bytes
764 * if the expected phase in SCSISIGO matches
765 * the current phase. Make sure this is
766 * currently the case.
768 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
769 ahc_outb(ahc
, LASTPHASE
, curphase
);
770 ahc_outb(ahc
, SCSISIGO
, curphase
);
772 if ((ahc_inb(ahc
, SCSISIGI
) & (CDI
|MSGI
)) == 0) {
776 * In a data phase. Faster to bitbucket
777 * the data than to individually ack each
778 * byte. This is also the only strategy
779 * that will work with AUTOACK enabled.
781 ahc_outb(ahc
, SXFRCTL1
,
782 ahc_inb(ahc
, SXFRCTL1
) | BITBUCKET
);
784 while (--wait
!= 0) {
785 if ((ahc_inb(ahc
, SCSISIGI
)
790 ahc_outb(ahc
, SXFRCTL1
,
791 ahc_inb(ahc
, SXFRCTL1
) & ~BITBUCKET
);
796 ahc_print_devinfo(ahc
, &devinfo
);
797 printf("Unable to clear parity error. "
799 scb_index
= ahc_inb(ahc
, SCB_TAG
);
800 scb1
= ahc_lookup_scb(ahc
, scb_index
);
802 ahc_set_transaction_status(scb1
,
804 ahc_reset_channel(ahc
, devinfo
.channel
,
808 (void)ahc_inb(ahc
, SCSIDATL
);
816 * When the sequencer detects an overrun, it
817 * places the controller in "BITBUCKET" mode
818 * and allows the target to complete its transfer.
819 * Unfortunately, none of the counters get updated
820 * when the controller is in this mode, so we have
821 * no way of knowing how large the overrun was.
823 u_int scbindex
= ahc_inb(ahc
, SCB_TAG
);
824 u_int lastphase
= ahc_inb(ahc
, LASTPHASE
);
827 scb
= ahc_lookup_scb(ahc
, scbindex
);
828 for (i
= 0; i
< num_phases
; i
++) {
829 if (lastphase
== ahc_phase_table
[i
].phase
)
832 ahc_print_path(ahc
, scb
);
833 printf("data overrun detected %s."
835 ahc_phase_table
[i
].phasemsg
,
837 ahc_print_path(ahc
, scb
);
838 printf("%s seen Data Phase. Length = %ld. NumSGs = %d.\n",
839 ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
? "Have" : "Haven't",
840 ahc_get_transfer_length(scb
), scb
->sg_count
);
841 if (scb
->sg_count
> 0) {
842 for (i
= 0; i
< scb
->sg_count
; i
++) {
844 printf("sg[%d] - Addr 0x%x%x : Length %d\n",
846 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
847 & SG_HIGH_ADDR_BITS
),
848 ahc_le32toh(scb
->sg_list
[i
].addr
),
849 ahc_le32toh(scb
->sg_list
[i
].len
)
854 * Set this and it will take effect when the
855 * target does a command complete.
857 ahc_freeze_devq(ahc
, scb
);
858 if ((scb
->flags
& SCB_SENSE
) == 0) {
859 ahc_set_transaction_status(scb
, CAM_DATA_RUN_ERR
);
861 scb
->flags
&= ~SCB_SENSE
;
862 ahc_set_transaction_status(scb
, CAM_AUTOSENSE_FAIL
);
866 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
868 * Clear the channel in case we return
869 * to data phase later.
871 ahc_outb(ahc
, SXFRCTL0
,
872 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
873 ahc_outb(ahc
, SXFRCTL0
,
874 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
876 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
879 /* Ensure HHADDR is 0 for future DMA operations. */
880 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
881 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
882 ahc_outb(ahc
, HADDR
, 0);
883 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
891 printf("%s:%c:%d:%d: Attempt to issue message failed\n",
892 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
894 scbindex
= ahc_inb(ahc
, SCB_TAG
);
895 scb
= ahc_lookup_scb(ahc
, scbindex
);
897 && (scb
->flags
& SCB_RECOVERY_SCB
) != 0)
899 * Ensure that we didn't put a second instance of this
900 * SCB into the QINFIFO.
902 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
903 SCB_GET_CHANNEL(ahc
, scb
),
904 SCB_GET_LUN(scb
), scb
->hscb
->tag
,
905 ROLE_INITIATOR
, /*status*/0,
911 printf("%s: No free or disconnected SCBs\n", ahc_name(ahc
));
912 ahc_dump_card_state(ahc
);
920 scbptr
= ahc_inb(ahc
, SCBPTR
);
921 printf("Bogus TAG after DMA. SCBPTR %d, tag %d, our tag %d\n",
922 scbptr
, ahc_inb(ahc
, ARG_1
),
923 ahc
->scb_data
->hscbs
[scbptr
].tag
);
924 ahc_dump_card_state(ahc
);
930 printf("%s: BTT calculation out of range\n", ahc_name(ahc
));
931 printf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
932 "ARG_1 == 0x%x ACCUM = 0x%x\n",
933 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
934 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
935 printf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
936 "SINDEX == 0x%x\n, A == 0x%x\n",
937 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
938 ahc_index_busy_tcl(ahc
,
939 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
940 ahc_inb(ahc
, SAVED_LUN
))),
941 ahc_inb(ahc
, SINDEX
),
942 ahc_inb(ahc
, ACCUM
));
943 printf("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
944 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
945 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
946 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
947 ahc_inb(ahc
, SCB_CONTROL
));
948 printf("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
949 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
950 ahc_dump_card_state(ahc
);
955 printf("ahc_intr: seqint, "
956 "intstat == 0x%x, scsisigi = 0x%x\n",
957 intstat
, ahc_inb(ahc
, SCSISIGI
));
962 * The sequencer is paused immediately on
963 * a SEQINT, so we should restart it when
970 ahc_handle_scsiint(struct ahc_softc
*ahc
, u_int intstat
)
979 if ((ahc
->features
& AHC_TWIN
) != 0
980 && ((ahc_inb(ahc
, SBLKCTL
) & SELBUSB
) != 0))
984 intr_channel
= cur_channel
;
986 if ((ahc
->features
& AHC_ULTRA2
) != 0)
987 status0
= ahc_inb(ahc
, SSTAT0
) & IOERR
;
990 status
= ahc_inb(ahc
, SSTAT1
) & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
991 if (status
== 0 && status0
== 0) {
992 if ((ahc
->features
& AHC_TWIN
) != 0) {
993 /* Try the other channel */
994 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
995 status
= ahc_inb(ahc
, SSTAT1
)
996 & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
997 intr_channel
= (cur_channel
== 'A') ? 'B' : 'A';
1000 printf("%s: Spurious SCSI interrupt\n", ahc_name(ahc
));
1001 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1007 /* Make sure the sequencer is in a safe location. */
1008 ahc_clear_critical_section(ahc
);
1010 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1011 scb
= ahc_lookup_scb(ahc
, scb_index
);
1013 && (ahc_inb(ahc
, SEQ_FLAGS
) & NOT_IDENTIFIED
) != 0)
1016 if ((ahc
->features
& AHC_ULTRA2
) != 0
1017 && (status0
& IOERR
) != 0) {
1020 now_lvd
= ahc_inb(ahc
, SBLKCTL
) & ENAB40
;
1021 printf("%s: Transceiver State Has Changed to %s mode\n",
1022 ahc_name(ahc
), now_lvd
? "LVD" : "SE");
1023 ahc_outb(ahc
, CLRSINT0
, CLRIOERR
);
1025 * When transitioning to SE mode, the reset line
1026 * glitches, triggering an arbitration bug in some
1027 * Ultra2 controllers. This bug is cleared when we
1028 * assert the reset line. Since a reset glitch has
1029 * already occurred with this transition and a
1030 * transceiver state change is handled just like
1031 * a bus reset anyway, asserting the reset line
1032 * ourselves is safe.
1034 ahc_reset_channel(ahc
, intr_channel
,
1035 /*Initiate Reset*/now_lvd
== 0);
1036 } else if ((status
& SCSIRSTI
) != 0) {
1037 printf("%s: Someone reset channel %c\n",
1038 ahc_name(ahc
), intr_channel
);
1039 if (intr_channel
!= cur_channel
)
1040 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
1041 ahc_reset_channel(ahc
, intr_channel
, /*Initiate Reset*/FALSE
);
1042 } else if ((status
& SCSIPERR
) != 0) {
1044 * Determine the bus phase and queue an appropriate message.
1045 * SCSIPERR is latched true as soon as a parity error
1046 * occurs. If the sequencer acked the transfer that
1047 * caused the parity error and the currently presented
1048 * transfer on the bus has correct parity, SCSIPERR will
1049 * be cleared by CLRSCSIPERR. Use this to determine if
1050 * we should look at the last phase the sequencer recorded,
1051 * or the current phase presented on the bus.
1062 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1063 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
1064 sstat2
= ahc_inb(ahc
, SSTAT2
);
1065 ahc_outb(ahc
, CLRSINT1
, CLRSCSIPERR
);
1067 * For all phases save DATA, the sequencer won't
1068 * automatically ack a byte that has a parity error
1069 * in it. So the only way that the current phase
1070 * could be 'data-in' is if the parity error is for
1071 * an already acked byte in the data phase. During
1072 * synchronous data-in transfers, we may actually
1073 * ack bytes before latching the current phase in
1074 * LASTPHASE, leading to the discrepancy between
1075 * curphase and lastphase.
1077 if ((ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0
1078 || curphase
== P_DATAIN
|| curphase
== P_DATAIN_DT
)
1079 errorphase
= curphase
;
1081 errorphase
= lastphase
;
1083 for (i
= 0; i
< num_phases
; i
++) {
1084 if (errorphase
== ahc_phase_table
[i
].phase
)
1087 mesg_out
= ahc_phase_table
[i
].mesg_out
;
1090 if (SCB_IS_SILENT(scb
))
1093 ahc_print_path(ahc
, scb
);
1094 scb
->flags
|= SCB_TRANSMISSION_ERROR
;
1096 printf("%s:%c:%d: ", ahc_name(ahc
), intr_channel
,
1097 SCSIID_TARGET(ahc
, ahc_inb(ahc
, SAVED_SCSIID
)));
1098 scsirate
= ahc_inb(ahc
, SCSIRATE
);
1099 if (silent
== FALSE
) {
1100 printf("parity error detected %s. "
1101 "SEQADDR(0x%x) SCSIRATE(0x%x)\n",
1102 ahc_phase_table
[i
].phasemsg
,
1103 ahc_inw(ahc
, SEQADDR0
),
1105 if ((ahc
->features
& AHC_DT
) != 0) {
1106 if ((sstat2
& CRCVALERR
) != 0)
1107 printf("\tCRC Value Mismatch\n");
1108 if ((sstat2
& CRCENDERR
) != 0)
1109 printf("\tNo terminal CRC packet "
1111 if ((sstat2
& CRCREQERR
) != 0)
1112 printf("\tIllegal CRC packet "
1114 if ((sstat2
& DUAL_EDGE_ERR
) != 0)
1115 printf("\tUnexpected %sDT Data Phase\n",
1116 (scsirate
& SINGLE_EDGE
)
1121 if ((ahc
->features
& AHC_DT
) != 0
1122 && (sstat2
& DUAL_EDGE_ERR
) != 0) {
1124 * This error applies regardless of
1125 * data direction, so ignore the value
1126 * in the phase table.
1128 mesg_out
= MSG_INITIATOR_DET_ERR
;
1132 * We've set the hardware to assert ATN if we
1133 * get a parity error on "in" phases, so all we
1134 * need to do is stuff the message buffer with
1135 * the appropriate message. "In" phases have set
1136 * mesg_out to something other than MSG_NOP.
1138 if (mesg_out
!= MSG_NOOP
) {
1139 if (ahc
->msg_type
!= MSG_TYPE_NONE
)
1140 ahc
->send_msg_perror
= TRUE
;
1142 ahc_outb(ahc
, MSG_OUT
, mesg_out
);
1145 * Force a renegotiation with this target just in
1146 * case we are out of sync for some external reason
1147 * unknown (or unreported) by the target.
1149 ahc_force_renegotiation(ahc
);
1150 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1152 } else if ((status
& SELTO
) != 0) {
1155 /* Stop the selection */
1156 ahc_outb(ahc
, SCSISEQ
, 0);
1158 /* No more pending messages */
1159 ahc_clear_msg_state(ahc
);
1161 /* Clear interrupt state */
1162 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1163 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRBUSFREE
|CLRSCSIPERR
);
1166 * Although the driver does not care about the
1167 * 'Selection in Progress' status bit, the busy
1168 * LED does. SELINGO is only cleared by a sucessfull
1169 * selection, so we must manually clear it to insure
1170 * the LED turns off just incase no future successful
1171 * selections occur (e.g. no devices on the bus).
1173 ahc_outb(ahc
, CLRSINT0
, CLRSELINGO
);
1175 scbptr
= ahc_inb(ahc
, WAITING_SCBH
);
1176 ahc_outb(ahc
, SCBPTR
, scbptr
);
1177 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1179 scb
= ahc_lookup_scb(ahc
, scb_index
);
1181 printf("%s: ahc_intr - referenced scb not "
1182 "valid during SELTO scb(%d, %d)\n",
1183 ahc_name(ahc
), scbptr
, scb_index
);
1184 ahc_dump_card_state(ahc
);
1187 if ((ahc_debug
& AHC_SHOW_SELTO
) != 0) {
1188 ahc_print_path(ahc
, scb
);
1189 printf("Saw Selection Timeout for SCB 0x%x\n",
1194 * Force a renegotiation with this target just in
1195 * case the cable was pulled and will later be
1196 * re-attached. The target may forget its negotiation
1197 * settings with us should it attempt to reselect
1198 * during the interruption. The target will not issue
1199 * a unit attention in this case, so we must always
1202 ahc_force_renegotiation(ahc
);
1203 ahc_set_transaction_status(scb
, CAM_SEL_TIMEOUT
);
1204 ahc_freeze_devq(ahc
, scb
);
1206 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1208 } else if ((status
& BUSFREE
) != 0
1209 && (ahc_inb(ahc
, SIMODE1
) & ENBUSFREE
) != 0) {
1214 u_int initiator_role_id
;
1219 * Clear our selection hardware as soon as possible.
1220 * We may have an entry in the waiting Q for this target,
1221 * that is affected by this busfree and we don't want to
1222 * go about selecting the target while we handle the event.
1224 ahc_outb(ahc
, SCSISEQ
,
1225 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
1228 * Disable busfree interrupts and clear the busfree
1229 * interrupt status. We do this here so that several
1230 * bus transactions occur prior to clearing the SCSIINT
1231 * latch. It can take a bit for the clearing to take effect.
1233 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1234 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
|CLRSCSIPERR
);
1237 * Look at what phase we were last in.
1238 * If its message out, chances are pretty good
1239 * that the busfree was in response to one of
1240 * our abort requests.
1242 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1243 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
1244 saved_lun
= ahc_inb(ahc
, SAVED_LUN
);
1245 target
= SCSIID_TARGET(ahc
, saved_scsiid
);
1246 initiator_role_id
= SCSIID_OUR_ID(saved_scsiid
);
1247 channel
= SCSIID_CHANNEL(ahc
, saved_scsiid
);
1250 if (lastphase
== P_MESGOUT
) {
1251 struct ahc_devinfo devinfo
;
1254 ahc_fetch_devinfo(ahc
, &devinfo
);
1255 tag
= SCB_LIST_NULL
;
1256 if (ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT_TAG
, TRUE
)
1257 || ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT
, TRUE
)) {
1258 if (ahc
->msgout_buf
[ahc
->msgout_index
- 1]
1260 tag
= scb
->hscb
->tag
;
1261 ahc_print_path(ahc
, scb
);
1262 printf("SCB %d - Abort%s Completed.\n",
1263 scb
->hscb
->tag
, tag
== SCB_LIST_NULL
?
1265 ahc_abort_scbs(ahc
, target
, channel
,
1270 } else if (ahc_sent_msg(ahc
, AHCMSG_1B
,
1271 MSG_BUS_DEV_RESET
, TRUE
)) {
1274 * Don't mark the user's request for this BDR
1275 * as completing with CAM_BDR_SENT. CAM3
1276 * specifies CAM_REQ_CMP.
1279 && scb
->io_ctx
->ccb_h
.func_code
== XPT_RESET_DEV
1280 && ahc_match_scb(ahc
, scb
, target
, channel
,
1284 ahc_set_transaction_status(scb
,
1288 ahc_compile_devinfo(&devinfo
,
1294 ahc_handle_devreset(ahc
, &devinfo
,
1297 /*verbose_level*/0);
1299 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1300 MSG_EXT_PPR
, FALSE
)) {
1301 struct ahc_initiator_tinfo
*tinfo
;
1302 struct ahc_tmode_tstate
*tstate
;
1305 * PPR Rejected. Try non-ppr negotiation
1306 * and retry command.
1308 tinfo
= ahc_fetch_transinfo(ahc
,
1313 tinfo
->curr
.transport_version
= 2;
1314 tinfo
->goal
.transport_version
= 2;
1315 tinfo
->goal
.ppr_options
= 0;
1316 ahc_qinfifo_requeue_tail(ahc
, scb
);
1318 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1319 MSG_EXT_WDTR
, FALSE
)
1320 || ahc_sent_msg(ahc
, AHCMSG_EXT
,
1321 MSG_EXT_SDTR
, FALSE
)) {
1323 * Negotiation Rejected. Go-async and
1326 ahc_set_width(ahc
, &devinfo
,
1327 MSG_EXT_WDTR_BUS_8_BIT
,
1328 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1330 ahc_set_syncrate(ahc
, &devinfo
,
1332 /*period*/0, /*offset*/0,
1334 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1336 ahc_qinfifo_requeue_tail(ahc
, scb
);
1340 if (printerror
!= 0) {
1346 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
1347 tag
= scb
->hscb
->tag
;
1349 tag
= SCB_LIST_NULL
;
1350 ahc_print_path(ahc
, scb
);
1351 ahc_abort_scbs(ahc
, target
, channel
,
1352 SCB_GET_LUN(scb
), tag
,
1357 * We had not fully identified this connection,
1358 * so we cannot abort anything.
1360 printf("%s: ", ahc_name(ahc
));
1362 for (i
= 0; i
< num_phases
; i
++) {
1363 if (lastphase
== ahc_phase_table
[i
].phase
)
1367 * Renegotiate with this device at the
1368 * next opportunity just in case this busfree
1369 * is due to a negotiation mismatch with the
1372 ahc_force_renegotiation(ahc
);
1373 printf("Unexpected busfree %s\n"
1374 "SEQADDR == 0x%x\n",
1375 ahc_phase_table
[i
].phasemsg
,
1376 ahc_inb(ahc
, SEQADDR0
)
1377 | (ahc_inb(ahc
, SEQADDR1
) << 8));
1379 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1382 printf("%s: Missing case in ahc_handle_scsiint. status = %x\n",
1383 ahc_name(ahc
), status
);
1384 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1389 * Force renegotiation to occur the next time we initiate
1390 * a command to the current device.
1393 ahc_force_renegotiation(struct ahc_softc
*ahc
)
1395 struct ahc_devinfo devinfo
;
1396 struct ahc_initiator_tinfo
*targ_info
;
1397 struct ahc_tmode_tstate
*tstate
;
1399 ahc_fetch_devinfo(ahc
, &devinfo
);
1400 targ_info
= ahc_fetch_transinfo(ahc
,
1405 ahc_update_neg_request(ahc
, &devinfo
, tstate
,
1406 targ_info
, AHC_NEG_IF_NON_ASYNC
);
1409 #define AHC_MAX_STEPS 2000
1411 ahc_clear_critical_section(struct ahc_softc
*ahc
)
1418 if (ahc
->num_critical_sections
== 0)
1430 seqaddr
= ahc_inb(ahc
, SEQADDR0
)
1431 | (ahc_inb(ahc
, SEQADDR1
) << 8);
1434 * Seqaddr represents the next instruction to execute,
1435 * so we are really executing the instruction just
1440 cs
= ahc
->critical_sections
;
1441 for (i
= 0; i
< ahc
->num_critical_sections
; i
++, cs
++) {
1443 if (cs
->begin
< seqaddr
&& cs
->end
>= seqaddr
)
1447 if (i
== ahc
->num_critical_sections
)
1450 if (steps
> AHC_MAX_STEPS
) {
1451 printf("%s: Infinite loop in critical section\n",
1453 ahc_dump_card_state(ahc
);
1454 panic("critical section loop");
1458 if (stepping
== FALSE
) {
1461 * Disable all interrupt sources so that the
1462 * sequencer will not be stuck by a pausing
1463 * interrupt condition while we attempt to
1464 * leave a critical section.
1466 simode0
= ahc_inb(ahc
, SIMODE0
);
1467 ahc_outb(ahc
, SIMODE0
, 0);
1468 simode1
= ahc_inb(ahc
, SIMODE1
);
1469 if ((ahc
->features
& AHC_DT
) != 0)
1471 * On DT class controllers, we
1472 * use the enhanced busfree logic.
1473 * Unfortunately we cannot re-enable
1474 * busfree detection within the
1475 * current connection, so we must
1476 * leave it on while single stepping.
1478 ahc_outb(ahc
, SIMODE1
, ENBUSFREE
);
1480 ahc_outb(ahc
, SIMODE1
, 0);
1481 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1482 ahc_outb(ahc
, SEQCTL
, ahc_inb(ahc
, SEQCTL
) | STEP
);
1485 if ((ahc
->features
& AHC_DT
) != 0) {
1486 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
);
1487 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1489 ahc_outb(ahc
, HCNTRL
, ahc
->unpause
);
1490 while (!ahc_is_paused(ahc
))
1494 ahc_outb(ahc
, SIMODE0
, simode0
);
1495 ahc_outb(ahc
, SIMODE1
, simode1
);
1496 ahc_outb(ahc
, SEQCTL
, ahc_inb(ahc
, SEQCTL
) & ~STEP
);
1501 * Clear any pending interrupt status.
1504 ahc_clear_intstat(struct ahc_softc
*ahc
)
1506 /* Clear any interrupt conditions this may have caused */
1507 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRATNO
|CLRSCSIRSTI
1508 |CLRBUSFREE
|CLRSCSIPERR
|CLRPHASECHG
|
1510 ahc_flush_device_writes(ahc
);
1511 ahc_outb(ahc
, CLRSINT0
, CLRSELDO
|CLRSELDI
|CLRSELINGO
);
1512 ahc_flush_device_writes(ahc
);
1513 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1514 ahc_flush_device_writes(ahc
);
1517 /**************************** Debugging Routines ******************************/
1519 uint32_t ahc_debug
= 0; /* AHC_SHOW_MISC|AHC_SHOW_SENSE|AHC_DEBUG_OPTS;*/
1523 ahc_print_scb(struct scb
*scb
)
1527 struct hardware_scb
*hscb
= scb
->hscb
;
1529 printf("scb:%p control:0x%x scsiid:0x%x lun:%d cdb_len:%d\n",
1535 printf("Shared Data: ");
1536 for (i
= 0; i
< sizeof(hscb
->shared_data
.cdb
); i
++)
1537 printf("%#02x", hscb
->shared_data
.cdb
[i
]);
1538 printf(" dataptr:%#x datacnt:%#x sgptr:%#x tag:%#x\n",
1539 ahc_le32toh(hscb
->dataptr
),
1540 ahc_le32toh(hscb
->datacnt
),
1541 ahc_le32toh(hscb
->sgptr
),
1543 if (scb
->sg_count
> 0) {
1544 for (i
= 0; i
< scb
->sg_count
; i
++) {
1545 printf("sg[%d] - Addr 0x%x%x : Length %d\n",
1547 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
1548 & SG_HIGH_ADDR_BITS
),
1549 ahc_le32toh(scb
->sg_list
[i
].addr
),
1550 ahc_le32toh(scb
->sg_list
[i
].len
));
1555 /************************* Transfer Negotiation *******************************/
1557 * Allocate per target mode instance (ID we respond to as a target)
1558 * transfer negotiation data structures.
1560 static struct ahc_tmode_tstate
*
1561 ahc_alloc_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
)
1563 struct ahc_tmode_tstate
*master_tstate
;
1564 struct ahc_tmode_tstate
*tstate
;
1567 master_tstate
= ahc
->enabled_targets
[ahc
->our_id
];
1568 if (channel
== 'B') {
1570 master_tstate
= ahc
->enabled_targets
[ahc
->our_id_b
+ 8];
1572 if (ahc
->enabled_targets
[scsi_id
] != NULL
1573 && ahc
->enabled_targets
[scsi_id
] != master_tstate
)
1574 panic("%s: ahc_alloc_tstate - Target already allocated",
1576 tstate
= malloc(sizeof(*tstate
), M_DEVBUF
, M_NOWAIT
);
1581 * If we have allocated a master tstate, copy user settings from
1582 * the master tstate (taken from SRAM or the EEPROM) for this
1583 * channel, but reset our current and goal settings to async/narrow
1584 * until an initiator talks to us.
1586 if (master_tstate
!= NULL
) {
1587 memcpy(tstate
, master_tstate
, sizeof(*tstate
));
1588 memset(tstate
->enabled_luns
, 0, sizeof(tstate
->enabled_luns
));
1589 tstate
->ultraenb
= 0;
1590 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
1591 memset(&tstate
->transinfo
[i
].curr
, 0,
1592 sizeof(tstate
->transinfo
[i
].curr
));
1593 memset(&tstate
->transinfo
[i
].goal
, 0,
1594 sizeof(tstate
->transinfo
[i
].goal
));
1597 memset(tstate
, 0, sizeof(*tstate
));
1598 ahc
->enabled_targets
[scsi_id
] = tstate
;
1602 #ifdef AHC_TARGET_MODE
1604 * Free per target mode instance (ID we respond to as a target)
1605 * transfer negotiation data structures.
1608 ahc_free_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
, int force
)
1610 struct ahc_tmode_tstate
*tstate
;
1613 * Don't clean up our "master" tstate.
1614 * It has our default user settings.
1616 if (((channel
== 'B' && scsi_id
== ahc
->our_id_b
)
1617 || (channel
== 'A' && scsi_id
== ahc
->our_id
))
1623 tstate
= ahc
->enabled_targets
[scsi_id
];
1625 free(tstate
, M_DEVBUF
);
1626 ahc
->enabled_targets
[scsi_id
] = NULL
;
1631 * Called when we have an active connection to a target on the bus,
1632 * this function finds the nearest syncrate to the input period limited
1633 * by the capabilities of the bus connectivity of and sync settings for
1636 struct ahc_syncrate
*
1637 ahc_devlimited_syncrate(struct ahc_softc
*ahc
,
1638 struct ahc_initiator_tinfo
*tinfo
,
1639 u_int
*period
, u_int
*ppr_options
, role_t role
)
1641 struct ahc_transinfo
*transinfo
;
1644 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1645 if ((ahc_inb(ahc
, SBLKCTL
) & ENAB40
) != 0
1646 && (ahc_inb(ahc
, SSTAT2
) & EXP_ACTIVE
) == 0) {
1647 maxsync
= AHC_SYNCRATE_DT
;
1649 maxsync
= AHC_SYNCRATE_ULTRA
;
1650 /* Can't do DT on an SE bus */
1651 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1653 } else if ((ahc
->features
& AHC_ULTRA
) != 0) {
1654 maxsync
= AHC_SYNCRATE_ULTRA
;
1656 maxsync
= AHC_SYNCRATE_FAST
;
1659 * Never allow a value higher than our current goal
1660 * period otherwise we may allow a target initiated
1661 * negotiation to go above the limit as set by the
1662 * user. In the case of an initiator initiated
1663 * sync negotiation, we limit based on the user
1664 * setting. This allows the system to still accept
1665 * incoming negotiations even if target initiated
1666 * negotiation is not performed.
1668 if (role
== ROLE_TARGET
)
1669 transinfo
= &tinfo
->user
;
1671 transinfo
= &tinfo
->goal
;
1672 *ppr_options
&= transinfo
->ppr_options
;
1673 if (transinfo
->width
== MSG_EXT_WDTR_BUS_8_BIT
) {
1674 maxsync
= MAX(maxsync
, AHC_SYNCRATE_ULTRA2
);
1675 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1677 if (transinfo
->period
== 0) {
1682 *period
= MAX(*period
, transinfo
->period
);
1683 return (ahc_find_syncrate(ahc
, period
, ppr_options
, maxsync
));
1687 * Look up the valid period to SCSIRATE conversion in our table.
1688 * Return the period and offset that should be sent to the target
1689 * if this was the beginning of an SDTR.
1691 struct ahc_syncrate
*
1692 ahc_find_syncrate(struct ahc_softc
*ahc
, u_int
*period
,
1693 u_int
*ppr_options
, u_int maxsync
)
1695 struct ahc_syncrate
*syncrate
;
1697 if ((ahc
->features
& AHC_DT
) == 0)
1698 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1700 /* Skip all DT only entries if DT is not available */
1701 if ((*ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
1702 && maxsync
< AHC_SYNCRATE_ULTRA2
)
1703 maxsync
= AHC_SYNCRATE_ULTRA2
;
1705 for (syncrate
= &ahc_syncrates
[maxsync
];
1706 syncrate
->rate
!= NULL
;
1710 * The Ultra2 table doesn't go as low
1711 * as for the Fast/Ultra cards.
1713 if ((ahc
->features
& AHC_ULTRA2
) != 0
1714 && (syncrate
->sxfr_u2
== 0))
1717 if (*period
<= syncrate
->period
) {
1719 * When responding to a target that requests
1720 * sync, the requested rate may fall between
1721 * two rates that we can output, but still be
1722 * a rate that we can receive. Because of this,
1723 * we want to respond to the target with
1724 * the same rate that it sent to us even
1725 * if the period we use to send data to it
1726 * is lower. Only lower the response period
1729 if (syncrate
== &ahc_syncrates
[maxsync
])
1730 *period
= syncrate
->period
;
1733 * At some speeds, we only support
1736 if ((syncrate
->sxfr_u2
& ST_SXFR
) != 0)
1737 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1743 || (syncrate
->rate
== NULL
)
1744 || ((ahc
->features
& AHC_ULTRA2
) != 0
1745 && (syncrate
->sxfr_u2
== 0))) {
1746 /* Use asynchronous transfers. */
1749 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
1755 * Convert from an entry in our syncrate table to the SCSI equivalent
1756 * sync "period" factor.
1759 ahc_find_period(struct ahc_softc
*ahc
, u_int scsirate
, u_int maxsync
)
1761 struct ahc_syncrate
*syncrate
;
1763 if ((ahc
->features
& AHC_ULTRA2
) != 0)
1764 scsirate
&= SXFR_ULTRA2
;
1768 syncrate
= &ahc_syncrates
[maxsync
];
1769 while (syncrate
->rate
!= NULL
) {
1771 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1772 if (syncrate
->sxfr_u2
== 0)
1774 else if (scsirate
== (syncrate
->sxfr_u2
& SXFR_ULTRA2
))
1775 return (syncrate
->period
);
1776 } else if (scsirate
== (syncrate
->sxfr
& SXFR
)) {
1777 return (syncrate
->period
);
1781 return (0); /* async */
1785 * Truncate the given synchronous offset to a value the
1786 * current adapter type and syncrate are capable of.
1789 ahc_validate_offset(struct ahc_softc
*ahc
,
1790 struct ahc_initiator_tinfo
*tinfo
,
1791 struct ahc_syncrate
*syncrate
,
1792 u_int
*offset
, int wide
, role_t role
)
1796 /* Limit offset to what we can do */
1797 if (syncrate
== NULL
) {
1799 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1800 maxoffset
= MAX_OFFSET_ULTRA2
;
1803 maxoffset
= MAX_OFFSET_16BIT
;
1805 maxoffset
= MAX_OFFSET_8BIT
;
1807 *offset
= MIN(*offset
, maxoffset
);
1808 if (tinfo
!= NULL
) {
1809 if (role
== ROLE_TARGET
)
1810 *offset
= MIN(*offset
, tinfo
->user
.offset
);
1812 *offset
= MIN(*offset
, tinfo
->goal
.offset
);
1817 * Truncate the given transfer width parameter to a value the
1818 * current adapter type is capable of.
1821 ahc_validate_width(struct ahc_softc
*ahc
, struct ahc_initiator_tinfo
*tinfo
,
1822 u_int
*bus_width
, role_t role
)
1824 switch (*bus_width
) {
1826 if (ahc
->features
& AHC_WIDE
) {
1828 *bus_width
= MSG_EXT_WDTR_BUS_16_BIT
;
1832 case MSG_EXT_WDTR_BUS_8_BIT
:
1833 *bus_width
= MSG_EXT_WDTR_BUS_8_BIT
;
1836 if (tinfo
!= NULL
) {
1837 if (role
== ROLE_TARGET
)
1838 *bus_width
= MIN(tinfo
->user
.width
, *bus_width
);
1840 *bus_width
= MIN(tinfo
->goal
.width
, *bus_width
);
1845 * Update the bitmask of targets for which the controller should
1846 * negotiate with at the next convenient opportunity. This currently
1847 * means the next time we send the initial identify messages for
1848 * a new transaction.
1851 ahc_update_neg_request(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
1852 struct ahc_tmode_tstate
*tstate
,
1853 struct ahc_initiator_tinfo
*tinfo
, ahc_neg_type neg_type
)
1855 u_int auto_negotiate_orig
;
1857 auto_negotiate_orig
= tstate
->auto_negotiate
;
1858 if (neg_type
== AHC_NEG_ALWAYS
) {
1860 * Force our "current" settings to be
1861 * unknown so that unless a bus reset
1862 * occurs the need to renegotiate is
1863 * recorded persistently.
1865 if ((ahc
->features
& AHC_WIDE
) != 0)
1866 tinfo
->curr
.width
= AHC_WIDTH_UNKNOWN
;
1867 tinfo
->curr
.period
= AHC_PERIOD_UNKNOWN
;
1868 tinfo
->curr
.offset
= AHC_OFFSET_UNKNOWN
;
1870 if (tinfo
->curr
.period
!= tinfo
->goal
.period
1871 || tinfo
->curr
.width
!= tinfo
->goal
.width
1872 || tinfo
->curr
.offset
!= tinfo
->goal
.offset
1873 || tinfo
->curr
.ppr_options
!= tinfo
->goal
.ppr_options
1874 || (neg_type
== AHC_NEG_IF_NON_ASYNC
1875 && (tinfo
->goal
.offset
!= 0
1876 || tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
1877 || tinfo
->goal
.ppr_options
!= 0)))
1878 tstate
->auto_negotiate
|= devinfo
->target_mask
;
1880 tstate
->auto_negotiate
&= ~devinfo
->target_mask
;
1882 return (auto_negotiate_orig
!= tstate
->auto_negotiate
);
1886 * Update the user/goal/curr tables of synchronous negotiation
1887 * parameters as well as, in the case of a current or active update,
1888 * any data structures on the host controller. In the case of an
1889 * active update, the specified target is currently talking to us on
1890 * the bus, so the transfer parameter update must take effect
1894 ahc_set_syncrate(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
1895 struct ahc_syncrate
*syncrate
, u_int period
,
1896 u_int offset
, u_int ppr_options
, u_int type
, int paused
)
1898 struct ahc_initiator_tinfo
*tinfo
;
1899 struct ahc_tmode_tstate
*tstate
;
1906 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
1909 if (syncrate
== NULL
) {
1914 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
1915 devinfo
->target
, &tstate
);
1917 if ((type
& AHC_TRANS_USER
) != 0) {
1918 tinfo
->user
.period
= period
;
1919 tinfo
->user
.offset
= offset
;
1920 tinfo
->user
.ppr_options
= ppr_options
;
1923 if ((type
& AHC_TRANS_GOAL
) != 0) {
1924 tinfo
->goal
.period
= period
;
1925 tinfo
->goal
.offset
= offset
;
1926 tinfo
->goal
.ppr_options
= ppr_options
;
1929 old_period
= tinfo
->curr
.period
;
1930 old_offset
= tinfo
->curr
.offset
;
1931 old_ppr
= tinfo
->curr
.ppr_options
;
1933 if ((type
& AHC_TRANS_CUR
) != 0
1934 && (old_period
!= period
1935 || old_offset
!= offset
1936 || old_ppr
!= ppr_options
)) {
1940 scsirate
= tinfo
->scsirate
;
1941 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1943 scsirate
&= ~(SXFR_ULTRA2
|SINGLE_EDGE
|ENABLE_CRC
);
1944 if (syncrate
!= NULL
) {
1945 scsirate
|= syncrate
->sxfr_u2
;
1946 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) != 0)
1947 scsirate
|= ENABLE_CRC
;
1949 scsirate
|= SINGLE_EDGE
;
1953 scsirate
&= ~(SXFR
|SOFS
);
1955 * Ensure Ultra mode is set properly for
1958 tstate
->ultraenb
&= ~devinfo
->target_mask
;
1959 if (syncrate
!= NULL
) {
1960 if (syncrate
->sxfr
& ULTRA_SXFR
) {
1962 devinfo
->target_mask
;
1964 scsirate
|= syncrate
->sxfr
& SXFR
;
1965 scsirate
|= offset
& SOFS
;
1970 sxfrctl0
= ahc_inb(ahc
, SXFRCTL0
);
1971 sxfrctl0
&= ~FAST20
;
1972 if (tstate
->ultraenb
& devinfo
->target_mask
)
1974 ahc_outb(ahc
, SXFRCTL0
, sxfrctl0
);
1978 ahc_outb(ahc
, SCSIRATE
, scsirate
);
1979 if ((ahc
->features
& AHC_ULTRA2
) != 0)
1980 ahc_outb(ahc
, SCSIOFFSET
, offset
);
1983 tinfo
->scsirate
= scsirate
;
1984 tinfo
->curr
.period
= period
;
1985 tinfo
->curr
.offset
= offset
;
1986 tinfo
->curr
.ppr_options
= ppr_options
;
1988 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
1989 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
, NULL
);
1992 printf("%s: target %d synchronous at %sMHz%s, "
1993 "offset = 0x%x\n", ahc_name(ahc
),
1994 devinfo
->target
, syncrate
->rate
,
1995 (ppr_options
& MSG_EXT_PPR_DT_REQ
)
1996 ? " DT" : "", offset
);
1998 printf("%s: target %d using "
1999 "asynchronous transfers\n",
2000 ahc_name(ahc
), devinfo
->target
);
2005 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
2006 tinfo
, AHC_NEG_TO_GOAL
);
2009 ahc_update_pending_scbs(ahc
);
2013 * Update the user/goal/curr tables of wide negotiation
2014 * parameters as well as, in the case of a current or active update,
2015 * any data structures on the host controller. In the case of an
2016 * active update, the specified target is currently talking to us on
2017 * the bus, so the transfer parameter update must take effect
2021 ahc_set_width(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2022 u_int width
, u_int type
, int paused
)
2024 struct ahc_initiator_tinfo
*tinfo
;
2025 struct ahc_tmode_tstate
*tstate
;
2030 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
2032 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2033 devinfo
->target
, &tstate
);
2035 if ((type
& AHC_TRANS_USER
) != 0)
2036 tinfo
->user
.width
= width
;
2038 if ((type
& AHC_TRANS_GOAL
) != 0)
2039 tinfo
->goal
.width
= width
;
2041 oldwidth
= tinfo
->curr
.width
;
2042 if ((type
& AHC_TRANS_CUR
) != 0 && oldwidth
!= width
) {
2046 scsirate
= tinfo
->scsirate
;
2047 scsirate
&= ~WIDEXFER
;
2048 if (width
== MSG_EXT_WDTR_BUS_16_BIT
)
2049 scsirate
|= WIDEXFER
;
2051 tinfo
->scsirate
= scsirate
;
2054 ahc_outb(ahc
, SCSIRATE
, scsirate
);
2056 tinfo
->curr
.width
= width
;
2058 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2059 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
, NULL
);
2061 printf("%s: target %d using %dbit transfers\n",
2062 ahc_name(ahc
), devinfo
->target
,
2063 8 * (0x01 << width
));
2067 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
2068 tinfo
, AHC_NEG_TO_GOAL
);
2070 ahc_update_pending_scbs(ahc
);
2074 * Update the current state of tagged queuing for a given target.
2077 ahc_set_tags(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2080 ahc_platform_set_tags(ahc
, devinfo
, alg
);
2084 * When the transfer settings for a connection change, update any
2085 * in-transit SCBs to contain the new data so the hardware will
2086 * be set correctly during future (re)selections.
2089 ahc_update_pending_scbs(struct ahc_softc
*ahc
)
2091 struct scb
*pending_scb
;
2092 int pending_scb_count
;
2098 * Traverse the pending SCB list and ensure that all of the
2099 * SCBs there have the proper settings.
2101 pending_scb_count
= 0;
2102 LIST_FOREACH(pending_scb
, &ahc
->pending_scbs
, pending_links
) {
2103 struct ahc_devinfo devinfo
;
2104 struct hardware_scb
*pending_hscb
;
2105 struct ahc_initiator_tinfo
*tinfo
;
2106 struct ahc_tmode_tstate
*tstate
;
2108 ahc_scb_devinfo(ahc
, &devinfo
, pending_scb
);
2109 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
.channel
,
2111 devinfo
.target
, &tstate
);
2112 pending_hscb
= pending_scb
->hscb
;
2113 pending_hscb
->control
&= ~ULTRAENB
;
2114 if ((tstate
->ultraenb
& devinfo
.target_mask
) != 0)
2115 pending_hscb
->control
|= ULTRAENB
;
2116 pending_hscb
->scsirate
= tinfo
->scsirate
;
2117 pending_hscb
->scsioffset
= tinfo
->curr
.offset
;
2118 if ((tstate
->auto_negotiate
& devinfo
.target_mask
) == 0
2119 && (pending_scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0) {
2120 pending_scb
->flags
&= ~SCB_AUTO_NEGOTIATE
;
2121 pending_hscb
->control
&= ~MK_MESSAGE
;
2123 ahc_sync_scb(ahc
, pending_scb
,
2124 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
2125 pending_scb_count
++;
2128 if (pending_scb_count
== 0)
2131 if (ahc_is_paused(ahc
)) {
2138 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
2139 /* Ensure that the hscbs down on the card match the new information */
2140 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
2141 struct hardware_scb
*pending_hscb
;
2145 ahc_outb(ahc
, SCBPTR
, i
);
2146 scb_tag
= ahc_inb(ahc
, SCB_TAG
);
2147 pending_scb
= ahc_lookup_scb(ahc
, scb_tag
);
2148 if (pending_scb
== NULL
)
2151 pending_hscb
= pending_scb
->hscb
;
2152 control
= ahc_inb(ahc
, SCB_CONTROL
);
2153 control
&= ~(ULTRAENB
|MK_MESSAGE
);
2154 control
|= pending_hscb
->control
& (ULTRAENB
|MK_MESSAGE
);
2155 ahc_outb(ahc
, SCB_CONTROL
, control
);
2156 ahc_outb(ahc
, SCB_SCSIRATE
, pending_hscb
->scsirate
);
2157 ahc_outb(ahc
, SCB_SCSIOFFSET
, pending_hscb
->scsioffset
);
2159 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
2165 /**************************** Pathing Information *****************************/
2167 ahc_fetch_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2173 if (ahc_inb(ahc
, SSTAT0
) & TARGET
)
2176 role
= ROLE_INITIATOR
;
2178 if (role
== ROLE_TARGET
2179 && (ahc
->features
& AHC_MULTI_TID
) != 0
2180 && (ahc_inb(ahc
, SEQ_FLAGS
)
2181 & (CMDPHASE_PENDING
|TARG_CMD_PENDING
|NO_DISCONNECT
)) != 0) {
2182 /* We were selected, so pull our id from TARGIDIN */
2183 our_id
= ahc_inb(ahc
, TARGIDIN
) & OID
;
2184 } else if ((ahc
->features
& AHC_ULTRA2
) != 0)
2185 our_id
= ahc_inb(ahc
, SCSIID_ULTRA2
) & OID
;
2187 our_id
= ahc_inb(ahc
, SCSIID
) & OID
;
2189 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
2190 ahc_compile_devinfo(devinfo
,
2192 SCSIID_TARGET(ahc
, saved_scsiid
),
2193 ahc_inb(ahc
, SAVED_LUN
),
2194 SCSIID_CHANNEL(ahc
, saved_scsiid
),
2198 struct ahc_phase_table_entry
*
2199 ahc_lookup_phase_entry(int phase
)
2201 struct ahc_phase_table_entry
*entry
;
2202 struct ahc_phase_table_entry
*last_entry
;
2205 * num_phases doesn't include the default entry which
2206 * will be returned if the phase doesn't match.
2208 last_entry
= &ahc_phase_table
[num_phases
];
2209 for (entry
= ahc_phase_table
; entry
< last_entry
; entry
++) {
2210 if (phase
== entry
->phase
)
2217 ahc_compile_devinfo(struct ahc_devinfo
*devinfo
, u_int our_id
, u_int target
,
2218 u_int lun
, char channel
, role_t role
)
2220 devinfo
->our_scsiid
= our_id
;
2221 devinfo
->target
= target
;
2223 devinfo
->target_offset
= target
;
2224 devinfo
->channel
= channel
;
2225 devinfo
->role
= role
;
2227 devinfo
->target_offset
+= 8;
2228 devinfo
->target_mask
= (0x01 << devinfo
->target_offset
);
2232 ahc_print_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2234 printf("%s:%c:%d:%d: ", ahc_name(ahc
), devinfo
->channel
,
2235 devinfo
->target
, devinfo
->lun
);
2239 ahc_scb_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2245 our_id
= SCSIID_OUR_ID(scb
->hscb
->scsiid
);
2246 role
= ROLE_INITIATOR
;
2247 if ((scb
->flags
& SCB_TARGET_SCB
) != 0)
2249 ahc_compile_devinfo(devinfo
, our_id
, SCB_GET_TARGET(ahc
, scb
),
2250 SCB_GET_LUN(scb
), SCB_GET_CHANNEL(ahc
, scb
), role
);
2254 /************************ Message Phase Processing ****************************/
2256 ahc_assert_atn(struct ahc_softc
*ahc
)
2261 if ((ahc
->features
& AHC_DT
) == 0)
2262 scsisigo
|= ahc_inb(ahc
, SCSISIGI
);
2263 ahc_outb(ahc
, SCSISIGO
, scsisigo
);
2267 * When an initiator transaction with the MK_MESSAGE flag either reconnects
2268 * or enters the initial message out phase, we are interrupted. Fill our
2269 * outgoing message buffer with the appropriate message and begin handing
2270 * the message phase(s) manually.
2273 ahc_setup_initiator_msgout(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2277 * To facilitate adding multiple messages together,
2278 * each routine should increment the index and len
2279 * variables instead of setting them explicitly.
2281 ahc
->msgout_index
= 0;
2282 ahc
->msgout_len
= 0;
2284 if ((scb
->flags
& SCB_DEVICE_RESET
) == 0
2285 && ahc_inb(ahc
, MSG_OUT
) == MSG_IDENTIFYFLAG
) {
2288 identify_msg
= MSG_IDENTIFYFLAG
| SCB_GET_LUN(scb
);
2289 if ((scb
->hscb
->control
& DISCENB
) != 0)
2290 identify_msg
|= MSG_IDENTIFY_DISCFLAG
;
2291 ahc
->msgout_buf
[ahc
->msgout_index
++] = identify_msg
;
2294 if ((scb
->hscb
->control
& TAG_ENB
) != 0) {
2295 ahc
->msgout_buf
[ahc
->msgout_index
++] =
2296 scb
->hscb
->control
& (TAG_ENB
|SCB_TAG_TYPE
);
2297 ahc
->msgout_buf
[ahc
->msgout_index
++] = scb
->hscb
->tag
;
2298 ahc
->msgout_len
+= 2;
2302 if (scb
->flags
& SCB_DEVICE_RESET
) {
2303 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_BUS_DEV_RESET
;
2305 ahc_print_path(ahc
, scb
);
2306 printf("Bus Device Reset Message Sent\n");
2308 * Clear our selection hardware in advance of
2309 * the busfree. We may have an entry in the waiting
2310 * Q for this target, and we don't want to go about
2311 * selecting while we handle the busfree and blow it
2314 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2315 } else if ((scb
->flags
& SCB_ABORT
) != 0) {
2316 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
2317 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT_TAG
;
2319 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT
;
2321 ahc_print_path(ahc
, scb
);
2322 printf("Abort%s Message Sent\n",
2323 (scb
->hscb
->control
& TAG_ENB
) != 0 ? " Tag" : "");
2325 * Clear our selection hardware in advance of
2326 * the busfree. We may have an entry in the waiting
2327 * Q for this target, and we don't want to go about
2328 * selecting while we handle the busfree and blow it
2331 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2332 } else if ((scb
->flags
& (SCB_AUTO_NEGOTIATE
|SCB_NEGOTIATE
)) != 0) {
2333 ahc_build_transfer_msg(ahc
, devinfo
);
2335 printf("ahc_intr: AWAITING_MSG for an SCB that "
2336 "does not have a waiting message\n");
2337 printf("SCSIID = %x, target_mask = %x\n", scb
->hscb
->scsiid
,
2338 devinfo
->target_mask
);
2339 panic("SCB = %d, SCB Control = %x, MSG_OUT = %x "
2340 "SCB flags = %x", scb
->hscb
->tag
, scb
->hscb
->control
,
2341 ahc_inb(ahc
, MSG_OUT
), scb
->flags
);
2345 * Clear the MK_MESSAGE flag from the SCB so we aren't
2346 * asked to send this message again.
2348 ahc_outb(ahc
, SCB_CONTROL
, ahc_inb(ahc
, SCB_CONTROL
) & ~MK_MESSAGE
);
2349 scb
->hscb
->control
&= ~MK_MESSAGE
;
2350 ahc
->msgout_index
= 0;
2351 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2355 * Build an appropriate transfer negotiation message for the
2356 * currently active target.
2359 ahc_build_transfer_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2362 * We need to initiate transfer negotiations.
2363 * If our current and goal settings are identical,
2364 * we want to renegotiate due to a check condition.
2366 struct ahc_initiator_tinfo
*tinfo
;
2367 struct ahc_tmode_tstate
*tstate
;
2368 struct ahc_syncrate
*rate
;
2376 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2377 devinfo
->target
, &tstate
);
2379 * Filter our period based on the current connection.
2380 * If we can't perform DT transfers on this segment (not in LVD
2381 * mode for instance), then our decision to issue a PPR message
2384 period
= tinfo
->goal
.period
;
2385 ppr_options
= tinfo
->goal
.ppr_options
;
2386 /* Target initiated PPR is not allowed in the SCSI spec */
2387 if (devinfo
->role
== ROLE_TARGET
)
2389 rate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
2390 &ppr_options
, devinfo
->role
);
2391 dowide
= tinfo
->curr
.width
!= tinfo
->goal
.width
;
2392 dosync
= tinfo
->curr
.period
!= period
;
2394 * Only use PPR if we have options that need it, even if the device
2395 * claims to support it. There might be an expander in the way
2398 doppr
= ppr_options
!= 0;
2400 if (!dowide
&& !dosync
&& !doppr
) {
2401 dowide
= tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
;
2402 dosync
= tinfo
->goal
.offset
!= 0;
2405 if (!dowide
&& !dosync
&& !doppr
) {
2407 * Force async with a WDTR message if we have a wide bus,
2408 * or just issue an SDTR with a 0 offset.
2410 if ((ahc
->features
& AHC_WIDE
) != 0)
2416 ahc_print_devinfo(ahc
, devinfo
);
2417 printf("Ensuring async\n");
2421 /* Target initiated PPR is not allowed in the SCSI spec */
2422 if (devinfo
->role
== ROLE_TARGET
)
2426 * Both the PPR message and SDTR message require the
2427 * goal syncrate to be limited to what the target device
2428 * is capable of handling (based on whether an LVD->SE
2429 * expander is on the bus), so combine these two cases.
2430 * Regardless, guarantee that if we are using WDTR and SDTR
2431 * messages that WDTR comes first.
2433 if (doppr
|| (dosync
&& !dowide
)) {
2435 offset
= tinfo
->goal
.offset
;
2436 ahc_validate_offset(ahc
, tinfo
, rate
, &offset
,
2437 doppr
? tinfo
->goal
.width
2438 : tinfo
->curr
.width
,
2441 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
2442 tinfo
->goal
.width
, ppr_options
);
2444 ahc_construct_sdtr(ahc
, devinfo
, period
, offset
);
2447 ahc_construct_wdtr(ahc
, devinfo
, tinfo
->goal
.width
);
2452 * Build a synchronous negotiation message in our message
2453 * buffer based on the input parameters.
2456 ahc_construct_sdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2457 u_int period
, u_int offset
)
2460 period
= AHC_ASYNC_XFER_PERIOD
;
2461 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXTENDED
;
2462 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_SDTR_LEN
;
2463 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_SDTR
;
2464 ahc
->msgout_buf
[ahc
->msgout_index
++] = period
;
2465 ahc
->msgout_buf
[ahc
->msgout_index
++] = offset
;
2466 ahc
->msgout_len
+= 5;
2468 printf("(%s:%c:%d:%d): Sending SDTR period %x, offset %x\n",
2469 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
2470 devinfo
->lun
, period
, offset
);
2475 * Build a wide negotiation message in our message
2476 * buffer based on the input parameters.
2479 ahc_construct_wdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2482 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXTENDED
;
2483 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_WDTR_LEN
;
2484 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_WDTR
;
2485 ahc
->msgout_buf
[ahc
->msgout_index
++] = bus_width
;
2486 ahc
->msgout_len
+= 4;
2488 printf("(%s:%c:%d:%d): Sending WDTR %x\n",
2489 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
2490 devinfo
->lun
, bus_width
);
2495 * Build a parallel protocol request message in our message
2496 * buffer based on the input parameters.
2499 ahc_construct_ppr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2500 u_int period
, u_int offset
, u_int bus_width
,
2504 period
= AHC_ASYNC_XFER_PERIOD
;
2505 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXTENDED
;
2506 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_PPR_LEN
;
2507 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_EXT_PPR
;
2508 ahc
->msgout_buf
[ahc
->msgout_index
++] = period
;
2509 ahc
->msgout_buf
[ahc
->msgout_index
++] = 0;
2510 ahc
->msgout_buf
[ahc
->msgout_index
++] = offset
;
2511 ahc
->msgout_buf
[ahc
->msgout_index
++] = bus_width
;
2512 ahc
->msgout_buf
[ahc
->msgout_index
++] = ppr_options
;
2513 ahc
->msgout_len
+= 8;
2515 printf("(%s:%c:%d:%d): Sending PPR bus_width %x, period %x, "
2516 "offset %x, ppr_options %x\n", ahc_name(ahc
),
2517 devinfo
->channel
, devinfo
->target
, devinfo
->lun
,
2518 bus_width
, period
, offset
, ppr_options
);
2523 * Clear any active message state.
2526 ahc_clear_msg_state(struct ahc_softc
*ahc
)
2528 ahc
->msgout_len
= 0;
2529 ahc
->msgin_index
= 0;
2530 ahc
->msg_type
= MSG_TYPE_NONE
;
2531 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0) {
2533 * The target didn't care to respond to our
2534 * message request, so clear ATN.
2536 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2538 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
2539 ahc_outb(ahc
, SEQ_FLAGS2
,
2540 ahc_inb(ahc
, SEQ_FLAGS2
) & ~TARGET_MSG_PENDING
);
2544 ahc_handle_proto_violation(struct ahc_softc
*ahc
)
2546 struct ahc_devinfo devinfo
;
2554 ahc_fetch_devinfo(ahc
, &devinfo
);
2555 scbid
= ahc_inb(ahc
, SCB_TAG
);
2556 scb
= ahc_lookup_scb(ahc
, scbid
);
2557 seq_flags
= ahc_inb(ahc
, SEQ_FLAGS
);
2558 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
2559 lastphase
= ahc_inb(ahc
, LASTPHASE
);
2560 if ((seq_flags
& NOT_IDENTIFIED
) != 0) {
2563 * The reconnecting target either did not send an
2564 * identify message, or did, but we didn't find an SCB
2567 ahc_print_devinfo(ahc
, &devinfo
);
2568 printf("Target did not send an IDENTIFY message. "
2569 "LASTPHASE = 0x%x.\n", lastphase
);
2571 } else if (scb
== NULL
) {
2573 * We don't seem to have an SCB active for this
2574 * transaction. Print an error and reset the bus.
2576 ahc_print_devinfo(ahc
, &devinfo
);
2577 printf("No SCB found during protocol violation\n");
2578 goto proto_violation_reset
;
2580 ahc_set_transaction_status(scb
, CAM_SEQUENCE_FAIL
);
2581 if ((seq_flags
& NO_CDB_SENT
) != 0) {
2582 ahc_print_path(ahc
, scb
);
2583 printf("No or incomplete CDB sent to device.\n");
2584 } else if ((ahc_inb(ahc
, SCB_CONTROL
) & STATUS_RCVD
) == 0) {
2586 * The target never bothered to provide status to
2587 * us prior to completing the command. Since we don't
2588 * know the disposition of this command, we must attempt
2589 * to abort it. Assert ATN and prepare to send an abort
2592 ahc_print_path(ahc
, scb
);
2593 printf("Completed command without status.\n");
2595 ahc_print_path(ahc
, scb
);
2596 printf("Unknown protocol violation.\n");
2597 ahc_dump_card_state(ahc
);
2600 if ((lastphase
& ~P_DATAIN_DT
) == 0
2601 || lastphase
== P_COMMAND
) {
2602 proto_violation_reset
:
2604 * Target either went directly to data/command
2605 * phase or didn't respond to our ATN.
2606 * The only safe thing to do is to blow
2607 * it away with a bus reset.
2609 found
= ahc_reset_channel(ahc
, 'A', TRUE
);
2610 printf("%s: Issued Channel %c Bus Reset. "
2611 "%d SCBs aborted\n", ahc_name(ahc
), 'A', found
);
2614 * Leave the selection hardware off in case
2615 * this abort attempt will affect yet to
2618 ahc_outb(ahc
, SCSISEQ
,
2619 ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
2620 ahc_assert_atn(ahc
);
2621 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
2623 ahc_print_devinfo(ahc
, &devinfo
);
2624 ahc
->msgout_buf
[0] = MSG_ABORT_TASK
;
2625 ahc
->msgout_len
= 1;
2626 ahc
->msgout_index
= 0;
2627 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2629 ahc_print_path(ahc
, scb
);
2630 scb
->flags
|= SCB_ABORT
;
2632 printf("Protocol violation %s. Attempting to abort.\n",
2633 ahc_lookup_phase_entry(curphase
)->phasemsg
);
2638 * Manual message loop handler.
2641 ahc_handle_message_phase(struct ahc_softc
*ahc
)
2643 struct ahc_devinfo devinfo
;
2647 ahc_fetch_devinfo(ahc
, &devinfo
);
2648 end_session
= FALSE
;
2649 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
2652 switch (ahc
->msg_type
) {
2653 case MSG_TYPE_INITIATOR_MSGOUT
:
2659 if (ahc
->msgout_len
== 0)
2660 panic("HOST_MSG_LOOP interrupt with no active message");
2663 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2664 ahc_print_devinfo(ahc
, &devinfo
);
2665 printf("INITIATOR_MSG_OUT");
2668 phasemis
= bus_phase
!= P_MESGOUT
;
2671 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2672 printf(" PHASEMIS %s\n",
2673 ahc_lookup_phase_entry(bus_phase
)
2677 if (bus_phase
== P_MESGIN
) {
2679 * Change gears and see if
2680 * this messages is of interest to
2681 * us or should be passed back to
2684 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2685 ahc
->send_msg_perror
= FALSE
;
2686 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGIN
;
2687 ahc
->msgin_index
= 0;
2694 if (ahc
->send_msg_perror
) {
2695 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2696 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2698 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2699 printf(" byte 0x%x\n", ahc
->send_msg_perror
);
2701 ahc_outb(ahc
, SCSIDATL
, MSG_PARITY_ERROR
);
2705 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
2708 * The target has requested a retry.
2709 * Re-assert ATN, reset our message index to
2712 ahc
->msgout_index
= 0;
2713 ahc_assert_atn(ahc
);
2716 lastbyte
= ahc
->msgout_index
== (ahc
->msgout_len
- 1);
2718 /* Last byte is signified by dropping ATN */
2719 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
2723 * Clear our interrupt status and present
2724 * the next byte on the bus.
2726 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2728 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2729 printf(" byte 0x%x\n",
2730 ahc
->msgout_buf
[ahc
->msgout_index
]);
2732 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
2735 case MSG_TYPE_INITIATOR_MSGIN
:
2741 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2742 ahc_print_devinfo(ahc
, &devinfo
);
2743 printf("INITIATOR_MSG_IN");
2746 phasemis
= bus_phase
!= P_MESGIN
;
2749 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2750 printf(" PHASEMIS %s\n",
2751 ahc_lookup_phase_entry(bus_phase
)
2755 ahc
->msgin_index
= 0;
2756 if (bus_phase
== P_MESGOUT
2757 && (ahc
->send_msg_perror
== TRUE
2758 || (ahc
->msgout_len
!= 0
2759 && ahc
->msgout_index
== 0))) {
2760 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2767 /* Pull the byte in without acking it */
2768 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIBUSL
);
2770 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
2771 printf(" byte 0x%x\n",
2772 ahc
->msgin_buf
[ahc
->msgin_index
]);
2775 message_done
= ahc_parse_msg(ahc
, &devinfo
);
2779 * Clear our incoming message buffer in case there
2780 * is another message following this one.
2782 ahc
->msgin_index
= 0;
2785 * If this message illicited a response,
2786 * assert ATN so the target takes us to the
2787 * message out phase.
2789 if (ahc
->msgout_len
!= 0) {
2791 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
2792 ahc_print_devinfo(ahc
, &devinfo
);
2793 printf("Asserting ATN for response\n");
2796 ahc_assert_atn(ahc
);
2801 if (message_done
== MSGLOOP_TERMINATED
) {
2805 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
2806 (void)ahc_inb(ahc
, SCSIDATL
);
2810 case MSG_TYPE_TARGET_MSGIN
:
2815 if (ahc
->msgout_len
== 0)
2816 panic("Target MSGIN with no active message");
2819 * If we interrupted a mesgout session, the initiator
2820 * will not know this until our first REQ. So, we
2821 * only honor mesgout requests after we've sent our
2824 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0
2825 && ahc
->msgout_index
> 0)
2826 msgout_request
= TRUE
;
2828 msgout_request
= FALSE
;
2830 if (msgout_request
) {
2833 * Change gears and see if
2834 * this messages is of interest to
2835 * us or should be passed back to
2838 ahc
->msg_type
= MSG_TYPE_TARGET_MSGOUT
;
2839 ahc_outb(ahc
, SCSISIGO
, P_MESGOUT
| BSYO
);
2840 ahc
->msgin_index
= 0;
2841 /* Dummy read to REQ for first byte */
2842 (void)ahc_inb(ahc
, SCSIDATL
);
2843 ahc_outb(ahc
, SXFRCTL0
,
2844 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2848 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
2850 ahc_outb(ahc
, SXFRCTL0
,
2851 ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
2857 * Present the next byte on the bus.
2859 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2860 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
2863 case MSG_TYPE_TARGET_MSGOUT
:
2869 * The initiator signals that this is
2870 * the last byte by dropping ATN.
2872 lastbyte
= (ahc_inb(ahc
, SCSISIGI
) & ATNI
) == 0;
2875 * Read the latched byte, but turn off SPIOEN first
2876 * so that we don't inadvertently cause a REQ for the
2879 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
2880 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIDATL
);
2881 msgdone
= ahc_parse_msg(ahc
, &devinfo
);
2882 if (msgdone
== MSGLOOP_TERMINATED
) {
2884 * The message is *really* done in that it caused
2885 * us to go to bus free. The sequencer has already
2886 * been reset at this point, so pull the ejection
2895 * XXX Read spec about initiator dropping ATN too soon
2896 * and use msgdone to detect it.
2898 if (msgdone
== MSGLOOP_MSGCOMPLETE
) {
2899 ahc
->msgin_index
= 0;
2902 * If this message illicited a response, transition
2903 * to the Message in phase and send it.
2905 if (ahc
->msgout_len
!= 0) {
2906 ahc_outb(ahc
, SCSISIGO
, P_MESGIN
| BSYO
);
2907 ahc_outb(ahc
, SXFRCTL0
,
2908 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2909 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
2910 ahc
->msgin_index
= 0;
2918 /* Ask for the next byte. */
2919 ahc_outb(ahc
, SXFRCTL0
,
2920 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
2926 panic("Unknown REQINIT message type");
2930 ahc_clear_msg_state(ahc
);
2931 ahc_outb(ahc
, RETURN_1
, EXIT_MSG_LOOP
);
2933 ahc_outb(ahc
, RETURN_1
, CONT_MSG_LOOP
);
2937 * See if we sent a particular extended message to the target.
2938 * If "full" is true, return true only if the target saw the full
2939 * message. If "full" is false, return true if the target saw at
2940 * least the first byte of the message.
2943 ahc_sent_msg(struct ahc_softc
*ahc
, ahc_msgtype type
, u_int msgval
, int full
)
2951 while (index
< ahc
->msgout_len
) {
2952 if (ahc
->msgout_buf
[index
] == MSG_EXTENDED
) {
2955 end_index
= index
+ 1 + ahc
->msgout_buf
[index
+ 1];
2956 if (ahc
->msgout_buf
[index
+2] == msgval
2957 && type
== AHCMSG_EXT
) {
2960 if (ahc
->msgout_index
> end_index
)
2962 } else if (ahc
->msgout_index
> index
)
2966 } else if (ahc
->msgout_buf
[index
] >= MSG_SIMPLE_TASK
2967 && ahc
->msgout_buf
[index
] <= MSG_IGN_WIDE_RESIDUE
) {
2969 /* Skip tag type and tag id or residue param*/
2972 /* Single byte message */
2973 if (type
== AHCMSG_1B
2974 && ahc
->msgout_buf
[index
] == msgval
2975 && ahc
->msgout_index
> index
)
2987 * Wait for a complete incoming message, parse it, and respond accordingly.
2990 ahc_parse_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2992 struct ahc_initiator_tinfo
*tinfo
;
2993 struct ahc_tmode_tstate
*tstate
;
2997 u_int targ_scsirate
;
2999 done
= MSGLOOP_IN_PROG
;
3002 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
3003 devinfo
->target
, &tstate
);
3004 targ_scsirate
= tinfo
->scsirate
;
3007 * Parse as much of the message as is available,
3008 * rejecting it if we don't support it. When
3009 * the entire message is available and has been
3010 * handled, return MSGLOOP_MSGCOMPLETE, indicating
3011 * that we have parsed an entire message.
3013 * In the case of extended messages, we accept the length
3014 * byte outright and perform more checking once we know the
3015 * extended message type.
3017 switch (ahc
->msgin_buf
[0]) {
3018 case MSG_DISCONNECT
:
3019 case MSG_SAVEDATAPOINTER
:
3020 case MSG_CMDCOMPLETE
:
3021 case MSG_RESTOREPOINTERS
:
3022 case MSG_IGN_WIDE_RESIDUE
:
3024 * End our message loop as these are messages
3025 * the sequencer handles on its own.
3027 done
= MSGLOOP_TERMINATED
;
3029 case MSG_MESSAGE_REJECT
:
3030 response
= ahc_handle_msg_reject(ahc
, devinfo
);
3033 done
= MSGLOOP_MSGCOMPLETE
;
3037 /* Wait for enough of the message to begin validation */
3038 if (ahc
->msgin_index
< 2)
3040 switch (ahc
->msgin_buf
[2]) {
3043 struct ahc_syncrate
*syncrate
;
3049 if (ahc
->msgin_buf
[1] != MSG_EXT_SDTR_LEN
) {
3055 * Wait until we have both args before validating
3056 * and acting on this message.
3058 * Add one to MSG_EXT_SDTR_LEN to account for
3059 * the extended message preamble.
3061 if (ahc
->msgin_index
< (MSG_EXT_SDTR_LEN
+ 1))
3064 period
= ahc
->msgin_buf
[3];
3066 saved_offset
= offset
= ahc
->msgin_buf
[4];
3067 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3070 ahc_validate_offset(ahc
, tinfo
, syncrate
, &offset
,
3071 targ_scsirate
& WIDEXFER
,
3074 printf("(%s:%c:%d:%d): Received "
3075 "SDTR period %x, offset %x\n\t"
3076 "Filtered to period %x, offset %x\n",
3077 ahc_name(ahc
), devinfo
->channel
,
3078 devinfo
->target
, devinfo
->lun
,
3079 ahc
->msgin_buf
[3], saved_offset
,
3082 ahc_set_syncrate(ahc
, devinfo
,
3084 offset
, ppr_options
,
3085 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3089 * See if we initiated Sync Negotiation
3090 * and didn't have to fall down to async
3093 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, TRUE
)) {
3095 if (saved_offset
!= offset
) {
3096 /* Went too low - force async */
3101 * Send our own SDTR in reply
3104 && devinfo
->role
== ROLE_INITIATOR
) {
3105 printf("(%s:%c:%d:%d): Target "
3107 ahc_name(ahc
), devinfo
->channel
,
3108 devinfo
->target
, devinfo
->lun
);
3110 ahc
->msgout_index
= 0;
3111 ahc
->msgout_len
= 0;
3112 ahc_construct_sdtr(ahc
, devinfo
,
3114 ahc
->msgout_index
= 0;
3117 done
= MSGLOOP_MSGCOMPLETE
;
3124 u_int sending_reply
;
3126 sending_reply
= FALSE
;
3127 if (ahc
->msgin_buf
[1] != MSG_EXT_WDTR_LEN
) {
3133 * Wait until we have our arg before validating
3134 * and acting on this message.
3136 * Add one to MSG_EXT_WDTR_LEN to account for
3137 * the extended message preamble.
3139 if (ahc
->msgin_index
< (MSG_EXT_WDTR_LEN
+ 1))
3142 bus_width
= ahc
->msgin_buf
[3];
3143 saved_width
= bus_width
;
3144 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3147 printf("(%s:%c:%d:%d): Received WDTR "
3148 "%x filtered to %x\n",
3149 ahc_name(ahc
), devinfo
->channel
,
3150 devinfo
->target
, devinfo
->lun
,
3151 saved_width
, bus_width
);
3154 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, TRUE
)) {
3156 * Don't send a WDTR back to the
3157 * target, since we asked first.
3158 * If the width went higher than our
3159 * request, reject it.
3161 if (saved_width
> bus_width
) {
3163 printf("(%s:%c:%d:%d): requested %dBit "
3164 "transfers. Rejecting...\n",
3165 ahc_name(ahc
), devinfo
->channel
,
3166 devinfo
->target
, devinfo
->lun
,
3167 8 * (0x01 << bus_width
));
3172 * Send our own WDTR in reply
3175 && devinfo
->role
== ROLE_INITIATOR
) {
3176 printf("(%s:%c:%d:%d): Target "
3178 ahc_name(ahc
), devinfo
->channel
,
3179 devinfo
->target
, devinfo
->lun
);
3181 ahc
->msgout_index
= 0;
3182 ahc
->msgout_len
= 0;
3183 ahc_construct_wdtr(ahc
, devinfo
, bus_width
);
3184 ahc
->msgout_index
= 0;
3186 sending_reply
= TRUE
;
3188 ahc_set_width(ahc
, devinfo
, bus_width
,
3189 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3191 /* After a wide message, we are async */
3192 ahc_set_syncrate(ahc
, devinfo
,
3193 /*syncrate*/NULL
, /*period*/0,
3194 /*offset*/0, /*ppr_options*/0,
3195 AHC_TRANS_ACTIVE
, /*paused*/TRUE
);
3196 if (sending_reply
== FALSE
&& reject
== FALSE
) {
3198 if (tinfo
->goal
.offset
) {
3199 ahc
->msgout_index
= 0;
3200 ahc
->msgout_len
= 0;
3201 ahc_build_transfer_msg(ahc
, devinfo
);
3202 ahc
->msgout_index
= 0;
3206 done
= MSGLOOP_MSGCOMPLETE
;
3211 struct ahc_syncrate
*syncrate
;
3218 u_int saved_ppr_options
;
3220 if (ahc
->msgin_buf
[1] != MSG_EXT_PPR_LEN
) {
3226 * Wait until we have all args before validating
3227 * and acting on this message.
3229 * Add one to MSG_EXT_PPR_LEN to account for
3230 * the extended message preamble.
3232 if (ahc
->msgin_index
< (MSG_EXT_PPR_LEN
+ 1))
3235 period
= ahc
->msgin_buf
[3];
3236 offset
= ahc
->msgin_buf
[5];
3237 bus_width
= ahc
->msgin_buf
[6];
3238 saved_width
= bus_width
;
3239 ppr_options
= ahc
->msgin_buf
[7];
3241 * According to the spec, a DT only
3242 * period factor with no DT option
3243 * set implies async.
3245 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
3248 saved_ppr_options
= ppr_options
;
3249 saved_offset
= offset
;
3252 * Mask out any options we don't support
3253 * on any controller. Transfer options are
3254 * only available if we are negotiating wide.
3256 ppr_options
&= MSG_EXT_PPR_DT_REQ
;
3260 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3262 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3265 ahc_validate_offset(ahc
, tinfo
, syncrate
,
3269 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, TRUE
)) {
3271 * If we are unable to do any of the
3272 * requested options (we went too low),
3273 * then we'll have to reject the message.
3275 if (saved_width
> bus_width
3276 || saved_offset
!= offset
3277 || saved_ppr_options
!= ppr_options
) {
3286 if (devinfo
->role
!= ROLE_TARGET
)
3287 printf("(%s:%c:%d:%d): Target "
3289 ahc_name(ahc
), devinfo
->channel
,
3290 devinfo
->target
, devinfo
->lun
);
3292 printf("(%s:%c:%d:%d): Initiator "
3294 ahc_name(ahc
), devinfo
->channel
,
3295 devinfo
->target
, devinfo
->lun
);
3296 ahc
->msgout_index
= 0;
3297 ahc
->msgout_len
= 0;
3298 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
3299 bus_width
, ppr_options
);
3300 ahc
->msgout_index
= 0;
3304 printf("(%s:%c:%d:%d): Received PPR width %x, "
3305 "period %x, offset %x,options %x\n"
3306 "\tFiltered to width %x, period %x, "
3307 "offset %x, options %x\n",
3308 ahc_name(ahc
), devinfo
->channel
,
3309 devinfo
->target
, devinfo
->lun
,
3310 saved_width
, ahc
->msgin_buf
[3],
3311 saved_offset
, saved_ppr_options
,
3312 bus_width
, period
, offset
, ppr_options
);
3314 ahc_set_width(ahc
, devinfo
, bus_width
,
3315 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3317 ahc_set_syncrate(ahc
, devinfo
,
3319 offset
, ppr_options
,
3320 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3322 done
= MSGLOOP_MSGCOMPLETE
;
3326 /* Unknown extended message. Reject it. */
3332 #ifdef AHC_TARGET_MODE
3333 case MSG_BUS_DEV_RESET
:
3334 ahc_handle_devreset(ahc
, devinfo
,
3336 "Bus Device Reset Received",
3337 /*verbose_level*/0);
3339 done
= MSGLOOP_TERMINATED
;
3343 case MSG_CLEAR_QUEUE
:
3347 /* Target mode messages */
3348 if (devinfo
->role
!= ROLE_TARGET
) {
3352 tag
= SCB_LIST_NULL
;
3353 if (ahc
->msgin_buf
[0] == MSG_ABORT_TAG
)
3354 tag
= ahc_inb(ahc
, INITIATOR_TAG
);
3355 ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
3356 devinfo
->lun
, tag
, ROLE_TARGET
,
3359 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
3360 if (tstate
!= NULL
) {
3361 struct ahc_tmode_lstate
* lstate
;
3363 lstate
= tstate
->enabled_luns
[devinfo
->lun
];
3364 if (lstate
!= NULL
) {
3365 ahc_queue_lstate_event(ahc
, lstate
,
3366 devinfo
->our_scsiid
,
3369 ahc_send_lstate_events(ahc
, lstate
);
3373 done
= MSGLOOP_TERMINATED
;
3377 case MSG_TERM_IO_PROC
:
3385 * Setup to reject the message.
3387 ahc
->msgout_index
= 0;
3388 ahc
->msgout_len
= 1;
3389 ahc
->msgout_buf
[0] = MSG_MESSAGE_REJECT
;
3390 done
= MSGLOOP_MSGCOMPLETE
;
3394 if (done
!= MSGLOOP_IN_PROG
&& !response
)
3395 /* Clear the outgoing message buffer */
3396 ahc
->msgout_len
= 0;
3402 * Process a message reject message.
3405 ahc_handle_msg_reject(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
3408 * What we care about here is if we had an
3409 * outstanding SDTR or WDTR message for this
3410 * target. If we did, this is a signal that
3411 * the target is refusing negotiation.
3414 struct ahc_initiator_tinfo
*tinfo
;
3415 struct ahc_tmode_tstate
*tstate
;
3420 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3421 scb
= ahc_lookup_scb(ahc
, scb_index
);
3422 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
,
3423 devinfo
->our_scsiid
,
3424 devinfo
->target
, &tstate
);
3425 /* Might be necessary */
3426 last_msg
= ahc_inb(ahc
, LAST_MSG
);
3428 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, /*full*/FALSE
)) {
3430 * Target does not support the PPR message.
3431 * Attempt to negotiate SPI-2 style.
3434 printf("(%s:%c:%d:%d): PPR Rejected. "
3435 "Trying WDTR/SDTR\n",
3436 ahc_name(ahc
), devinfo
->channel
,
3437 devinfo
->target
, devinfo
->lun
);
3439 tinfo
->goal
.ppr_options
= 0;
3440 tinfo
->curr
.transport_version
= 2;
3441 tinfo
->goal
.transport_version
= 2;
3442 ahc
->msgout_index
= 0;
3443 ahc
->msgout_len
= 0;
3444 ahc_build_transfer_msg(ahc
, devinfo
);
3445 ahc
->msgout_index
= 0;
3447 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, /*full*/FALSE
)) {
3449 /* note 8bit xfers */
3451 printf("(%s:%c:%d:%d): refuses WIDE negotiation. Using "
3452 "8bit transfers\n", ahc_name(ahc
),
3453 devinfo
->channel
, devinfo
->target
, devinfo
->lun
);
3454 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
3455 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3458 * No need to clear the sync rate. If the target
3459 * did not accept the command, our syncrate is
3460 * unaffected. If the target started the negotiation,
3461 * but rejected our response, we already cleared the
3462 * sync rate before sending our WDTR.
3464 if (tinfo
->goal
.offset
!= tinfo
->curr
.offset
) {
3466 /* Start the sync negotiation */
3467 ahc
->msgout_index
= 0;
3468 ahc
->msgout_len
= 0;
3469 ahc_build_transfer_msg(ahc
, devinfo
);
3470 ahc
->msgout_index
= 0;
3473 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, /*full*/FALSE
)) {
3474 /* note asynch xfers and clear flag */
3475 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
, /*period*/0,
3476 /*offset*/0, /*ppr_options*/0,
3477 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3480 printf("(%s:%c:%d:%d): refuses synchronous negotiation."
3481 " Using asynchronous transfers\n",
3482 ahc_name(ahc
), devinfo
->channel
,
3483 devinfo
->target
, devinfo
->lun
);
3484 } else if ((scb
->hscb
->control
& MSG_SIMPLE_TASK
) != 0) {
3488 tag_type
= (scb
->hscb
->control
& MSG_SIMPLE_TASK
);
3490 if (tag_type
== MSG_SIMPLE_TASK
) {
3492 printf("(%s:%c:%d:%d): refuses tagged commands."
3493 " Performing non-tagged I/O\n",
3494 ahc_name(ahc
), devinfo
->channel
,
3495 devinfo
->target
, devinfo
->lun
);
3496 ahc_set_tags(ahc
, devinfo
, AHC_QUEUE_NONE
);
3500 printf("(%s:%c:%d:%d): refuses %s tagged "
3501 "commands. Performing simple queue "
3502 "tagged I/O only\n",
3503 ahc_name(ahc
), devinfo
->channel
,
3504 devinfo
->target
, devinfo
->lun
,
3505 tag_type
== MSG_ORDERED_TASK
3506 ? "ordered" : "head of queue");
3507 ahc_set_tags(ahc
, devinfo
, AHC_QUEUE_BASIC
);
3512 * Resend the identify for this CCB as the target
3513 * may believe that the selection is invalid otherwise.
3515 ahc_outb(ahc
, SCB_CONTROL
,
3516 ahc_inb(ahc
, SCB_CONTROL
) & mask
);
3517 scb
->hscb
->control
&= mask
;
3518 ahc_set_transaction_tag(scb
, /*enabled*/FALSE
,
3519 /*type*/MSG_SIMPLE_TASK
);
3520 ahc_outb(ahc
, MSG_OUT
, MSG_IDENTIFYFLAG
);
3521 ahc_assert_atn(ahc
);
3524 * This transaction is now at the head of
3525 * the untagged queue for this target.
3527 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
3528 struct scb_tailq
*untagged_q
;
3531 &(ahc
->untagged_queues
[devinfo
->target_offset
]);
3532 TAILQ_INSERT_HEAD(untagged_q
, scb
, links
.tqe
);
3533 scb
->flags
|= SCB_UNTAGGEDQ
;
3535 ahc_busy_tcl(ahc
, BUILD_TCL(scb
->hscb
->scsiid
, devinfo
->lun
),
3539 * Requeue all tagged commands for this target
3540 * currently in our possession so they can be
3541 * converted to untagged commands.
3543 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
3544 SCB_GET_CHANNEL(ahc
, scb
),
3545 SCB_GET_LUN(scb
), /*tag*/SCB_LIST_NULL
,
3546 ROLE_INITIATOR
, CAM_REQUEUE_REQ
,
3550 * Otherwise, we ignore it.
3553 printf("%s:%c:%d: Message reject for %x -- ignored\n",
3554 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
3561 * Process an ingnore wide residue message.
3564 ahc_handle_ign_wide_residue(struct ahc_softc
*ahc
,
3565 struct ahc_devinfo
*devinfo
)
3570 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3571 scb
= ahc_lookup_scb(ahc
, scb_index
);
3573 * XXX Actually check data direction in the sequencer?
3574 * Perhaps add datadir to some spare bits in the hscb?
3576 if ((ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
) == 0
3577 || ahc_get_transfer_dir(scb
) != CAM_DIR_IN
) {
3579 * Ignore the message if we haven't
3580 * seen an appropriate data phase yet.
3584 * If the residual occurred on the last
3585 * transfer and the transfer request was
3586 * expected to end on an odd count, do
3587 * nothing. Otherwise, subtract a byte
3588 * and update the residual count accordingly.
3592 sgptr
= ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
3593 if ((sgptr
& SG_LIST_NULL
) != 0
3594 && ahc_inb(ahc
, DATA_COUNT_ODD
) == 1) {
3596 * If the residual occurred on the last
3597 * transfer and the transfer request was
3598 * expected to end on an odd count, do
3602 struct ahc_dma_seg
*sg
;
3607 /* Pull in the rest of the sgptr */
3608 sgptr
|= (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 3) << 24)
3609 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 2) << 16)
3610 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 1) << 8);
3611 sgptr
&= SG_PTR_MASK
;
3612 data_cnt
= (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+3) << 24)
3613 | (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+2) << 16)
3614 | (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+1) << 8)
3615 | (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
));
3617 data_addr
= (ahc_inb(ahc
, SHADDR
+ 3) << 24)
3618 | (ahc_inb(ahc
, SHADDR
+ 2) << 16)
3619 | (ahc_inb(ahc
, SHADDR
+ 1) << 8)
3620 | (ahc_inb(ahc
, SHADDR
));
3625 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
3627 * The residual sg ptr points to the next S/G
3628 * to load so we must go back one.
3631 sglen
= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
3632 if (sg
!= scb
->sg_list
3633 && sglen
< (data_cnt
& AHC_SG_LEN_MASK
)) {
3636 sglen
= ahc_le32toh(sg
->len
);
3638 * Preserve High Address and SG_LIST bits
3639 * while setting the count to 1.
3641 data_cnt
= 1 | (sglen
& (~AHC_SG_LEN_MASK
));
3642 data_addr
= ahc_le32toh(sg
->addr
)
3643 + (sglen
& AHC_SG_LEN_MASK
) - 1;
3646 * Increment sg so it points to the
3650 sgptr
= ahc_sg_virt_to_bus(scb
, sg
);
3651 ahc_outb(ahc
, SCB_RESIDUAL_SGPTR
+ 3,
3653 ahc_outb(ahc
, SCB_RESIDUAL_SGPTR
+ 2,
3655 ahc_outb(ahc
, SCB_RESIDUAL_SGPTR
+ 1,
3657 ahc_outb(ahc
, SCB_RESIDUAL_SGPTR
, sgptr
);
3660 ahc_outb(ahc
, SCB_RESIDUAL_DATACNT
+ 3, data_cnt
>> 24);
3661 ahc_outb(ahc
, SCB_RESIDUAL_DATACNT
+ 2, data_cnt
>> 16);
3662 ahc_outb(ahc
, SCB_RESIDUAL_DATACNT
+ 1, data_cnt
>> 8);
3663 ahc_outb(ahc
, SCB_RESIDUAL_DATACNT
, data_cnt
);
3670 * Reinitialize the data pointers for the active transfer
3671 * based on its current residual.
3674 ahc_reinitialize_dataptrs(struct ahc_softc
*ahc
)
3677 struct ahc_dma_seg
*sg
;
3683 scb_index
= ahc_inb(ahc
, SCB_TAG
);
3684 scb
= ahc_lookup_scb(ahc
, scb_index
);
3685 sgptr
= (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 3) << 24)
3686 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 2) << 16)
3687 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 1) << 8)
3688 | ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
3690 sgptr
&= SG_PTR_MASK
;
3691 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
3693 /* The residual sg_ptr always points to the next sg */
3696 resid
= (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 2) << 16)
3697 | (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 1) << 8)
3698 | ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
);
3700 dataptr
= ahc_le32toh(sg
->addr
)
3701 + (ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
)
3703 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
3706 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
3707 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
3708 ahc_outb(ahc
, HADDR
,
3709 (ahc_le32toh(sg
->len
) >> 24) & SG_HIGH_ADDR_BITS
);
3710 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
3712 ahc_outb(ahc
, HADDR
+ 3, dataptr
>> 24);
3713 ahc_outb(ahc
, HADDR
+ 2, dataptr
>> 16);
3714 ahc_outb(ahc
, HADDR
+ 1, dataptr
>> 8);
3715 ahc_outb(ahc
, HADDR
, dataptr
);
3716 ahc_outb(ahc
, HCNT
+ 2, resid
>> 16);
3717 ahc_outb(ahc
, HCNT
+ 1, resid
>> 8);
3718 ahc_outb(ahc
, HCNT
, resid
);
3719 if ((ahc
->features
& AHC_ULTRA2
) == 0) {
3720 ahc_outb(ahc
, STCNT
+ 2, resid
>> 16);
3721 ahc_outb(ahc
, STCNT
+ 1, resid
>> 8);
3722 ahc_outb(ahc
, STCNT
, resid
);
3727 * Handle the effects of issuing a bus device reset message.
3730 ahc_handle_devreset(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3731 cam_status status
, const char *message
, int verbose_level
)
3733 #ifdef AHC_TARGET_MODE
3734 struct ahc_tmode_tstate
* tstate
;
3739 found
= ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
3740 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, devinfo
->role
,
3743 #ifdef AHC_TARGET_MODE
3745 * Send an immediate notify ccb to all target mord peripheral
3746 * drivers affected by this action.
3748 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
3749 if (tstate
!= NULL
) {
3750 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
3751 struct ahc_tmode_lstate
* lstate
;
3753 lstate
= tstate
->enabled_luns
[lun
];
3757 ahc_queue_lstate_event(ahc
, lstate
, devinfo
->our_scsiid
,
3758 MSG_BUS_DEV_RESET
, /*arg*/0);
3759 ahc_send_lstate_events(ahc
, lstate
);
3765 * Go back to async/narrow transfers and renegotiate.
3767 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
3768 AHC_TRANS_CUR
, /*paused*/TRUE
);
3769 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
,
3770 /*period*/0, /*offset*/0, /*ppr_options*/0,
3771 AHC_TRANS_CUR
, /*paused*/TRUE
);
3773 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
3774 CAM_LUN_WILDCARD
, AC_SENT_BDR
, NULL
);
3777 && (verbose_level
<= bootverbose
))
3778 printf("%s: %s on %c:%d. %d SCBs aborted\n", ahc_name(ahc
),
3779 message
, devinfo
->channel
, devinfo
->target
, found
);
3782 #ifdef AHC_TARGET_MODE
3784 ahc_setup_target_msgin(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3789 * To facilitate adding multiple messages together,
3790 * each routine should increment the index and len
3791 * variables instead of setting them explicitly.
3793 ahc
->msgout_index
= 0;
3794 ahc
->msgout_len
= 0;
3796 if (scb
!= NULL
&& (scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0)
3797 ahc_build_transfer_msg(ahc
, devinfo
);
3799 panic("ahc_intr: AWAITING target message with no message");
3801 ahc
->msgout_index
= 0;
3802 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
3807 ahc_softc_init(struct ahc_softc
*ahc
)
3810 /* The IRQMS bit is only valid on VL and EISA chips */
3811 if ((ahc
->chip
& AHC_PCI
) == 0)
3812 ahc
->unpause
= ahc_inb(ahc
, HCNTRL
) & IRQMS
;
3815 ahc
->pause
= ahc
->unpause
| PAUSE
;
3816 /* XXX The shared scb data stuff should be deprecated */
3817 if (ahc
->scb_data
== NULL
) {
3818 ahc
->scb_data
= malloc(sizeof(*ahc
->scb_data
),
3819 M_DEVBUF
, M_NOWAIT
);
3820 if (ahc
->scb_data
== NULL
)
3822 memset(ahc
->scb_data
, 0, sizeof(*ahc
->scb_data
));
3829 ahc_softc_insert(struct ahc_softc
*ahc
)
3831 struct ahc_softc
*list_ahc
;
3833 #if AHC_PCI_CONFIG > 0
3835 * Second Function PCI devices need to inherit some
3836 * settings from function 0.
3838 if ((ahc
->chip
& AHC_BUS_MASK
) == AHC_PCI
3839 && (ahc
->features
& AHC_MULTI_FUNC
) != 0) {
3840 TAILQ_FOREACH(list_ahc
, &ahc_tailq
, links
) {
3841 ahc_dev_softc_t list_pci
;
3842 ahc_dev_softc_t pci
;
3844 list_pci
= list_ahc
->dev_softc
;
3845 pci
= ahc
->dev_softc
;
3846 if (ahc_get_pci_slot(list_pci
) == ahc_get_pci_slot(pci
)
3847 && ahc_get_pci_bus(list_pci
) == ahc_get_pci_bus(pci
)) {
3848 struct ahc_softc
*master
;
3849 struct ahc_softc
*slave
;
3851 if (ahc_get_pci_function(list_pci
) == 0) {
3858 slave
->flags
&= ~AHC_BIOS_ENABLED
;
3860 master
->flags
& AHC_BIOS_ENABLED
;
3861 slave
->flags
&= ~AHC_PRIMARY_CHANNEL
;
3863 master
->flags
& AHC_PRIMARY_CHANNEL
;
3871 * Insertion sort into our list of softcs.
3873 list_ahc
= TAILQ_FIRST(&ahc_tailq
);
3874 while (list_ahc
!= NULL
3875 && ahc_softc_comp(list_ahc
, ahc
) <= 0)
3876 list_ahc
= TAILQ_NEXT(list_ahc
, links
);
3877 if (list_ahc
!= NULL
)
3878 TAILQ_INSERT_BEFORE(list_ahc
, ahc
, links
);
3880 TAILQ_INSERT_TAIL(&ahc_tailq
, ahc
, links
);
3885 * Verify that the passed in softc pointer is for a
3886 * controller that is still configured.
3889 ahc_find_softc(struct ahc_softc
*ahc
)
3891 struct ahc_softc
*list_ahc
;
3893 TAILQ_FOREACH(list_ahc
, &ahc_tailq
, links
) {
3894 if (list_ahc
== ahc
)
3901 ahc_set_unit(struct ahc_softc
*ahc
, int unit
)
3907 ahc_set_name(struct ahc_softc
*ahc
, const char *name
)
3913 ahc_free(struct ahc_softc
*ahc
)
3917 ahc_fini_scbdata(ahc
);
3918 switch (ahc
->init_level
) {
3922 /* TAILQ_REMOVE(&ahc_tailq, ahc, links); XXX */
3925 bus_dmamap_unload(ahc
->parent_dmat
, ahc
->shared_data_dmamap
);
3926 bus_dmamap_destroy(ahc
->parent_dmat
, ahc
->shared_data_dmamap
);
3927 bus_dmamem_unmap(ahc
->parent_dmat
, (void *)ahc
->qoutfifo
,
3928 ahc
->shared_data_size
);
3929 bus_dmamem_free(ahc
->parent_dmat
, &ahc
->shared_data_seg
,
3930 ahc
->shared_data_nseg
);
3936 ahc_platform_free(ahc
);
3937 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
3938 struct ahc_tmode_tstate
*tstate
;
3940 tstate
= ahc
->enabled_targets
[i
];
3941 if (tstate
!= NULL
) {
3945 for (j
= 0; j
< AHC_NUM_LUNS
; j
++) {
3946 struct ahc_tmode_lstate
*lstate
;
3948 lstate
= tstate
->enabled_luns
[j
];
3949 if (lstate
!= NULL
) {
3950 /*xpt_free_path(lstate->path);*/
3951 free(lstate
, M_DEVBUF
);
3955 free(tstate
, M_DEVBUF
);
3959 if (ahc
->black_hole
!= NULL
) {
3960 /*xpt_free_path(ahc->black_hole->path);*/
3961 free(ahc
->black_hole
, M_DEVBUF
);
3965 if (ahc
->name
!= NULL
)
3966 free(ahc
->name
, M_DEVBUF
);
3968 if (ahc
->seep_config
!= NULL
)
3969 free(ahc
->seep_config
, M_DEVBUF
);
3970 #if !defined(__FreeBSD__) && !defined(__NetBSD__)
3971 free(ahc
, M_DEVBUF
);
3977 ahc_shutdown(void *arg
)
3979 struct ahc_softc
*ahc
;
3984 /* This will reset most registers to 0, but not all */
3986 ahc_outb(ahc
, SCSISEQ
, 0);
3987 ahc_outb(ahc
, SXFRCTL0
, 0);
3988 ahc_outb(ahc
, DSPCISTATUS
, 0);
3990 for (i
= TARG_SCSIRATE
; i
< SCSICONF
; i
++)
3991 ahc_outb(ahc
, i
, 0);
3995 * Reset the controller and record some information about it
3996 * that is only available just after a reset.
3999 ahc_reset(struct ahc_softc
*ahc
)
4002 u_int sxfrctl1_a
, sxfrctl1_b
;
4006 * Preserve the value of the SXFRCTL1 register for all channels.
4007 * It contains settings that affect termination and we don't want
4008 * to disturb the integrity of the bus.
4011 if ((ahc_inb(ahc
, HCNTRL
) & CHIPRST
) != 0) {
4013 * The chip has not been initialized since
4014 * PCI/EISA/VLB bus reset. Don't trust
4015 * "left over BIOS data".
4017 ahc
->flags
|= AHC_NO_BIOS_INIT
;
4020 if ((ahc
->chip
& AHC_CHIPID_MASK
) == AHC_AIC7770
) {
4024 * Save channel B's settings in case this chip
4025 * is setup for TWIN channel operation.
4027 sblkctl1
= ahc_inb(ahc
, SBLKCTL
);
4028 ahc_outb(ahc
, SBLKCTL
, sblkctl1
| SELBUSB
);
4029 sxfrctl1_b
= ahc_inb(ahc
, SXFRCTL1
);
4030 ahc_outb(ahc
, SBLKCTL
, sblkctl1
& ~SELBUSB
);
4032 sxfrctl1_a
= ahc_inb(ahc
, SXFRCTL1
);
4034 ahc_outb(ahc
, HCNTRL
, CHIPRST
| ahc
->pause
);
4037 * Ensure that the reset has finished. We delay 1000us
4038 * prior to reading the register to make sure the chip
4039 * has sufficiently completed its reset to handle register
4045 } while (--wait
&& !(ahc_inb(ahc
, HCNTRL
) & CHIPRSTACK
));
4048 printf("%s: WARNING - Failed chip reset! "
4049 "Trying to initialize anyway.\n", ahc_name(ahc
));
4051 ahc_outb(ahc
, HCNTRL
, ahc
->pause
);
4053 /* Determine channel configuration */
4054 sblkctl
= ahc_inb(ahc
, SBLKCTL
) & (SELBUSB
|SELWIDE
);
4055 /* No Twin Channel PCI cards */
4056 if ((ahc
->chip
& AHC_PCI
) != 0)
4057 sblkctl
&= ~SELBUSB
;
4060 /* Single Narrow Channel */
4064 ahc
->features
|= AHC_WIDE
;
4068 ahc
->features
|= AHC_TWIN
;
4071 printf(" Unsupported adapter type (0x%x). Ignoring\n",
4079 * We must always initialize STPWEN to 1 before we
4080 * restore the saved values. STPWEN is initialized
4081 * to a tri-state condition which can only be cleared
4084 if ((ahc
->features
& AHC_TWIN
) != 0) {
4087 sblkctl1
= ahc_inb(ahc
, SBLKCTL
);
4088 ahc_outb(ahc
, SBLKCTL
, sblkctl1
| SELBUSB
);
4089 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_b
);
4090 ahc_outb(ahc
, SBLKCTL
, sblkctl1
& ~SELBUSB
);
4092 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_a
);
4095 if (ahc
->init_level
== 0)
4103 * Determine the number of SCBs available on the controller
4106 ahc_probe_scbs(struct ahc_softc
*ahc
) {
4109 for (i
= 0; i
< AHC_SCB_MAX
; i
++) {
4111 ahc_outb(ahc
, SCBPTR
, i
);
4112 ahc_outb(ahc
, SCB_BASE
, i
);
4113 if (ahc_inb(ahc
, SCB_BASE
) != i
)
4115 ahc_outb(ahc
, SCBPTR
, 0);
4116 if (ahc_inb(ahc
, SCB_BASE
) != 0)
4124 ahc_dmamap_cb(void *arg
, bus_dma_segment_t
*segs
, int nseg
, int error
)
4128 baddr
= (bus_addr_t
*)arg
;
4129 *baddr
= segs
->ds_addr
;
4134 ahc_build_free_scb_list(struct ahc_softc
*ahc
)
4140 if ((ahc
->flags
& AHC_LSCBS_ENABLED
) != 0)
4143 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
4146 ahc_outb(ahc
, SCBPTR
, i
);
4149 * Touch all SCB bytes to avoid parity errors
4150 * should one of our debugging routines read
4151 * an otherwise uninitiatlized byte.
4153 for (j
= 0; j
< scbsize
; j
++)
4154 ahc_outb(ahc
, SCB_BASE
+j
, 0xFF);
4156 /* Clear the control byte. */
4157 ahc_outb(ahc
, SCB_CONTROL
, 0);
4159 /* Set the next pointer */
4160 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
4161 ahc_outb(ahc
, SCB_NEXT
, i
+1);
4163 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4165 /* Make the tag number, SCSIID, and lun invalid */
4166 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
4167 ahc_outb(ahc
, SCB_SCSIID
, 0xFF);
4168 ahc_outb(ahc
, SCB_LUN
, 0xFF);
4171 /* Make sure that the last SCB terminates the free list */
4172 ahc_outb(ahc
, SCBPTR
, i
-1);
4173 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4177 ahc_init_scbdata(struct ahc_softc
*ahc
)
4179 struct scb_data
*scb_data
;
4181 scb_data
= ahc
->scb_data
;
4182 SLIST_INIT(&scb_data
->free_scbs
);
4183 SLIST_INIT(&scb_data
->sg_maps
);
4185 /* Allocate SCB resources */
4186 scb_data
->scbarray
= malloc(sizeof(struct scb
) * AHC_SCB_MAX_ALLOC
,
4187 M_DEVBUF
, M_NOWAIT
);
4188 if (scb_data
->scbarray
== NULL
)
4190 memset(scb_data
->scbarray
, 0, sizeof(struct scb
) * AHC_SCB_MAX_ALLOC
);
4192 /* Determine the number of hardware SCBs and initialize them */
4194 scb_data
->maxhscbs
= ahc_probe_scbs(ahc
);
4195 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
4196 /* SCB 0 heads the free list */
4197 ahc_outb(ahc
, FREE_SCBH
, 0);
4199 ahc_outb(ahc
, FREE_SCBH
, SCB_LIST_NULL
);
4202 if (ahc
->scb_data
->maxhscbs
== 0) {
4203 printf("%s: No SCB space found\n", ahc_name(ahc
));
4207 ahc_build_free_scb_list(ahc
);
4210 * Create our DMA tags. These tags define the kinds of device
4211 * accessible memory allocations and memory mappings we will
4212 * need to perform during normal operation.
4214 * Unless we need to further restrict the allocation, we rely
4215 * on the restrictions of the parent dmat, hence the common
4216 * use of MAXADDR and MAXSIZE.
4219 if (ahc_createdmamem(ahc
->parent_dmat
,
4220 AHC_SCB_MAX
* sizeof(struct hardware_scb
), ahc
->sc_dmaflags
,
4221 &scb_data
->hscb_dmamap
,
4222 (void **)&scb_data
->hscbs
, &scb_data
->hscb_busaddr
,
4223 &scb_data
->hscb_seg
, &scb_data
->hscb_nseg
, ahc_name(ahc
),
4224 "hardware SCB structures") < 0)
4227 scb_data
->init_level
++;
4229 if (ahc_createdmamem(ahc
->parent_dmat
,
4230 AHC_SCB_MAX
* sizeof(struct scsi_sense_data
), ahc
->sc_dmaflags
,
4231 &scb_data
->sense_dmamap
, (void **)&scb_data
->sense
,
4232 &scb_data
->sense_busaddr
, &scb_data
->sense_seg
,
4233 &scb_data
->sense_nseg
, ahc_name(ahc
), "sense buffers") < 0)
4236 scb_data
->init_level
++;
4238 /* Perform initial CCB allocation */
4239 memset(scb_data
->hscbs
, 0,
4240 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
));
4241 ahc_alloc_scbs(ahc
);
4242 scb_data
->init_level
++;
4244 if (scb_data
->numscbs
== 0) {
4245 printf("%s: ahc_init_scbdata - "
4246 "Unable to allocate initial scbs\n",
4252 * Tell the sequencer which SCB will be the next one it receives.
4254 ahc
->next_queued_scb
= ahc_get_scb(ahc
);
4255 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
4258 * Note that we were successfull
4268 ahc_fini_scbdata(struct ahc_softc
*ahc
)
4270 struct scb_data
*scb_data
;
4272 scb_data
= ahc
->scb_data
;
4273 if (scb_data
== NULL
)
4276 switch (scb_data
->init_level
) {
4280 struct sg_map_node
*sg_map
;
4282 while ((sg_map
= SLIST_FIRST(&scb_data
->sg_maps
))!= NULL
) {
4283 SLIST_REMOVE_HEAD(&scb_data
->sg_maps
, links
);
4284 ahc_freedmamem(ahc
->parent_dmat
, PAGE_SIZE
,
4285 sg_map
->sg_dmamap
, (void *)sg_map
->sg_vaddr
,
4286 &sg_map
->sg_dmasegs
, sg_map
->sg_nseg
);
4287 free(sg_map
, M_DEVBUF
);
4292 ahc_freedmamem(ahc
->parent_dmat
,
4293 AHC_SCB_MAX
* sizeof(struct scsi_sense_data
),
4294 scb_data
->sense_dmamap
, (void *)scb_data
->sense
,
4295 &scb_data
->sense_seg
, scb_data
->sense_nseg
);
4298 ahc_freedmamem(ahc
->parent_dmat
,
4299 AHC_SCB_MAX
* sizeof(struct hardware_scb
),
4300 scb_data
->hscb_dmamap
, (void *)scb_data
->hscbs
,
4301 &scb_data
->hscb_seg
, scb_data
->hscb_nseg
);
4308 if (scb_data
->scbarray
!= NULL
)
4309 free(scb_data
->scbarray
, M_DEVBUF
);
4313 ahc_alloc_scbs(struct ahc_softc
*ahc
)
4315 struct scb_data
*scb_data
;
4316 struct scb
*next_scb
;
4317 struct sg_map_node
*sg_map
;
4318 bus_addr_t physaddr
;
4319 struct ahc_dma_seg
*segs
;
4323 scb_data
= ahc
->scb_data
;
4324 if (scb_data
->numscbs
>= AHC_SCB_MAX_ALLOC
)
4325 /* Can't allocate any more */
4328 next_scb
= &scb_data
->scbarray
[scb_data
->numscbs
];
4330 sg_map
= malloc(sizeof(*sg_map
), M_DEVBUF
, M_WAITOK
);
4335 /* Allocate S/G space for the next batch of SCBS */
4336 if (ahc_createdmamem(ahc
->parent_dmat
, PAGE_SIZE
, ahc
->sc_dmaflags
,
4338 (void **)&sg_map
->sg_vaddr
, &sg_map
->sg_physaddr
,
4339 &sg_map
->sg_dmasegs
, &sg_map
->sg_nseg
,
4342 free(sg_map
, M_DEVBUF
);
4346 SLIST_INSERT_HEAD(&scb_data
->sg_maps
, sg_map
, links
);
4348 segs
= sg_map
->sg_vaddr
;
4349 physaddr
= sg_map
->sg_physaddr
;
4351 newcount
= (PAGE_SIZE
/ (AHC_NSEG
* sizeof(struct ahc_dma_seg
)));
4352 newcount
= MIN(newcount
, (AHC_SCB_MAX_ALLOC
- scb_data
->numscbs
));
4353 for (i
= 0; i
< newcount
; i
++) {
4354 struct scb_platform_data
*pdata
;
4357 pdata
= malloc(sizeof(*pdata
), M_DEVBUF
, M_WAITOK
);
4360 next_scb
->platform_data
= pdata
;
4361 next_scb
->sg_map
= sg_map
;
4362 next_scb
->sg_list
= segs
;
4364 * The sequencer always starts with the second entry.
4365 * The first entry is embedded in the scb.
4367 next_scb
->sg_list_phys
= physaddr
+ sizeof(struct ahc_dma_seg
);
4368 next_scb
->ahc_softc
= ahc
;
4369 next_scb
->flags
= SCB_FREE
;
4371 error
= bus_dmamap_create(ahc
->parent_dmat
,
4372 AHC_MAXTRANSFER_SIZE
, AHC_NSEG
, MAXPHYS
, 0,
4373 BUS_DMA_WAITOK
|BUS_DMA_ALLOCNOW
|ahc
->sc_dmaflags
,
4378 next_scb
->hscb
= &scb_data
->hscbs
[scb_data
->numscbs
];
4379 next_scb
->hscb
->tag
= ahc
->scb_data
->numscbs
;
4380 SLIST_INSERT_HEAD(&ahc
->scb_data
->free_scbs
,
4381 next_scb
, links
.sle
);
4383 physaddr
+= (AHC_NSEG
* sizeof(struct ahc_dma_seg
));
4385 ahc
->scb_data
->numscbs
++;
4391 ahc_controller_info(struct ahc_softc
*ahc
, char *tbuf
, size_t l
)
4398 len
= snprintf(tbuf
, ep
- tbuf
, "%s: ",
4399 ahc_chip_names
[ahc
->chip
& AHC_CHIPID_MASK
]);
4401 if ((ahc
->features
& AHC_TWIN
) != 0)
4402 len
= snprintf(tbuf
, ep
- tbuf
, "Twin Channel, A SCSI Id=%d, "
4403 "B SCSI Id=%d, primary %c, ",
4404 ahc
->our_id
, ahc
->our_id_b
,
4405 (ahc
->flags
& AHC_PRIMARY_CHANNEL
) + 'A');
4411 if ((ahc
->features
& AHC_ULTRA
) != 0) {
4413 } else if ((ahc
->features
& AHC_DT
) != 0) {
4414 speed
= "Ultra160 ";
4415 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4418 if ((ahc
->features
& AHC_WIDE
) != 0) {
4423 len
= snprintf(tbuf
, ep
- tbuf
, "%s%s Channel %c, SCSI Id=%d, ",
4424 speed
, type
, ahc
->channel
, ahc
->our_id
);
4428 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
4429 snprintf(tbuf
, ep
- tbuf
, "%d/%d SCBs",
4430 ahc
->scb_data
->maxhscbs
, AHC_MAX_QUEUE
);
4432 snprintf(tbuf
, ep
- tbuf
, "%d SCBs", ahc
->scb_data
->maxhscbs
);
4436 * Start the board, ready for normal operation
4439 ahc_init(struct ahc_softc
*ahc
)
4445 u_int scsiseq_template
;
4449 size_t driver_data_size
;
4453 if ((ahc_debug
& AHC_DEBUG_SEQUENCER
) != 0)
4454 ahc
->flags
|= AHC_SEQUENCER_DEBUG
;
4457 #ifdef AHC_PRINT_SRAM
4458 printf("Scratch Ram:");
4459 for (i
= 0x20; i
< 0x5f; i
++) {
4460 if (((i
% 8) == 0) && (i
!= 0)) {
4463 printf (" 0x%x", ahc_inb(ahc
, i
));
4465 if ((ahc
->features
& AHC_MORE_SRAM
) != 0) {
4466 for (i
= 0x70; i
< 0x7f; i
++) {
4467 if (((i
% 8) == 0) && (i
!= 0)) {
4470 printf (" 0x%x", ahc_inb(ahc
, i
));
4475 * Reading uninitialized scratch ram may
4476 * generate parity errors.
4478 ahc_outb(ahc
, CLRINT
, CLRPARERR
);
4479 ahc_outb(ahc
, CLRINT
, CLRBRKADRINT
);
4484 * Assume we have a board at this stage and it has been reset.
4486 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0)
4487 ahc
->our_id
= ahc
->our_id_b
= 7;
4490 * Default to allowing initiator operations.
4492 ahc
->flags
|= AHC_INITIATORROLE
;
4495 * Only allow target mode features if this unit has them enabled.
4497 //if ((AHC_TMODE_ENABLE & (0x1 << ahc->unit)) == 0)
4498 ahc
->features
&= ~AHC_TARGETMODE
;
4501 * DMA tag for our command fifos and other data in system memory
4502 * the card's sequencer must be able to access. For initiator
4503 * roles, we need to allocate space for the qinfifo and qoutfifo.
4504 * The qinfifo and qoutfifo are composed of 256 1 byte elements.
4505 * When providing for the target mode role, we must additionally
4506 * provide space for the incoming target command fifo and an extra
4507 * byte to deal with a DMA bug in some chip versions.
4509 driver_data_size
= 2 * 256 * sizeof(uint8_t);
4510 if ((ahc
->features
& AHC_TARGETMODE
) != 0)
4511 driver_data_size
+= AHC_TMODE_CMDS
* sizeof(struct target_cmd
)
4512 + /*DMA WideOdd Bug Buffer*/1;
4514 if (ahc_createdmamem(ahc
->parent_dmat
, driver_data_size
,
4516 &ahc
->shared_data_dmamap
, (void **)&ahc
->qoutfifo
,
4517 &ahc
->shared_data_busaddr
, &ahc
->shared_data_seg
,
4518 &ahc
->shared_data_nseg
, ahc_name(ahc
),
4524 if ((ahc
->features
& AHC_TARGETMODE
) != 0) {
4525 ahc
->targetcmds
= (struct target_cmd
*)ahc
->qoutfifo
;
4526 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[AHC_TMODE_CMDS
];
4527 ahc
->dma_bug_buf
= ahc
->shared_data_busaddr
4528 + driver_data_size
- 1;
4529 /* All target command blocks start out invalid. */
4530 for (i
= 0; i
< AHC_TMODE_CMDS
; i
++)
4531 ahc
->targetcmds
[i
].cmd_valid
= 0;
4532 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_PREREAD
);
4533 ahc
->tqinfifonext
= 1;
4534 ahc_outb(ahc
, KERNEL_TQINPOS
, ahc
->tqinfifonext
- 1);
4535 ahc_outb(ahc
, TQINPOS
, ahc
->tqinfifonext
);
4536 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[256];
4538 ahc
->qinfifo
= &ahc
->qoutfifo
[256];
4542 /* Allocate SCB data now that buffer_dmat is initialized */
4543 if (ahc
->scb_data
->maxhscbs
== 0)
4544 if (ahc_init_scbdata(ahc
) != 0)
4548 printf("%s: found %d SCBs\n", ahc_name(ahc
),
4549 ahc
->scb_data
->maxhscbs
);
4552 * Allocate a tstate to house information for our
4553 * initiator presence on the bus as well as the user
4554 * data for any target mode initiator.
4556 if (ahc_alloc_tstate(ahc
, ahc
->our_id
, 'A') == NULL
) {
4557 printf("%s: unable to allocate ahc_tmode_tstate. "
4558 "Failing attach\n", ahc_name(ahc
));
4562 if ((ahc
->features
& AHC_TWIN
) != 0) {
4563 if (ahc_alloc_tstate(ahc
, ahc
->our_id_b
, 'B') == NULL
) {
4564 printf("%s: unable to allocate ahc_tmode_tstate. "
4565 "Failing attach\n", ahc_name(ahc
));
4570 ahc_outb(ahc
, SEQ_FLAGS
, 0);
4571 ahc_outb(ahc
, SEQ_FLAGS2
, 0);
4573 if (ahc
->scb_data
->maxhscbs
< AHC_SCB_MAX_ALLOC
) {
4574 ahc
->flags
|= AHC_PAGESCBS
;
4576 ahc
->flags
&= ~AHC_PAGESCBS
;
4580 if (ahc_debug
& AHC_SHOW_MISC
) {
4581 printf("%s: hardware scb %lu bytes; kernel scb %lu bytes; "
4582 "ahc_dma %lu bytes\n",
4584 (u_long
)sizeof(struct hardware_scb
),
4585 (u_long
)sizeof(struct scb
),
4586 (u_long
)sizeof(struct ahc_dma_seg
));
4588 #endif /* AHC_DEBUG */
4591 * Set the SCSI Id, SXFRCTL0, SXFRCTL1, and SIMODE1, for both channels
4593 if (ahc
->features
& AHC_TWIN
) {
4596 * The device is gated to channel B after a chip reset,
4597 * so set those values first
4599 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) | SELBUSB
);
4600 term
= (ahc
->flags
& AHC_TERM_ENB_B
) != 0 ? STPWEN
: 0;
4601 ahc_outb(ahc
, SCSIID
, ahc
->our_id_b
);
4602 scsi_conf
= ahc_inb(ahc
, SCSICONF
+ 1);
4603 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
4604 |term
|ahc
->seltime_b
|ENSTIMER
|ACTNEGEN
);
4605 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4606 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
4607 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
4608 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
4610 if ((scsi_conf
& RESET_SCSI
) != 0
4611 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
4612 ahc
->flags
|= AHC_RESET_BUS_B
;
4614 /* Select Channel A */
4615 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~SELBUSB
);
4618 term
= (ahc
->flags
& AHC_TERM_ENB_A
) != 0 ? STPWEN
: 0;
4619 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4620 ahc_outb(ahc
, SCSIID_ULTRA2
, ahc
->our_id
);
4622 ahc_outb(ahc
, SCSIID
, ahc
->our_id
);
4623 scsi_conf
= ahc_inb(ahc
, SCSICONF
);
4624 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
4626 |ENSTIMER
|ACTNEGEN
);
4627 if ((ahc
->features
& AHC_ULTRA2
) != 0)
4628 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
4629 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
4630 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
4632 if ((scsi_conf
& RESET_SCSI
) != 0
4633 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
4634 ahc
->flags
|= AHC_RESET_BUS_A
;
4637 * Look at the information that board initialization or
4638 * the board bios has left us.
4641 tagenable
= ALL_TARGETS_MASK
;
4643 /* Grab the disconnection disable table and invert it for our needs */
4644 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0) {
4645 printf("%s: Host Adapter BIOS disabled. Using default SCSI "
4646 "host and target device parameters\n", ahc_name(ahc
));
4647 ahc
->flags
|= AHC_EXTENDED_TRANS_A
|AHC_EXTENDED_TRANS_B
|
4648 AHC_TERM_ENB_A
|AHC_TERM_ENB_B
;
4649 discenable
= ALL_TARGETS_MASK
;
4650 if ((ahc
->features
& AHC_ULTRA
) != 0)
4651 ultraenb
= ALL_TARGETS_MASK
;
4652 } else if ((ahc
->flags
& AHC_USETARGETDEFAULTS
) != 0) {
4653 printf("%s: Host Adapter has no SEEPROM. Using default SCSI"
4654 " target parameters\n", ahc_name(ahc
));
4655 ahc
->flags
|= AHC_EXTENDED_TRANS_A
|AHC_EXTENDED_TRANS_B
;
4656 discenable
= ALL_TARGETS_MASK
;
4657 if ((ahc
->features
& AHC_ULTRA
) != 0)
4658 ultraenb
= ALL_TARGETS_MASK
;
4660 discenable
= ~((ahc_inb(ahc
, DISC_DSB
+ 1) << 8)
4661 | ahc_inb(ahc
, DISC_DSB
));
4662 if ((ahc
->features
& (AHC_ULTRA
|AHC_ULTRA2
)) != 0)
4663 ultraenb
= (ahc_inb(ahc
, ULTRA_ENB
+ 1) << 8)
4664 | ahc_inb(ahc
, ULTRA_ENB
);
4667 if ((ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) == 0)
4670 for (i
= 0; i
<= max_targ
; i
++) {
4671 struct ahc_initiator_tinfo
*tinfo
;
4672 struct ahc_tmode_tstate
*tstate
;
4678 our_id
= ahc
->our_id
;
4680 if (i
> 7 && (ahc
->features
& AHC_TWIN
) != 0) {
4682 our_id
= ahc
->our_id_b
;
4685 tinfo
= ahc_fetch_transinfo(ahc
, channel
, our_id
,
4686 target_id
, &tstate
);
4687 /* Default to async narrow across the board */
4688 memset(tinfo
, 0, sizeof(*tinfo
));
4689 if (ahc
->flags
& (AHC_USEDEFAULTS
| AHC_USETARGETDEFAULTS
)) {
4690 if ((ahc
->features
& AHC_WIDE
) != 0)
4691 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
4694 * These will be truncated when we determine the
4695 * connection type we have with the target.
4697 tinfo
->user
.period
= ahc_syncrates
->period
;
4698 tinfo
->user
.offset
= ~0;
4703 /* Take the settings leftover in scratch RAM. */
4704 scsirate
= ahc_inb(ahc
, TARG_SCSIRATE
+ i
);
4706 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4710 if ((scsirate
& SOFS
) == 0x0F) {
4712 * Haven't negotiated yet,
4713 * so the format is different.
4715 scsirate
= (scsirate
& SXFR
) >> 4
4718 | (scsirate
& WIDEXFER
);
4719 offset
= MAX_OFFSET_ULTRA2
;
4721 offset
= ahc_inb(ahc
, TARG_OFFSET
+ i
);
4722 if ((scsirate
& ~WIDEXFER
) == 0 && offset
!= 0)
4723 /* Set to the lowest sync rate, 5MHz */
4725 maxsync
= AHC_SYNCRATE_ULTRA2
;
4726 if ((ahc
->features
& AHC_DT
) != 0)
4727 maxsync
= AHC_SYNCRATE_DT
;
4728 tinfo
->user
.period
=
4729 ahc_find_period(ahc
, scsirate
, maxsync
);
4731 tinfo
->user
.period
= 0;
4733 tinfo
->user
.offset
= ~0;
4734 if ((scsirate
& SXFR_ULTRA2
) <= 8/*10MHz*/
4735 && (ahc
->features
& AHC_DT
) != 0)
4736 tinfo
->user
.ppr_options
=
4738 } else if ((scsirate
& SOFS
) != 0) {
4739 if ((scsirate
& SXFR
) == 0x40
4740 && (ultraenb
& mask
) != 0) {
4741 /* Treat 10MHz as a non-ultra speed */
4745 tinfo
->user
.period
=
4746 ahc_find_period(ahc
, scsirate
,
4748 ? AHC_SYNCRATE_ULTRA
4749 : AHC_SYNCRATE_FAST
);
4750 if (tinfo
->user
.period
!= 0)
4751 tinfo
->user
.offset
= ~0;
4753 if (tinfo
->user
.period
== 0)
4754 tinfo
->user
.offset
= 0;
4755 if ((scsirate
& WIDEXFER
) != 0
4756 && (ahc
->features
& AHC_WIDE
) != 0)
4757 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
4758 tinfo
->user
.protocol_version
= 4;
4759 if ((ahc
->features
& AHC_DT
) != 0)
4760 tinfo
->user
.transport_version
= 3;
4762 tinfo
->user
.transport_version
= 2;
4763 tinfo
->goal
.protocol_version
= 2;
4764 tinfo
->goal
.transport_version
= 2;
4765 tinfo
->curr
.protocol_version
= 2;
4766 tinfo
->curr
.transport_version
= 2;
4768 tstate
->ultraenb
= 0;
4769 tstate
->discenable
= discenable
;
4771 ahc
->user_discenable
= discenable
;
4772 ahc
->user_tagenable
= tagenable
;
4774 /* There are no untagged SCBs active yet. */
4775 for (i
= 0; i
< 16; i
++) {
4776 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, 0));
4777 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
4781 * The SCB based BTT allows an entry per
4782 * target and lun pair.
4784 for (lun
= 1; lun
< AHC_NUM_LUNS
; lun
++)
4785 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, lun
));
4789 /* All of our queues are empty */
4790 for (i
= 0; i
< 256; i
++)
4791 ahc
->qoutfifo
[i
] = SCB_LIST_NULL
;
4793 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_PREREAD
);
4795 for (i
= 0; i
< 256; i
++)
4796 ahc
->qinfifo
[i
] = SCB_LIST_NULL
;
4798 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
4799 ahc_outb(ahc
, TARGID
, 0);
4800 ahc_outb(ahc
, TARGID
+ 1, 0);
4804 * Tell the sequencer where it can find our arrays in memory.
4806 physaddr
= ahc
->scb_data
->hscb_busaddr
;
4807 ahc_outb(ahc
, HSCB_ADDR
, physaddr
& 0xFF);
4808 ahc_outb(ahc
, HSCB_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
4809 ahc_outb(ahc
, HSCB_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
4810 ahc_outb(ahc
, HSCB_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
4812 physaddr
= ahc
->shared_data_busaddr
;
4813 ahc_outb(ahc
, SHARED_DATA_ADDR
, physaddr
& 0xFF);
4814 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
4815 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
4816 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
4819 * Initialize the group code to command length table.
4820 * This overrides the values in TARG_SCSIRATE, so only
4821 * setup the table after we have processed that information.
4823 ahc_outb(ahc
, CMDSIZE_TABLE
, 5);
4824 ahc_outb(ahc
, CMDSIZE_TABLE
+ 1, 9);
4825 ahc_outb(ahc
, CMDSIZE_TABLE
+ 2, 9);
4826 ahc_outb(ahc
, CMDSIZE_TABLE
+ 3, 0);
4827 ahc_outb(ahc
, CMDSIZE_TABLE
+ 4, 15);
4828 ahc_outb(ahc
, CMDSIZE_TABLE
+ 5, 11);
4829 ahc_outb(ahc
, CMDSIZE_TABLE
+ 6, 0);
4830 ahc_outb(ahc
, CMDSIZE_TABLE
+ 7, 0);
4832 /* Tell the sequencer of our initial queue positions */
4833 ahc_outb(ahc
, KERNEL_QINPOS
, 0);
4834 ahc_outb(ahc
, QINPOS
, 0);
4835 ahc_outb(ahc
, QOUTPOS
, 0);
4838 * Use the built in queue management registers
4839 * if they are available.
4841 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
4842 ahc_outb(ahc
, QOFF_CTLSTA
, SCB_QSIZE_256
);
4843 ahc_outb(ahc
, SDSCB_QOFF
, 0);
4844 ahc_outb(ahc
, SNSCB_QOFF
, 0);
4845 ahc_outb(ahc
, HNSCB_QOFF
, 0);
4849 /* We don't have any waiting selections */
4850 ahc_outb(ahc
, WAITING_SCBH
, SCB_LIST_NULL
);
4852 /* Our disconnection list is empty too */
4853 ahc_outb(ahc
, DISCONNECTED_SCBH
, SCB_LIST_NULL
);
4855 /* Message out buffer starts empty */
4856 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
4859 * Setup the allowed SCSI Sequences based on operational mode.
4860 * If we are a target, we'll enable select in operations once
4861 * we've had a lun enabled.
4863 scsiseq_template
= ENSELO
|ENAUTOATNO
|ENAUTOATNP
;
4864 if ((ahc
->flags
& AHC_INITIATORROLE
) != 0)
4865 scsiseq_template
|= ENRSELI
;
4866 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq_template
);
4869 * Load the Sequencer program and Enable the adapter
4873 printf("%s: Downloading Sequencer Program...",
4878 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
4882 * Wait for up to 500ms for our transceivers
4883 * to settle. If the adapter does not have
4884 * a cable attached, the transceivers may
4885 * never settle, so don't complain if we
4890 (ahc_inb(ahc
, SBLKCTL
) & (ENAB40
|ENAB20
)) == 0 && wait
;
4900 ahc_intr_enable(struct ahc_softc
*ahc
, int enable
)
4904 hcntrl
= ahc_inb(ahc
, HCNTRL
);
4906 ahc
->pause
&= ~INTEN
;
4907 ahc
->unpause
&= ~INTEN
;
4910 ahc
->pause
|= INTEN
;
4911 ahc
->unpause
|= INTEN
;
4913 ahc_outb(ahc
, HCNTRL
, hcntrl
);
4917 * Ensure that the card is paused in a location
4918 * outside of all critical sections and that all
4919 * pending work is completed prior to returning.
4920 * This routine should only be called from outside
4921 * an interrupt context.
4924 ahc_pause_and_flushwork(struct ahc_softc
*ahc
)
4931 ahc
->flags
|= AHC_ALL_INTERRUPTS
;
4940 ahc_outb(ahc
, SCSISEQ
, ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
4941 ahc_clear_critical_section(ahc
);
4942 if (intstat
== 0xFF && (ahc
->features
& AHC_REMOVABLE
) != 0)
4945 && (((intstat
= ahc_inb(ahc
, INTSTAT
)) & INT_PEND
) != 0
4946 || (ahc_inb(ahc
, SSTAT0
) & (SELDO
|SELINGO
))));
4947 if (maxloops
== 0) {
4948 printf("Infinite interrupt loop, INTSTAT = %x",
4949 ahc_inb(ahc
, INTSTAT
));
4951 ahc_platform_flushwork(ahc
);
4952 ahc
->flags
&= ~AHC_ALL_INTERRUPTS
;
4956 ahc_suspend(struct ahc_softc
*ahc
)
4961 ahc_pause_and_flushwork(ahc
);
4963 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
)
4968 * XXX What about ATIOs that have not yet been serviced?
4969 * Perhaps we should just refuse to be suspended if we
4970 * are acting in a target role.
4972 if (ahc
->pending_device
!= NULL
)
4976 /* Save volatile registers */
4977 if ((ahc
->features
& AHC_TWIN
) != 0) {
4978 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) | SELBUSB
);
4979 ahc
->suspend_state
.channel
[1].scsiseq
= ahc_inb(ahc
, SCSISEQ
);
4980 ahc
->suspend_state
.channel
[1].sxfrctl0
= ahc_inb(ahc
, SXFRCTL0
);
4981 ahc
->suspend_state
.channel
[1].sxfrctl1
= ahc_inb(ahc
, SXFRCTL1
);
4982 ahc
->suspend_state
.channel
[1].simode0
= ahc_inb(ahc
, SIMODE0
);
4983 ahc
->suspend_state
.channel
[1].simode1
= ahc_inb(ahc
, SIMODE1
);
4984 ahc
->suspend_state
.channel
[1].seltimer
= ahc_inb(ahc
, SELTIMER
);
4985 ahc
->suspend_state
.channel
[1].seqctl
= ahc_inb(ahc
, SEQCTL
);
4986 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~SELBUSB
);
4988 ahc
->suspend_state
.channel
[0].scsiseq
= ahc_inb(ahc
, SCSISEQ
);
4989 ahc
->suspend_state
.channel
[0].sxfrctl0
= ahc_inb(ahc
, SXFRCTL0
);
4990 ahc
->suspend_state
.channel
[0].sxfrctl1
= ahc_inb(ahc
, SXFRCTL1
);
4991 ahc
->suspend_state
.channel
[0].simode0
= ahc_inb(ahc
, SIMODE0
);
4992 ahc
->suspend_state
.channel
[0].simode1
= ahc_inb(ahc
, SIMODE1
);
4993 ahc
->suspend_state
.channel
[0].seltimer
= ahc_inb(ahc
, SELTIMER
);
4994 ahc
->suspend_state
.channel
[0].seqctl
= ahc_inb(ahc
, SEQCTL
);
4996 if ((ahc
->chip
& AHC_PCI
) != 0) {
4997 ahc
->suspend_state
.dscommand0
= ahc_inb(ahc
, DSCOMMAND0
);
4998 ahc
->suspend_state
.dspcistatus
= ahc_inb(ahc
, DSPCISTATUS
);
5001 if ((ahc
->features
& AHC_DT
) != 0) {
5004 sfunct
= ahc_inb(ahc
, SFUNCT
) & ~ALT_MODE
;
5005 ahc_outb(ahc
, SFUNCT
, sfunct
| ALT_MODE
);
5006 ahc
->suspend_state
.optionmode
= ahc_inb(ahc
, OPTIONMODE
);
5007 ahc_outb(ahc
, SFUNCT
, sfunct
);
5008 ahc
->suspend_state
.crccontrol1
= ahc_inb(ahc
, CRCCONTROL1
);
5011 if ((ahc
->features
& AHC_MULTI_FUNC
) != 0)
5012 ahc
->suspend_state
.scbbaddr
= ahc_inb(ahc
, SCBBADDR
);
5014 if ((ahc
->features
& AHC_ULTRA2
) != 0)
5015 ahc
->suspend_state
.dff_thrsh
= ahc_inb(ahc
, DFF_THRSH
);
5017 ptr
= ahc
->suspend_state
.scratch_ram
;
5018 for (i
= 0; i
< 64; i
++)
5019 *ptr
++ = ahc_inb(ahc
, SRAM_BASE
+ i
);
5021 if ((ahc
->features
& AHC_MORE_SRAM
) != 0) {
5022 for (i
= 0; i
< 16; i
++)
5023 *ptr
++ = ahc_inb(ahc
, TARG_OFFSET
+ i
);
5026 ptr
= ahc
->suspend_state
.btt
;
5027 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5028 for (i
= 0;i
< AHC_NUM_TARGETS
; i
++) {
5031 for (j
= 0;j
< AHC_NUM_LUNS
; j
++) {
5034 tcl
= BUILD_TCL(i
<< 4, j
);
5035 *ptr
= ahc_index_busy_tcl(ahc
, tcl
);
5044 ahc_resume(struct ahc_softc
*ahc
)
5051 ahc_build_free_scb_list(ahc
);
5053 /* Restore volatile registers */
5054 if ((ahc
->features
& AHC_TWIN
) != 0) {
5055 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) | SELBUSB
);
5056 ahc_outb(ahc
, SCSIID
, ahc
->our_id
);
5057 ahc_outb(ahc
, SCSISEQ
, ahc
->suspend_state
.channel
[1].scsiseq
);
5058 ahc_outb(ahc
, SXFRCTL0
, ahc
->suspend_state
.channel
[1].sxfrctl0
);
5059 ahc_outb(ahc
, SXFRCTL1
, ahc
->suspend_state
.channel
[1].sxfrctl1
);
5060 ahc_outb(ahc
, SIMODE0
, ahc
->suspend_state
.channel
[1].simode0
);
5061 ahc_outb(ahc
, SIMODE1
, ahc
->suspend_state
.channel
[1].simode1
);
5062 ahc_outb(ahc
, SELTIMER
, ahc
->suspend_state
.channel
[1].seltimer
);
5063 ahc_outb(ahc
, SEQCTL
, ahc
->suspend_state
.channel
[1].seqctl
);
5064 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~SELBUSB
);
5066 ahc_outb(ahc
, SCSISEQ
, ahc
->suspend_state
.channel
[0].scsiseq
);
5067 ahc_outb(ahc
, SXFRCTL0
, ahc
->suspend_state
.channel
[0].sxfrctl0
);
5068 ahc_outb(ahc
, SXFRCTL1
, ahc
->suspend_state
.channel
[0].sxfrctl1
);
5069 ahc_outb(ahc
, SIMODE0
, ahc
->suspend_state
.channel
[0].simode0
);
5070 ahc_outb(ahc
, SIMODE1
, ahc
->suspend_state
.channel
[0].simode1
);
5071 ahc_outb(ahc
, SELTIMER
, ahc
->suspend_state
.channel
[0].seltimer
);
5072 ahc_outb(ahc
, SEQCTL
, ahc
->suspend_state
.channel
[0].seqctl
);
5073 if ((ahc
->features
& AHC_ULTRA2
) != 0)
5074 ahc_outb(ahc
, SCSIID_ULTRA2
, ahc
->our_id
);
5076 ahc_outb(ahc
, SCSIID
, ahc
->our_id
);
5078 if ((ahc
->chip
& AHC_PCI
) != 0) {
5079 ahc_outb(ahc
, DSCOMMAND0
, ahc
->suspend_state
.dscommand0
);
5080 ahc_outb(ahc
, DSPCISTATUS
, ahc
->suspend_state
.dspcistatus
);
5083 if ((ahc
->features
& AHC_DT
) != 0) {
5086 sfunct
= ahc_inb(ahc
, SFUNCT
) & ~ALT_MODE
;
5087 ahc_outb(ahc
, SFUNCT
, sfunct
| ALT_MODE
);
5088 ahc_outb(ahc
, OPTIONMODE
, ahc
->suspend_state
.optionmode
);
5089 ahc_outb(ahc
, SFUNCT
, sfunct
);
5090 ahc_outb(ahc
, CRCCONTROL1
, ahc
->suspend_state
.crccontrol1
);
5093 if ((ahc
->features
& AHC_MULTI_FUNC
) != 0)
5094 ahc_outb(ahc
, SCBBADDR
, ahc
->suspend_state
.scbbaddr
);
5096 if ((ahc
->features
& AHC_ULTRA2
) != 0)
5097 ahc_outb(ahc
, DFF_THRSH
, ahc
->suspend_state
.dff_thrsh
);
5099 ptr
= ahc
->suspend_state
.scratch_ram
;
5100 for (i
= 0; i
< 64; i
++)
5101 ahc_outb(ahc
, SRAM_BASE
+ i
, *ptr
++);
5103 if ((ahc
->features
& AHC_MORE_SRAM
) != 0) {
5104 for (i
= 0; i
< 16; i
++)
5105 ahc_outb(ahc
, TARG_OFFSET
+ i
, *ptr
++);
5108 ptr
= ahc
->suspend_state
.btt
;
5109 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5110 for (i
= 0;i
< AHC_NUM_TARGETS
; i
++) {
5113 for (j
= 0;j
< AHC_NUM_LUNS
; j
++) {
5116 tcl
= BUILD_TCL(i
<< 4, j
);
5117 ahc_busy_tcl(ahc
, tcl
, *ptr
);
5124 /************************** Busy Target Table *********************************/
5126 * Return the untagged transaction id for a given target/channel lun.
5127 * Optionally, clear the entry.
5130 ahc_index_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5133 u_int target_offset
;
5135 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5138 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5139 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5140 scbid
= ahc_inb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
));
5141 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5143 target_offset
= TCL_TARGET_OFFSET(tcl
);
5144 scbid
= ahc_inb(ahc
, BUSY_TARGETS
+ target_offset
);
5151 ahc_unbusy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5153 u_int target_offset
;
5155 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5158 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5159 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5160 ahc_outb(ahc
, SCB_64_BTT
+TCL_TARGET_OFFSET(tcl
), SCB_LIST_NULL
);
5161 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5163 target_offset
= TCL_TARGET_OFFSET(tcl
);
5164 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, SCB_LIST_NULL
);
5169 ahc_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
, u_int scbid
)
5171 u_int target_offset
;
5173 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5176 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5177 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5178 ahc_outb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
), scbid
);
5179 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5181 target_offset
= TCL_TARGET_OFFSET(tcl
);
5182 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, scbid
);
5186 /************************** SCB and SCB queue management **********************/
5188 ahc_match_scb(struct ahc_softc
*ahc
, struct scb
*scb
, int target
,
5189 char channel
, int lun
, u_int tag
, role_t role
)
5191 int targ
= SCB_GET_TARGET(ahc
, scb
);
5192 char chan
= SCB_GET_CHANNEL(ahc
, scb
);
5193 int slun
= SCB_GET_LUN(scb
);
5196 match
= ((chan
== channel
) || (channel
== ALL_CHANNELS
));
5198 match
= ((targ
== target
) || (target
== CAM_TARGET_WILDCARD
));
5200 match
= ((lun
== slun
) || (lun
== CAM_LUN_WILDCARD
));
5206 group
= XPT_FC_GROUP(scb
->io_ctx
->ccb_h
.func_code
);
5207 if (role
== ROLE_INITIATOR
) {
5208 match
= (group
!= XPT_FC_GROUP_TMODE
)
5209 && ((tag
== scb
->hscb
->tag
)
5210 || (tag
== SCB_LIST_NULL
));
5211 } else if (role
== ROLE_TARGET
) {
5212 match
= (group
== XPT_FC_GROUP_TMODE
)
5213 && ((tag
== scb
->io_ctx
->csio
.tag_id
)
5214 || (tag
== SCB_LIST_NULL
));
5216 #else /* !AHC_TARGET_MODE */
5217 match
= ((tag
== scb
->hscb
->tag
) || (tag
== SCB_LIST_NULL
));
5218 #endif /* AHC_TARGET_MODE */
5226 ahc_freeze_devq(struct ahc_softc
*ahc
, struct scb
*scb
)
5232 target
= SCB_GET_TARGET(ahc
, scb
);
5233 lun
= SCB_GET_LUN(scb
);
5234 channel
= SCB_GET_CHANNEL(ahc
, scb
);
5236 ahc_search_qinfifo(ahc
, target
, channel
, lun
,
5237 /*tag*/SCB_LIST_NULL
, ROLE_UNKNOWN
,
5238 CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
5240 ahc_platform_freeze_devq(ahc
, scb
);
5244 ahc_qinfifo_requeue_tail(struct ahc_softc
*ahc
, struct scb
*scb
)
5246 struct scb
*prev_scb
;
5249 if (ahc_qinfifo_count(ahc
) != 0) {
5253 prev_pos
= ahc
->qinfifonext
- 1;
5254 prev_tag
= ahc
->qinfifo
[prev_pos
];
5255 prev_scb
= ahc_lookup_scb(ahc
, prev_tag
);
5257 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5258 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5259 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5261 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5266 ahc_qinfifo_requeue(struct ahc_softc
*ahc
, struct scb
*prev_scb
,
5269 if (prev_scb
== NULL
) {
5270 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5272 prev_scb
->hscb
->next
= scb
->hscb
->tag
;
5273 ahc_sync_scb(ahc
, prev_scb
,
5274 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5276 ahc
->qinfifo
[ahc
->qinfifonext
++] = scb
->hscb
->tag
;
5277 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5278 ahc_sync_scb(ahc
, scb
, BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5282 ahc_qinfifo_count(struct ahc_softc
*ahc
)
5287 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5288 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
5289 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
5291 qinpos
= ahc_inb(ahc
, QINPOS
);
5292 diff
= ahc
->qinfifonext
- qinpos
;
5297 ahc_search_qinfifo(struct ahc_softc
*ahc
, int target
, char channel
,
5298 int lun
, u_int tag
, role_t role
, uint32_t status
,
5299 ahc_search_action action
)
5302 struct scb
*prev_scb
;
5312 qintail
= ahc
->qinfifonext
;
5313 have_qregs
= (ahc
->features
& AHC_QUEUE_REGS
) != 0;
5315 qinstart
= ahc_inb(ahc
, SNSCB_QOFF
);
5316 ahc_outb(ahc
, SNSCB_QOFF
, qinstart
);
5318 qinstart
= ahc_inb(ahc
, QINPOS
);
5323 if (action
== SEARCH_COMPLETE
) {
5325 * Don't attempt to run any queued untagged transactions
5326 * until we are done with the abort process.
5328 ahc_freeze_untagged_queues(ahc
);
5332 * Start with an empty queue. Entries that are not chosen
5333 * for removal will be re-added to the queue as we go.
5335 ahc
->qinfifonext
= qinpos
;
5336 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
5338 while (qinpos
!= qintail
) {
5339 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinpos
]);
5341 printf("qinpos = %d, SCB index = %d\n",
5342 qinpos
, ahc
->qinfifo
[qinpos
]);
5346 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
, tag
, role
)) {
5348 * We found an scb that needs to be acted on.
5352 case SEARCH_COMPLETE
:
5357 ostat
= ahc_get_transaction_status(scb
);
5358 if (ostat
== CAM_REQ_INPROG
)
5359 ahc_set_transaction_status(scb
, status
);
5360 cstat
= ahc_get_transaction_status(scb
);
5361 if (cstat
!= CAM_REQ_CMP
)
5362 ahc_freeze_scb(scb
);
5363 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5364 printf("Inactive SCB in qinfifo\n");
5372 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5377 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5383 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5384 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5386 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5389 if (action
!= SEARCH_COUNT
5391 && (qinstart
!= ahc
->qinfifonext
)) {
5393 * The sequencer may be in the process of DMA'ing
5394 * down the SCB at the beginning of the queue.
5395 * This could be problematic if either the first,
5396 * or the second SCB is removed from the queue
5397 * (the first SCB includes a pointer to the "next"
5398 * SCB to DMA). If we have removed any entries, swap
5399 * the first element in the queue with the next HSCB
5400 * so the sequencer will notice that NEXT_QUEUED_SCB
5401 * has changed during its DMA attempt and will retry
5404 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinstart
]);
5407 printf("found = %d, qinstart = %d, qinfifionext = %d\n",
5408 found
, qinstart
, ahc
->qinfifonext
);
5409 panic("First/Second Qinfifo fixup\n");
5412 * ahc_swap_with_next_hscb forces our next pointer to
5413 * point to the reserved SCB for future commands. Save
5414 * and restore our original next pointer to maintain
5417 next
= scb
->hscb
->next
;
5418 ahc
->scb_data
->scbindex
[scb
->hscb
->tag
] = NULL
;
5419 ahc_swap_with_next_hscb(ahc
, scb
);
5420 scb
->hscb
->next
= next
;
5421 ahc
->qinfifo
[qinstart
] = scb
->hscb
->tag
;
5423 /* Tell the card about the new head of the qinfifo. */
5424 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5426 /* Fixup the tail "next" pointer. */
5427 qintail
= ahc
->qinfifonext
- 1;
5428 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qintail
]);
5429 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5433 * Search waiting for selection list.
5435 curscbptr
= ahc_inb(ahc
, SCBPTR
);
5436 next
= ahc_inb(ahc
, WAITING_SCBH
); /* Start at head of list. */
5437 prev
= SCB_LIST_NULL
;
5439 while (next
!= SCB_LIST_NULL
) {
5442 ahc_outb(ahc
, SCBPTR
, next
);
5443 scb_index
= ahc_inb(ahc
, SCB_TAG
);
5444 if (scb_index
>= ahc
->scb_data
->numscbs
) {
5445 printf("Waiting List inconsistency. "
5446 "SCB index == %d, yet numscbs == %d.",
5447 scb_index
, ahc
->scb_data
->numscbs
);
5448 ahc_dump_card_state(ahc
);
5449 panic("for safety");
5451 scb
= ahc_lookup_scb(ahc
, scb_index
);
5453 printf("scb_index = %d, next = %d\n",
5455 panic("Waiting List traversal\n");
5457 if (ahc_match_scb(ahc
, scb
, target
, channel
,
5458 lun
, SCB_LIST_NULL
, role
)) {
5460 * We found an scb that needs to be acted on.
5464 case SEARCH_COMPLETE
:
5469 ostat
= ahc_get_transaction_status(scb
);
5470 if (ostat
== CAM_REQ_INPROG
)
5471 ahc_set_transaction_status(scb
, status
);
5472 cstat
= ahc_get_transaction_status(scb
);
5473 if (cstat
!= CAM_REQ_CMP
)
5474 ahc_freeze_scb(scb
);
5475 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5476 printf("Inactive SCB in "
5482 next
= ahc_rem_wscb(ahc
, next
, prev
);
5486 next
= ahc_inb(ahc
, SCB_NEXT
);
5492 next
= ahc_inb(ahc
, SCB_NEXT
);
5495 ahc_outb(ahc
, SCBPTR
, curscbptr
);
5497 found
+= ahc_search_untagged_queues(ahc
, /*ahc_io_ctx_t*/NULL
, target
,
5498 channel
, lun
, status
, action
);
5500 if (action
== SEARCH_COMPLETE
)
5501 ahc_release_untagged_queues(ahc
);
5506 ahc_search_untagged_queues(struct ahc_softc
*ahc
,
5507 struct scsipi_xfer
*xs
, int target
, char channel
, int lun
,
5508 uint32_t status
, ahc_search_action action
)
5515 if (action
== SEARCH_COMPLETE
) {
5517 * Don't attempt to run any queued untagged transactions
5518 * until we are done with the abort process.
5520 ahc_freeze_untagged_queues(ahc
);
5525 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
5528 if (target
!= CAM_TARGET_WILDCARD
) {
5539 for (; i
< maxtarget
; i
++) {
5540 struct scb_tailq
*untagged_q
;
5541 struct scb
*next_scb
;
5543 untagged_q
= &(ahc
->untagged_queues
[i
]);
5544 next_scb
= TAILQ_FIRST(untagged_q
);
5545 while (next_scb
!= NULL
) {
5548 next_scb
= TAILQ_NEXT(scb
, links
.tqe
);
5551 * The head of the list may be the currently
5552 * active untagged command for a device.
5553 * We're only searching for commands that
5554 * have not been started. A transaction
5555 * marked active but still in the qinfifo
5556 * is removed by the qinfifo scanning code
5559 if ((scb
->flags
& SCB_ACTIVE
) != 0)
5562 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
,
5563 SCB_LIST_NULL
, ROLE_INITIATOR
) == 0
5564 /*|| (ctx != NULL && ctx != scb->io_ctx)*/)
5568 * We found an scb that needs to be acted on.
5572 case SEARCH_COMPLETE
:
5577 ostat
= ahc_get_transaction_status(scb
);
5578 if (ostat
== CAM_REQ_INPROG
)
5579 ahc_set_transaction_status(scb
, status
);
5580 cstat
= ahc_get_transaction_status(scb
);
5581 if (cstat
!= CAM_REQ_CMP
)
5582 ahc_freeze_scb(scb
);
5583 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5584 printf("Inactive SCB in untaggedQ\n");
5589 scb
->flags
&= ~SCB_UNTAGGEDQ
;
5590 TAILQ_REMOVE(untagged_q
, scb
, links
.tqe
);
5598 if (action
== SEARCH_COMPLETE
)
5599 ahc_release_untagged_queues(ahc
);
5604 ahc_search_disc_list(struct ahc_softc
*ahc
, int target
, char channel
,
5605 int lun
, u_int tag
, int stop_on_first
, int remove
,
5615 next
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
5616 prev
= SCB_LIST_NULL
;
5619 /* restore this when we're done */
5620 active_scb
= ahc_inb(ahc
, SCBPTR
);
5622 /* Silence compiler */
5623 active_scb
= SCB_LIST_NULL
;
5625 while (next
!= SCB_LIST_NULL
) {
5628 ahc_outb(ahc
, SCBPTR
, next
);
5629 scb_index
= ahc_inb(ahc
, SCB_TAG
);
5630 if (scb_index
>= ahc
->scb_data
->numscbs
) {
5631 printf("Disconnected List inconsistency. "
5632 "SCB index == %d, yet numscbs == %d.",
5633 scb_index
, ahc
->scb_data
->numscbs
);
5634 ahc_dump_card_state(ahc
);
5635 panic("for safety");
5639 panic("Disconnected List Loop. "
5640 "cur SCBPTR == %x, prev SCBPTR == %x.",
5643 scbp
= ahc_lookup_scb(ahc
, scb_index
);
5644 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
,
5645 tag
, ROLE_INITIATOR
)) {
5649 ahc_rem_scb_from_disc_list(ahc
, prev
, next
);
5652 next
= ahc_inb(ahc
, SCB_NEXT
);
5658 next
= ahc_inb(ahc
, SCB_NEXT
);
5662 ahc_outb(ahc
, SCBPTR
, active_scb
);
5667 * Remove an SCB from the on chip list of disconnected transactions.
5668 * This is empty/unused if we are not performing SCB paging.
5671 ahc_rem_scb_from_disc_list(struct ahc_softc
*ahc
, u_int prev
, u_int scbptr
)
5675 ahc_outb(ahc
, SCBPTR
, scbptr
);
5676 next
= ahc_inb(ahc
, SCB_NEXT
);
5678 ahc_outb(ahc
, SCB_CONTROL
, 0);
5680 ahc_add_curscb_to_free_list(ahc
);
5682 if (prev
!= SCB_LIST_NULL
) {
5683 ahc_outb(ahc
, SCBPTR
, prev
);
5684 ahc_outb(ahc
, SCB_NEXT
, next
);
5686 ahc_outb(ahc
, DISCONNECTED_SCBH
, next
);
5692 * Add the SCB as selected by SCBPTR onto the on chip list of
5693 * free hardware SCBs. This list is empty/unused if we are not
5694 * performing SCB paging.
5697 ahc_add_curscb_to_free_list(struct ahc_softc
*ahc
)
5700 * Invalidate the tag so that our abort
5701 * routines don't think it's active.
5703 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
5705 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
5706 ahc_outb(ahc
, SCB_NEXT
, ahc_inb(ahc
, FREE_SCBH
));
5707 ahc_outb(ahc
, FREE_SCBH
, ahc_inb(ahc
, SCBPTR
));
5712 * Manipulate the waiting for selection list and return the
5713 * scb that follows the one that we remove.
5716 ahc_rem_wscb(struct ahc_softc
*ahc
, u_int scbpos
, u_int prev
)
5721 * Select the SCB we want to abort and
5722 * pull the next pointer out of it.
5724 curscb
= ahc_inb(ahc
, SCBPTR
);
5725 ahc_outb(ahc
, SCBPTR
, scbpos
);
5726 next
= ahc_inb(ahc
, SCB_NEXT
);
5728 /* Clear the necessary fields */
5729 ahc_outb(ahc
, SCB_CONTROL
, 0);
5731 ahc_add_curscb_to_free_list(ahc
);
5733 /* update the waiting list */
5734 if (prev
== SCB_LIST_NULL
) {
5735 /* First in the list */
5736 ahc_outb(ahc
, WAITING_SCBH
, next
);
5739 * Ensure we aren't attempting to perform
5740 * selection for this entry.
5742 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
5745 * Select the scb that pointed to us
5746 * and update its next pointer.
5748 ahc_outb(ahc
, SCBPTR
, prev
);
5749 ahc_outb(ahc
, SCB_NEXT
, next
);
5753 * Point us back at the original scb position.
5755 ahc_outb(ahc
, SCBPTR
, curscb
);
5759 /******************************** Error Handling ******************************/
5761 * Abort all SCBs that match the given description (target/channel/lun/tag),
5762 * setting their status to the passed in status if the status has not already
5763 * been modified from CAM_REQ_INPROG. This routine assumes that the sequencer
5764 * is paused before it is called.
5767 ahc_abort_scbs(struct ahc_softc
*ahc
, int target
, char channel
,
5768 int lun
, u_int tag
, role_t role
, uint32_t status
)
5771 struct scb
*scbp_next
;
5781 * Don't attempt to run any queued untagged transactions
5782 * until we are done with the abort process.
5784 ahc_freeze_untagged_queues(ahc
);
5786 /* restore this when we're done */
5787 active_scb
= ahc_inb(ahc
, SCBPTR
);
5789 found
= ahc_search_qinfifo(ahc
, target
, channel
, lun
, SCB_LIST_NULL
,
5790 role
, CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
5793 * Clean out the busy target table for any untagged commands.
5797 if (target
!= CAM_TARGET_WILDCARD
) {
5804 if (lun
== CAM_LUN_WILDCARD
) {
5807 * Unless we are using an SCB based
5808 * busy targets table, there is only
5809 * one table entry for all luns of
5814 if ((ahc
->flags
& AHC_SCB_BTT
) != 0)
5815 maxlun
= AHC_NUM_LUNS
;
5821 if (role
!= ROLE_TARGET
) {
5822 for (;i
< maxtarget
; i
++) {
5823 for (j
= minlun
;j
< maxlun
; j
++) {
5827 tcl
= BUILD_TCL(i
<< 4, j
);
5828 scbid
= ahc_index_busy_tcl(ahc
, tcl
);
5829 scbp
= ahc_lookup_scb(ahc
, scbid
);
5831 || ahc_match_scb(ahc
, scbp
, target
, channel
,
5832 lun
, tag
, role
) == 0)
5834 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, j
));
5839 * Go through the disconnected list and remove any entries we
5840 * have queued for completion, 0'ing their control byte too.
5841 * We save the active SCB and restore it ourselves, so there
5842 * is no reason for this search to restore it too.
5844 ahc_search_disc_list(ahc
, target
, channel
, lun
, tag
,
5845 /*stop_on_first*/FALSE
, /*remove*/TRUE
,
5846 /*save_state*/FALSE
);
5850 * Go through the hardware SCB array looking for commands that
5851 * were active but not on any list. In some cases, these remnants
5852 * might not still have mappings in the scbindex array (e.g. unexpected
5853 * bus free with the same scb queued for an abort). Don't hold this
5856 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
5859 ahc_outb(ahc
, SCBPTR
, i
);
5860 scbid
= ahc_inb(ahc
, SCB_TAG
);
5861 scbp
= ahc_lookup_scb(ahc
, scbid
);
5862 if ((scbp
== NULL
&& scbid
!= SCB_LIST_NULL
)
5864 && ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)))
5865 ahc_add_curscb_to_free_list(ahc
);
5869 * Go through the pending CCB list and look for
5870 * commands for this target that are still active.
5871 * These are other tagged commands that were
5872 * disconnected when the reset occurred.
5874 scbp_next
= LIST_FIRST(&ahc
->pending_scbs
);
5875 while (scbp_next
!= NULL
) {
5877 scbp_next
= LIST_NEXT(scbp
, pending_links
);
5878 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)) {
5881 ostat
= ahc_get_transaction_status(scbp
);
5882 if (ostat
== CAM_REQ_INPROG
)
5883 ahc_set_transaction_status(scbp
, status
);
5884 if (ahc_get_transaction_status(scbp
) != CAM_REQ_CMP
)
5885 ahc_freeze_scb(scbp
);
5886 if ((scbp
->flags
& SCB_ACTIVE
) == 0)
5887 printf("Inactive SCB on pending list\n");
5888 ahc_done(ahc
, scbp
);
5892 ahc_outb(ahc
, SCBPTR
, active_scb
);
5893 ahc_platform_abort_scbs(ahc
, target
, channel
, lun
, tag
, role
, status
);
5894 ahc_release_untagged_queues(ahc
);
5899 ahc_reset_current_bus(struct ahc_softc
*ahc
)
5903 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENSCSIRST
);
5904 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
5905 ahc_outb(ahc
, SCSISEQ
, scsiseq
| SCSIRSTO
);
5906 ahc_flush_device_writes(ahc
);
5907 ahc_delay(AHC_BUSRESET_DELAY
);
5908 /* Turn off the bus reset */
5909 ahc_outb(ahc
, SCSISEQ
, scsiseq
& ~SCSIRSTO
);
5911 ahc_clear_intstat(ahc
);
5913 /* Re-enable reset interrupts */
5914 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) | ENSCSIRST
);
5918 ahc_reset_channel(struct ahc_softc
*ahc
, char channel
, int initiate_reset
)
5920 struct ahc_devinfo dinfo
;
5921 u_int initiator
, target
, max_scsiid
;
5929 ahc
->pending_device
= NULL
;
5931 ahc_compile_devinfo(&dinfo
,
5932 CAM_TARGET_WILDCARD
,
5933 CAM_TARGET_WILDCARD
,
5935 channel
, ROLE_UNKNOWN
);
5938 /* Make sure the sequencer is in a safe location. */
5939 ahc_clear_critical_section(ahc
);
5942 * Run our command complete fifos to ensure that we perform
5943 * completion processing on any commands that 'completed'
5944 * before the reset occurred.
5946 ahc_run_qoutfifo(ahc
);
5949 * XXX - In Twin mode, the tqinfifo may have commands
5950 * for an unaffected channel in it. However, if
5951 * we have run out of ATIO resources to drain that
5952 * queue, we may not get them all out here. Further,
5953 * the blocked transactions for the reset channel
5954 * should just be killed off, irrespecitve of whether
5955 * we are blocked on ATIO resources. Write a routine
5956 * to compact the tqinfifo appropriately.
5958 if ((ahc
->flags
& AHC_TARGETROLE
) != 0) {
5959 ahc_run_tqinfifo(ahc
, /*paused*/TRUE
);
5964 * Reset the bus if we are initiating this reset
5966 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
5968 if ((ahc
->features
& AHC_TWIN
) != 0
5969 && ((sblkctl
& SELBUSB
) != 0))
5971 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
5972 if (cur_channel
!= channel
) {
5973 /* Case 1: Command for another bus is active
5974 * Stealthily reset the other bus without
5975 * upsetting the current bus.
5977 ahc_outb(ahc
, SBLKCTL
, sblkctl
^ SELBUSB
);
5978 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
5981 * Bus resets clear ENSELI, so we cannot
5982 * defer re-enabling bus reset interrupts
5983 * if we are in target mode.
5985 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
5986 simode1
|= ENSCSIRST
;
5988 ahc_outb(ahc
, SIMODE1
, simode1
);
5990 ahc_reset_current_bus(ahc
);
5991 ahc_clear_intstat(ahc
);
5992 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
5993 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
5994 restart_needed
= FALSE
;
5996 /* Case 2: A command from this bus is active or we're idle */
5997 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
6000 * Bus resets clear ENSELI, so we cannot
6001 * defer re-enabling bus reset interrupts
6002 * if we are in target mode.
6004 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
6005 simode1
|= ENSCSIRST
;
6007 ahc_outb(ahc
, SIMODE1
, simode1
);
6009 ahc_reset_current_bus(ahc
);
6010 ahc_clear_intstat(ahc
);
6011 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
6012 restart_needed
= TRUE
;
6016 * Clean up all the state information for the
6017 * pending transactions on this bus.
6019 found
= ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, channel
,
6020 CAM_LUN_WILDCARD
, SCB_LIST_NULL
,
6021 ROLE_UNKNOWN
, CAM_SCSI_BUS_RESET
);
6023 max_scsiid
= (ahc
->features
& AHC_WIDE
) ? 15 : 7;
6025 #ifdef AHC_TARGET_MODE
6027 * Send an immediate notify ccb to all target more peripheral
6028 * drivers affected by this action.
6030 for (target
= 0; target
<= max_scsiid
; target
++) {
6031 struct ahc_tmode_tstate
* tstate
;
6034 tstate
= ahc
->enabled_targets
[target
];
6037 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
6038 struct ahc_tmode_lstate
* lstate
;
6040 lstate
= tstate
->enabled_luns
[lun
];
6044 ahc_queue_lstate_event(ahc
, lstate
, CAM_TARGET_WILDCARD
,
6045 EVENT_TYPE_BUS_RESET
, /*arg*/0);
6046 ahc_send_lstate_events(ahc
, lstate
);
6051 * Revert to async/narrow transfers until we renegotiate.
6053 for (target
= 0; target
<= max_scsiid
; target
++) {
6055 if (ahc
->enabled_targets
[target
] == NULL
)
6057 for (initiator
= 0; initiator
<= max_scsiid
; initiator
++) {
6058 struct ahc_devinfo devinfo
;
6060 ahc_compile_devinfo(&devinfo
, target
, initiator
,
6062 channel
, ROLE_UNKNOWN
);
6063 ahc_set_width(ahc
, &devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
6064 AHC_TRANS_CUR
, /*paused*/TRUE
);
6065 ahc_set_syncrate(ahc
, &devinfo
, /*syncrate*/NULL
,
6066 /*period*/0, /*offset*/0,
6067 /*ppr_options*/0, AHC_TRANS_CUR
,
6080 /***************************** Residual Processing ****************************/
6082 * Calculate the residual for a just completed SCB.
6085 ahc_calc_residual(struct ahc_softc
*ahc
, struct scb
*scb
)
6087 struct hardware_scb
*hscb
;
6088 struct status_pkt
*spkt
;
6090 uint32_t resid_sgptr
;
6096 * SG_RESID_VALID clear in sgptr.
6097 * 2) Transferless command
6098 * 3) Never performed any transfers.
6099 * sgptr has SG_FULL_RESID set.
6100 * 4) No residual but target did not
6101 * save data pointers after the
6102 * last transfer, so sgptr was
6104 * 5) We have a partial residual.
6105 * Use residual_sgptr to determine
6110 sgptr
= ahc_le32toh(hscb
->sgptr
);
6111 if ((sgptr
& SG_RESID_VALID
) == 0)
6114 sgptr
&= ~SG_RESID_VALID
;
6116 if ((sgptr
& SG_LIST_NULL
) != 0)
6120 spkt
= &hscb
->shared_data
.status
;
6121 resid_sgptr
= ahc_le32toh(spkt
->residual_sg_ptr
);
6122 if ((sgptr
& SG_FULL_RESID
) != 0) {
6124 resid
= ahc_get_transfer_length(scb
);
6125 } else if ((resid_sgptr
& SG_LIST_NULL
) != 0) {
6128 } else if ((resid_sgptr
& ~SG_PTR_MASK
) != 0) {
6129 panic("Bogus resid sgptr value 0x%x\n", resid_sgptr
);
6131 struct ahc_dma_seg
*sg
;
6134 * Remainder of the SG where the transfer
6137 resid
= ahc_le32toh(spkt
->residual_datacnt
) & AHC_SG_LEN_MASK
;
6138 sg
= ahc_sg_bus_to_virt(scb
, resid_sgptr
& SG_PTR_MASK
);
6140 /* The residual sg_ptr always points to the next sg */
6144 * Add up the contents of all residual
6145 * SG segments that are after the SG where
6146 * the transfer stopped.
6148 while ((ahc_le32toh(sg
->len
) & AHC_DMA_LAST_SEG
) == 0) {
6150 resid
+= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
6153 if ((scb
->flags
& SCB_SENSE
) == 0)
6154 ahc_set_residual(scb
, resid
);
6156 ahc_set_sense_residual(scb
, resid
);
6159 if ((ahc_debug
& AHC_SHOW_MISC
) != 0) {
6160 ahc_print_path(ahc
, scb
);
6161 printf("Handled %sResidual of %d bytes\n",
6162 (scb
->flags
& SCB_SENSE
) ? "Sense " : "", resid
);
6167 /******************************* Target Mode **********************************/
6168 #ifdef AHC_TARGET_MODE
6170 * Add a target mode event to this lun's queue
6173 ahc_queue_lstate_event(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
,
6174 u_int initiator_id
, u_int event_type
, u_int event_arg
)
6176 struct ahc_tmode_event
*event
;
6179 xpt_freeze_devq(lstate
->path
, /*count*/1);
6180 if (lstate
->event_w_idx
>= lstate
->event_r_idx
)
6181 pending
= lstate
->event_w_idx
- lstate
->event_r_idx
;
6183 pending
= AHC_TMODE_EVENT_BUFFER_SIZE
+ 1
6184 - (lstate
->event_r_idx
- lstate
->event_w_idx
);
6186 if (event_type
== EVENT_TYPE_BUS_RESET
6187 || event_type
== MSG_BUS_DEV_RESET
) {
6189 * Any earlier events are irrelevant, so reset our buffer.
6190 * This has the effect of allowing us to deal with reset
6191 * floods (an external device holding down the reset line)
6192 * without losing the event that is really interesting.
6194 lstate
->event_r_idx
= 0;
6195 lstate
->event_w_idx
= 0;
6196 xpt_release_devq(lstate
->path
, pending
, /*runqueue*/FALSE
);
6199 if (pending
== AHC_TMODE_EVENT_BUFFER_SIZE
) {
6200 xpt_print_path(lstate
->path
);
6201 printf("immediate event %x:%x lost\n",
6202 lstate
->event_buffer
[lstate
->event_r_idx
].event_type
,
6203 lstate
->event_buffer
[lstate
->event_r_idx
].event_arg
);
6204 lstate
->event_r_idx
++;
6205 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6206 lstate
->event_r_idx
= 0;
6207 xpt_release_devq(lstate
->path
, /*count*/1, /*runqueue*/FALSE
);
6210 event
= &lstate
->event_buffer
[lstate
->event_w_idx
];
6211 event
->initiator_id
= initiator_id
;
6212 event
->event_type
= event_type
;
6213 event
->event_arg
= event_arg
;
6214 lstate
->event_w_idx
++;
6215 if (lstate
->event_w_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6216 lstate
->event_w_idx
= 0;
6220 * Send any target mode events queued up waiting
6221 * for immediate notify resources.
6224 ahc_send_lstate_events(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
)
6226 struct ccb_hdr
*ccbh
;
6227 struct ccb_immed_notify
*inot
;
6229 while (lstate
->event_r_idx
!= lstate
->event_w_idx
6230 && (ccbh
= SLIST_FIRST(&lstate
->immed_notifies
)) != NULL
) {
6231 struct ahc_tmode_event
*event
;
6233 event
= &lstate
->event_buffer
[lstate
->event_r_idx
];
6234 SLIST_REMOVE_HEAD(&lstate
->immed_notifies
, sim_links
.sle
);
6235 inot
= (struct ccb_immed_notify
*)ccbh
;
6236 switch (event
->event_type
) {
6237 case EVENT_TYPE_BUS_RESET
:
6238 ccbh
->status
= CAM_SCSI_BUS_RESET
|CAM_DEV_QFRZN
;
6241 ccbh
->status
= CAM_MESSAGE_RECV
|CAM_DEV_QFRZN
;
6242 inot
->message_args
[0] = event
->event_type
;
6243 inot
->message_args
[1] = event
->event_arg
;
6246 inot
->initiator_id
= event
->initiator_id
;
6247 inot
->sense_len
= 0;
6248 xpt_done((union ccb
*)inot
);
6249 lstate
->event_r_idx
++;
6250 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6251 lstate
->event_r_idx
= 0;
6256 /******************** Sequencer Program Patching/Download *********************/
6260 ahc_dumpseq(struct ahc_softc
* ahc
)
6265 if ((ahc
->chip
& AHC_BUS_MASK
) < AHC_PCI
)
6267 else if ((ahc
->features
& AHC_ULTRA2
) != 0)
6272 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6273 ahc_outb(ahc
, SEQADDR0
, 0);
6274 ahc_outb(ahc
, SEQADDR1
, 0);
6275 for (i
= 0; i
< max_prog
; i
++) {
6276 uint8_t ins_bytes
[4];
6278 ahc_insb(ahc
, SEQRAM
, ins_bytes
, 4);
6279 printf("0x%08x\n", ins_bytes
[0] << 24
6280 | ins_bytes
[1] << 16
6288 ahc_loadseq(struct ahc_softc
*ahc
)
6290 struct cs cs_table
[num_critical_sections
];
6291 u_int begin_set
[num_critical_sections
];
6292 u_int end_set
[num_critical_sections
];
6293 struct patch
*cur_patch
;
6299 u_int sg_prefetch_cnt
;
6300 uint8_t download_consts
[7];
6303 * Start out with 0 critical sections
6304 * that apply to this firmware load.
6308 memset(begin_set
, 0, sizeof(begin_set
));
6309 memset(end_set
, 0, sizeof(end_set
));
6311 /* Setup downloadable constant table */
6312 download_consts
[QOUTFIFO_OFFSET
] = 0;
6313 if (ahc
->targetcmds
!= NULL
)
6314 download_consts
[QOUTFIFO_OFFSET
] += 32;
6315 download_consts
[QINFIFO_OFFSET
] = download_consts
[QOUTFIFO_OFFSET
] + 1;
6316 download_consts
[CACHESIZE_MASK
] = ahc
->pci_cachesize
- 1;
6317 download_consts
[INVERTED_CACHESIZE_MASK
] = ~(ahc
->pci_cachesize
- 1);
6318 sg_prefetch_cnt
= ahc
->pci_cachesize
;
6319 if (sg_prefetch_cnt
< (2 * sizeof(struct ahc_dma_seg
)))
6320 sg_prefetch_cnt
= 2 * sizeof(struct ahc_dma_seg
);
6321 download_consts
[SG_PREFETCH_CNT
] = sg_prefetch_cnt
;
6322 download_consts
[SG_PREFETCH_ALIGN_MASK
] = ~(sg_prefetch_cnt
- 1);
6323 download_consts
[SG_PREFETCH_ADDR_MASK
] = (sg_prefetch_cnt
- 1);
6325 cur_patch
= patches
;
6328 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6329 ahc_outb(ahc
, SEQADDR0
, 0);
6330 ahc_outb(ahc
, SEQADDR1
, 0);
6332 for (i
= 0; i
< sizeof(seqprog
)/4; i
++) {
6333 if (ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
) == 0) {
6335 * Don't download this instruction as it
6336 * is in a patch that was removed.
6341 * Move through the CS table until we find a CS
6342 * that might apply to this instruction.
6344 for (; cur_cs
< num_critical_sections
; cur_cs
++) {
6345 if (critical_sections
[cur_cs
].end
<= i
) {
6346 if (begin_set
[cs_count
] == TRUE
6347 && end_set
[cs_count
] == FALSE
) {
6348 cs_table
[cs_count
].end
= downloaded
;
6349 end_set
[cs_count
] = TRUE
;
6354 if (critical_sections
[cur_cs
].begin
<= i
6355 && begin_set
[cs_count
] == FALSE
) {
6356 cs_table
[cs_count
].begin
= downloaded
;
6357 begin_set
[cs_count
] = TRUE
;
6361 ahc_download_instr(ahc
, i
, download_consts
);
6365 ahc
->num_critical_sections
= cs_count
;
6366 if (cs_count
!= 0) {
6368 cs_count
*= sizeof(struct cs
);
6369 ahc
->critical_sections
= malloc(cs_count
, M_DEVBUF
, M_NOWAIT
);
6370 if (ahc
->critical_sections
== NULL
)
6371 panic("ahc_loadseq: Could not malloc");
6372 memcpy(ahc
->critical_sections
, cs_table
, cs_count
);
6374 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
);
6378 printf(" %d instructions downloaded\n", downloaded
);
6379 printf("%s: Features 0x%x, Bugs 0x%x, Flags 0x%x\n",
6380 ahc_name(ahc
), ahc
->features
, ahc
->bugs
, ahc
->flags
);
6385 ahc_check_patch(struct ahc_softc
*ahc
, struct patch
**start_patch
,
6386 u_int start_instr
, u_int
*skip_addr
)
6388 struct patch
*cur_patch
;
6389 struct patch
*last_patch
;
6392 num_patches
= sizeof(patches
)/sizeof(struct patch
);
6393 last_patch
= &patches
[num_patches
];
6394 cur_patch
= *start_patch
;
6396 while (cur_patch
< last_patch
&& start_instr
== cur_patch
->begin
) {
6398 if (cur_patch
->patch_func(ahc
) == 0) {
6400 /* Start rejecting code */
6401 *skip_addr
= start_instr
+ cur_patch
->skip_instr
;
6402 cur_patch
+= cur_patch
->skip_patch
;
6404 /* Accepted this patch. Advance to the next
6405 * one and wait for our intruction pointer to
6412 *start_patch
= cur_patch
;
6413 if (start_instr
< *skip_addr
)
6414 /* Still skipping */
6421 ahc_download_instr(struct ahc_softc
*ahc
, u_int instrptr
, uint8_t *dconsts
)
6423 union ins_formats instr
;
6424 struct ins_format1
*fmt1_ins
;
6425 struct ins_format3
*fmt3_ins
;
6429 * The firmware is always compiled into a little endian format.
6431 instr
.integer
= ahc_le32toh(*(uint32_t*)&seqprog
[instrptr
* 4]);
6433 fmt1_ins
= &instr
.format1
;
6436 /* Pull the opcode */
6437 opcode
= instr
.format1
.opcode
;
6448 struct patch
*cur_patch
;
6454 fmt3_ins
= &instr
.format3
;
6456 address
= fmt3_ins
->address
;
6457 cur_patch
= patches
;
6459 for (i
= 0; i
< address
;) {
6460 ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
);
6462 if (skip_addr
> i
) {
6465 end_addr
= MIN(address
, skip_addr
);
6466 address_offset
+= end_addr
- i
;
6472 address
-= address_offset
;
6473 fmt3_ins
->address
= address
;
6482 if (fmt1_ins
->parity
!= 0) {
6483 fmt1_ins
->immediate
= dconsts
[fmt1_ins
->immediate
];
6485 fmt1_ins
->parity
= 0;
6486 if ((ahc
->features
& AHC_CMD_CHAN
) == 0
6487 && opcode
== AIC_OP_BMOV
) {
6489 * Block move was added at the same time
6490 * as the command channel. Verify that
6491 * this is only a move of a single element
6492 * and convert the BMOV to a MOV
6493 * (AND with an immediate of FF).
6495 if (fmt1_ins
->immediate
!= 1)
6496 panic("%s: BMOV not supported\n",
6498 fmt1_ins
->opcode
= AIC_OP_AND
;
6499 fmt1_ins
->immediate
= 0xff;
6503 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
6506 /* Calculate odd parity for the instruction */
6507 for (i
= 0, count
= 0; i
< 31; i
++) {
6511 if ((instr
.integer
& mask
) != 0)
6514 if ((count
& 0x01) == 0)
6515 instr
.format1
.parity
= 1;
6517 /* Compress the instruction for older sequencers */
6518 if (fmt3_ins
!= NULL
) {
6521 | (fmt3_ins
->source
<< 8)
6522 | (fmt3_ins
->address
<< 16)
6523 | (fmt3_ins
->opcode
<< 25);
6527 | (fmt1_ins
->source
<< 8)
6528 | (fmt1_ins
->destination
<< 16)
6529 | (fmt1_ins
->ret
<< 24)
6530 | (fmt1_ins
->opcode
<< 25);
6533 /* The sequencer is a little endian CPU */
6534 instr
.integer
= ahc_htole32(instr
.integer
);
6535 ahc_outsb(ahc
, SEQRAM
, instr
.bytes
, 4);
6538 panic("Unknown opcode encountered in seq program");
6544 ahc_print_register(ahc_reg_parse_entry_t
*table
, u_int num_entries
,
6545 const char *name
, u_int address
, u_int value
,
6546 u_int
*cur_column
, u_int wrap_point
)
6554 if (cur_column
!= NULL
&& *cur_column
>= wrap_point
) {
6558 printed
= snprintf(line
, sizeof(line
), "%s[0x%x]", name
, value
);
6559 if (table
== NULL
) {
6560 printed
+= snprintf(&line
[printed
], (sizeof line
) - printed
,
6563 if (cur_column
!= NULL
)
6564 *cur_column
+= printed
;
6568 while (printed_mask
!= 0xFF) {
6571 for (entry
= 0; entry
< num_entries
; entry
++) {
6572 if (((value
& table
[entry
].mask
)
6573 != table
[entry
].value
)
6574 || ((printed_mask
& table
[entry
].mask
)
6575 == table
[entry
].mask
))
6577 printed
+= snprintf(&line
[printed
],
6578 (sizeof line
) - printed
, "%s%s",
6579 printed_mask
== 0 ? ":(" : "|",
6581 printed_mask
|= table
[entry
].mask
;
6585 if (entry
>= num_entries
)
6588 if (printed_mask
!= 0)
6589 printed
+= snprintf(&line
[printed
],
6590 (sizeof line
) - printed
, ") ");
6592 printed
+= snprintf(&line
[printed
],
6593 (sizeof line
) - printed
, " ");
6594 if (cur_column
!= NULL
)
6595 *cur_column
+= printed
;
6602 ahc_dump_card_state(struct ahc_softc
*ahc
)
6605 struct scb_tailq
*untagged_q
;
6616 uint8_t saved_scbptr
;
6618 if (ahc_is_paused(ahc
)) {
6625 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
6626 last_phase
= ahc_inb(ahc
, LASTPHASE
);
6627 printf(">>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<<\n"
6628 "%s: Dumping Card State %s, at SEQADDR 0x%x\n",
6629 ahc_name(ahc
), ahc_lookup_phase_entry(last_phase
)->phasemsg
,
6630 ahc_inb(ahc
, SEQADDR0
) | (ahc_inb(ahc
, SEQADDR1
) << 8));
6632 printf("Card was paused\n");
6633 printf("ACCUM = 0x%x, SINDEX = 0x%x, DINDEX = 0x%x, ARG_2 = 0x%x\n",
6634 ahc_inb(ahc
, ACCUM
), ahc_inb(ahc
, SINDEX
), ahc_inb(ahc
, DINDEX
),
6635 ahc_inb(ahc
, ARG_2
));
6636 printf("HCNT = 0x%x SCBPTR = 0x%x\n", ahc_inb(ahc
, HCNT
),
6637 ahc_inb(ahc
, SCBPTR
));
6639 if ((ahc
->features
& AHC_DT
) != 0)
6640 ahc_scsiphase_print(ahc_inb(ahc
, SCSIPHASE
), &cur_col
, 50);
6641 ahc_scsisigi_print(ahc_inb(ahc
, SCSISIGI
), &cur_col
, 50);
6642 ahc_error_print(ahc_inb(ahc
, ERROR
), &cur_col
, 50);
6643 ahc_scsibusl_print(ahc_inb(ahc
, SCSIBUSL
), &cur_col
, 50);
6644 ahc_lastphase_print(ahc_inb(ahc
, LASTPHASE
), &cur_col
, 50);
6645 ahc_scsiseq_print(ahc_inb(ahc
, SCSISEQ
), &cur_col
, 50);
6646 ahc_sblkctl_print(ahc_inb(ahc
, SBLKCTL
), &cur_col
, 50);
6647 ahc_scsirate_print(ahc_inb(ahc
, SCSIRATE
), &cur_col
, 50);
6648 ahc_seqctl_print(ahc_inb(ahc
, SEQCTL
), &cur_col
, 50);
6649 ahc_seq_flags_print(ahc_inb(ahc
, SEQ_FLAGS
), &cur_col
, 50);
6650 ahc_sstat0_print(ahc_inb(ahc
, SSTAT0
), &cur_col
, 50);
6651 ahc_sstat1_print(ahc_inb(ahc
, SSTAT1
), &cur_col
, 50);
6652 ahc_sstat2_print(ahc_inb(ahc
, SSTAT2
), &cur_col
, 50);
6653 ahc_sstat3_print(ahc_inb(ahc
, SSTAT3
), &cur_col
, 50);
6654 ahc_simode0_print(ahc_inb(ahc
, SIMODE0
), &cur_col
, 50);
6655 ahc_simode1_print(ahc_inb(ahc
, SIMODE1
), &cur_col
, 50);
6656 ahc_sxfrctl0_print(ahc_inb(ahc
, SXFRCTL0
), &cur_col
, 50);
6657 ahc_dfcntrl_print(ahc_inb(ahc
, DFCNTRL
), &cur_col
, 50);
6658 ahc_dfstatus_print(ahc_inb(ahc
, DFSTATUS
), &cur_col
, 50);
6662 for (i
= 0; i
< STACK_SIZE
; i
++)
6663 printf(" 0x%x", ahc_inb(ahc
, STACK
)|(ahc_inb(ahc
, STACK
) << 8));
6664 printf("\nSCB count = %d\n", ahc
->scb_data
->numscbs
);
6665 printf("Kernel NEXTQSCB = %d\n", ahc
->next_queued_scb
->hscb
->tag
);
6666 printf("Card NEXTQSCB = %d\n", ahc_inb(ahc
, NEXT_QUEUED_SCB
));
6668 printf("QINFIFO entries: ");
6669 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
6670 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
6671 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
6673 qinpos
= ahc_inb(ahc
, QINPOS
);
6674 qintail
= ahc
->qinfifonext
;
6675 while (qinpos
!= qintail
) {
6676 printf("%d ", ahc
->qinfifo
[qinpos
]);
6681 printf("Waiting Queue entries: ");
6682 scb_index
= ahc_inb(ahc
, WAITING_SCBH
);
6684 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6685 ahc_outb(ahc
, SCBPTR
, scb_index
);
6686 printf("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
6687 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6691 printf("Disconnected Queue entries: ");
6692 scb_index
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
6694 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6695 ahc_outb(ahc
, SCBPTR
, scb_index
);
6696 printf("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
6697 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6701 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
6702 printf("QOUTFIFO entries: ");
6703 qoutpos
= ahc
->qoutfifonext
;
6705 while (ahc
->qoutfifo
[qoutpos
] != SCB_LIST_NULL
&& i
++ < 256) {
6706 printf("%d ", ahc
->qoutfifo
[qoutpos
]);
6711 printf("Sequencer Free SCB List: ");
6712 scb_index
= ahc_inb(ahc
, FREE_SCBH
);
6714 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
6715 ahc_outb(ahc
, SCBPTR
, scb_index
);
6716 printf("%d ", scb_index
);
6717 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
6721 printf("Sequencer SCB Info: ");
6722 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
6723 ahc_outb(ahc
, SCBPTR
, i
);
6724 /*cur_col =*/ printf("\n%3d ", i
);
6726 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
), &cur_col
, 60);
6727 ahc_scb_scsiid_print(ahc_inb(ahc
, SCB_SCSIID
), &cur_col
, 60);
6728 ahc_scb_lun_print(ahc_inb(ahc
, SCB_LUN
), &cur_col
, 60);
6729 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
6733 printf("Pending list: ");
6735 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
6738 /*cur_col =*/ printf("\n%3d ", scb
->hscb
->tag
);
6739 ahc_scb_control_print(scb
->hscb
->control
, &cur_col
, 60);
6740 ahc_scb_scsiid_print(scb
->hscb
->scsiid
, &cur_col
, 60);
6741 ahc_scb_lun_print(scb
->hscb
->lun
, &cur_col
, 60);
6742 if ((ahc
->flags
& AHC_PAGESCBS
) == 0) {
6743 ahc_outb(ahc
, SCBPTR
, scb
->hscb
->tag
);
6745 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
),
6747 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
6753 printf("Kernel Free SCB list: ");
6755 SLIST_FOREACH(scb
, &ahc
->scb_data
->free_scbs
, links
.sle
) {
6758 printf("%d ", scb
->hscb
->tag
);
6762 maxtarget
= (ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) ? 15 : 7;
6763 for (target
= 0; target
<= maxtarget
; target
++) {
6764 untagged_q
= &ahc
->untagged_queues
[target
];
6765 if (TAILQ_FIRST(untagged_q
) == NULL
)
6767 printf("Untagged Q(%d): ", target
);
6769 TAILQ_FOREACH(scb
, untagged_q
, links
.tqe
) {
6772 printf("%d ", scb
->hscb
->tag
);
6777 ahc_platform_dump_card_state(ahc
);
6778 printf("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n");
6779 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
6784 /************************* Target Mode ****************************************/
6785 #ifdef AHC_TARGET_MODE
6787 ahc_find_tmode_devs(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
,
6788 struct ahc_tmode_tstate
**tstate
,
6789 struct ahc_tmode_lstate
**lstate
,
6790 int notfound_failure
)
6793 if ((ahc
->features
& AHC_TARGETMODE
) == 0)
6794 return (CAM_REQ_INVALID
);
6797 * Handle the 'black hole' device that sucks up
6798 * requests to unattached luns on enabled targets.
6800 if (ccb
->ccb_h
.target_id
== CAM_TARGET_WILDCARD
6801 && ccb
->ccb_h
.target_lun
== CAM_LUN_WILDCARD
) {
6803 *lstate
= ahc
->black_hole
;
6807 max_id
= (ahc
->features
& AHC_WIDE
) ? 15 : 7;
6808 if (ccb
->ccb_h
.target_id
> max_id
)
6809 return (CAM_TID_INVALID
);
6811 if (ccb
->ccb_h
.target_lun
>= AHC_NUM_LUNS
)
6812 return (CAM_LUN_INVALID
);
6814 *tstate
= ahc
->enabled_targets
[ccb
->ccb_h
.target_id
];
6816 if (*tstate
!= NULL
)
6818 (*tstate
)->enabled_luns
[ccb
->ccb_h
.target_lun
];
6821 if (notfound_failure
!= 0 && *lstate
== NULL
)
6822 return (CAM_PATH_INVALID
);
6824 return (CAM_REQ_CMP
);
6828 ahc_handle_en_lun(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
)
6830 struct ahc_tmode_tstate
*tstate
;
6831 struct ahc_tmode_lstate
*lstate
;
6832 struct ccb_en_lun
*cel
;
6841 status
= ahc_find_tmode_devs(ahc
, sim
, ccb
, &tstate
, &lstate
,
6842 /*notfound_failure*/FALSE
);
6844 if (status
!= CAM_REQ_CMP
) {
6845 ccb
->ccb_h
.status
= status
;
6849 if (cam_sim_bus(sim
) == 0)
6850 our_id
= ahc
->our_id
;
6852 our_id
= ahc
->our_id_b
;
6854 if (ccb
->ccb_h
.target_id
!= our_id
) {
6856 * our_id represents our initiator ID, or
6857 * the ID of the first target to have an
6858 * enabled lun in target mode. There are
6859 * two cases that may preclude enabling a
6860 * target id other than our_id.
6862 * o our_id is for an active initiator role.
6863 * Since the hardware does not support
6864 * reselections to the initiator role at
6865 * anything other than our_id, and our_id
6866 * is used by the hardware to indicate the
6867 * ID to use for both select-out and
6868 * reselect-out operations, the only target
6869 * ID we can support in this mode is our_id.
6871 * o The MULTARGID feature is not available and
6872 * a previous target mode ID has been enabled.
6874 if ((ahc
->features
& AHC_MULTIROLE
) != 0) {
6876 if ((ahc
->features
& AHC_MULTI_TID
) != 0
6877 && (ahc
->flags
& AHC_INITIATORROLE
) != 0) {
6879 * Only allow additional targets if
6880 * the initiator role is disabled.
6881 * The hardware cannot handle a re-select-in
6882 * on the initiator id during a re-select-out
6883 * on a different target id.
6885 status
= CAM_TID_INVALID
;
6886 } else if ((ahc
->flags
& AHC_INITIATORROLE
) != 0
6887 || ahc
->enabled_luns
> 0) {
6889 * Only allow our target id to change
6890 * if the initiator role is not configured
6891 * and there are no enabled luns which
6892 * are attached to the currently registered
6895 status
= CAM_TID_INVALID
;
6897 } else if ((ahc
->features
& AHC_MULTI_TID
) == 0
6898 && ahc
->enabled_luns
> 0) {
6900 status
= CAM_TID_INVALID
;
6904 if (status
!= CAM_REQ_CMP
) {
6905 ccb
->ccb_h
.status
= status
;
6910 * We now have an id that is valid.
6911 * If we aren't in target mode, switch modes.
6913 if ((ahc
->flags
& AHC_TARGETROLE
) == 0
6914 && ccb
->ccb_h
.target_id
!= CAM_TARGET_WILDCARD
) {
6917 printf("Configuring Target Mode\n");
6919 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
) {
6920 ccb
->ccb_h
.status
= CAM_BUSY
;
6921 ahc_unlock(ahc
, &s
);
6924 ahc
->flags
|= AHC_TARGETROLE
;
6925 if ((ahc
->features
& AHC_MULTIROLE
) == 0)
6926 ahc
->flags
&= ~AHC_INITIATORROLE
;
6929 ahc_unlock(ahc
, &s
);
6932 target
= ccb
->ccb_h
.target_id
;
6933 lun
= ccb
->ccb_h
.target_lun
;
6934 channel
= SIM_CHANNEL(ahc
, sim
);
6935 target_mask
= 0x01 << target
;
6939 if (cel
->enable
!= 0) {
6942 /* Are we already enabled?? */
6943 if (lstate
!= NULL
) {
6944 xpt_print_path(ccb
->ccb_h
.path
);
6945 printf("Lun already enabled\n");
6946 ccb
->ccb_h
.status
= CAM_LUN_ALRDY_ENA
;
6950 if (cel
->grp6_len
!= 0
6951 || cel
->grp7_len
!= 0) {
6953 * Don't (yet?) support vendor
6954 * specific commands.
6956 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
6957 printf("Non-zero Group Codes\n");
6963 * Setup our data structures.
6965 if (target
!= CAM_TARGET_WILDCARD
&& tstate
== NULL
) {
6966 tstate
= ahc_alloc_tstate(ahc
, target
, channel
);
6967 if (tstate
== NULL
) {
6968 xpt_print_path(ccb
->ccb_h
.path
);
6969 printf("Couldn't allocate tstate\n");
6970 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
6974 lstate
= malloc(sizeof(*lstate
), M_DEVBUF
, M_NOWAIT
);
6975 if (lstate
== NULL
) {
6976 xpt_print_path(ccb
->ccb_h
.path
);
6977 printf("Couldn't allocate lstate\n");
6978 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
6981 memset(lstate
, 0, sizeof(*lstate
));
6982 status
= xpt_create_path(&lstate
->path
, /*periph*/NULL
,
6983 xpt_path_path_id(ccb
->ccb_h
.path
),
6984 xpt_path_target_id(ccb
->ccb_h
.path
),
6985 xpt_path_lun_id(ccb
->ccb_h
.path
));
6986 if (status
!= CAM_REQ_CMP
) {
6987 free(lstate
, M_DEVBUF
);
6988 xpt_print_path(ccb
->ccb_h
.path
);
6989 printf("Couldn't allocate path\n");
6990 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
6993 SLIST_INIT(&lstate
->accept_tios
);
6994 SLIST_INIT(&lstate
->immed_notifies
);
6997 if (target
!= CAM_TARGET_WILDCARD
) {
6998 tstate
->enabled_luns
[lun
] = lstate
;
6999 ahc
->enabled_luns
++;
7001 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
7004 targid_mask
= ahc_inb(ahc
, TARGID
)
7005 | (ahc_inb(ahc
, TARGID
+ 1) << 8);
7007 targid_mask
|= target_mask
;
7008 ahc_outb(ahc
, TARGID
, targid_mask
);
7009 ahc_outb(ahc
, TARGID
+1, (targid_mask
>> 8));
7011 ahc_update_scsiid(ahc
, targid_mask
);
7016 channel
= SIM_CHANNEL(ahc
, sim
);
7017 our_id
= SIM_SCSI_ID(ahc
, sim
);
7020 * This can only happen if selections
7023 if (target
!= our_id
) {
7028 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
7029 cur_channel
= (sblkctl
& SELBUSB
)
7031 if ((ahc
->features
& AHC_TWIN
) == 0)
7033 swap
= cur_channel
!= channel
;
7035 ahc
->our_id
= target
;
7037 ahc
->our_id_b
= target
;
7040 ahc_outb(ahc
, SBLKCTL
,
7043 ahc_outb(ahc
, SCSIID
, target
);
7046 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
7050 ahc
->black_hole
= lstate
;
7051 /* Allow select-in operations */
7052 if (ahc
->black_hole
!= NULL
&& ahc
->enabled_luns
> 0) {
7053 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7055 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7056 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7058 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7061 ahc_unlock(ahc
, &s
);
7062 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7063 xpt_print_path(ccb
->ccb_h
.path
);
7064 printf("Lun now enabled for target mode\n");
7069 if (lstate
== NULL
) {
7070 ccb
->ccb_h
.status
= CAM_LUN_INVALID
;
7076 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7077 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
7078 struct ccb_hdr
*ccbh
;
7080 ccbh
= &scb
->io_ctx
->ccb_h
;
7081 if (ccbh
->func_code
== XPT_CONT_TARGET_IO
7082 && !xpt_path_comp(ccbh
->path
, ccb
->ccb_h
.path
)){
7083 printf("CTIO pending\n");
7084 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7085 ahc_unlock(ahc
, &s
);
7090 if (SLIST_FIRST(&lstate
->accept_tios
) != NULL
) {
7091 printf("ATIOs pending\n");
7092 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7095 if (SLIST_FIRST(&lstate
->immed_notifies
) != NULL
) {
7096 printf("INOTs pending\n");
7097 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7100 if (ccb
->ccb_h
.status
!= CAM_REQ_CMP
) {
7101 ahc_unlock(ahc
, &s
);
7105 xpt_print_path(ccb
->ccb_h
.path
);
7106 printf("Target mode disabled\n");
7107 xpt_free_path(lstate
->path
);
7108 free(lstate
, M_DEVBUF
);
7111 /* Can we clean up the target too? */
7112 if (target
!= CAM_TARGET_WILDCARD
) {
7113 tstate
->enabled_luns
[lun
] = NULL
;
7114 ahc
->enabled_luns
--;
7115 for (empty
= 1, i
= 0; i
< 8; i
++)
7116 if (tstate
->enabled_luns
[i
] != NULL
) {
7122 ahc_free_tstate(ahc
, target
, channel
,
7124 if (ahc
->features
& AHC_MULTI_TID
) {
7127 targid_mask
= ahc_inb(ahc
, TARGID
)
7128 | (ahc_inb(ahc
, TARGID
+ 1)
7131 targid_mask
&= ~target_mask
;
7132 ahc_outb(ahc
, TARGID
, targid_mask
);
7133 ahc_outb(ahc
, TARGID
+1,
7134 (targid_mask
>> 8));
7135 ahc_update_scsiid(ahc
, targid_mask
);
7140 ahc
->black_hole
= NULL
;
7143 * We can't allow selections without
7144 * our black hole device.
7148 if (ahc
->enabled_luns
== 0) {
7149 /* Disallow select-in */
7152 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7154 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7155 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7157 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7159 if ((ahc
->features
& AHC_MULTIROLE
) == 0) {
7160 printf("Configuring Initiator Mode\n");
7161 ahc
->flags
&= ~AHC_TARGETROLE
;
7162 ahc
->flags
|= AHC_INITIATORROLE
;
7168 ahc_unlock(ahc
, &s
);
7173 ahc_update_scsiid(struct ahc_softc
*ahc
, u_int targid_mask
)
7178 if ((ahc
->features
& AHC_MULTI_TID
) == 0)
7179 panic("ahc_update_scsiid called on non-multitid unit\n");
7182 * Since we will rely on the TARGID mask
7183 * for selection enables, ensure that OID
7184 * in SCSIID is not set to some other ID
7185 * that we don't want to allow selections on.
7187 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7188 scsiid
= ahc_inb(ahc
, SCSIID_ULTRA2
);
7190 scsiid
= ahc_inb(ahc
, SCSIID
);
7191 scsiid_mask
= 0x1 << (scsiid
& OID
);
7192 if ((targid_mask
& scsiid_mask
) == 0) {
7195 /* ffs counts from 1 */
7196 our_id
= ffs(targid_mask
);
7198 our_id
= ahc
->our_id
;
7204 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7205 ahc_outb(ahc
, SCSIID_ULTRA2
, scsiid
);
7207 ahc_outb(ahc
, SCSIID
, scsiid
);
7211 ahc_run_tqinfifo(struct ahc_softc
*ahc
, int paused
)
7213 struct target_cmd
*cmd
;
7216 * If the card supports auto-access pause,
7217 * we can access the card directly regardless
7218 * of whether it is paused or not.
7220 if ((ahc
->features
& AHC_AUTOPAUSE
) != 0)
7223 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_POSTREAD
);
7224 while ((cmd
= &ahc
->targetcmds
[ahc
->tqinfifonext
])->cmd_valid
!= 0) {
7227 * Only advance through the queue if we
7228 * have the resources to process the command.
7230 if (ahc_handle_target_cmd(ahc
, cmd
) != 0)
7234 ahc_dmamap_sync(ahc
, ahc
->parent_dmat
/*shared_data_dmat*/,
7235 ahc
->shared_data_dmamap
,
7236 ahc_targetcmd_offset(ahc
, ahc
->tqinfifonext
),
7237 sizeof(struct target_cmd
),
7238 BUS_DMASYNC_PREREAD
);
7239 ahc
->tqinfifonext
++;
7242 * Lazily update our position in the target mode incoming
7243 * command queue as seen by the sequencer.
7245 if ((ahc
->tqinfifonext
& (HOST_TQINPOS
- 1)) == 1) {
7246 if ((ahc
->features
& AHC_HS_MAILBOX
) != 0) {
7249 hs_mailbox
= ahc_inb(ahc
, HS_MAILBOX
);
7250 hs_mailbox
&= ~HOST_TQINPOS
;
7251 hs_mailbox
|= ahc
->tqinfifonext
& HOST_TQINPOS
;
7252 ahc_outb(ahc
, HS_MAILBOX
, hs_mailbox
);
7256 ahc_outb(ahc
, KERNEL_TQINPOS
,
7257 ahc
->tqinfifonext
& HOST_TQINPOS
);
7266 ahc_handle_target_cmd(struct ahc_softc
*ahc
, struct target_cmd
*cmd
)
7268 struct ahc_tmode_tstate
*tstate
;
7269 struct ahc_tmode_lstate
*lstate
;
7270 struct ccb_accept_tio
*atio
;
7276 initiator
= SCSIID_TARGET(ahc
, cmd
->scsiid
);
7277 target
= SCSIID_OUR_ID(cmd
->scsiid
);
7278 lun
= (cmd
->identify
& MSG_IDENTIFY_LUNMASK
);
7281 tstate
= ahc
->enabled_targets
[target
];
7284 lstate
= tstate
->enabled_luns
[lun
];
7287 * Commands for disabled luns go to the black hole driver.
7290 lstate
= ahc
->black_hole
;
7292 atio
= (struct ccb_accept_tio
*)SLIST_FIRST(&lstate
->accept_tios
);
7294 ahc
->flags
|= AHC_TQINFIFO_BLOCKED
;
7296 * Wait for more ATIOs from the peripheral driver for this lun.
7299 printf("%s: ATIOs exhausted\n", ahc_name(ahc
));
7302 ahc
->flags
&= ~AHC_TQINFIFO_BLOCKED
;
7304 printf("Incoming command from %d for %d:%d%s\n",
7305 initiator
, target
, lun
,
7306 lstate
== ahc
->black_hole
? "(Black Holed)" : "");
7308 SLIST_REMOVE_HEAD(&lstate
->accept_tios
, sim_links
.sle
);
7310 if (lstate
== ahc
->black_hole
) {
7311 /* Fill in the wildcards */
7312 atio
->ccb_h
.target_id
= target
;
7313 atio
->ccb_h
.target_lun
= lun
;
7317 * Package it up and send it off to
7318 * whomever has this lun enabled.
7320 atio
->sense_len
= 0;
7321 atio
->init_id
= initiator
;
7322 if (byte
[0] != 0xFF) {
7323 /* Tag was included */
7324 atio
->tag_action
= *byte
++;
7325 atio
->tag_id
= *byte
++;
7326 atio
->ccb_h
.flags
= CAM_TAG_ACTION_VALID
;
7328 atio
->ccb_h
.flags
= 0;
7332 /* Okay. Now determine the cdb size based on the command code */
7333 switch (*byte
>> CMD_GROUP_CODE_SHIFT
) {
7349 /* Only copy the opcode. */
7351 printf("Reserved or VU command code type encountered\n");
7355 memcpy(atio
->cdb_io
.cdb_bytes
, byte
, atio
->cdb_len
);
7357 atio
->ccb_h
.status
|= CAM_CDB_RECVD
;
7359 if ((cmd
->identify
& MSG_IDENTIFY_DISCFLAG
) == 0) {
7361 * We weren't allowed to disconnect.
7362 * We're hanging on the bus until a
7363 * continue target I/O comes in response
7364 * to this accept tio.
7367 printf("Received Immediate Command %d:%d:%d - %p\n",
7368 initiator
, target
, lun
, ahc
->pending_device
);
7370 ahc
->pending_device
= lstate
;
7371 ahc_freeze_ccb((union ccb
*)atio
);
7372 atio
->ccb_h
.flags
|= CAM_DIS_DISCONNECT
;
7374 xpt_done((union ccb
*)atio
);
7380 ahc_createdmamem(bus_dma_tag_t tag
, int size
, int flags
, bus_dmamap_t
*mapp
,
7381 void **vaddr
, bus_addr_t
*baddr
, bus_dma_segment_t
*seg
, int *nseg
,
7382 const char *myname
, const char *what
)
7384 int error
, level
= 0;
7386 if ((error
= bus_dmamem_alloc(tag
, size
, PAGE_SIZE
, 0,
7387 seg
, 1, nseg
, BUS_DMA_WAITOK
)) != 0) {
7388 printf("%s: failed to allocate DMA mem for %s, error = %d\n",
7389 myname
, what
, error
);
7394 if ((error
= bus_dmamem_map(tag
, seg
, *nseg
, size
, vaddr
,
7395 BUS_DMA_WAITOK
|BUS_DMA_COHERENT
)) != 0) {
7396 printf("%s: failed to map DMA mem for %s, error = %d\n",
7397 myname
, what
, error
);
7402 if ((error
= bus_dmamap_create(tag
, size
, 1, size
, 0,
7403 BUS_DMA_WAITOK
| flags
, mapp
)) != 0) {
7404 printf("%s: failed to create DMA map for %s, error = %d\n",
7405 myname
, what
, error
);
7411 if ((error
= bus_dmamap_load(tag
, *mapp
, *vaddr
, size
, NULL
,
7412 BUS_DMA_WAITOK
)) != 0) {
7413 printf("%s: failed to load DMA map for %s, error = %d\n",
7414 myname
, what
, error
);
7418 *baddr
= (*mapp
)->dm_segs
[0].ds_addr
;
7422 printf("ahc_createdmamem error (%d)\n", level
);
7425 bus_dmamap_destroy(tag
, *mapp
);
7428 bus_dmamem_unmap(tag
, *vaddr
, size
);
7431 bus_dmamem_free(tag
, seg
, *nseg
);
7441 ahc_freedmamem(bus_dma_tag_t tag
, int size
, bus_dmamap_t map
, void *vaddr
,
7442 bus_dma_segment_t
*seg
, int nseg
)
7445 bus_dmamap_unload(tag
, map
);
7446 bus_dmamap_destroy(tag
, map
);
7447 bus_dmamem_unmap(tag
, vaddr
, size
);
7448 bus_dmamem_free(tag
, seg
, nseg
);