2 * Core routines and tables shareable across OS platforms.
4 * Copyright (c) 1994-2002 Justin T. Gibbs.
5 * Copyright (c) 2000-2002 Adaptec Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions, and the following disclaimer,
13 * without modification.
14 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
15 * substantially similar to the "NO WARRANTY" disclaimer below
16 * ("Disclaimer") and any redistribution must be conditioned upon
17 * including a substantially similar Disclaimer requirement for further
18 * binary redistribution.
19 * 3. Neither the names of the above-listed copyright holders nor the names
20 * of any contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
23 * Alternatively, this software may be distributed under the terms of the
24 * GNU General Public License ("GPL") version 2 as published by the Free
25 * Software Foundation.
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
36 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
37 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 * POSSIBILITY OF SUCH DAMAGES.
40 * $Id: //depot/aic7xxx/aic7xxx/aic7xxx.c#155 $
44 #include "aic7xxx_osm.h"
45 #include "aic7xxx_inline.h"
46 #include "aicasm/aicasm_insformat.h"
48 #include <dev/aic7xxx/aic7xxx_osm.h>
49 #include <dev/aic7xxx/aic7xxx_inline.h>
50 #include <dev/aic7xxx/aicasm/aicasm_insformat.h>
53 /***************************** Lookup Tables **********************************/
54 static const char *const ahc_chip_names
[] = {
70 static const u_int num_chip_names
= ARRAY_SIZE(ahc_chip_names
);
73 * Hardware error codes.
75 struct ahc_hard_error_entry
{
80 static const struct ahc_hard_error_entry ahc_hard_errors
[] = {
81 { ILLHADDR
, "Illegal Host Access" },
82 { ILLSADDR
, "Illegal Sequencer Address referrenced" },
83 { ILLOPCODE
, "Illegal Opcode in sequencer program" },
84 { SQPARERR
, "Sequencer Parity Error" },
85 { DPARERR
, "Data-path Parity Error" },
86 { MPARERR
, "Scratch or SCB Memory Parity Error" },
87 { PCIERRSTAT
, "PCI Error detected" },
88 { CIOPARERR
, "CIOBUS Parity Error" },
90 static const u_int num_errors
= ARRAY_SIZE(ahc_hard_errors
);
92 static const struct ahc_phase_table_entry ahc_phase_table
[] =
94 { P_DATAOUT
, MSG_NOOP
, "in Data-out phase" },
95 { P_DATAIN
, MSG_INITIATOR_DET_ERR
, "in Data-in phase" },
96 { P_DATAOUT_DT
, MSG_NOOP
, "in DT Data-out phase" },
97 { P_DATAIN_DT
, MSG_INITIATOR_DET_ERR
, "in DT Data-in phase" },
98 { P_COMMAND
, MSG_NOOP
, "in Command phase" },
99 { P_MESGOUT
, MSG_NOOP
, "in Message-out phase" },
100 { P_STATUS
, MSG_INITIATOR_DET_ERR
, "in Status phase" },
101 { P_MESGIN
, MSG_PARITY_ERROR
, "in Message-in phase" },
102 { P_BUSFREE
, MSG_NOOP
, "while idle" },
103 { 0, MSG_NOOP
, "in unknown phase" }
107 * In most cases we only wish to itterate over real phases, so
108 * exclude the last element from the count.
110 static const u_int num_phases
= ARRAY_SIZE(ahc_phase_table
) - 1;
113 * Valid SCSIRATE values. (p. 3-17)
114 * Provides a mapping of tranfer periods in ns to the proper value to
115 * stick in the scsixfer reg.
117 static const struct ahc_syncrate ahc_syncrates
[] =
119 /* ultra2 fast/ultra period rate */
120 { 0x42, 0x000, 9, "80.0" },
121 { 0x03, 0x000, 10, "40.0" },
122 { 0x04, 0x000, 11, "33.0" },
123 { 0x05, 0x100, 12, "20.0" },
124 { 0x06, 0x110, 15, "16.0" },
125 { 0x07, 0x120, 18, "13.4" },
126 { 0x08, 0x000, 25, "10.0" },
127 { 0x19, 0x010, 31, "8.0" },
128 { 0x1a, 0x020, 37, "6.67" },
129 { 0x1b, 0x030, 43, "5.7" },
130 { 0x1c, 0x040, 50, "5.0" },
131 { 0x00, 0x050, 56, "4.4" },
132 { 0x00, 0x060, 62, "4.0" },
133 { 0x00, 0x070, 68, "3.6" },
134 { 0x00, 0x000, 0, NULL
}
137 /* Our Sequencer Program */
138 #include "aic7xxx_seq.h"
140 /**************************** Function Declarations ***************************/
141 static void ahc_force_renegotiation(struct ahc_softc
*ahc
,
142 struct ahc_devinfo
*devinfo
);
143 static struct ahc_tmode_tstate
*
144 ahc_alloc_tstate(struct ahc_softc
*ahc
,
145 u_int scsi_id
, char channel
);
146 #ifdef AHC_TARGET_MODE
147 static void ahc_free_tstate(struct ahc_softc
*ahc
,
148 u_int scsi_id
, char channel
, int force
);
150 static const struct ahc_syncrate
*
151 ahc_devlimited_syncrate(struct ahc_softc
*ahc
,
152 struct ahc_initiator_tinfo
*,
156 static void ahc_update_pending_scbs(struct ahc_softc
*ahc
);
157 static void ahc_fetch_devinfo(struct ahc_softc
*ahc
,
158 struct ahc_devinfo
*devinfo
);
159 static void ahc_scb_devinfo(struct ahc_softc
*ahc
,
160 struct ahc_devinfo
*devinfo
,
162 static void ahc_assert_atn(struct ahc_softc
*ahc
);
163 static void ahc_setup_initiator_msgout(struct ahc_softc
*ahc
,
164 struct ahc_devinfo
*devinfo
,
166 static void ahc_build_transfer_msg(struct ahc_softc
*ahc
,
167 struct ahc_devinfo
*devinfo
);
168 static void ahc_construct_sdtr(struct ahc_softc
*ahc
,
169 struct ahc_devinfo
*devinfo
,
170 u_int period
, u_int offset
);
171 static void ahc_construct_wdtr(struct ahc_softc
*ahc
,
172 struct ahc_devinfo
*devinfo
,
174 static void ahc_construct_ppr(struct ahc_softc
*ahc
,
175 struct ahc_devinfo
*devinfo
,
176 u_int period
, u_int offset
,
177 u_int bus_width
, u_int ppr_options
);
178 static void ahc_clear_msg_state(struct ahc_softc
*ahc
);
179 static void ahc_handle_proto_violation(struct ahc_softc
*ahc
);
180 static void ahc_handle_message_phase(struct ahc_softc
*ahc
);
186 static int ahc_sent_msg(struct ahc_softc
*ahc
, ahc_msgtype type
,
187 u_int msgval
, int full
);
188 static int ahc_parse_msg(struct ahc_softc
*ahc
,
189 struct ahc_devinfo
*devinfo
);
190 static int ahc_handle_msg_reject(struct ahc_softc
*ahc
,
191 struct ahc_devinfo
*devinfo
);
192 static void ahc_handle_ign_wide_residue(struct ahc_softc
*ahc
,
193 struct ahc_devinfo
*devinfo
);
194 static void ahc_reinitialize_dataptrs(struct ahc_softc
*ahc
);
195 static void ahc_handle_devreset(struct ahc_softc
*ahc
,
196 struct ahc_devinfo
*devinfo
,
197 cam_status status
, char *message
,
199 #ifdef AHC_TARGET_MODE
200 static void ahc_setup_target_msgin(struct ahc_softc
*ahc
,
201 struct ahc_devinfo
*devinfo
,
205 static bus_dmamap_callback_t ahc_dmamap_cb
;
206 static void ahc_build_free_scb_list(struct ahc_softc
*ahc
);
207 static int ahc_init_scbdata(struct ahc_softc
*ahc
);
208 static void ahc_fini_scbdata(struct ahc_softc
*ahc
);
209 static void ahc_qinfifo_requeue(struct ahc_softc
*ahc
,
210 struct scb
*prev_scb
,
212 static int ahc_qinfifo_count(struct ahc_softc
*ahc
);
213 static u_int
ahc_rem_scb_from_disc_list(struct ahc_softc
*ahc
,
214 u_int prev
, u_int scbptr
);
215 static void ahc_add_curscb_to_free_list(struct ahc_softc
*ahc
);
216 static u_int
ahc_rem_wscb(struct ahc_softc
*ahc
,
217 u_int scbpos
, u_int prev
);
218 static void ahc_reset_current_bus(struct ahc_softc
*ahc
);
220 static void ahc_dumpseq(struct ahc_softc
*ahc
);
222 static int ahc_loadseq(struct ahc_softc
*ahc
);
223 static int ahc_check_patch(struct ahc_softc
*ahc
,
224 const struct patch
**start_patch
,
225 u_int start_instr
, u_int
*skip_addr
);
226 static void ahc_download_instr(struct ahc_softc
*ahc
,
227 u_int instrptr
, uint8_t *dconsts
);
228 #ifdef AHC_TARGET_MODE
229 static void ahc_queue_lstate_event(struct ahc_softc
*ahc
,
230 struct ahc_tmode_lstate
*lstate
,
234 static void ahc_update_scsiid(struct ahc_softc
*ahc
,
236 static int ahc_handle_target_cmd(struct ahc_softc
*ahc
,
237 struct target_cmd
*cmd
);
240 static u_int
ahc_index_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
);
241 static void ahc_unbusy_tcl(struct ahc_softc
*ahc
, u_int tcl
);
242 static void ahc_busy_tcl(struct ahc_softc
*ahc
,
243 u_int tcl
, u_int busyid
);
245 /************************** SCB and SCB queue management **********************/
246 static void ahc_run_untagged_queues(struct ahc_softc
*ahc
);
247 static void ahc_run_untagged_queue(struct ahc_softc
*ahc
,
248 struct scb_tailq
*queue
);
250 /****************************** Initialization ********************************/
251 static void ahc_alloc_scbs(struct ahc_softc
*ahc
);
252 static void ahc_shutdown(void *arg
);
254 /*************************** Interrupt Services *******************************/
255 static void ahc_clear_intstat(struct ahc_softc
*ahc
);
256 static void ahc_run_qoutfifo(struct ahc_softc
*ahc
);
257 #ifdef AHC_TARGET_MODE
258 static void ahc_run_tqinfifo(struct ahc_softc
*ahc
, int paused
);
260 static void ahc_handle_brkadrint(struct ahc_softc
*ahc
);
261 static void ahc_handle_seqint(struct ahc_softc
*ahc
, u_int intstat
);
262 static void ahc_handle_scsiint(struct ahc_softc
*ahc
,
264 static void ahc_clear_critical_section(struct ahc_softc
*ahc
);
266 /***************************** Error Recovery *********************************/
267 static void ahc_freeze_devq(struct ahc_softc
*ahc
, struct scb
*scb
);
268 static int ahc_abort_scbs(struct ahc_softc
*ahc
, int target
,
269 char channel
, int lun
, u_int tag
,
270 role_t role
, uint32_t status
);
271 static void ahc_calc_residual(struct ahc_softc
*ahc
,
274 /*********************** Untagged Transaction Routines ************************/
275 static inline void ahc_freeze_untagged_queues(struct ahc_softc
*ahc
);
276 static inline void ahc_release_untagged_queues(struct ahc_softc
*ahc
);
279 * Block our completion routine from starting the next untagged
280 * transaction for this target or target lun.
283 ahc_freeze_untagged_queues(struct ahc_softc
*ahc
)
285 if ((ahc
->flags
& AHC_SCB_BTT
) == 0)
286 ahc
->untagged_queue_lock
++;
290 * Allow the next untagged transaction for this target or target lun
291 * to be executed. We use a counting semaphore to allow the lock
292 * to be acquired recursively. Once the count drops to zero, the
293 * transaction queues will be run.
296 ahc_release_untagged_queues(struct ahc_softc
*ahc
)
298 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
299 ahc
->untagged_queue_lock
--;
300 if (ahc
->untagged_queue_lock
== 0)
301 ahc_run_untagged_queues(ahc
);
305 /************************* Sequencer Execution Control ************************/
307 * Work around any chip bugs related to halting sequencer execution.
308 * On Ultra2 controllers, we must clear the CIOBUS stretch signal by
309 * reading a register that will set this signal and deassert it.
310 * Without this workaround, if the chip is paused, by an interrupt or
311 * manual pause while accessing scb ram, accesses to certain registers
312 * will hang the system (infinite pci retries).
315 ahc_pause_bug_fix(struct ahc_softc
*ahc
)
317 if ((ahc
->features
& AHC_ULTRA2
) != 0)
318 (void)ahc_inb(ahc
, CCSCBCTL
);
322 * Determine whether the sequencer has halted code execution.
323 * Returns non-zero status if the sequencer is stopped.
326 ahc_is_paused(struct ahc_softc
*ahc
)
328 return ((ahc_inb(ahc
, HCNTRL
) & PAUSE
) != 0);
332 * Request that the sequencer stop and wait, indefinitely, for it
333 * to stop. The sequencer will only acknowledge that it is paused
334 * once it has reached an instruction boundary and PAUSEDIS is
335 * cleared in the SEQCTL register. The sequencer may use PAUSEDIS
336 * for critical sections.
339 ahc_pause(struct ahc_softc
*ahc
)
341 ahc_outb(ahc
, HCNTRL
, ahc
->pause
);
344 * Since the sequencer can disable pausing in a critical section, we
345 * must loop until it actually stops.
347 while (ahc_is_paused(ahc
) == 0)
350 ahc_pause_bug_fix(ahc
);
354 * Allow the sequencer to continue program execution.
355 * We check here to ensure that no additional interrupt
356 * sources that would cause the sequencer to halt have been
357 * asserted. If, for example, a SCSI bus reset is detected
358 * while we are fielding a different, pausing, interrupt type,
359 * we don't want to release the sequencer before going back
360 * into our interrupt handler and dealing with this new
364 ahc_unpause(struct ahc_softc
*ahc
)
366 if ((ahc_inb(ahc
, INTSTAT
) & (SCSIINT
| SEQINT
| BRKADRINT
)) == 0)
367 ahc_outb(ahc
, HCNTRL
, ahc
->unpause
);
370 /************************** Memory mapping routines ***************************/
371 static struct ahc_dma_seg
*
372 ahc_sg_bus_to_virt(struct scb
*scb
, uint32_t sg_busaddr
)
376 sg_index
= (sg_busaddr
- scb
->sg_list_phys
)/sizeof(struct ahc_dma_seg
);
377 /* sg_list_phys points to entry 1, not 0 */
380 return (&scb
->sg_list
[sg_index
]);
384 ahc_sg_virt_to_bus(struct scb
*scb
, struct ahc_dma_seg
*sg
)
388 /* sg_list_phys points to entry 1, not 0 */
389 sg_index
= sg
- &scb
->sg_list
[1];
391 return (scb
->sg_list_phys
+ (sg_index
* sizeof(*scb
->sg_list
)));
395 ahc_hscb_busaddr(struct ahc_softc
*ahc
, u_int index
)
397 return (ahc
->scb_data
->hscb_busaddr
398 + (sizeof(struct hardware_scb
) * index
));
402 ahc_sync_scb(struct ahc_softc
*ahc
, struct scb
*scb
, int op
)
404 ahc_dmamap_sync(ahc
, ahc
->scb_data
->hscb_dmat
,
405 ahc
->scb_data
->hscb_dmamap
,
406 /*offset*/(scb
->hscb
- ahc
->hscbs
) * sizeof(*scb
->hscb
),
407 /*len*/sizeof(*scb
->hscb
), op
);
411 ahc_sync_sglist(struct ahc_softc
*ahc
, struct scb
*scb
, int op
)
413 if (scb
->sg_count
== 0)
416 ahc_dmamap_sync(ahc
, ahc
->scb_data
->sg_dmat
, scb
->sg_map
->sg_dmamap
,
417 /*offset*/(scb
->sg_list
- scb
->sg_map
->sg_vaddr
)
418 * sizeof(struct ahc_dma_seg
),
419 /*len*/sizeof(struct ahc_dma_seg
) * scb
->sg_count
, op
);
422 #ifdef AHC_TARGET_MODE
424 ahc_targetcmd_offset(struct ahc_softc
*ahc
, u_int index
)
426 return (((uint8_t *)&ahc
->targetcmds
[index
]) - ahc
->qoutfifo
);
430 /*********************** Miscellaneous Support Functions ***********************/
432 * Determine whether the sequencer reported a residual
433 * for this SCB/transaction.
436 ahc_update_residual(struct ahc_softc
*ahc
, struct scb
*scb
)
440 sgptr
= ahc_le32toh(scb
->hscb
->sgptr
);
441 if ((sgptr
& SG_RESID_VALID
) != 0)
442 ahc_calc_residual(ahc
, scb
);
446 * Return pointers to the transfer negotiation information
447 * for the specified our_id/remote_id pair.
449 struct ahc_initiator_tinfo
*
450 ahc_fetch_transinfo(struct ahc_softc
*ahc
, char channel
, u_int our_id
,
451 u_int remote_id
, struct ahc_tmode_tstate
**tstate
)
454 * Transfer data structures are stored from the perspective
455 * of the target role. Since the parameters for a connection
456 * in the initiator role to a given target are the same as
457 * when the roles are reversed, we pretend we are the target.
461 *tstate
= ahc
->enabled_targets
[our_id
];
462 return (&(*tstate
)->transinfo
[remote_id
]);
466 ahc_inw(struct ahc_softc
*ahc
, u_int port
)
468 uint16_t r
= ahc_inb(ahc
, port
+1) << 8;
469 return r
| ahc_inb(ahc
, port
);
473 ahc_outw(struct ahc_softc
*ahc
, u_int port
, u_int value
)
475 ahc_outb(ahc
, port
, value
& 0xFF);
476 ahc_outb(ahc
, port
+1, (value
>> 8) & 0xFF);
480 ahc_inl(struct ahc_softc
*ahc
, u_int port
)
482 return ((ahc_inb(ahc
, port
))
483 | (ahc_inb(ahc
, port
+1) << 8)
484 | (ahc_inb(ahc
, port
+2) << 16)
485 | (ahc_inb(ahc
, port
+3) << 24));
489 ahc_outl(struct ahc_softc
*ahc
, u_int port
, uint32_t value
)
491 ahc_outb(ahc
, port
, (value
) & 0xFF);
492 ahc_outb(ahc
, port
+1, ((value
) >> 8) & 0xFF);
493 ahc_outb(ahc
, port
+2, ((value
) >> 16) & 0xFF);
494 ahc_outb(ahc
, port
+3, ((value
) >> 24) & 0xFF);
498 ahc_inq(struct ahc_softc
*ahc
, u_int port
)
500 return ((ahc_inb(ahc
, port
))
501 | (ahc_inb(ahc
, port
+1) << 8)
502 | (ahc_inb(ahc
, port
+2) << 16)
503 | (ahc_inb(ahc
, port
+3) << 24)
504 | (((uint64_t)ahc_inb(ahc
, port
+4)) << 32)
505 | (((uint64_t)ahc_inb(ahc
, port
+5)) << 40)
506 | (((uint64_t)ahc_inb(ahc
, port
+6)) << 48)
507 | (((uint64_t)ahc_inb(ahc
, port
+7)) << 56));
511 ahc_outq(struct ahc_softc
*ahc
, u_int port
, uint64_t value
)
513 ahc_outb(ahc
, port
, value
& 0xFF);
514 ahc_outb(ahc
, port
+1, (value
>> 8) & 0xFF);
515 ahc_outb(ahc
, port
+2, (value
>> 16) & 0xFF);
516 ahc_outb(ahc
, port
+3, (value
>> 24) & 0xFF);
517 ahc_outb(ahc
, port
+4, (value
>> 32) & 0xFF);
518 ahc_outb(ahc
, port
+5, (value
>> 40) & 0xFF);
519 ahc_outb(ahc
, port
+6, (value
>> 48) & 0xFF);
520 ahc_outb(ahc
, port
+7, (value
>> 56) & 0xFF);
524 * Get a free scb. If there are none, see if we can allocate a new SCB.
527 ahc_get_scb(struct ahc_softc
*ahc
)
531 if ((scb
= SLIST_FIRST(&ahc
->scb_data
->free_scbs
)) == NULL
) {
533 scb
= SLIST_FIRST(&ahc
->scb_data
->free_scbs
);
537 SLIST_REMOVE_HEAD(&ahc
->scb_data
->free_scbs
, links
.sle
);
542 * Return an SCB resource to the free list.
545 ahc_free_scb(struct ahc_softc
*ahc
, struct scb
*scb
)
547 struct hardware_scb
*hscb
;
550 /* Clean up for the next user */
551 ahc
->scb_data
->scbindex
[hscb
->tag
] = NULL
;
552 scb
->flags
= SCB_FREE
;
555 SLIST_INSERT_HEAD(&ahc
->scb_data
->free_scbs
, scb
, links
.sle
);
557 /* Notify the OSM that a resource is now available. */
558 ahc_platform_scb_free(ahc
, scb
);
562 ahc_lookup_scb(struct ahc_softc
*ahc
, u_int tag
)
566 scb
= ahc
->scb_data
->scbindex
[tag
];
568 ahc_sync_scb(ahc
, scb
,
569 BUS_DMASYNC_POSTREAD
|BUS_DMASYNC_POSTWRITE
);
574 ahc_swap_with_next_hscb(struct ahc_softc
*ahc
, struct scb
*scb
)
576 struct hardware_scb
*q_hscb
;
580 * Our queuing method is a bit tricky. The card
581 * knows in advance which HSCB to download, and we
582 * can't disappoint it. To achieve this, the next
583 * SCB to download is saved off in ahc->next_queued_scb.
584 * When we are called to queue "an arbitrary scb",
585 * we copy the contents of the incoming HSCB to the one
586 * the sequencer knows about, swap HSCB pointers and
587 * finally assign the SCB to the tag indexed location
588 * in the scb_array. This makes sure that we can still
589 * locate the correct SCB by SCB_TAG.
591 q_hscb
= ahc
->next_queued_scb
->hscb
;
592 saved_tag
= q_hscb
->tag
;
593 memcpy(q_hscb
, scb
->hscb
, sizeof(*scb
->hscb
));
594 if ((scb
->flags
& SCB_CDB32_PTR
) != 0) {
595 q_hscb
->shared_data
.cdb_ptr
=
596 ahc_htole32(ahc_hscb_busaddr(ahc
, q_hscb
->tag
)
597 + offsetof(struct hardware_scb
, cdb32
));
599 q_hscb
->tag
= saved_tag
;
600 q_hscb
->next
= scb
->hscb
->tag
;
602 /* Now swap HSCB pointers. */
603 ahc
->next_queued_scb
->hscb
= scb
->hscb
;
606 /* Now define the mapping from tag to SCB in the scbindex */
607 ahc
->scb_data
->scbindex
[scb
->hscb
->tag
] = scb
;
611 * Tell the sequencer about a new transaction to execute.
614 ahc_queue_scb(struct ahc_softc
*ahc
, struct scb
*scb
)
616 ahc_swap_with_next_hscb(ahc
, scb
);
618 if (scb
->hscb
->tag
== SCB_LIST_NULL
619 || scb
->hscb
->next
== SCB_LIST_NULL
)
620 panic("Attempt to queue invalid SCB tag %x:%x\n",
621 scb
->hscb
->tag
, scb
->hscb
->next
);
624 * Setup data "oddness".
626 scb
->hscb
->lun
&= LID
;
627 if (ahc_get_transfer_length(scb
) & 0x1)
628 scb
->hscb
->lun
|= SCB_XFERLEN_ODD
;
631 * Keep a history of SCBs we've downloaded in the qinfifo.
633 ahc
->qinfifo
[ahc
->qinfifonext
++] = scb
->hscb
->tag
;
636 * Make sure our data is consistent from the
637 * perspective of the adapter.
639 ahc_sync_scb(ahc
, scb
, BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
641 /* Tell the adapter about the newly queued SCB */
642 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
643 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
645 if ((ahc
->features
& AHC_AUTOPAUSE
) == 0)
647 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
648 if ((ahc
->features
& AHC_AUTOPAUSE
) == 0)
653 struct scsi_sense_data
*
654 ahc_get_sense_buf(struct ahc_softc
*ahc
, struct scb
*scb
)
658 offset
= scb
- ahc
->scb_data
->scbarray
;
659 return (&ahc
->scb_data
->sense
[offset
]);
663 ahc_get_sense_bufaddr(struct ahc_softc
*ahc
, struct scb
*scb
)
667 offset
= scb
- ahc
->scb_data
->scbarray
;
668 return (ahc
->scb_data
->sense_busaddr
669 + (offset
* sizeof(struct scsi_sense_data
)));
672 /************************** Interrupt Processing ******************************/
674 ahc_sync_qoutfifo(struct ahc_softc
*ahc
, int op
)
676 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
, ahc
->shared_data_dmamap
,
677 /*offset*/0, /*len*/256, op
);
681 ahc_sync_tqinfifo(struct ahc_softc
*ahc
, int op
)
683 #ifdef AHC_TARGET_MODE
684 if ((ahc
->flags
& AHC_TARGETROLE
) != 0) {
685 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
686 ahc
->shared_data_dmamap
,
687 ahc_targetcmd_offset(ahc
, 0),
688 sizeof(struct target_cmd
) * AHC_TMODE_CMDS
,
695 * See if the firmware has posted any completed commands
696 * into our in-core command complete fifos.
698 #define AHC_RUN_QOUTFIFO 0x1
699 #define AHC_RUN_TQINFIFO 0x2
701 ahc_check_cmdcmpltqueues(struct ahc_softc
*ahc
)
706 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
, ahc
->shared_data_dmamap
,
707 /*offset*/ahc
->qoutfifonext
, /*len*/1,
708 BUS_DMASYNC_POSTREAD
);
709 if (ahc
->qoutfifo
[ahc
->qoutfifonext
] != SCB_LIST_NULL
)
710 retval
|= AHC_RUN_QOUTFIFO
;
711 #ifdef AHC_TARGET_MODE
712 if ((ahc
->flags
& AHC_TARGETROLE
) != 0
713 && (ahc
->flags
& AHC_TQINFIFO_BLOCKED
) == 0) {
714 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
715 ahc
->shared_data_dmamap
,
716 ahc_targetcmd_offset(ahc
, ahc
->tqinfifofnext
),
717 /*len*/sizeof(struct target_cmd
),
718 BUS_DMASYNC_POSTREAD
);
719 if (ahc
->targetcmds
[ahc
->tqinfifonext
].cmd_valid
!= 0)
720 retval
|= AHC_RUN_TQINFIFO
;
727 * Catch an interrupt from the adapter
730 ahc_intr(struct ahc_softc
*ahc
)
734 if ((ahc
->pause
& INTEN
) == 0) {
736 * Our interrupt is not enabled on the chip
737 * and may be disabled for re-entrancy reasons,
738 * so just return. This is likely just a shared
744 * Instead of directly reading the interrupt status register,
745 * infer the cause of the interrupt by checking our in-core
746 * completion queues. This avoids a costly PCI bus read in
749 if ((ahc
->flags
& (AHC_ALL_INTERRUPTS
|AHC_EDGE_INTERRUPT
)) == 0
750 && (ahc_check_cmdcmpltqueues(ahc
) != 0))
753 intstat
= ahc_inb(ahc
, INTSTAT
);
756 if ((intstat
& INT_PEND
) == 0) {
757 #if AHC_PCI_CONFIG > 0
758 if (ahc
->unsolicited_ints
> 500) {
759 ahc
->unsolicited_ints
= 0;
760 if ((ahc
->chip
& AHC_PCI
) != 0
761 && (ahc_inb(ahc
, ERROR
) & PCIERRSTAT
) != 0)
765 ahc
->unsolicited_ints
++;
768 ahc
->unsolicited_ints
= 0;
770 if (intstat
& CMDCMPLT
) {
771 ahc_outb(ahc
, CLRINT
, CLRCMDINT
);
774 * Ensure that the chip sees that we've cleared
775 * this interrupt before we walk the output fifo.
776 * Otherwise, we may, due to posted bus writes,
777 * clear the interrupt after we finish the scan,
778 * and after the sequencer has added new entries
779 * and asserted the interrupt again.
781 ahc_flush_device_writes(ahc
);
782 ahc_run_qoutfifo(ahc
);
783 #ifdef AHC_TARGET_MODE
784 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
785 ahc_run_tqinfifo(ahc
, /*paused*/FALSE
);
790 * Handle statuses that may invalidate our cached
791 * copy of INTSTAT separately.
793 if (intstat
== 0xFF && (ahc
->features
& AHC_REMOVABLE
) != 0) {
794 /* Hot eject. Do nothing */
795 } else if (intstat
& BRKADRINT
) {
796 ahc_handle_brkadrint(ahc
);
797 } else if ((intstat
& (SEQINT
|SCSIINT
)) != 0) {
799 ahc_pause_bug_fix(ahc
);
801 if ((intstat
& SEQINT
) != 0)
802 ahc_handle_seqint(ahc
, intstat
);
804 if ((intstat
& SCSIINT
) != 0)
805 ahc_handle_scsiint(ahc
, intstat
);
810 /************************* Sequencer Execution Control ************************/
812 * Restart the sequencer program from address zero
815 ahc_restart(struct ahc_softc
*ahc
)
821 /* No more pending messages. */
822 ahc_clear_msg_state(ahc
);
824 ahc_outb(ahc
, SCSISIGO
, 0); /* De-assert BSY */
825 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
); /* No message to send */
826 ahc_outb(ahc
, SXFRCTL1
, ahc_inb(ahc
, SXFRCTL1
) & ~BITBUCKET
);
827 ahc_outb(ahc
, LASTPHASE
, P_BUSFREE
);
828 ahc_outb(ahc
, SAVED_SCSIID
, 0xFF);
829 ahc_outb(ahc
, SAVED_LUN
, 0xFF);
832 * Ensure that the sequencer's idea of TQINPOS
833 * matches our own. The sequencer increments TQINPOS
834 * only after it sees a DMA complete and a reset could
835 * occur before the increment leaving the kernel to believe
836 * the command arrived but the sequencer to not.
838 ahc_outb(ahc
, TQINPOS
, ahc
->tqinfifonext
);
840 /* Always allow reselection */
841 ahc_outb(ahc
, SCSISEQ
,
842 ahc_inb(ahc
, SCSISEQ_TEMPLATE
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
843 if ((ahc
->features
& AHC_CMD_CHAN
) != 0) {
844 /* Ensure that no DMA operations are in progress */
845 ahc_outb(ahc
, CCSCBCNT
, 0);
846 ahc_outb(ahc
, CCSGCTL
, 0);
847 ahc_outb(ahc
, CCSCBCTL
, 0);
850 * If we were in the process of DMA'ing SCB data into
851 * an SCB, replace that SCB on the free list. This prevents
854 if ((ahc_inb(ahc
, SEQ_FLAGS2
) & SCB_DMA
) != 0) {
855 ahc_add_curscb_to_free_list(ahc
);
856 ahc_outb(ahc
, SEQ_FLAGS2
,
857 ahc_inb(ahc
, SEQ_FLAGS2
) & ~SCB_DMA
);
861 * Clear any pending sequencer interrupt. It is no
862 * longer relevant since we're resetting the Program
865 ahc_outb(ahc
, CLRINT
, CLRSEQINT
);
867 ahc_outb(ahc
, MWI_RESIDUAL
, 0);
868 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
);
869 ahc_outb(ahc
, SEQADDR0
, 0);
870 ahc_outb(ahc
, SEQADDR1
, 0);
873 * Take the LED out of diagnostic mode on PM resume, too
875 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
876 ahc_outb(ahc
, SBLKCTL
, (sblkctl
& ~(DIAGLEDEN
|DIAGLEDON
)));
881 /************************* Input/Output Queues ********************************/
883 ahc_run_qoutfifo(struct ahc_softc
*ahc
)
888 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
889 while (ahc
->qoutfifo
[ahc
->qoutfifonext
] != SCB_LIST_NULL
) {
891 scb_index
= ahc
->qoutfifo
[ahc
->qoutfifonext
];
892 if ((ahc
->qoutfifonext
& 0x03) == 0x03) {
896 * Clear 32bits of QOUTFIFO at a time
897 * so that we don't clobber an incoming
898 * byte DMA to the array on architectures
899 * that only support 32bit load and store
902 modnext
= ahc
->qoutfifonext
& ~0x3;
903 *((uint32_t *)(&ahc
->qoutfifo
[modnext
])) = 0xFFFFFFFFUL
;
904 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
905 ahc
->shared_data_dmamap
,
906 /*offset*/modnext
, /*len*/4,
907 BUS_DMASYNC_PREREAD
);
911 scb
= ahc_lookup_scb(ahc
, scb_index
);
913 printk("%s: WARNING no command for scb %d "
914 "(cmdcmplt)\nQOUTPOS = %d\n",
915 ahc_name(ahc
), scb_index
,
916 (ahc
->qoutfifonext
- 1) & 0xFF);
921 * Save off the residual
924 ahc_update_residual(ahc
, scb
);
930 ahc_run_untagged_queues(struct ahc_softc
*ahc
)
934 for (i
= 0; i
< 16; i
++)
935 ahc_run_untagged_queue(ahc
, &ahc
->untagged_queues
[i
]);
939 ahc_run_untagged_queue(struct ahc_softc
*ahc
, struct scb_tailq
*queue
)
943 if (ahc
->untagged_queue_lock
!= 0)
946 if ((scb
= TAILQ_FIRST(queue
)) != NULL
947 && (scb
->flags
& SCB_ACTIVE
) == 0) {
948 scb
->flags
|= SCB_ACTIVE
;
949 ahc_queue_scb(ahc
, scb
);
953 /************************* Interrupt Handling *********************************/
955 ahc_handle_brkadrint(struct ahc_softc
*ahc
)
958 * We upset the sequencer :-(
959 * Lookup the error message
964 error
= ahc_inb(ahc
, ERROR
);
965 for (i
= 0; error
!= 1 && i
< num_errors
; i
++)
967 printk("%s: brkadrint, %s at seqaddr = 0x%x\n",
968 ahc_name(ahc
), ahc_hard_errors
[i
].errmesg
,
969 ahc_inb(ahc
, SEQADDR0
) |
970 (ahc_inb(ahc
, SEQADDR1
) << 8));
972 ahc_dump_card_state(ahc
);
974 /* Tell everyone that this HBA is no longer available */
975 ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, ALL_CHANNELS
,
976 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, ROLE_UNKNOWN
,
979 /* Disable all interrupt sources by resetting the controller */
984 ahc_handle_seqint(struct ahc_softc
*ahc
, u_int intstat
)
987 struct ahc_devinfo devinfo
;
989 ahc_fetch_devinfo(ahc
, &devinfo
);
992 * Clear the upper byte that holds SEQINT status
993 * codes and clear the SEQINT bit. We will unpause
994 * the sequencer, if appropriate, after servicing
997 ahc_outb(ahc
, CLRINT
, CLRSEQINT
);
998 switch (intstat
& SEQINT_MASK
) {
1002 struct hardware_scb
*hscb
;
1005 * Set the default return value to 0 (don't
1006 * send sense). The sense code will change
1009 ahc_outb(ahc
, RETURN_1
, 0);
1012 * The sequencer will notify us when a command
1013 * has an error that would be of interest to
1014 * the kernel. This allows us to leave the sequencer
1015 * running in the common case of command completes
1016 * without error. The sequencer will already have
1017 * dma'd the SCB back up to us, so we can reference
1018 * the in kernel copy directly.
1020 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1021 scb
= ahc_lookup_scb(ahc
, scb_index
);
1023 ahc_print_devinfo(ahc
, &devinfo
);
1024 printk("ahc_intr - referenced scb "
1025 "not valid during seqint 0x%x scb(%d)\n",
1026 intstat
, scb_index
);
1027 ahc_dump_card_state(ahc
);
1028 panic("for safety");
1034 /* Don't want to clobber the original sense code */
1035 if ((scb
->flags
& SCB_SENSE
) != 0) {
1037 * Clear the SCB_SENSE Flag and have
1038 * the sequencer do a normal command
1041 scb
->flags
&= ~SCB_SENSE
;
1042 ahc_set_transaction_status(scb
, CAM_AUTOSENSE_FAIL
);
1045 ahc_set_transaction_status(scb
, CAM_SCSI_STATUS_ERROR
);
1046 /* Freeze the queue until the client sees the error. */
1047 ahc_freeze_devq(ahc
, scb
);
1048 ahc_freeze_scb(scb
);
1049 ahc_set_scsi_status(scb
, hscb
->shared_data
.status
.scsi_status
);
1050 switch (hscb
->shared_data
.status
.scsi_status
) {
1051 case SCSI_STATUS_OK
:
1052 printk("%s: Interrupted for staus of 0???\n",
1055 case SCSI_STATUS_CMD_TERMINATED
:
1056 case SCSI_STATUS_CHECK_COND
:
1058 struct ahc_dma_seg
*sg
;
1059 struct scsi_sense
*sc
;
1060 struct ahc_initiator_tinfo
*targ_info
;
1061 struct ahc_tmode_tstate
*tstate
;
1062 struct ahc_transinfo
*tinfo
;
1064 if (ahc_debug
& AHC_SHOW_SENSE
) {
1065 ahc_print_path(ahc
, scb
);
1066 printk("SCB %d: requests Check Status\n",
1071 if (ahc_perform_autosense(scb
) == 0)
1074 targ_info
= ahc_fetch_transinfo(ahc
,
1079 tinfo
= &targ_info
->curr
;
1081 sc
= (struct scsi_sense
*)(&hscb
->shared_data
.cdb
);
1083 * Save off the residual if there is one.
1085 ahc_update_residual(ahc
, scb
);
1087 if (ahc_debug
& AHC_SHOW_SENSE
) {
1088 ahc_print_path(ahc
, scb
);
1089 printk("Sending Sense\n");
1092 sg
->addr
= ahc_get_sense_bufaddr(ahc
, scb
);
1093 sg
->len
= ahc_get_sense_bufsize(ahc
, scb
);
1094 sg
->len
|= AHC_DMA_LAST_SEG
;
1096 /* Fixup byte order */
1097 sg
->addr
= ahc_htole32(sg
->addr
);
1098 sg
->len
= ahc_htole32(sg
->len
);
1100 sc
->opcode
= REQUEST_SENSE
;
1102 if (tinfo
->protocol_version
<= SCSI_REV_2
1103 && SCB_GET_LUN(scb
) < 8)
1104 sc
->byte2
= SCB_GET_LUN(scb
) << 5;
1107 sc
->length
= sg
->len
;
1111 * We can't allow the target to disconnect.
1112 * This will be an untagged transaction and
1113 * having the target disconnect will make this
1114 * transaction indestinguishable from outstanding
1115 * tagged transactions.
1120 * This request sense could be because the
1121 * the device lost power or in some other
1122 * way has lost our transfer negotiations.
1123 * Renegotiate if appropriate. Unit attention
1124 * errors will be reported before any data
1127 if (ahc_get_residual(scb
)
1128 == ahc_get_transfer_length(scb
)) {
1129 ahc_update_neg_request(ahc
, &devinfo
,
1131 AHC_NEG_IF_NON_ASYNC
);
1133 if (tstate
->auto_negotiate
& devinfo
.target_mask
) {
1134 hscb
->control
|= MK_MESSAGE
;
1135 scb
->flags
&= ~SCB_NEGOTIATE
;
1136 scb
->flags
|= SCB_AUTO_NEGOTIATE
;
1138 hscb
->cdb_len
= sizeof(*sc
);
1139 hscb
->dataptr
= sg
->addr
;
1140 hscb
->datacnt
= sg
->len
;
1141 hscb
->sgptr
= scb
->sg_list_phys
| SG_FULL_RESID
;
1142 hscb
->sgptr
= ahc_htole32(hscb
->sgptr
);
1144 scb
->flags
|= SCB_SENSE
;
1145 ahc_qinfifo_requeue_tail(ahc
, scb
);
1146 ahc_outb(ahc
, RETURN_1
, SEND_SENSE
);
1148 * Ensure we have enough time to actually
1149 * retrieve the sense.
1151 ahc_scb_timer_reset(scb
, 5 * 1000000);
1161 /* Ensure we don't leave the selection hardware on */
1162 ahc_outb(ahc
, SCSISEQ
,
1163 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
1165 printk("%s:%c:%d: no active SCB for reconnecting "
1166 "target - issuing BUS DEVICE RESET\n",
1167 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
);
1168 printk("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
1169 "ARG_1 == 0x%x ACCUM = 0x%x\n",
1170 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
1171 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
1172 printk("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
1174 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
1175 ahc_index_busy_tcl(ahc
,
1176 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
1177 ahc_inb(ahc
, SAVED_LUN
))),
1178 ahc_inb(ahc
, SINDEX
));
1179 printk("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
1180 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
1181 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
1182 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
1183 ahc_inb(ahc
, SCB_CONTROL
));
1184 printk("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
1185 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
1186 printk("SXFRCTL0 == 0x%x\n", ahc_inb(ahc
, SXFRCTL0
));
1187 printk("SEQCTL == 0x%x\n", ahc_inb(ahc
, SEQCTL
));
1188 ahc_dump_card_state(ahc
);
1189 ahc
->msgout_buf
[0] = MSG_BUS_DEV_RESET
;
1190 ahc
->msgout_len
= 1;
1191 ahc
->msgout_index
= 0;
1192 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
1193 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
1194 ahc_assert_atn(ahc
);
1199 u_int rejbyte
= ahc_inb(ahc
, ACCUM
);
1200 printk("%s:%c:%d: Warning - unknown message received from "
1201 "target (0x%x). Rejecting\n",
1202 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
, rejbyte
);
1205 case PROTO_VIOLATION
:
1207 ahc_handle_proto_violation(ahc
);
1211 ahc_handle_ign_wide_residue(ahc
, &devinfo
);
1214 ahc_reinitialize_dataptrs(ahc
);
1220 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1221 printk("%s:%c:%d: unknown scsi bus phase %x, "
1222 "lastphase = 0x%x. Attempting to continue\n",
1223 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
1224 lastphase
, ahc_inb(ahc
, SCSISIGI
));
1227 case MISSED_BUSFREE
:
1231 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1232 printk("%s:%c:%d: Missed busfree. "
1233 "Lastphase = 0x%x, Curphase = 0x%x\n",
1234 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
1235 lastphase
, ahc_inb(ahc
, SCSISIGI
));
1242 * The sequencer has encountered a message phase
1243 * that requires host assistance for completion.
1244 * While handling the message phase(s), we will be
1245 * notified by the sequencer after each byte is
1246 * transferred so we can track bus phase changes.
1248 * If this is the first time we've seen a HOST_MSG_LOOP
1249 * interrupt, initialize the state of the host message
1252 if (ahc
->msg_type
== MSG_TYPE_NONE
) {
1257 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
1258 if (bus_phase
!= P_MESGIN
1259 && bus_phase
!= P_MESGOUT
) {
1260 printk("ahc_intr: HOST_MSG_LOOP bad "
1264 * Probably transitioned to bus free before
1265 * we got here. Just punt the message.
1267 ahc_clear_intstat(ahc
);
1272 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1273 scb
= ahc_lookup_scb(ahc
, scb_index
);
1274 if (devinfo
.role
== ROLE_INITIATOR
) {
1275 if (bus_phase
== P_MESGOUT
) {
1277 panic("HOST_MSG_LOOP with "
1281 ahc_setup_initiator_msgout(ahc
,
1286 MSG_TYPE_INITIATOR_MSGIN
;
1287 ahc
->msgin_index
= 0;
1290 #ifdef AHC_TARGET_MODE
1292 if (bus_phase
== P_MESGOUT
) {
1294 MSG_TYPE_TARGET_MSGOUT
;
1295 ahc
->msgin_index
= 0;
1298 ahc_setup_target_msgin(ahc
,
1305 ahc_handle_message_phase(ahc
);
1311 * If we've cleared the parity error interrupt
1312 * but the sequencer still believes that SCSIPERR
1313 * is true, it must be that the parity error is
1314 * for the currently presented byte on the bus,
1315 * and we are not in a phase (data-in) where we will
1316 * eventually ack this byte. Ack the byte and
1317 * throw it away in the hope that the target will
1318 * take us to message out to deliver the appropriate
1321 if ((intstat
& SCSIINT
) == 0
1322 && (ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0) {
1324 if ((ahc
->features
& AHC_DT
) == 0) {
1328 * The hardware will only let you ack bytes
1329 * if the expected phase in SCSISIGO matches
1330 * the current phase. Make sure this is
1331 * currently the case.
1333 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
1334 ahc_outb(ahc
, LASTPHASE
, curphase
);
1335 ahc_outb(ahc
, SCSISIGO
, curphase
);
1337 if ((ahc_inb(ahc
, SCSISIGI
) & (CDI
|MSGI
)) == 0) {
1341 * In a data phase. Faster to bitbucket
1342 * the data than to individually ack each
1343 * byte. This is also the only strategy
1344 * that will work with AUTOACK enabled.
1346 ahc_outb(ahc
, SXFRCTL1
,
1347 ahc_inb(ahc
, SXFRCTL1
) | BITBUCKET
);
1349 while (--wait
!= 0) {
1350 if ((ahc_inb(ahc
, SCSISIGI
)
1355 ahc_outb(ahc
, SXFRCTL1
,
1356 ahc_inb(ahc
, SXFRCTL1
) & ~BITBUCKET
);
1361 ahc_print_devinfo(ahc
, &devinfo
);
1362 printk("Unable to clear parity error. "
1363 "Resetting bus.\n");
1364 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1365 scb
= ahc_lookup_scb(ahc
, scb_index
);
1367 ahc_set_transaction_status(scb
,
1369 ahc_reset_channel(ahc
, devinfo
.channel
,
1370 /*init reset*/TRUE
);
1373 ahc_inb(ahc
, SCSIDATL
);
1381 * When the sequencer detects an overrun, it
1382 * places the controller in "BITBUCKET" mode
1383 * and allows the target to complete its transfer.
1384 * Unfortunately, none of the counters get updated
1385 * when the controller is in this mode, so we have
1386 * no way of knowing how large the overrun was.
1388 u_int scbindex
= ahc_inb(ahc
, SCB_TAG
);
1389 u_int lastphase
= ahc_inb(ahc
, LASTPHASE
);
1392 scb
= ahc_lookup_scb(ahc
, scbindex
);
1393 for (i
= 0; i
< num_phases
; i
++) {
1394 if (lastphase
== ahc_phase_table
[i
].phase
)
1397 ahc_print_path(ahc
, scb
);
1398 printk("data overrun detected %s."
1400 ahc_phase_table
[i
].phasemsg
,
1402 ahc_print_path(ahc
, scb
);
1403 printk("%s seen Data Phase. Length = %ld. NumSGs = %d.\n",
1404 ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
? "Have" : "Haven't",
1405 ahc_get_transfer_length(scb
), scb
->sg_count
);
1406 if (scb
->sg_count
> 0) {
1407 for (i
= 0; i
< scb
->sg_count
; i
++) {
1409 printk("sg[%d] - Addr 0x%x%x : Length %d\n",
1411 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
1412 & SG_HIGH_ADDR_BITS
),
1413 ahc_le32toh(scb
->sg_list
[i
].addr
),
1414 ahc_le32toh(scb
->sg_list
[i
].len
)
1419 * Set this and it will take effect when the
1420 * target does a command complete.
1422 ahc_freeze_devq(ahc
, scb
);
1423 if ((scb
->flags
& SCB_SENSE
) == 0) {
1424 ahc_set_transaction_status(scb
, CAM_DATA_RUN_ERR
);
1426 scb
->flags
&= ~SCB_SENSE
;
1427 ahc_set_transaction_status(scb
, CAM_AUTOSENSE_FAIL
);
1429 ahc_freeze_scb(scb
);
1431 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
1433 * Clear the channel in case we return
1434 * to data phase later.
1436 ahc_outb(ahc
, SXFRCTL0
,
1437 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
1438 ahc_outb(ahc
, SXFRCTL0
,
1439 ahc_inb(ahc
, SXFRCTL0
) | CLRSTCNT
|CLRCHN
);
1441 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
1444 /* Ensure HHADDR is 0 for future DMA operations. */
1445 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
1446 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
1447 ahc_outb(ahc
, HADDR
, 0);
1448 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
1456 printk("%s:%c:%d:%d: Attempt to issue message failed\n",
1457 ahc_name(ahc
), devinfo
.channel
, devinfo
.target
,
1459 scbindex
= ahc_inb(ahc
, SCB_TAG
);
1460 scb
= ahc_lookup_scb(ahc
, scbindex
);
1462 && (scb
->flags
& SCB_RECOVERY_SCB
) != 0)
1464 * Ensure that we didn't put a second instance of this
1465 * SCB into the QINFIFO.
1467 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
1468 SCB_GET_CHANNEL(ahc
, scb
),
1469 SCB_GET_LUN(scb
), scb
->hscb
->tag
,
1470 ROLE_INITIATOR
, /*status*/0,
1476 printk("%s: No free or disconnected SCBs\n", ahc_name(ahc
));
1477 ahc_dump_card_state(ahc
);
1478 panic("for safety");
1485 scbptr
= ahc_inb(ahc
, SCBPTR
);
1486 printk("Bogus TAG after DMA. SCBPTR %d, tag %d, our tag %d\n",
1487 scbptr
, ahc_inb(ahc
, ARG_1
),
1488 ahc
->scb_data
->hscbs
[scbptr
].tag
);
1489 ahc_dump_card_state(ahc
);
1490 panic("for safety");
1495 printk("%s: BTT calculation out of range\n", ahc_name(ahc
));
1496 printk("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
1497 "ARG_1 == 0x%x ACCUM = 0x%x\n",
1498 ahc_inb(ahc
, SAVED_SCSIID
), ahc_inb(ahc
, SAVED_LUN
),
1499 ahc_inb(ahc
, ARG_1
), ahc_inb(ahc
, ACCUM
));
1500 printk("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
1501 "SINDEX == 0x%x\n, A == 0x%x\n",
1502 ahc_inb(ahc
, SEQ_FLAGS
), ahc_inb(ahc
, SCBPTR
),
1503 ahc_index_busy_tcl(ahc
,
1504 BUILD_TCL(ahc_inb(ahc
, SAVED_SCSIID
),
1505 ahc_inb(ahc
, SAVED_LUN
))),
1506 ahc_inb(ahc
, SINDEX
),
1507 ahc_inb(ahc
, ACCUM
));
1508 printk("SCSIID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
1509 "SCB_TAG == 0x%x, SCB_CONTROL == 0x%x\n",
1510 ahc_inb(ahc
, SCSIID
), ahc_inb(ahc
, SCB_SCSIID
),
1511 ahc_inb(ahc
, SCB_LUN
), ahc_inb(ahc
, SCB_TAG
),
1512 ahc_inb(ahc
, SCB_CONTROL
));
1513 printk("SCSIBUSL == 0x%x, SCSISIGI == 0x%x\n",
1514 ahc_inb(ahc
, SCSIBUSL
), ahc_inb(ahc
, SCSISIGI
));
1515 ahc_dump_card_state(ahc
);
1516 panic("for safety");
1520 printk("ahc_intr: seqint, "
1521 "intstat == 0x%x, scsisigi = 0x%x\n",
1522 intstat
, ahc_inb(ahc
, SCSISIGI
));
1527 * The sequencer is paused immediately on
1528 * a SEQINT, so we should restart it when
1535 ahc_handle_scsiint(struct ahc_softc
*ahc
, u_int intstat
)
1544 if ((ahc
->features
& AHC_TWIN
) != 0
1545 && ((ahc_inb(ahc
, SBLKCTL
) & SELBUSB
) != 0))
1549 intr_channel
= cur_channel
;
1551 if ((ahc
->features
& AHC_ULTRA2
) != 0)
1552 status0
= ahc_inb(ahc
, SSTAT0
) & IOERR
;
1555 status
= ahc_inb(ahc
, SSTAT1
) & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
1556 if (status
== 0 && status0
== 0) {
1557 if ((ahc
->features
& AHC_TWIN
) != 0) {
1558 /* Try the other channel */
1559 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
1560 status
= ahc_inb(ahc
, SSTAT1
)
1561 & (SELTO
|SCSIRSTI
|BUSFREE
|SCSIPERR
);
1562 intr_channel
= (cur_channel
== 'A') ? 'B' : 'A';
1565 printk("%s: Spurious SCSI interrupt\n", ahc_name(ahc
));
1566 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1572 /* Make sure the sequencer is in a safe location. */
1573 ahc_clear_critical_section(ahc
);
1575 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1576 scb
= ahc_lookup_scb(ahc
, scb_index
);
1578 && (ahc_inb(ahc
, SEQ_FLAGS
) & NOT_IDENTIFIED
) != 0)
1581 if ((ahc
->features
& AHC_ULTRA2
) != 0
1582 && (status0
& IOERR
) != 0) {
1585 now_lvd
= ahc_inb(ahc
, SBLKCTL
) & ENAB40
;
1586 printk("%s: Transceiver State Has Changed to %s mode\n",
1587 ahc_name(ahc
), now_lvd
? "LVD" : "SE");
1588 ahc_outb(ahc
, CLRSINT0
, CLRIOERR
);
1590 * When transitioning to SE mode, the reset line
1591 * glitches, triggering an arbitration bug in some
1592 * Ultra2 controllers. This bug is cleared when we
1593 * assert the reset line. Since a reset glitch has
1594 * already occurred with this transition and a
1595 * transceiver state change is handled just like
1596 * a bus reset anyway, asserting the reset line
1597 * ourselves is safe.
1599 ahc_reset_channel(ahc
, intr_channel
,
1600 /*Initiate Reset*/now_lvd
== 0);
1601 } else if ((status
& SCSIRSTI
) != 0) {
1602 printk("%s: Someone reset channel %c\n",
1603 ahc_name(ahc
), intr_channel
);
1604 if (intr_channel
!= cur_channel
)
1605 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) ^ SELBUSB
);
1606 ahc_reset_channel(ahc
, intr_channel
, /*Initiate Reset*/FALSE
);
1607 } else if ((status
& SCSIPERR
) != 0) {
1609 * Determine the bus phase and queue an appropriate message.
1610 * SCSIPERR is latched true as soon as a parity error
1611 * occurs. If the sequencer acked the transfer that
1612 * caused the parity error and the currently presented
1613 * transfer on the bus has correct parity, SCSIPERR will
1614 * be cleared by CLRSCSIPERR. Use this to determine if
1615 * we should look at the last phase the sequencer recorded,
1616 * or the current phase presented on the bus.
1618 struct ahc_devinfo devinfo
;
1628 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1629 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
1630 sstat2
= ahc_inb(ahc
, SSTAT2
);
1631 ahc_outb(ahc
, CLRSINT1
, CLRSCSIPERR
);
1633 * For all phases save DATA, the sequencer won't
1634 * automatically ack a byte that has a parity error
1635 * in it. So the only way that the current phase
1636 * could be 'data-in' is if the parity error is for
1637 * an already acked byte in the data phase. During
1638 * synchronous data-in transfers, we may actually
1639 * ack bytes before latching the current phase in
1640 * LASTPHASE, leading to the discrepancy between
1641 * curphase and lastphase.
1643 if ((ahc_inb(ahc
, SSTAT1
) & SCSIPERR
) != 0
1644 || curphase
== P_DATAIN
|| curphase
== P_DATAIN_DT
)
1645 errorphase
= curphase
;
1647 errorphase
= lastphase
;
1649 for (i
= 0; i
< num_phases
; i
++) {
1650 if (errorphase
== ahc_phase_table
[i
].phase
)
1653 mesg_out
= ahc_phase_table
[i
].mesg_out
;
1656 if (SCB_IS_SILENT(scb
))
1659 ahc_print_path(ahc
, scb
);
1660 scb
->flags
|= SCB_TRANSMISSION_ERROR
;
1662 printk("%s:%c:%d: ", ahc_name(ahc
), intr_channel
,
1663 SCSIID_TARGET(ahc
, ahc_inb(ahc
, SAVED_SCSIID
)));
1664 scsirate
= ahc_inb(ahc
, SCSIRATE
);
1665 if (silent
== FALSE
) {
1666 printk("parity error detected %s. "
1667 "SEQADDR(0x%x) SCSIRATE(0x%x)\n",
1668 ahc_phase_table
[i
].phasemsg
,
1669 ahc_inw(ahc
, SEQADDR0
),
1671 if ((ahc
->features
& AHC_DT
) != 0) {
1672 if ((sstat2
& CRCVALERR
) != 0)
1673 printk("\tCRC Value Mismatch\n");
1674 if ((sstat2
& CRCENDERR
) != 0)
1675 printk("\tNo terminal CRC packet "
1677 if ((sstat2
& CRCREQERR
) != 0)
1678 printk("\tIllegal CRC packet "
1680 if ((sstat2
& DUAL_EDGE_ERR
) != 0)
1681 printk("\tUnexpected %sDT Data Phase\n",
1682 (scsirate
& SINGLE_EDGE
)
1687 if ((ahc
->features
& AHC_DT
) != 0
1688 && (sstat2
& DUAL_EDGE_ERR
) != 0) {
1690 * This error applies regardless of
1691 * data direction, so ignore the value
1692 * in the phase table.
1694 mesg_out
= MSG_INITIATOR_DET_ERR
;
1698 * We've set the hardware to assert ATN if we
1699 * get a parity error on "in" phases, so all we
1700 * need to do is stuff the message buffer with
1701 * the appropriate message. "In" phases have set
1702 * mesg_out to something other than MSG_NOP.
1704 if (mesg_out
!= MSG_NOOP
) {
1705 if (ahc
->msg_type
!= MSG_TYPE_NONE
)
1706 ahc
->send_msg_perror
= TRUE
;
1708 ahc_outb(ahc
, MSG_OUT
, mesg_out
);
1711 * Force a renegotiation with this target just in
1712 * case we are out of sync for some external reason
1713 * unknown (or unreported) by the target.
1715 ahc_fetch_devinfo(ahc
, &devinfo
);
1716 ahc_force_renegotiation(ahc
, &devinfo
);
1718 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1720 } else if ((status
& SELTO
) != 0) {
1723 /* Stop the selection */
1724 ahc_outb(ahc
, SCSISEQ
, 0);
1726 /* No more pending messages */
1727 ahc_clear_msg_state(ahc
);
1729 /* Clear interrupt state */
1730 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1731 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRBUSFREE
|CLRSCSIPERR
);
1734 * Although the driver does not care about the
1735 * 'Selection in Progress' status bit, the busy
1736 * LED does. SELINGO is only cleared by a successful
1737 * selection, so we must manually clear it to insure
1738 * the LED turns off just incase no future successful
1739 * selections occur (e.g. no devices on the bus).
1741 ahc_outb(ahc
, CLRSINT0
, CLRSELINGO
);
1743 scbptr
= ahc_inb(ahc
, WAITING_SCBH
);
1744 ahc_outb(ahc
, SCBPTR
, scbptr
);
1745 scb_index
= ahc_inb(ahc
, SCB_TAG
);
1747 scb
= ahc_lookup_scb(ahc
, scb_index
);
1749 printk("%s: ahc_intr - referenced scb not "
1750 "valid during SELTO scb(%d, %d)\n",
1751 ahc_name(ahc
), scbptr
, scb_index
);
1752 ahc_dump_card_state(ahc
);
1754 struct ahc_devinfo devinfo
;
1756 if ((ahc_debug
& AHC_SHOW_SELTO
) != 0) {
1757 ahc_print_path(ahc
, scb
);
1758 printk("Saw Selection Timeout for SCB 0x%x\n",
1762 ahc_scb_devinfo(ahc
, &devinfo
, scb
);
1763 ahc_set_transaction_status(scb
, CAM_SEL_TIMEOUT
);
1764 ahc_freeze_devq(ahc
, scb
);
1767 * Cancel any pending transactions on the device
1768 * now that it seems to be missing. This will
1769 * also revert us to async/narrow transfers until
1770 * we can renegotiate with the device.
1772 ahc_handle_devreset(ahc
, &devinfo
,
1774 "Selection Timeout",
1775 /*verbose_level*/1);
1777 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1779 } else if ((status
& BUSFREE
) != 0
1780 && (ahc_inb(ahc
, SIMODE1
) & ENBUSFREE
) != 0) {
1781 struct ahc_devinfo devinfo
;
1786 u_int initiator_role_id
;
1791 * Clear our selection hardware as soon as possible.
1792 * We may have an entry in the waiting Q for this target,
1793 * that is affected by this busfree and we don't want to
1794 * go about selecting the target while we handle the event.
1796 ahc_outb(ahc
, SCSISEQ
,
1797 ahc_inb(ahc
, SCSISEQ
) & (ENSELI
|ENRSELI
|ENAUTOATNP
));
1800 * Disable busfree interrupts and clear the busfree
1801 * interrupt status. We do this here so that several
1802 * bus transactions occur prior to clearing the SCSIINT
1803 * latch. It can take a bit for the clearing to take effect.
1805 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENBUSFREE
);
1806 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
|CLRSCSIPERR
);
1809 * Look at what phase we were last in.
1810 * If its message out, chances are pretty good
1811 * that the busfree was in response to one of
1812 * our abort requests.
1814 lastphase
= ahc_inb(ahc
, LASTPHASE
);
1815 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
1816 saved_lun
= ahc_inb(ahc
, SAVED_LUN
);
1817 target
= SCSIID_TARGET(ahc
, saved_scsiid
);
1818 initiator_role_id
= SCSIID_OUR_ID(saved_scsiid
);
1819 channel
= SCSIID_CHANNEL(ahc
, saved_scsiid
);
1820 ahc_compile_devinfo(&devinfo
, initiator_role_id
,
1821 target
, saved_lun
, channel
, ROLE_INITIATOR
);
1824 if (lastphase
== P_MESGOUT
) {
1827 tag
= SCB_LIST_NULL
;
1828 if (ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT_TAG
, TRUE
)
1829 || ahc_sent_msg(ahc
, AHCMSG_1B
, MSG_ABORT
, TRUE
)) {
1830 if (ahc
->msgout_buf
[ahc
->msgout_index
- 1]
1832 tag
= scb
->hscb
->tag
;
1833 ahc_print_path(ahc
, scb
);
1834 printk("SCB %d - Abort%s Completed.\n",
1835 scb
->hscb
->tag
, tag
== SCB_LIST_NULL
?
1837 ahc_abort_scbs(ahc
, target
, channel
,
1842 } else if (ahc_sent_msg(ahc
, AHCMSG_1B
,
1843 MSG_BUS_DEV_RESET
, TRUE
)) {
1846 * Don't mark the user's request for this BDR
1847 * as completing with CAM_BDR_SENT. CAM3
1848 * specifies CAM_REQ_CMP.
1851 && scb
->io_ctx
->ccb_h
.func_code
== XPT_RESET_DEV
1852 && ahc_match_scb(ahc
, scb
, target
, channel
,
1856 ahc_set_transaction_status(scb
, CAM_REQ_CMP
);
1859 ahc_compile_devinfo(&devinfo
,
1865 ahc_handle_devreset(ahc
, &devinfo
,
1868 /*verbose_level*/0);
1870 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1871 MSG_EXT_PPR
, FALSE
)) {
1872 struct ahc_initiator_tinfo
*tinfo
;
1873 struct ahc_tmode_tstate
*tstate
;
1876 * PPR Rejected. Try non-ppr negotiation
1877 * and retry command.
1879 tinfo
= ahc_fetch_transinfo(ahc
,
1884 tinfo
->curr
.transport_version
= 2;
1885 tinfo
->goal
.transport_version
= 2;
1886 tinfo
->goal
.ppr_options
= 0;
1887 ahc_qinfifo_requeue_tail(ahc
, scb
);
1889 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1890 MSG_EXT_WDTR
, FALSE
)) {
1892 * Negotiation Rejected. Go-narrow and
1895 ahc_set_width(ahc
, &devinfo
,
1896 MSG_EXT_WDTR_BUS_8_BIT
,
1897 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1899 ahc_qinfifo_requeue_tail(ahc
, scb
);
1901 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
,
1902 MSG_EXT_SDTR
, FALSE
)) {
1904 * Negotiation Rejected. Go-async and
1907 ahc_set_syncrate(ahc
, &devinfo
,
1909 /*period*/0, /*offset*/0,
1911 AHC_TRANS_CUR
|AHC_TRANS_GOAL
,
1913 ahc_qinfifo_requeue_tail(ahc
, scb
);
1917 if (printerror
!= 0) {
1923 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
1924 tag
= scb
->hscb
->tag
;
1926 tag
= SCB_LIST_NULL
;
1927 ahc_print_path(ahc
, scb
);
1928 ahc_abort_scbs(ahc
, target
, channel
,
1929 SCB_GET_LUN(scb
), tag
,
1934 * We had not fully identified this connection,
1935 * so we cannot abort anything.
1937 printk("%s: ", ahc_name(ahc
));
1939 for (i
= 0; i
< num_phases
; i
++) {
1940 if (lastphase
== ahc_phase_table
[i
].phase
)
1943 if (lastphase
!= P_BUSFREE
) {
1945 * Renegotiate with this device at the
1946 * next opportunity just in case this busfree
1947 * is due to a negotiation mismatch with the
1950 ahc_force_renegotiation(ahc
, &devinfo
);
1952 printk("Unexpected busfree %s\n"
1953 "SEQADDR == 0x%x\n",
1954 ahc_phase_table
[i
].phasemsg
,
1955 ahc_inb(ahc
, SEQADDR0
)
1956 | (ahc_inb(ahc
, SEQADDR1
) << 8));
1958 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1961 printk("%s: Missing case in ahc_handle_scsiint. status = %x\n",
1962 ahc_name(ahc
), status
);
1963 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
1968 * Force renegotiation to occur the next time we initiate
1969 * a command to the current device.
1972 ahc_force_renegotiation(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
1974 struct ahc_initiator_tinfo
*targ_info
;
1975 struct ahc_tmode_tstate
*tstate
;
1977 targ_info
= ahc_fetch_transinfo(ahc
,
1979 devinfo
->our_scsiid
,
1982 ahc_update_neg_request(ahc
, devinfo
, tstate
,
1983 targ_info
, AHC_NEG_IF_NON_ASYNC
);
1986 #define AHC_MAX_STEPS 2000
1988 ahc_clear_critical_section(struct ahc_softc
*ahc
)
1995 if (ahc
->num_critical_sections
== 0)
2007 seqaddr
= ahc_inb(ahc
, SEQADDR0
)
2008 | (ahc_inb(ahc
, SEQADDR1
) << 8);
2011 * Seqaddr represents the next instruction to execute,
2012 * so we are really executing the instruction just
2017 cs
= ahc
->critical_sections
;
2018 for (i
= 0; i
< ahc
->num_critical_sections
; i
++, cs
++) {
2020 if (cs
->begin
< seqaddr
&& cs
->end
>= seqaddr
)
2024 if (i
== ahc
->num_critical_sections
)
2027 if (steps
> AHC_MAX_STEPS
) {
2028 printk("%s: Infinite loop in critical section\n",
2030 ahc_dump_card_state(ahc
);
2031 panic("critical section loop");
2035 if (stepping
== FALSE
) {
2038 * Disable all interrupt sources so that the
2039 * sequencer will not be stuck by a pausing
2040 * interrupt condition while we attempt to
2041 * leave a critical section.
2043 simode0
= ahc_inb(ahc
, SIMODE0
);
2044 ahc_outb(ahc
, SIMODE0
, 0);
2045 simode1
= ahc_inb(ahc
, SIMODE1
);
2046 if ((ahc
->features
& AHC_DT
) != 0)
2048 * On DT class controllers, we
2049 * use the enhanced busfree logic.
2050 * Unfortunately we cannot re-enable
2051 * busfree detection within the
2052 * current connection, so we must
2053 * leave it on while single stepping.
2055 ahc_outb(ahc
, SIMODE1
, simode1
& ENBUSFREE
);
2057 ahc_outb(ahc
, SIMODE1
, 0);
2058 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
2059 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
| STEP
);
2062 if ((ahc
->features
& AHC_DT
) != 0) {
2063 ahc_outb(ahc
, CLRSINT1
, CLRBUSFREE
);
2064 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
2066 ahc_outb(ahc
, HCNTRL
, ahc
->unpause
);
2067 while (!ahc_is_paused(ahc
))
2071 ahc_outb(ahc
, SIMODE0
, simode0
);
2072 ahc_outb(ahc
, SIMODE1
, simode1
);
2073 ahc_outb(ahc
, SEQCTL
, ahc
->seqctl
);
2078 * Clear any pending interrupt status.
2081 ahc_clear_intstat(struct ahc_softc
*ahc
)
2083 /* Clear any interrupt conditions this may have caused */
2084 ahc_outb(ahc
, CLRSINT1
, CLRSELTIMEO
|CLRATNO
|CLRSCSIRSTI
2085 |CLRBUSFREE
|CLRSCSIPERR
|CLRPHASECHG
|
2087 ahc_flush_device_writes(ahc
);
2088 ahc_outb(ahc
, CLRSINT0
, CLRSELDO
|CLRSELDI
|CLRSELINGO
);
2089 ahc_flush_device_writes(ahc
);
2090 ahc_outb(ahc
, CLRINT
, CLRSCSIINT
);
2091 ahc_flush_device_writes(ahc
);
2094 /**************************** Debugging Routines ******************************/
2096 uint32_t ahc_debug
= AHC_DEBUG_OPTS
;
2101 ahc_print_scb(struct scb
*scb
)
2105 struct hardware_scb
*hscb
= scb
->hscb
;
2107 printk("scb:%p control:0x%x scsiid:0x%x lun:%d cdb_len:%d\n",
2113 printk("Shared Data: ");
2114 for (i
= 0; i
< sizeof(hscb
->shared_data
.cdb
); i
++)
2115 printk("%#02x", hscb
->shared_data
.cdb
[i
]);
2116 printk(" dataptr:%#x datacnt:%#x sgptr:%#x tag:%#x\n",
2117 ahc_le32toh(hscb
->dataptr
),
2118 ahc_le32toh(hscb
->datacnt
),
2119 ahc_le32toh(hscb
->sgptr
),
2121 if (scb
->sg_count
> 0) {
2122 for (i
= 0; i
< scb
->sg_count
; i
++) {
2123 printk("sg[%d] - Addr 0x%x%x : Length %d\n",
2125 (ahc_le32toh(scb
->sg_list
[i
].len
) >> 24
2126 & SG_HIGH_ADDR_BITS
),
2127 ahc_le32toh(scb
->sg_list
[i
].addr
),
2128 ahc_le32toh(scb
->sg_list
[i
].len
));
2134 /************************* Transfer Negotiation *******************************/
2136 * Allocate per target mode instance (ID we respond to as a target)
2137 * transfer negotiation data structures.
2139 static struct ahc_tmode_tstate
*
2140 ahc_alloc_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
)
2142 struct ahc_tmode_tstate
*master_tstate
;
2143 struct ahc_tmode_tstate
*tstate
;
2146 master_tstate
= ahc
->enabled_targets
[ahc
->our_id
];
2147 if (channel
== 'B') {
2149 master_tstate
= ahc
->enabled_targets
[ahc
->our_id_b
+ 8];
2151 if (ahc
->enabled_targets
[scsi_id
] != NULL
2152 && ahc
->enabled_targets
[scsi_id
] != master_tstate
)
2153 panic("%s: ahc_alloc_tstate - Target already allocated",
2155 tstate
= kmalloc(sizeof(*tstate
), GFP_ATOMIC
);
2160 * If we have allocated a master tstate, copy user settings from
2161 * the master tstate (taken from SRAM or the EEPROM) for this
2162 * channel, but reset our current and goal settings to async/narrow
2163 * until an initiator talks to us.
2165 if (master_tstate
!= NULL
) {
2166 memcpy(tstate
, master_tstate
, sizeof(*tstate
));
2167 memset(tstate
->enabled_luns
, 0, sizeof(tstate
->enabled_luns
));
2168 tstate
->ultraenb
= 0;
2169 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
2170 memset(&tstate
->transinfo
[i
].curr
, 0,
2171 sizeof(tstate
->transinfo
[i
].curr
));
2172 memset(&tstate
->transinfo
[i
].goal
, 0,
2173 sizeof(tstate
->transinfo
[i
].goal
));
2176 memset(tstate
, 0, sizeof(*tstate
));
2177 ahc
->enabled_targets
[scsi_id
] = tstate
;
2181 #ifdef AHC_TARGET_MODE
2183 * Free per target mode instance (ID we respond to as a target)
2184 * transfer negotiation data structures.
2187 ahc_free_tstate(struct ahc_softc
*ahc
, u_int scsi_id
, char channel
, int force
)
2189 struct ahc_tmode_tstate
*tstate
;
2192 * Don't clean up our "master" tstate.
2193 * It has our default user settings.
2195 if (((channel
== 'B' && scsi_id
== ahc
->our_id_b
)
2196 || (channel
== 'A' && scsi_id
== ahc
->our_id
))
2202 tstate
= ahc
->enabled_targets
[scsi_id
];
2205 ahc
->enabled_targets
[scsi_id
] = NULL
;
2210 * Called when we have an active connection to a target on the bus,
2211 * this function finds the nearest syncrate to the input period limited
2212 * by the capabilities of the bus connectivity of and sync settings for
2215 const struct ahc_syncrate
*
2216 ahc_devlimited_syncrate(struct ahc_softc
*ahc
,
2217 struct ahc_initiator_tinfo
*tinfo
,
2218 u_int
*period
, u_int
*ppr_options
, role_t role
)
2220 struct ahc_transinfo
*transinfo
;
2223 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
2224 if ((ahc_inb(ahc
, SBLKCTL
) & ENAB40
) != 0
2225 && (ahc_inb(ahc
, SSTAT2
) & EXP_ACTIVE
) == 0) {
2226 maxsync
= AHC_SYNCRATE_DT
;
2228 maxsync
= AHC_SYNCRATE_ULTRA
;
2229 /* Can't do DT on an SE bus */
2230 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
2232 } else if ((ahc
->features
& AHC_ULTRA
) != 0) {
2233 maxsync
= AHC_SYNCRATE_ULTRA
;
2235 maxsync
= AHC_SYNCRATE_FAST
;
2238 * Never allow a value higher than our current goal
2239 * period otherwise we may allow a target initiated
2240 * negotiation to go above the limit as set by the
2241 * user. In the case of an initiator initiated
2242 * sync negotiation, we limit based on the user
2243 * setting. This allows the system to still accept
2244 * incoming negotiations even if target initiated
2245 * negotiation is not performed.
2247 if (role
== ROLE_TARGET
)
2248 transinfo
= &tinfo
->user
;
2250 transinfo
= &tinfo
->goal
;
2251 *ppr_options
&= transinfo
->ppr_options
;
2252 if (transinfo
->width
== MSG_EXT_WDTR_BUS_8_BIT
) {
2253 maxsync
= max(maxsync
, (u_int
)AHC_SYNCRATE_ULTRA2
);
2254 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
2256 if (transinfo
->period
== 0) {
2261 *period
= max(*period
, (u_int
)transinfo
->period
);
2262 return (ahc_find_syncrate(ahc
, period
, ppr_options
, maxsync
));
2266 * Look up the valid period to SCSIRATE conversion in our table.
2267 * Return the period and offset that should be sent to the target
2268 * if this was the beginning of an SDTR.
2270 const struct ahc_syncrate
*
2271 ahc_find_syncrate(struct ahc_softc
*ahc
, u_int
*period
,
2272 u_int
*ppr_options
, u_int maxsync
)
2274 const struct ahc_syncrate
*syncrate
;
2276 if ((ahc
->features
& AHC_DT
) == 0)
2277 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
2279 /* Skip all DT only entries if DT is not available */
2280 if ((*ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
2281 && maxsync
< AHC_SYNCRATE_ULTRA2
)
2282 maxsync
= AHC_SYNCRATE_ULTRA2
;
2284 /* Now set the maxsync based on the card capabilities
2285 * DT is already done above */
2286 if ((ahc
->features
& (AHC_DT
| AHC_ULTRA2
)) == 0
2287 && maxsync
< AHC_SYNCRATE_ULTRA
)
2288 maxsync
= AHC_SYNCRATE_ULTRA
;
2289 if ((ahc
->features
& (AHC_DT
| AHC_ULTRA2
| AHC_ULTRA
)) == 0
2290 && maxsync
< AHC_SYNCRATE_FAST
)
2291 maxsync
= AHC_SYNCRATE_FAST
;
2293 for (syncrate
= &ahc_syncrates
[maxsync
];
2294 syncrate
->rate
!= NULL
;
2298 * The Ultra2 table doesn't go as low
2299 * as for the Fast/Ultra cards.
2301 if ((ahc
->features
& AHC_ULTRA2
) != 0
2302 && (syncrate
->sxfr_u2
== 0))
2305 if (*period
<= syncrate
->period
) {
2307 * When responding to a target that requests
2308 * sync, the requested rate may fall between
2309 * two rates that we can output, but still be
2310 * a rate that we can receive. Because of this,
2311 * we want to respond to the target with
2312 * the same rate that it sent to us even
2313 * if the period we use to send data to it
2314 * is lower. Only lower the response period
2317 if (syncrate
== &ahc_syncrates
[maxsync
])
2318 *period
= syncrate
->period
;
2321 * At some speeds, we only support
2324 if ((syncrate
->sxfr_u2
& ST_SXFR
) != 0)
2325 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
2331 || (syncrate
->rate
== NULL
)
2332 || ((ahc
->features
& AHC_ULTRA2
) != 0
2333 && (syncrate
->sxfr_u2
== 0))) {
2334 /* Use asynchronous transfers. */
2337 *ppr_options
&= ~MSG_EXT_PPR_DT_REQ
;
2343 * Convert from an entry in our syncrate table to the SCSI equivalent
2344 * sync "period" factor.
2347 ahc_find_period(struct ahc_softc
*ahc
, u_int scsirate
, u_int maxsync
)
2349 const struct ahc_syncrate
*syncrate
;
2351 if ((ahc
->features
& AHC_ULTRA2
) != 0)
2352 scsirate
&= SXFR_ULTRA2
;
2356 /* now set maxsync based on card capabilities */
2357 if ((ahc
->features
& AHC_DT
) == 0 && maxsync
< AHC_SYNCRATE_ULTRA2
)
2358 maxsync
= AHC_SYNCRATE_ULTRA2
;
2359 if ((ahc
->features
& (AHC_DT
| AHC_ULTRA2
)) == 0
2360 && maxsync
< AHC_SYNCRATE_ULTRA
)
2361 maxsync
= AHC_SYNCRATE_ULTRA
;
2362 if ((ahc
->features
& (AHC_DT
| AHC_ULTRA2
| AHC_ULTRA
)) == 0
2363 && maxsync
< AHC_SYNCRATE_FAST
)
2364 maxsync
= AHC_SYNCRATE_FAST
;
2367 syncrate
= &ahc_syncrates
[maxsync
];
2368 while (syncrate
->rate
!= NULL
) {
2370 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
2371 if (syncrate
->sxfr_u2
== 0)
2373 else if (scsirate
== (syncrate
->sxfr_u2
& SXFR_ULTRA2
))
2374 return (syncrate
->period
);
2375 } else if (scsirate
== (syncrate
->sxfr
& SXFR
)) {
2376 return (syncrate
->period
);
2380 return (0); /* async */
2384 * Truncate the given synchronous offset to a value the
2385 * current adapter type and syncrate are capable of.
2388 ahc_validate_offset(struct ahc_softc
*ahc
,
2389 struct ahc_initiator_tinfo
*tinfo
,
2390 const struct ahc_syncrate
*syncrate
,
2391 u_int
*offset
, int wide
, role_t role
)
2395 /* Limit offset to what we can do */
2396 if (syncrate
== NULL
) {
2398 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
2399 maxoffset
= MAX_OFFSET_ULTRA2
;
2402 maxoffset
= MAX_OFFSET_16BIT
;
2404 maxoffset
= MAX_OFFSET_8BIT
;
2406 *offset
= min(*offset
, maxoffset
);
2407 if (tinfo
!= NULL
) {
2408 if (role
== ROLE_TARGET
)
2409 *offset
= min(*offset
, (u_int
)tinfo
->user
.offset
);
2411 *offset
= min(*offset
, (u_int
)tinfo
->goal
.offset
);
2416 * Truncate the given transfer width parameter to a value the
2417 * current adapter type is capable of.
2420 ahc_validate_width(struct ahc_softc
*ahc
, struct ahc_initiator_tinfo
*tinfo
,
2421 u_int
*bus_width
, role_t role
)
2423 switch (*bus_width
) {
2425 if (ahc
->features
& AHC_WIDE
) {
2427 *bus_width
= MSG_EXT_WDTR_BUS_16_BIT
;
2431 case MSG_EXT_WDTR_BUS_8_BIT
:
2432 *bus_width
= MSG_EXT_WDTR_BUS_8_BIT
;
2435 if (tinfo
!= NULL
) {
2436 if (role
== ROLE_TARGET
)
2437 *bus_width
= min((u_int
)tinfo
->user
.width
, *bus_width
);
2439 *bus_width
= min((u_int
)tinfo
->goal
.width
, *bus_width
);
2444 * Update the bitmask of targets for which the controller should
2445 * negotiate with at the next convenient opportunity. This currently
2446 * means the next time we send the initial identify messages for
2447 * a new transaction.
2450 ahc_update_neg_request(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2451 struct ahc_tmode_tstate
*tstate
,
2452 struct ahc_initiator_tinfo
*tinfo
, ahc_neg_type neg_type
)
2454 u_int auto_negotiate_orig
;
2456 auto_negotiate_orig
= tstate
->auto_negotiate
;
2457 if (neg_type
== AHC_NEG_ALWAYS
) {
2459 * Force our "current" settings to be
2460 * unknown so that unless a bus reset
2461 * occurs the need to renegotiate is
2462 * recorded persistently.
2464 if ((ahc
->features
& AHC_WIDE
) != 0)
2465 tinfo
->curr
.width
= AHC_WIDTH_UNKNOWN
;
2466 tinfo
->curr
.period
= AHC_PERIOD_UNKNOWN
;
2467 tinfo
->curr
.offset
= AHC_OFFSET_UNKNOWN
;
2469 if (tinfo
->curr
.period
!= tinfo
->goal
.period
2470 || tinfo
->curr
.width
!= tinfo
->goal
.width
2471 || tinfo
->curr
.offset
!= tinfo
->goal
.offset
2472 || tinfo
->curr
.ppr_options
!= tinfo
->goal
.ppr_options
2473 || (neg_type
== AHC_NEG_IF_NON_ASYNC
2474 && (tinfo
->goal
.offset
!= 0
2475 || tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
2476 || tinfo
->goal
.ppr_options
!= 0)))
2477 tstate
->auto_negotiate
|= devinfo
->target_mask
;
2479 tstate
->auto_negotiate
&= ~devinfo
->target_mask
;
2481 return (auto_negotiate_orig
!= tstate
->auto_negotiate
);
2485 * Update the user/goal/curr tables of synchronous negotiation
2486 * parameters as well as, in the case of a current or active update,
2487 * any data structures on the host controller. In the case of an
2488 * active update, the specified target is currently talking to us on
2489 * the bus, so the transfer parameter update must take effect
2493 ahc_set_syncrate(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2494 const struct ahc_syncrate
*syncrate
, u_int period
,
2495 u_int offset
, u_int ppr_options
, u_int type
, int paused
)
2497 struct ahc_initiator_tinfo
*tinfo
;
2498 struct ahc_tmode_tstate
*tstate
;
2505 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
2508 if (syncrate
== NULL
) {
2513 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2514 devinfo
->target
, &tstate
);
2516 if ((type
& AHC_TRANS_USER
) != 0) {
2517 tinfo
->user
.period
= period
;
2518 tinfo
->user
.offset
= offset
;
2519 tinfo
->user
.ppr_options
= ppr_options
;
2522 if ((type
& AHC_TRANS_GOAL
) != 0) {
2523 tinfo
->goal
.period
= period
;
2524 tinfo
->goal
.offset
= offset
;
2525 tinfo
->goal
.ppr_options
= ppr_options
;
2528 old_period
= tinfo
->curr
.period
;
2529 old_offset
= tinfo
->curr
.offset
;
2530 old_ppr
= tinfo
->curr
.ppr_options
;
2532 if ((type
& AHC_TRANS_CUR
) != 0
2533 && (old_period
!= period
2534 || old_offset
!= offset
2535 || old_ppr
!= ppr_options
)) {
2539 scsirate
= tinfo
->scsirate
;
2540 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
2542 scsirate
&= ~(SXFR_ULTRA2
|SINGLE_EDGE
|ENABLE_CRC
);
2543 if (syncrate
!= NULL
) {
2544 scsirate
|= syncrate
->sxfr_u2
;
2545 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) != 0)
2546 scsirate
|= ENABLE_CRC
;
2548 scsirate
|= SINGLE_EDGE
;
2552 scsirate
&= ~(SXFR
|SOFS
);
2554 * Ensure Ultra mode is set properly for
2557 tstate
->ultraenb
&= ~devinfo
->target_mask
;
2558 if (syncrate
!= NULL
) {
2559 if (syncrate
->sxfr
& ULTRA_SXFR
) {
2561 devinfo
->target_mask
;
2563 scsirate
|= syncrate
->sxfr
& SXFR
;
2564 scsirate
|= offset
& SOFS
;
2569 sxfrctl0
= ahc_inb(ahc
, SXFRCTL0
);
2570 sxfrctl0
&= ~FAST20
;
2571 if (tstate
->ultraenb
& devinfo
->target_mask
)
2573 ahc_outb(ahc
, SXFRCTL0
, sxfrctl0
);
2577 ahc_outb(ahc
, SCSIRATE
, scsirate
);
2578 if ((ahc
->features
& AHC_ULTRA2
) != 0)
2579 ahc_outb(ahc
, SCSIOFFSET
, offset
);
2582 tinfo
->scsirate
= scsirate
;
2583 tinfo
->curr
.period
= period
;
2584 tinfo
->curr
.offset
= offset
;
2585 tinfo
->curr
.ppr_options
= ppr_options
;
2587 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2588 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
);
2591 printk("%s: target %d synchronous at %sMHz%s, "
2592 "offset = 0x%x\n", ahc_name(ahc
),
2593 devinfo
->target
, syncrate
->rate
,
2594 (ppr_options
& MSG_EXT_PPR_DT_REQ
)
2595 ? " DT" : "", offset
);
2597 printk("%s: target %d using "
2598 "asynchronous transfers\n",
2599 ahc_name(ahc
), devinfo
->target
);
2604 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
2605 tinfo
, AHC_NEG_TO_GOAL
);
2608 ahc_update_pending_scbs(ahc
);
2612 * Update the user/goal/curr tables of wide negotiation
2613 * parameters as well as, in the case of a current or active update,
2614 * any data structures on the host controller. In the case of an
2615 * active update, the specified target is currently talking to us on
2616 * the bus, so the transfer parameter update must take effect
2620 ahc_set_width(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2621 u_int width
, u_int type
, int paused
)
2623 struct ahc_initiator_tinfo
*tinfo
;
2624 struct ahc_tmode_tstate
*tstate
;
2629 active
= (type
& AHC_TRANS_ACTIVE
) == AHC_TRANS_ACTIVE
;
2631 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2632 devinfo
->target
, &tstate
);
2634 if ((type
& AHC_TRANS_USER
) != 0)
2635 tinfo
->user
.width
= width
;
2637 if ((type
& AHC_TRANS_GOAL
) != 0)
2638 tinfo
->goal
.width
= width
;
2640 oldwidth
= tinfo
->curr
.width
;
2641 if ((type
& AHC_TRANS_CUR
) != 0 && oldwidth
!= width
) {
2645 scsirate
= tinfo
->scsirate
;
2646 scsirate
&= ~WIDEXFER
;
2647 if (width
== MSG_EXT_WDTR_BUS_16_BIT
)
2648 scsirate
|= WIDEXFER
;
2650 tinfo
->scsirate
= scsirate
;
2653 ahc_outb(ahc
, SCSIRATE
, scsirate
);
2655 tinfo
->curr
.width
= width
;
2657 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2658 CAM_LUN_WILDCARD
, AC_TRANSFER_NEG
);
2660 printk("%s: target %d using %dbit transfers\n",
2661 ahc_name(ahc
), devinfo
->target
,
2662 8 * (0x01 << width
));
2666 update_needed
+= ahc_update_neg_request(ahc
, devinfo
, tstate
,
2667 tinfo
, AHC_NEG_TO_GOAL
);
2669 ahc_update_pending_scbs(ahc
);
2673 * Update the current state of tagged queuing for a given target.
2676 ahc_set_tags(struct ahc_softc
*ahc
, struct scsi_cmnd
*cmd
,
2677 struct ahc_devinfo
*devinfo
, ahc_queue_alg alg
)
2679 struct scsi_device
*sdev
= cmd
->device
;
2681 ahc_platform_set_tags(ahc
, sdev
, devinfo
, alg
);
2682 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
2683 devinfo
->lun
, AC_TRANSFER_NEG
);
2687 * When the transfer settings for a connection change, update any
2688 * in-transit SCBs to contain the new data so the hardware will
2689 * be set correctly during future (re)selections.
2692 ahc_update_pending_scbs(struct ahc_softc
*ahc
)
2694 struct scb
*pending_scb
;
2695 int pending_scb_count
;
2701 * Traverse the pending SCB list and ensure that all of the
2702 * SCBs there have the proper settings.
2704 pending_scb_count
= 0;
2705 LIST_FOREACH(pending_scb
, &ahc
->pending_scbs
, pending_links
) {
2706 struct ahc_devinfo devinfo
;
2707 struct hardware_scb
*pending_hscb
;
2708 struct ahc_initiator_tinfo
*tinfo
;
2709 struct ahc_tmode_tstate
*tstate
;
2711 ahc_scb_devinfo(ahc
, &devinfo
, pending_scb
);
2712 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
.channel
,
2714 devinfo
.target
, &tstate
);
2715 pending_hscb
= pending_scb
->hscb
;
2716 pending_hscb
->control
&= ~ULTRAENB
;
2717 if ((tstate
->ultraenb
& devinfo
.target_mask
) != 0)
2718 pending_hscb
->control
|= ULTRAENB
;
2719 pending_hscb
->scsirate
= tinfo
->scsirate
;
2720 pending_hscb
->scsioffset
= tinfo
->curr
.offset
;
2721 if ((tstate
->auto_negotiate
& devinfo
.target_mask
) == 0
2722 && (pending_scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0) {
2723 pending_scb
->flags
&= ~SCB_AUTO_NEGOTIATE
;
2724 pending_hscb
->control
&= ~MK_MESSAGE
;
2726 ahc_sync_scb(ahc
, pending_scb
,
2727 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
2728 pending_scb_count
++;
2731 if (pending_scb_count
== 0)
2734 if (ahc_is_paused(ahc
)) {
2741 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
2742 /* Ensure that the hscbs down on the card match the new information */
2743 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
2744 struct hardware_scb
*pending_hscb
;
2748 ahc_outb(ahc
, SCBPTR
, i
);
2749 scb_tag
= ahc_inb(ahc
, SCB_TAG
);
2750 pending_scb
= ahc_lookup_scb(ahc
, scb_tag
);
2751 if (pending_scb
== NULL
)
2754 pending_hscb
= pending_scb
->hscb
;
2755 control
= ahc_inb(ahc
, SCB_CONTROL
);
2756 control
&= ~(ULTRAENB
|MK_MESSAGE
);
2757 control
|= pending_hscb
->control
& (ULTRAENB
|MK_MESSAGE
);
2758 ahc_outb(ahc
, SCB_CONTROL
, control
);
2759 ahc_outb(ahc
, SCB_SCSIRATE
, pending_hscb
->scsirate
);
2760 ahc_outb(ahc
, SCB_SCSIOFFSET
, pending_hscb
->scsioffset
);
2762 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
2768 /**************************** Pathing Information *****************************/
2770 ahc_fetch_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2776 if (ahc_inb(ahc
, SSTAT0
) & TARGET
)
2779 role
= ROLE_INITIATOR
;
2781 if (role
== ROLE_TARGET
2782 && (ahc
->features
& AHC_MULTI_TID
) != 0
2783 && (ahc_inb(ahc
, SEQ_FLAGS
)
2784 & (CMDPHASE_PENDING
|TARG_CMD_PENDING
|NO_DISCONNECT
)) != 0) {
2785 /* We were selected, so pull our id from TARGIDIN */
2786 our_id
= ahc_inb(ahc
, TARGIDIN
) & OID
;
2787 } else if ((ahc
->features
& AHC_ULTRA2
) != 0)
2788 our_id
= ahc_inb(ahc
, SCSIID_ULTRA2
) & OID
;
2790 our_id
= ahc_inb(ahc
, SCSIID
) & OID
;
2792 saved_scsiid
= ahc_inb(ahc
, SAVED_SCSIID
);
2793 ahc_compile_devinfo(devinfo
,
2795 SCSIID_TARGET(ahc
, saved_scsiid
),
2796 ahc_inb(ahc
, SAVED_LUN
),
2797 SCSIID_CHANNEL(ahc
, saved_scsiid
),
2801 static const struct ahc_phase_table_entry
*
2802 ahc_lookup_phase_entry(int phase
)
2804 const struct ahc_phase_table_entry
*entry
;
2805 const struct ahc_phase_table_entry
*last_entry
;
2808 * num_phases doesn't include the default entry which
2809 * will be returned if the phase doesn't match.
2811 last_entry
= &ahc_phase_table
[num_phases
];
2812 for (entry
= ahc_phase_table
; entry
< last_entry
; entry
++) {
2813 if (phase
== entry
->phase
)
2820 ahc_compile_devinfo(struct ahc_devinfo
*devinfo
, u_int our_id
, u_int target
,
2821 u_int lun
, char channel
, role_t role
)
2823 devinfo
->our_scsiid
= our_id
;
2824 devinfo
->target
= target
;
2826 devinfo
->target_offset
= target
;
2827 devinfo
->channel
= channel
;
2828 devinfo
->role
= role
;
2830 devinfo
->target_offset
+= 8;
2831 devinfo
->target_mask
= (0x01 << devinfo
->target_offset
);
2835 ahc_print_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2837 printk("%s:%c:%d:%d: ", ahc_name(ahc
), devinfo
->channel
,
2838 devinfo
->target
, devinfo
->lun
);
2842 ahc_scb_devinfo(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2848 our_id
= SCSIID_OUR_ID(scb
->hscb
->scsiid
);
2849 role
= ROLE_INITIATOR
;
2850 if ((scb
->flags
& SCB_TARGET_SCB
) != 0)
2852 ahc_compile_devinfo(devinfo
, our_id
, SCB_GET_TARGET(ahc
, scb
),
2853 SCB_GET_LUN(scb
), SCB_GET_CHANNEL(ahc
, scb
), role
);
2857 /************************ Message Phase Processing ****************************/
2859 ahc_assert_atn(struct ahc_softc
*ahc
)
2864 if ((ahc
->features
& AHC_DT
) == 0)
2865 scsisigo
|= ahc_inb(ahc
, SCSISIGI
);
2866 ahc_outb(ahc
, SCSISIGO
, scsisigo
);
2870 * When an initiator transaction with the MK_MESSAGE flag either reconnects
2871 * or enters the initial message out phase, we are interrupted. Fill our
2872 * outgoing message buffer with the appropriate message and beging handing
2873 * the message phase(s) manually.
2876 ahc_setup_initiator_msgout(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
2880 * To facilitate adding multiple messages together,
2881 * each routine should increment the index and len
2882 * variables instead of setting them explicitly.
2884 ahc
->msgout_index
= 0;
2885 ahc
->msgout_len
= 0;
2887 if ((scb
->flags
& SCB_DEVICE_RESET
) == 0
2888 && ahc_inb(ahc
, MSG_OUT
) == MSG_IDENTIFYFLAG
) {
2891 identify_msg
= MSG_IDENTIFYFLAG
| SCB_GET_LUN(scb
);
2892 if ((scb
->hscb
->control
& DISCENB
) != 0)
2893 identify_msg
|= MSG_IDENTIFY_DISCFLAG
;
2894 ahc
->msgout_buf
[ahc
->msgout_index
++] = identify_msg
;
2897 if ((scb
->hscb
->control
& TAG_ENB
) != 0) {
2898 ahc
->msgout_buf
[ahc
->msgout_index
++] =
2899 scb
->hscb
->control
& (TAG_ENB
|SCB_TAG_TYPE
);
2900 ahc
->msgout_buf
[ahc
->msgout_index
++] = scb
->hscb
->tag
;
2901 ahc
->msgout_len
+= 2;
2905 if (scb
->flags
& SCB_DEVICE_RESET
) {
2906 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_BUS_DEV_RESET
;
2908 ahc_print_path(ahc
, scb
);
2909 printk("Bus Device Reset Message Sent\n");
2911 * Clear our selection hardware in advance of
2912 * the busfree. We may have an entry in the waiting
2913 * Q for this target, and we don't want to go about
2914 * selecting while we handle the busfree and blow it
2917 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2918 } else if ((scb
->flags
& SCB_ABORT
) != 0) {
2919 if ((scb
->hscb
->control
& TAG_ENB
) != 0)
2920 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT_TAG
;
2922 ahc
->msgout_buf
[ahc
->msgout_index
++] = MSG_ABORT
;
2924 ahc_print_path(ahc
, scb
);
2925 printk("Abort%s Message Sent\n",
2926 (scb
->hscb
->control
& TAG_ENB
) != 0 ? " Tag" : "");
2928 * Clear our selection hardware in advance of
2929 * the busfree. We may have an entry in the waiting
2930 * Q for this target, and we don't want to go about
2931 * selecting while we handle the busfree and blow it
2934 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
2935 } else if ((scb
->flags
& (SCB_AUTO_NEGOTIATE
|SCB_NEGOTIATE
)) != 0) {
2936 ahc_build_transfer_msg(ahc
, devinfo
);
2938 printk("ahc_intr: AWAITING_MSG for an SCB that "
2939 "does not have a waiting message\n");
2940 printk("SCSIID = %x, target_mask = %x\n", scb
->hscb
->scsiid
,
2941 devinfo
->target_mask
);
2942 panic("SCB = %d, SCB Control = %x, MSG_OUT = %x "
2943 "SCB flags = %x", scb
->hscb
->tag
, scb
->hscb
->control
,
2944 ahc_inb(ahc
, MSG_OUT
), scb
->flags
);
2948 * Clear the MK_MESSAGE flag from the SCB so we aren't
2949 * asked to send this message again.
2951 ahc_outb(ahc
, SCB_CONTROL
, ahc_inb(ahc
, SCB_CONTROL
) & ~MK_MESSAGE
);
2952 scb
->hscb
->control
&= ~MK_MESSAGE
;
2953 ahc
->msgout_index
= 0;
2954 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
2958 * Build an appropriate transfer negotiation message for the
2959 * currently active target.
2962 ahc_build_transfer_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
2965 * We need to initiate transfer negotiations.
2966 * If our current and goal settings are identical,
2967 * we want to renegotiate due to a check condition.
2969 struct ahc_initiator_tinfo
*tinfo
;
2970 struct ahc_tmode_tstate
*tstate
;
2971 const struct ahc_syncrate
*rate
;
2979 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
2980 devinfo
->target
, &tstate
);
2982 * Filter our period based on the current connection.
2983 * If we can't perform DT transfers on this segment (not in LVD
2984 * mode for instance), then our decision to issue a PPR message
2987 period
= tinfo
->goal
.period
;
2988 offset
= tinfo
->goal
.offset
;
2989 ppr_options
= tinfo
->goal
.ppr_options
;
2990 /* Target initiated PPR is not allowed in the SCSI spec */
2991 if (devinfo
->role
== ROLE_TARGET
)
2993 rate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
2994 &ppr_options
, devinfo
->role
);
2995 dowide
= tinfo
->curr
.width
!= tinfo
->goal
.width
;
2996 dosync
= tinfo
->curr
.offset
!= offset
|| tinfo
->curr
.period
!= period
;
2998 * Only use PPR if we have options that need it, even if the device
2999 * claims to support it. There might be an expander in the way
3002 doppr
= ppr_options
!= 0;
3004 if (!dowide
&& !dosync
&& !doppr
) {
3005 dowide
= tinfo
->goal
.width
!= MSG_EXT_WDTR_BUS_8_BIT
;
3006 dosync
= tinfo
->goal
.offset
!= 0;
3009 if (!dowide
&& !dosync
&& !doppr
) {
3011 * Force async with a WDTR message if we have a wide bus,
3012 * or just issue an SDTR with a 0 offset.
3014 if ((ahc
->features
& AHC_WIDE
) != 0)
3020 ahc_print_devinfo(ahc
, devinfo
);
3021 printk("Ensuring async\n");
3025 /* Target initiated PPR is not allowed in the SCSI spec */
3026 if (devinfo
->role
== ROLE_TARGET
)
3030 * Both the PPR message and SDTR message require the
3031 * goal syncrate to be limited to what the target device
3032 * is capable of handling (based on whether an LVD->SE
3033 * expander is on the bus), so combine these two cases.
3034 * Regardless, guarantee that if we are using WDTR and SDTR
3035 * messages that WDTR comes first.
3037 if (doppr
|| (dosync
&& !dowide
)) {
3039 offset
= tinfo
->goal
.offset
;
3040 ahc_validate_offset(ahc
, tinfo
, rate
, &offset
,
3041 doppr
? tinfo
->goal
.width
3042 : tinfo
->curr
.width
,
3045 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
3046 tinfo
->goal
.width
, ppr_options
);
3048 ahc_construct_sdtr(ahc
, devinfo
, period
, offset
);
3051 ahc_construct_wdtr(ahc
, devinfo
, tinfo
->goal
.width
);
3056 * Build a synchronous negotiation message in our message
3057 * buffer based on the input parameters.
3060 ahc_construct_sdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3061 u_int period
, u_int offset
)
3064 period
= AHC_ASYNC_XFER_PERIOD
;
3065 ahc
->msgout_index
+= spi_populate_sync_msg(
3066 ahc
->msgout_buf
+ ahc
->msgout_index
, period
, offset
);
3067 ahc
->msgout_len
+= 5;
3069 printk("(%s:%c:%d:%d): Sending SDTR period %x, offset %x\n",
3070 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
3071 devinfo
->lun
, period
, offset
);
3076 * Build a wide negotiation message in our message
3077 * buffer based on the input parameters.
3080 ahc_construct_wdtr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3083 ahc
->msgout_index
+= spi_populate_width_msg(
3084 ahc
->msgout_buf
+ ahc
->msgout_index
, bus_width
);
3085 ahc
->msgout_len
+= 4;
3087 printk("(%s:%c:%d:%d): Sending WDTR %x\n",
3088 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
3089 devinfo
->lun
, bus_width
);
3094 * Build a parallel protocol request message in our message
3095 * buffer based on the input parameters.
3098 ahc_construct_ppr(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
3099 u_int period
, u_int offset
, u_int bus_width
,
3103 period
= AHC_ASYNC_XFER_PERIOD
;
3104 ahc
->msgout_index
+= spi_populate_ppr_msg(
3105 ahc
->msgout_buf
+ ahc
->msgout_index
, period
, offset
,
3106 bus_width
, ppr_options
);
3107 ahc
->msgout_len
+= 8;
3109 printk("(%s:%c:%d:%d): Sending PPR bus_width %x, period %x, "
3110 "offset %x, ppr_options %x\n", ahc_name(ahc
),
3111 devinfo
->channel
, devinfo
->target
, devinfo
->lun
,
3112 bus_width
, period
, offset
, ppr_options
);
3117 * Clear any active message state.
3120 ahc_clear_msg_state(struct ahc_softc
*ahc
)
3122 ahc
->msgout_len
= 0;
3123 ahc
->msgin_index
= 0;
3124 ahc
->msg_type
= MSG_TYPE_NONE
;
3125 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0) {
3127 * The target didn't care to respond to our
3128 * message request, so clear ATN.
3130 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
3132 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
3133 ahc_outb(ahc
, SEQ_FLAGS2
,
3134 ahc_inb(ahc
, SEQ_FLAGS2
) & ~TARGET_MSG_PENDING
);
3138 ahc_handle_proto_violation(struct ahc_softc
*ahc
)
3140 struct ahc_devinfo devinfo
;
3148 ahc_fetch_devinfo(ahc
, &devinfo
);
3149 scbid
= ahc_inb(ahc
, SCB_TAG
);
3150 scb
= ahc_lookup_scb(ahc
, scbid
);
3151 seq_flags
= ahc_inb(ahc
, SEQ_FLAGS
);
3152 curphase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
3153 lastphase
= ahc_inb(ahc
, LASTPHASE
);
3154 if ((seq_flags
& NOT_IDENTIFIED
) != 0) {
3157 * The reconnecting target either did not send an
3158 * identify message, or did, but we didn't find an SCB
3161 ahc_print_devinfo(ahc
, &devinfo
);
3162 printk("Target did not send an IDENTIFY message. "
3163 "LASTPHASE = 0x%x.\n", lastphase
);
3165 } else if (scb
== NULL
) {
3167 * We don't seem to have an SCB active for this
3168 * transaction. Print an error and reset the bus.
3170 ahc_print_devinfo(ahc
, &devinfo
);
3171 printk("No SCB found during protocol violation\n");
3172 goto proto_violation_reset
;
3174 ahc_set_transaction_status(scb
, CAM_SEQUENCE_FAIL
);
3175 if ((seq_flags
& NO_CDB_SENT
) != 0) {
3176 ahc_print_path(ahc
, scb
);
3177 printk("No or incomplete CDB sent to device.\n");
3178 } else if ((ahc_inb(ahc
, SCB_CONTROL
) & STATUS_RCVD
) == 0) {
3180 * The target never bothered to provide status to
3181 * us prior to completing the command. Since we don't
3182 * know the disposition of this command, we must attempt
3183 * to abort it. Assert ATN and prepare to send an abort
3186 ahc_print_path(ahc
, scb
);
3187 printk("Completed command without status.\n");
3189 ahc_print_path(ahc
, scb
);
3190 printk("Unknown protocol violation.\n");
3191 ahc_dump_card_state(ahc
);
3194 if ((lastphase
& ~P_DATAIN_DT
) == 0
3195 || lastphase
== P_COMMAND
) {
3196 proto_violation_reset
:
3198 * Target either went directly to data/command
3199 * phase or didn't respond to our ATN.
3200 * The only safe thing to do is to blow
3201 * it away with a bus reset.
3203 found
= ahc_reset_channel(ahc
, 'A', TRUE
);
3204 printk("%s: Issued Channel %c Bus Reset. "
3205 "%d SCBs aborted\n", ahc_name(ahc
), 'A', found
);
3208 * Leave the selection hardware off in case
3209 * this abort attempt will affect yet to
3212 ahc_outb(ahc
, SCSISEQ
,
3213 ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
3214 ahc_assert_atn(ahc
);
3215 ahc_outb(ahc
, MSG_OUT
, HOST_MSG
);
3217 ahc_print_devinfo(ahc
, &devinfo
);
3218 ahc
->msgout_buf
[0] = MSG_ABORT_TASK
;
3219 ahc
->msgout_len
= 1;
3220 ahc
->msgout_index
= 0;
3221 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
3223 ahc_print_path(ahc
, scb
);
3224 scb
->flags
|= SCB_ABORT
;
3226 printk("Protocol violation %s. Attempting to abort.\n",
3227 ahc_lookup_phase_entry(curphase
)->phasemsg
);
3232 * Manual message loop handler.
3235 ahc_handle_message_phase(struct ahc_softc
*ahc
)
3237 struct ahc_devinfo devinfo
;
3241 ahc_fetch_devinfo(ahc
, &devinfo
);
3242 end_session
= FALSE
;
3243 bus_phase
= ahc_inb(ahc
, SCSISIGI
) & PHASE_MASK
;
3246 switch (ahc
->msg_type
) {
3247 case MSG_TYPE_INITIATOR_MSGOUT
:
3253 if (ahc
->msgout_len
== 0)
3254 panic("HOST_MSG_LOOP interrupt with no active message");
3257 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
3258 ahc_print_devinfo(ahc
, &devinfo
);
3259 printk("INITIATOR_MSG_OUT");
3262 phasemis
= bus_phase
!= P_MESGOUT
;
3265 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
3266 printk(" PHASEMIS %s\n",
3267 ahc_lookup_phase_entry(bus_phase
)
3271 if (bus_phase
== P_MESGIN
) {
3273 * Change gears and see if
3274 * this messages is of interest to
3275 * us or should be passed back to
3278 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
3279 ahc
->send_msg_perror
= FALSE
;
3280 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGIN
;
3281 ahc
->msgin_index
= 0;
3288 if (ahc
->send_msg_perror
) {
3289 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
3290 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
3292 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
3293 printk(" byte 0x%x\n", ahc
->send_msg_perror
);
3295 ahc_outb(ahc
, SCSIDATL
, MSG_PARITY_ERROR
);
3299 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
3302 * The target has requested a retry.
3303 * Re-assert ATN, reset our message index to
3306 ahc
->msgout_index
= 0;
3307 ahc_assert_atn(ahc
);
3310 lastbyte
= ahc
->msgout_index
== (ahc
->msgout_len
- 1);
3312 /* Last byte is signified by dropping ATN */
3313 ahc_outb(ahc
, CLRSINT1
, CLRATNO
);
3317 * Clear our interrupt status and present
3318 * the next byte on the bus.
3320 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
3322 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
3323 printk(" byte 0x%x\n",
3324 ahc
->msgout_buf
[ahc
->msgout_index
]);
3326 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
3329 case MSG_TYPE_INITIATOR_MSGIN
:
3335 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
3336 ahc_print_devinfo(ahc
, &devinfo
);
3337 printk("INITIATOR_MSG_IN");
3340 phasemis
= bus_phase
!= P_MESGIN
;
3343 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
3344 printk(" PHASEMIS %s\n",
3345 ahc_lookup_phase_entry(bus_phase
)
3349 ahc
->msgin_index
= 0;
3350 if (bus_phase
== P_MESGOUT
3351 && (ahc
->send_msg_perror
== TRUE
3352 || (ahc
->msgout_len
!= 0
3353 && ahc
->msgout_index
== 0))) {
3354 ahc
->msg_type
= MSG_TYPE_INITIATOR_MSGOUT
;
3361 /* Pull the byte in without acking it */
3362 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIBUSL
);
3364 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0)
3365 printk(" byte 0x%x\n",
3366 ahc
->msgin_buf
[ahc
->msgin_index
]);
3369 message_done
= ahc_parse_msg(ahc
, &devinfo
);
3373 * Clear our incoming message buffer in case there
3374 * is another message following this one.
3376 ahc
->msgin_index
= 0;
3379 * If this message illicited a response,
3380 * assert ATN so the target takes us to the
3381 * message out phase.
3383 if (ahc
->msgout_len
!= 0) {
3385 if ((ahc_debug
& AHC_SHOW_MESSAGES
) != 0) {
3386 ahc_print_devinfo(ahc
, &devinfo
);
3387 printk("Asserting ATN for response\n");
3390 ahc_assert_atn(ahc
);
3395 if (message_done
== MSGLOOP_TERMINATED
) {
3399 ahc_outb(ahc
, CLRSINT1
, CLRREQINIT
);
3400 ahc_inb(ahc
, SCSIDATL
);
3404 case MSG_TYPE_TARGET_MSGIN
:
3409 if (ahc
->msgout_len
== 0)
3410 panic("Target MSGIN with no active message");
3413 * If we interrupted a mesgout session, the initiator
3414 * will not know this until our first REQ. So, we
3415 * only honor mesgout requests after we've sent our
3418 if ((ahc_inb(ahc
, SCSISIGI
) & ATNI
) != 0
3419 && ahc
->msgout_index
> 0)
3420 msgout_request
= TRUE
;
3422 msgout_request
= FALSE
;
3424 if (msgout_request
) {
3427 * Change gears and see if
3428 * this messages is of interest to
3429 * us or should be passed back to
3432 ahc
->msg_type
= MSG_TYPE_TARGET_MSGOUT
;
3433 ahc_outb(ahc
, SCSISIGO
, P_MESGOUT
| BSYO
);
3434 ahc
->msgin_index
= 0;
3435 /* Dummy read to REQ for first byte */
3436 ahc_inb(ahc
, SCSIDATL
);
3437 ahc_outb(ahc
, SXFRCTL0
,
3438 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
3442 msgdone
= ahc
->msgout_index
== ahc
->msgout_len
;
3444 ahc_outb(ahc
, SXFRCTL0
,
3445 ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
3451 * Present the next byte on the bus.
3453 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
3454 ahc_outb(ahc
, SCSIDATL
, ahc
->msgout_buf
[ahc
->msgout_index
++]);
3457 case MSG_TYPE_TARGET_MSGOUT
:
3463 * The initiator signals that this is
3464 * the last byte by dropping ATN.
3466 lastbyte
= (ahc_inb(ahc
, SCSISIGI
) & ATNI
) == 0;
3469 * Read the latched byte, but turn off SPIOEN first
3470 * so that we don't inadvertently cause a REQ for the
3473 ahc_outb(ahc
, SXFRCTL0
, ahc_inb(ahc
, SXFRCTL0
) & ~SPIOEN
);
3474 ahc
->msgin_buf
[ahc
->msgin_index
] = ahc_inb(ahc
, SCSIDATL
);
3475 msgdone
= ahc_parse_msg(ahc
, &devinfo
);
3476 if (msgdone
== MSGLOOP_TERMINATED
) {
3478 * The message is *really* done in that it caused
3479 * us to go to bus free. The sequencer has already
3480 * been reset at this point, so pull the ejection
3489 * XXX Read spec about initiator dropping ATN too soon
3490 * and use msgdone to detect it.
3492 if (msgdone
== MSGLOOP_MSGCOMPLETE
) {
3493 ahc
->msgin_index
= 0;
3496 * If this message illicited a response, transition
3497 * to the Message in phase and send it.
3499 if (ahc
->msgout_len
!= 0) {
3500 ahc_outb(ahc
, SCSISIGO
, P_MESGIN
| BSYO
);
3501 ahc_outb(ahc
, SXFRCTL0
,
3502 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
3503 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
3504 ahc
->msgin_index
= 0;
3512 /* Ask for the next byte. */
3513 ahc_outb(ahc
, SXFRCTL0
,
3514 ahc_inb(ahc
, SXFRCTL0
) | SPIOEN
);
3520 panic("Unknown REQINIT message type");
3524 ahc_clear_msg_state(ahc
);
3525 ahc_outb(ahc
, RETURN_1
, EXIT_MSG_LOOP
);
3527 ahc_outb(ahc
, RETURN_1
, CONT_MSG_LOOP
);
3531 * See if we sent a particular extended message to the target.
3532 * If "full" is true, return true only if the target saw the full
3533 * message. If "full" is false, return true if the target saw at
3534 * least the first byte of the message.
3537 ahc_sent_msg(struct ahc_softc
*ahc
, ahc_msgtype type
, u_int msgval
, int full
)
3545 while (index
< ahc
->msgout_len
) {
3546 if (ahc
->msgout_buf
[index
] == MSG_EXTENDED
) {
3549 end_index
= index
+ 1 + ahc
->msgout_buf
[index
+ 1];
3550 if (ahc
->msgout_buf
[index
+2] == msgval
3551 && type
== AHCMSG_EXT
) {
3554 if (ahc
->msgout_index
> end_index
)
3556 } else if (ahc
->msgout_index
> index
)
3560 } else if (ahc
->msgout_buf
[index
] >= MSG_SIMPLE_TASK
3561 && ahc
->msgout_buf
[index
] <= MSG_IGN_WIDE_RESIDUE
) {
3563 /* Skip tag type and tag id or residue param*/
3566 /* Single byte message */
3567 if (type
== AHCMSG_1B
3568 && ahc
->msgout_buf
[index
] == msgval
3569 && ahc
->msgout_index
> index
)
3581 * Wait for a complete incoming message, parse it, and respond accordingly.
3584 ahc_parse_msg(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
3586 struct ahc_initiator_tinfo
*tinfo
;
3587 struct ahc_tmode_tstate
*tstate
;
3591 u_int targ_scsirate
;
3593 done
= MSGLOOP_IN_PROG
;
3596 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
, devinfo
->our_scsiid
,
3597 devinfo
->target
, &tstate
);
3598 targ_scsirate
= tinfo
->scsirate
;
3601 * Parse as much of the message as is available,
3602 * rejecting it if we don't support it. When
3603 * the entire message is available and has been
3604 * handled, return MSGLOOP_MSGCOMPLETE, indicating
3605 * that we have parsed an entire message.
3607 * In the case of extended messages, we accept the length
3608 * byte outright and perform more checking once we know the
3609 * extended message type.
3611 switch (ahc
->msgin_buf
[0]) {
3612 case MSG_DISCONNECT
:
3613 case MSG_SAVEDATAPOINTER
:
3614 case MSG_CMDCOMPLETE
:
3615 case MSG_RESTOREPOINTERS
:
3616 case MSG_IGN_WIDE_RESIDUE
:
3618 * End our message loop as these are messages
3619 * the sequencer handles on its own.
3621 done
= MSGLOOP_TERMINATED
;
3623 case MSG_MESSAGE_REJECT
:
3624 response
= ahc_handle_msg_reject(ahc
, devinfo
);
3627 done
= MSGLOOP_MSGCOMPLETE
;
3631 /* Wait for enough of the message to begin validation */
3632 if (ahc
->msgin_index
< 2)
3634 switch (ahc
->msgin_buf
[2]) {
3637 const struct ahc_syncrate
*syncrate
;
3643 if (ahc
->msgin_buf
[1] != MSG_EXT_SDTR_LEN
) {
3649 * Wait until we have both args before validating
3650 * and acting on this message.
3652 * Add one to MSG_EXT_SDTR_LEN to account for
3653 * the extended message preamble.
3655 if (ahc
->msgin_index
< (MSG_EXT_SDTR_LEN
+ 1))
3658 period
= ahc
->msgin_buf
[3];
3660 saved_offset
= offset
= ahc
->msgin_buf
[4];
3661 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3664 ahc_validate_offset(ahc
, tinfo
, syncrate
, &offset
,
3665 targ_scsirate
& WIDEXFER
,
3668 printk("(%s:%c:%d:%d): Received "
3669 "SDTR period %x, offset %x\n\t"
3670 "Filtered to period %x, offset %x\n",
3671 ahc_name(ahc
), devinfo
->channel
,
3672 devinfo
->target
, devinfo
->lun
,
3673 ahc
->msgin_buf
[3], saved_offset
,
3676 ahc_set_syncrate(ahc
, devinfo
,
3678 offset
, ppr_options
,
3679 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3683 * See if we initiated Sync Negotiation
3684 * and didn't have to fall down to async
3687 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, TRUE
)) {
3689 if (saved_offset
!= offset
) {
3690 /* Went too low - force async */
3695 * Send our own SDTR in reply
3698 && devinfo
->role
== ROLE_INITIATOR
) {
3699 printk("(%s:%c:%d:%d): Target "
3701 ahc_name(ahc
), devinfo
->channel
,
3702 devinfo
->target
, devinfo
->lun
);
3704 ahc
->msgout_index
= 0;
3705 ahc
->msgout_len
= 0;
3706 ahc_construct_sdtr(ahc
, devinfo
,
3708 ahc
->msgout_index
= 0;
3711 done
= MSGLOOP_MSGCOMPLETE
;
3718 u_int sending_reply
;
3720 sending_reply
= FALSE
;
3721 if (ahc
->msgin_buf
[1] != MSG_EXT_WDTR_LEN
) {
3727 * Wait until we have our arg before validating
3728 * and acting on this message.
3730 * Add one to MSG_EXT_WDTR_LEN to account for
3731 * the extended message preamble.
3733 if (ahc
->msgin_index
< (MSG_EXT_WDTR_LEN
+ 1))
3736 bus_width
= ahc
->msgin_buf
[3];
3737 saved_width
= bus_width
;
3738 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3741 printk("(%s:%c:%d:%d): Received WDTR "
3742 "%x filtered to %x\n",
3743 ahc_name(ahc
), devinfo
->channel
,
3744 devinfo
->target
, devinfo
->lun
,
3745 saved_width
, bus_width
);
3748 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, TRUE
)) {
3750 * Don't send a WDTR back to the
3751 * target, since we asked first.
3752 * If the width went higher than our
3753 * request, reject it.
3755 if (saved_width
> bus_width
) {
3757 printk("(%s:%c:%d:%d): requested %dBit "
3758 "transfers. Rejecting...\n",
3759 ahc_name(ahc
), devinfo
->channel
,
3760 devinfo
->target
, devinfo
->lun
,
3761 8 * (0x01 << bus_width
));
3766 * Send our own WDTR in reply
3769 && devinfo
->role
== ROLE_INITIATOR
) {
3770 printk("(%s:%c:%d:%d): Target "
3772 ahc_name(ahc
), devinfo
->channel
,
3773 devinfo
->target
, devinfo
->lun
);
3775 ahc
->msgout_index
= 0;
3776 ahc
->msgout_len
= 0;
3777 ahc_construct_wdtr(ahc
, devinfo
, bus_width
);
3778 ahc
->msgout_index
= 0;
3780 sending_reply
= TRUE
;
3783 * After a wide message, we are async, but
3784 * some devices don't seem to honor this portion
3785 * of the spec. Force a renegotiation of the
3786 * sync component of our transfer agreement even
3787 * if our goal is async. By updating our width
3788 * after forcing the negotiation, we avoid
3789 * renegotiating for width.
3791 ahc_update_neg_request(ahc
, devinfo
, tstate
,
3792 tinfo
, AHC_NEG_ALWAYS
);
3793 ahc_set_width(ahc
, devinfo
, bus_width
,
3794 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3796 if (sending_reply
== FALSE
&& reject
== FALSE
) {
3799 * We will always have an SDTR to send.
3801 ahc
->msgout_index
= 0;
3802 ahc
->msgout_len
= 0;
3803 ahc_build_transfer_msg(ahc
, devinfo
);
3804 ahc
->msgout_index
= 0;
3807 done
= MSGLOOP_MSGCOMPLETE
;
3812 const struct ahc_syncrate
*syncrate
;
3819 u_int saved_ppr_options
;
3821 if (ahc
->msgin_buf
[1] != MSG_EXT_PPR_LEN
) {
3827 * Wait until we have all args before validating
3828 * and acting on this message.
3830 * Add one to MSG_EXT_PPR_LEN to account for
3831 * the extended message preamble.
3833 if (ahc
->msgin_index
< (MSG_EXT_PPR_LEN
+ 1))
3836 period
= ahc
->msgin_buf
[3];
3837 offset
= ahc
->msgin_buf
[5];
3838 bus_width
= ahc
->msgin_buf
[6];
3839 saved_width
= bus_width
;
3840 ppr_options
= ahc
->msgin_buf
[7];
3842 * According to the spec, a DT only
3843 * period factor with no DT option
3844 * set implies async.
3846 if ((ppr_options
& MSG_EXT_PPR_DT_REQ
) == 0
3849 saved_ppr_options
= ppr_options
;
3850 saved_offset
= offset
;
3853 * Mask out any options we don't support
3854 * on any controller. Transfer options are
3855 * only available if we are negotiating wide.
3857 ppr_options
&= MSG_EXT_PPR_DT_REQ
;
3861 ahc_validate_width(ahc
, tinfo
, &bus_width
,
3863 syncrate
= ahc_devlimited_syncrate(ahc
, tinfo
, &period
,
3866 ahc_validate_offset(ahc
, tinfo
, syncrate
,
3870 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, TRUE
)) {
3872 * If we are unable to do any of the
3873 * requested options (we went too low),
3874 * then we'll have to reject the message.
3876 if (saved_width
> bus_width
3877 || saved_offset
!= offset
3878 || saved_ppr_options
!= ppr_options
) {
3887 if (devinfo
->role
!= ROLE_TARGET
)
3888 printk("(%s:%c:%d:%d): Target "
3890 ahc_name(ahc
), devinfo
->channel
,
3891 devinfo
->target
, devinfo
->lun
);
3893 printk("(%s:%c:%d:%d): Initiator "
3895 ahc_name(ahc
), devinfo
->channel
,
3896 devinfo
->target
, devinfo
->lun
);
3897 ahc
->msgout_index
= 0;
3898 ahc
->msgout_len
= 0;
3899 ahc_construct_ppr(ahc
, devinfo
, period
, offset
,
3900 bus_width
, ppr_options
);
3901 ahc
->msgout_index
= 0;
3905 printk("(%s:%c:%d:%d): Received PPR width %x, "
3906 "period %x, offset %x,options %x\n"
3907 "\tFiltered to width %x, period %x, "
3908 "offset %x, options %x\n",
3909 ahc_name(ahc
), devinfo
->channel
,
3910 devinfo
->target
, devinfo
->lun
,
3911 saved_width
, ahc
->msgin_buf
[3],
3912 saved_offset
, saved_ppr_options
,
3913 bus_width
, period
, offset
, ppr_options
);
3915 ahc_set_width(ahc
, devinfo
, bus_width
,
3916 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3918 ahc_set_syncrate(ahc
, devinfo
,
3920 offset
, ppr_options
,
3921 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
3923 done
= MSGLOOP_MSGCOMPLETE
;
3927 /* Unknown extended message. Reject it. */
3933 #ifdef AHC_TARGET_MODE
3934 case MSG_BUS_DEV_RESET
:
3935 ahc_handle_devreset(ahc
, devinfo
,
3937 "Bus Device Reset Received",
3938 /*verbose_level*/0);
3940 done
= MSGLOOP_TERMINATED
;
3944 case MSG_CLEAR_QUEUE
:
3948 /* Target mode messages */
3949 if (devinfo
->role
!= ROLE_TARGET
) {
3953 tag
= SCB_LIST_NULL
;
3954 if (ahc
->msgin_buf
[0] == MSG_ABORT_TAG
)
3955 tag
= ahc_inb(ahc
, INITIATOR_TAG
);
3956 ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
3957 devinfo
->lun
, tag
, ROLE_TARGET
,
3960 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
3961 if (tstate
!= NULL
) {
3962 struct ahc_tmode_lstate
* lstate
;
3964 lstate
= tstate
->enabled_luns
[devinfo
->lun
];
3965 if (lstate
!= NULL
) {
3966 ahc_queue_lstate_event(ahc
, lstate
,
3967 devinfo
->our_scsiid
,
3970 ahc_send_lstate_events(ahc
, lstate
);
3974 done
= MSGLOOP_TERMINATED
;
3978 case MSG_TERM_IO_PROC
:
3986 * Setup to reject the message.
3988 ahc
->msgout_index
= 0;
3989 ahc
->msgout_len
= 1;
3990 ahc
->msgout_buf
[0] = MSG_MESSAGE_REJECT
;
3991 done
= MSGLOOP_MSGCOMPLETE
;
3995 if (done
!= MSGLOOP_IN_PROG
&& !response
)
3996 /* Clear the outgoing message buffer */
3997 ahc
->msgout_len
= 0;
4003 * Process a message reject message.
4006 ahc_handle_msg_reject(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
4009 * What we care about here is if we had an
4010 * outstanding SDTR or WDTR message for this
4011 * target. If we did, this is a signal that
4012 * the target is refusing negotiation.
4015 struct ahc_initiator_tinfo
*tinfo
;
4016 struct ahc_tmode_tstate
*tstate
;
4021 scb_index
= ahc_inb(ahc
, SCB_TAG
);
4022 scb
= ahc_lookup_scb(ahc
, scb_index
);
4023 tinfo
= ahc_fetch_transinfo(ahc
, devinfo
->channel
,
4024 devinfo
->our_scsiid
,
4025 devinfo
->target
, &tstate
);
4026 /* Might be necessary */
4027 last_msg
= ahc_inb(ahc
, LAST_MSG
);
4029 if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_PPR
, /*full*/FALSE
)) {
4031 * Target does not support the PPR message.
4032 * Attempt to negotiate SPI-2 style.
4035 printk("(%s:%c:%d:%d): PPR Rejected. "
4036 "Trying WDTR/SDTR\n",
4037 ahc_name(ahc
), devinfo
->channel
,
4038 devinfo
->target
, devinfo
->lun
);
4040 tinfo
->goal
.ppr_options
= 0;
4041 tinfo
->curr
.transport_version
= 2;
4042 tinfo
->goal
.transport_version
= 2;
4043 ahc
->msgout_index
= 0;
4044 ahc
->msgout_len
= 0;
4045 ahc_build_transfer_msg(ahc
, devinfo
);
4046 ahc
->msgout_index
= 0;
4048 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_WDTR
, /*full*/FALSE
)) {
4050 /* note 8bit xfers */
4051 printk("(%s:%c:%d:%d): refuses WIDE negotiation. Using "
4052 "8bit transfers\n", ahc_name(ahc
),
4053 devinfo
->channel
, devinfo
->target
, devinfo
->lun
);
4054 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
4055 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
4058 * No need to clear the sync rate. If the target
4059 * did not accept the command, our syncrate is
4060 * unaffected. If the target started the negotiation,
4061 * but rejected our response, we already cleared the
4062 * sync rate before sending our WDTR.
4064 if (tinfo
->goal
.offset
!= tinfo
->curr
.offset
) {
4066 /* Start the sync negotiation */
4067 ahc
->msgout_index
= 0;
4068 ahc
->msgout_len
= 0;
4069 ahc_build_transfer_msg(ahc
, devinfo
);
4070 ahc
->msgout_index
= 0;
4073 } else if (ahc_sent_msg(ahc
, AHCMSG_EXT
, MSG_EXT_SDTR
, /*full*/FALSE
)) {
4074 /* note asynch xfers and clear flag */
4075 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
, /*period*/0,
4076 /*offset*/0, /*ppr_options*/0,
4077 AHC_TRANS_ACTIVE
|AHC_TRANS_GOAL
,
4079 printk("(%s:%c:%d:%d): refuses synchronous negotiation. "
4080 "Using asynchronous transfers\n",
4081 ahc_name(ahc
), devinfo
->channel
,
4082 devinfo
->target
, devinfo
->lun
);
4083 } else if ((scb
->hscb
->control
& MSG_SIMPLE_TASK
) != 0) {
4087 tag_type
= (scb
->hscb
->control
& MSG_SIMPLE_TASK
);
4089 if (tag_type
== MSG_SIMPLE_TASK
) {
4090 printk("(%s:%c:%d:%d): refuses tagged commands. "
4091 "Performing non-tagged I/O\n", ahc_name(ahc
),
4092 devinfo
->channel
, devinfo
->target
, devinfo
->lun
);
4093 ahc_set_tags(ahc
, scb
->io_ctx
, devinfo
, AHC_QUEUE_NONE
);
4096 printk("(%s:%c:%d:%d): refuses %s tagged commands. "
4097 "Performing simple queue tagged I/O only\n",
4098 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
4099 devinfo
->lun
, tag_type
== MSG_ORDERED_TASK
4100 ? "ordered" : "head of queue");
4101 ahc_set_tags(ahc
, scb
->io_ctx
, devinfo
, AHC_QUEUE_BASIC
);
4106 * Resend the identify for this CCB as the target
4107 * may believe that the selection is invalid otherwise.
4109 ahc_outb(ahc
, SCB_CONTROL
,
4110 ahc_inb(ahc
, SCB_CONTROL
) & mask
);
4111 scb
->hscb
->control
&= mask
;
4112 ahc_set_transaction_tag(scb
, /*enabled*/FALSE
,
4113 /*type*/MSG_SIMPLE_TASK
);
4114 ahc_outb(ahc
, MSG_OUT
, MSG_IDENTIFYFLAG
);
4115 ahc_assert_atn(ahc
);
4118 * This transaction is now at the head of
4119 * the untagged queue for this target.
4121 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
4122 struct scb_tailq
*untagged_q
;
4125 &(ahc
->untagged_queues
[devinfo
->target_offset
]);
4126 TAILQ_INSERT_HEAD(untagged_q
, scb
, links
.tqe
);
4127 scb
->flags
|= SCB_UNTAGGEDQ
;
4129 ahc_busy_tcl(ahc
, BUILD_TCL(scb
->hscb
->scsiid
, devinfo
->lun
),
4133 * Requeue all tagged commands for this target
4134 * currently in our possession so they can be
4135 * converted to untagged commands.
4137 ahc_search_qinfifo(ahc
, SCB_GET_TARGET(ahc
, scb
),
4138 SCB_GET_CHANNEL(ahc
, scb
),
4139 SCB_GET_LUN(scb
), /*tag*/SCB_LIST_NULL
,
4140 ROLE_INITIATOR
, CAM_REQUEUE_REQ
,
4144 * Otherwise, we ignore it.
4146 printk("%s:%c:%d: Message reject for %x -- ignored\n",
4147 ahc_name(ahc
), devinfo
->channel
, devinfo
->target
,
4154 * Process an ingnore wide residue message.
4157 ahc_handle_ign_wide_residue(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
)
4162 scb_index
= ahc_inb(ahc
, SCB_TAG
);
4163 scb
= ahc_lookup_scb(ahc
, scb_index
);
4165 * XXX Actually check data direction in the sequencer?
4166 * Perhaps add datadir to some spare bits in the hscb?
4168 if ((ahc_inb(ahc
, SEQ_FLAGS
) & DPHASE
) == 0
4169 || ahc_get_transfer_dir(scb
) != CAM_DIR_IN
) {
4171 * Ignore the message if we haven't
4172 * seen an appropriate data phase yet.
4176 * If the residual occurred on the last
4177 * transfer and the transfer request was
4178 * expected to end on an odd count, do
4179 * nothing. Otherwise, subtract a byte
4180 * and update the residual count accordingly.
4184 sgptr
= ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
4185 if ((sgptr
& SG_LIST_NULL
) != 0
4186 && (ahc_inb(ahc
, SCB_LUN
) & SCB_XFERLEN_ODD
) != 0) {
4188 * If the residual occurred on the last
4189 * transfer and the transfer request was
4190 * expected to end on an odd count, do
4194 struct ahc_dma_seg
*sg
;
4199 /* Pull in all of the sgptr */
4200 sgptr
= ahc_inl(ahc
, SCB_RESIDUAL_SGPTR
);
4201 data_cnt
= ahc_inl(ahc
, SCB_RESIDUAL_DATACNT
);
4203 if ((sgptr
& SG_LIST_NULL
) != 0) {
4205 * The residual data count is not updated
4206 * for the command run to completion case.
4207 * Explicitly zero the count.
4209 data_cnt
&= ~AHC_SG_LEN_MASK
;
4212 data_addr
= ahc_inl(ahc
, SHADDR
);
4216 sgptr
&= SG_PTR_MASK
;
4218 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
4221 * The residual sg ptr points to the next S/G
4222 * to load so we must go back one.
4225 sglen
= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
4226 if (sg
!= scb
->sg_list
4227 && sglen
< (data_cnt
& AHC_SG_LEN_MASK
)) {
4230 sglen
= ahc_le32toh(sg
->len
);
4232 * Preserve High Address and SG_LIST bits
4233 * while setting the count to 1.
4235 data_cnt
= 1 | (sglen
& (~AHC_SG_LEN_MASK
));
4236 data_addr
= ahc_le32toh(sg
->addr
)
4237 + (sglen
& AHC_SG_LEN_MASK
) - 1;
4240 * Increment sg so it points to the
4244 sgptr
= ahc_sg_virt_to_bus(scb
, sg
);
4246 ahc_outl(ahc
, SCB_RESIDUAL_SGPTR
, sgptr
);
4247 ahc_outl(ahc
, SCB_RESIDUAL_DATACNT
, data_cnt
);
4249 * Toggle the "oddness" of the transfer length
4250 * to handle this mid-transfer ignore wide
4251 * residue. This ensures that the oddness is
4252 * correct for subsequent data transfers.
4254 ahc_outb(ahc
, SCB_LUN
,
4255 ahc_inb(ahc
, SCB_LUN
) ^ SCB_XFERLEN_ODD
);
4262 * Reinitialize the data pointers for the active transfer
4263 * based on its current residual.
4266 ahc_reinitialize_dataptrs(struct ahc_softc
*ahc
)
4269 struct ahc_dma_seg
*sg
;
4275 scb_index
= ahc_inb(ahc
, SCB_TAG
);
4276 scb
= ahc_lookup_scb(ahc
, scb_index
);
4277 sgptr
= (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 3) << 24)
4278 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 2) << 16)
4279 | (ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
+ 1) << 8)
4280 | ahc_inb(ahc
, SCB_RESIDUAL_SGPTR
);
4282 sgptr
&= SG_PTR_MASK
;
4283 sg
= ahc_sg_bus_to_virt(scb
, sgptr
);
4285 /* The residual sg_ptr always points to the next sg */
4288 resid
= (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 2) << 16)
4289 | (ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
+ 1) << 8)
4290 | ahc_inb(ahc
, SCB_RESIDUAL_DATACNT
);
4292 dataptr
= ahc_le32toh(sg
->addr
)
4293 + (ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
)
4295 if ((ahc
->flags
& AHC_39BIT_ADDRESSING
) != 0) {
4298 dscommand1
= ahc_inb(ahc
, DSCOMMAND1
);
4299 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
| HADDLDSEL0
);
4300 ahc_outb(ahc
, HADDR
,
4301 (ahc_le32toh(sg
->len
) >> 24) & SG_HIGH_ADDR_BITS
);
4302 ahc_outb(ahc
, DSCOMMAND1
, dscommand1
);
4304 ahc_outb(ahc
, HADDR
+ 3, dataptr
>> 24);
4305 ahc_outb(ahc
, HADDR
+ 2, dataptr
>> 16);
4306 ahc_outb(ahc
, HADDR
+ 1, dataptr
>> 8);
4307 ahc_outb(ahc
, HADDR
, dataptr
);
4308 ahc_outb(ahc
, HCNT
+ 2, resid
>> 16);
4309 ahc_outb(ahc
, HCNT
+ 1, resid
>> 8);
4310 ahc_outb(ahc
, HCNT
, resid
);
4311 if ((ahc
->features
& AHC_ULTRA2
) == 0) {
4312 ahc_outb(ahc
, STCNT
+ 2, resid
>> 16);
4313 ahc_outb(ahc
, STCNT
+ 1, resid
>> 8);
4314 ahc_outb(ahc
, STCNT
, resid
);
4319 * Handle the effects of issuing a bus device reset message.
4322 ahc_handle_devreset(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
4323 cam_status status
, char *message
, int verbose_level
)
4325 #ifdef AHC_TARGET_MODE
4326 struct ahc_tmode_tstate
* tstate
;
4331 found
= ahc_abort_scbs(ahc
, devinfo
->target
, devinfo
->channel
,
4332 CAM_LUN_WILDCARD
, SCB_LIST_NULL
, devinfo
->role
,
4335 #ifdef AHC_TARGET_MODE
4337 * Send an immediate notify ccb to all target mord peripheral
4338 * drivers affected by this action.
4340 tstate
= ahc
->enabled_targets
[devinfo
->our_scsiid
];
4341 if (tstate
!= NULL
) {
4342 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
4343 struct ahc_tmode_lstate
* lstate
;
4345 lstate
= tstate
->enabled_luns
[lun
];
4349 ahc_queue_lstate_event(ahc
, lstate
, devinfo
->our_scsiid
,
4350 MSG_BUS_DEV_RESET
, /*arg*/0);
4351 ahc_send_lstate_events(ahc
, lstate
);
4357 * Go back to async/narrow transfers and renegotiate.
4359 ahc_set_width(ahc
, devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
4360 AHC_TRANS_CUR
, /*paused*/TRUE
);
4361 ahc_set_syncrate(ahc
, devinfo
, /*syncrate*/NULL
,
4362 /*period*/0, /*offset*/0, /*ppr_options*/0,
4363 AHC_TRANS_CUR
, /*paused*/TRUE
);
4365 if (status
!= CAM_SEL_TIMEOUT
)
4366 ahc_send_async(ahc
, devinfo
->channel
, devinfo
->target
,
4367 CAM_LUN_WILDCARD
, AC_SENT_BDR
);
4370 && (verbose_level
<= bootverbose
))
4371 printk("%s: %s on %c:%d. %d SCBs aborted\n", ahc_name(ahc
),
4372 message
, devinfo
->channel
, devinfo
->target
, found
);
4375 #ifdef AHC_TARGET_MODE
4377 ahc_setup_target_msgin(struct ahc_softc
*ahc
, struct ahc_devinfo
*devinfo
,
4382 * To facilitate adding multiple messages together,
4383 * each routine should increment the index and len
4384 * variables instead of setting them explicitly.
4386 ahc
->msgout_index
= 0;
4387 ahc
->msgout_len
= 0;
4389 if (scb
!= NULL
&& (scb
->flags
& SCB_AUTO_NEGOTIATE
) != 0)
4390 ahc_build_transfer_msg(ahc
, devinfo
);
4392 panic("ahc_intr: AWAITING target message with no message");
4394 ahc
->msgout_index
= 0;
4395 ahc
->msg_type
= MSG_TYPE_TARGET_MSGIN
;
4398 /**************************** Initialization **********************************/
4400 * Allocate a controller structure for a new device
4401 * and perform initial initializion.
4404 ahc_alloc(void *platform_arg
, char *name
)
4406 struct ahc_softc
*ahc
;
4410 ahc
= kmalloc(sizeof(*ahc
), GFP_ATOMIC
);
4412 printk("aic7xxx: cannot malloc softc!\n");
4417 ahc
= device_get_softc((device_t
)platform_arg
);
4419 memset(ahc
, 0, sizeof(*ahc
));
4420 ahc
->seep_config
= kmalloc(sizeof(*ahc
->seep_config
), GFP_ATOMIC
);
4421 if (ahc
->seep_config
== NULL
) {
4428 LIST_INIT(&ahc
->pending_scbs
);
4429 /* We don't know our unit number until the OSM sets it */
4432 ahc
->description
= NULL
;
4434 ahc
->channel_b
= 'B';
4435 ahc
->chip
= AHC_NONE
;
4436 ahc
->features
= AHC_FENONE
;
4437 ahc
->bugs
= AHC_BUGNONE
;
4438 ahc
->flags
= AHC_FNONE
;
4440 * Default to all error reporting enabled with the
4441 * sequencer operating at its fastest speed.
4442 * The bus attach code may modify this.
4444 ahc
->seqctl
= FASTMODE
;
4446 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++)
4447 TAILQ_INIT(&ahc
->untagged_queues
[i
]);
4448 if (ahc_platform_alloc(ahc
, platform_arg
) != 0) {
4456 ahc_softc_init(struct ahc_softc
*ahc
)
4459 /* The IRQMS bit is only valid on VL and EISA chips */
4460 if ((ahc
->chip
& AHC_PCI
) == 0)
4461 ahc
->unpause
= ahc_inb(ahc
, HCNTRL
) & IRQMS
;
4464 ahc
->pause
= ahc
->unpause
| PAUSE
;
4465 /* XXX The shared scb data stuff should be deprecated */
4466 if (ahc
->scb_data
== NULL
) {
4467 ahc
->scb_data
= kmalloc(sizeof(*ahc
->scb_data
), GFP_ATOMIC
);
4468 if (ahc
->scb_data
== NULL
)
4470 memset(ahc
->scb_data
, 0, sizeof(*ahc
->scb_data
));
4477 ahc_set_unit(struct ahc_softc
*ahc
, int unit
)
4483 ahc_set_name(struct ahc_softc
*ahc
, char *name
)
4485 if (ahc
->name
!= NULL
)
4491 ahc_free(struct ahc_softc
*ahc
)
4495 switch (ahc
->init_level
) {
4501 ahc_dmamap_unload(ahc
, ahc
->shared_data_dmat
,
4502 ahc
->shared_data_dmamap
);
4505 ahc_dmamem_free(ahc
, ahc
->shared_data_dmat
, ahc
->qoutfifo
,
4506 ahc
->shared_data_dmamap
);
4507 ahc_dmamap_destroy(ahc
, ahc
->shared_data_dmat
,
4508 ahc
->shared_data_dmamap
);
4511 ahc_dma_tag_destroy(ahc
, ahc
->shared_data_dmat
);
4514 ahc_dma_tag_destroy(ahc
, ahc
->buffer_dmat
);
4522 ahc_dma_tag_destroy(ahc
, ahc
->parent_dmat
);
4524 ahc_platform_free(ahc
);
4525 ahc_fini_scbdata(ahc
);
4526 for (i
= 0; i
< AHC_NUM_TARGETS
; i
++) {
4527 struct ahc_tmode_tstate
*tstate
;
4529 tstate
= ahc
->enabled_targets
[i
];
4530 if (tstate
!= NULL
) {
4531 #ifdef AHC_TARGET_MODE
4534 for (j
= 0; j
< AHC_NUM_LUNS
; j
++) {
4535 struct ahc_tmode_lstate
*lstate
;
4537 lstate
= tstate
->enabled_luns
[j
];
4538 if (lstate
!= NULL
) {
4539 xpt_free_path(lstate
->path
);
4547 #ifdef AHC_TARGET_MODE
4548 if (ahc
->black_hole
!= NULL
) {
4549 xpt_free_path(ahc
->black_hole
->path
);
4550 kfree(ahc
->black_hole
);
4553 if (ahc
->name
!= NULL
)
4555 if (ahc
->seep_config
!= NULL
)
4556 kfree(ahc
->seep_config
);
4564 ahc_shutdown(void *arg
)
4566 struct ahc_softc
*ahc
;
4569 ahc
= (struct ahc_softc
*)arg
;
4571 /* This will reset most registers to 0, but not all */
4572 ahc_reset(ahc
, /*reinit*/FALSE
);
4573 ahc_outb(ahc
, SCSISEQ
, 0);
4574 ahc_outb(ahc
, SXFRCTL0
, 0);
4575 ahc_outb(ahc
, DSPCISTATUS
, 0);
4577 for (i
= TARG_SCSIRATE
; i
< SCSICONF
; i
++)
4578 ahc_outb(ahc
, i
, 0);
4582 * Reset the controller and record some information about it
4583 * that is only available just after a reset. If "reinit" is
4584 * non-zero, this reset occurred after initial configuration
4585 * and the caller requests that the chip be fully reinitialized
4586 * to a runable state. Chip interrupts are *not* enabled after
4587 * a reinitialization. The caller must enable interrupts via
4588 * ahc_intr_enable().
4591 ahc_reset(struct ahc_softc
*ahc
, int reinit
)
4594 u_int sxfrctl1_a
, sxfrctl1_b
;
4599 * Preserve the value of the SXFRCTL1 register for all channels.
4600 * It contains settings that affect termination and we don't want
4601 * to disturb the integrity of the bus.
4605 if ((ahc
->chip
& AHC_CHIPID_MASK
) == AHC_AIC7770
) {
4609 * Save channel B's settings in case this chip
4610 * is setup for TWIN channel operation.
4612 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
4613 ahc_outb(ahc
, SBLKCTL
, sblkctl
| SELBUSB
);
4614 sxfrctl1_b
= ahc_inb(ahc
, SXFRCTL1
);
4615 ahc_outb(ahc
, SBLKCTL
, sblkctl
& ~SELBUSB
);
4617 sxfrctl1_a
= ahc_inb(ahc
, SXFRCTL1
);
4619 ahc_outb(ahc
, HCNTRL
, CHIPRST
| ahc
->pause
);
4622 * Ensure that the reset has finished. We delay 1000us
4623 * prior to reading the register to make sure the chip
4624 * has sufficiently completed its reset to handle register
4630 } while (--wait
&& !(ahc_inb(ahc
, HCNTRL
) & CHIPRSTACK
));
4633 printk("%s: WARNING - Failed chip reset! "
4634 "Trying to initialize anyway.\n", ahc_name(ahc
));
4636 ahc_outb(ahc
, HCNTRL
, ahc
->pause
);
4638 /* Determine channel configuration */
4639 sblkctl
= ahc_inb(ahc
, SBLKCTL
) & (SELBUSB
|SELWIDE
);
4640 /* No Twin Channel PCI cards */
4641 if ((ahc
->chip
& AHC_PCI
) != 0)
4642 sblkctl
&= ~SELBUSB
;
4645 /* Single Narrow Channel */
4649 ahc
->features
|= AHC_WIDE
;
4653 ahc
->features
|= AHC_TWIN
;
4656 printk(" Unsupported adapter type. Ignoring\n");
4663 * We must always initialize STPWEN to 1 before we
4664 * restore the saved values. STPWEN is initialized
4665 * to a tri-state condition which can only be cleared
4668 if ((ahc
->features
& AHC_TWIN
) != 0) {
4671 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
4672 ahc_outb(ahc
, SBLKCTL
, sblkctl
| SELBUSB
);
4673 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_b
);
4674 ahc_outb(ahc
, SBLKCTL
, sblkctl
& ~SELBUSB
);
4676 ahc_outb(ahc
, SXFRCTL1
, sxfrctl1_a
);
4681 * If a recovery action has forced a chip reset,
4682 * re-initialize the chip to our liking.
4684 error
= ahc
->bus_chip_init(ahc
);
4694 * Determine the number of SCBs available on the controller
4697 ahc_probe_scbs(struct ahc_softc
*ahc
) {
4700 for (i
= 0; i
< AHC_SCB_MAX
; i
++) {
4702 ahc_outb(ahc
, SCBPTR
, i
);
4703 ahc_outb(ahc
, SCB_BASE
, i
);
4704 if (ahc_inb(ahc
, SCB_BASE
) != i
)
4706 ahc_outb(ahc
, SCBPTR
, 0);
4707 if (ahc_inb(ahc
, SCB_BASE
) != 0)
4714 ahc_dmamap_cb(void *arg
, bus_dma_segment_t
*segs
, int nseg
, int error
)
4718 baddr
= (dma_addr_t
*)arg
;
4719 *baddr
= segs
->ds_addr
;
4723 ahc_build_free_scb_list(struct ahc_softc
*ahc
)
4729 if ((ahc
->flags
& AHC_LSCBS_ENABLED
) != 0)
4732 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
4735 ahc_outb(ahc
, SCBPTR
, i
);
4738 * Touch all SCB bytes to avoid parity errors
4739 * should one of our debugging routines read
4740 * an otherwise uninitiatlized byte.
4742 for (j
= 0; j
< scbsize
; j
++)
4743 ahc_outb(ahc
, SCB_BASE
+j
, 0xFF);
4745 /* Clear the control byte. */
4746 ahc_outb(ahc
, SCB_CONTROL
, 0);
4748 /* Set the next pointer */
4749 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
4750 ahc_outb(ahc
, SCB_NEXT
, i
+1);
4752 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4754 /* Make the tag number, SCSIID, and lun invalid */
4755 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
4756 ahc_outb(ahc
, SCB_SCSIID
, 0xFF);
4757 ahc_outb(ahc
, SCB_LUN
, 0xFF);
4760 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
4761 /* SCB 0 heads the free list. */
4762 ahc_outb(ahc
, FREE_SCBH
, 0);
4765 ahc_outb(ahc
, FREE_SCBH
, SCB_LIST_NULL
);
4768 /* Make sure that the last SCB terminates the free list */
4769 ahc_outb(ahc
, SCBPTR
, i
-1);
4770 ahc_outb(ahc
, SCB_NEXT
, SCB_LIST_NULL
);
4774 ahc_init_scbdata(struct ahc_softc
*ahc
)
4776 struct scb_data
*scb_data
;
4778 scb_data
= ahc
->scb_data
;
4779 SLIST_INIT(&scb_data
->free_scbs
);
4780 SLIST_INIT(&scb_data
->sg_maps
);
4782 /* Allocate SCB resources */
4783 scb_data
->scbarray
= kmalloc(sizeof(struct scb
) * AHC_SCB_MAX_ALLOC
, GFP_ATOMIC
);
4784 if (scb_data
->scbarray
== NULL
)
4786 memset(scb_data
->scbarray
, 0, sizeof(struct scb
) * AHC_SCB_MAX_ALLOC
);
4788 /* Determine the number of hardware SCBs and initialize them */
4790 scb_data
->maxhscbs
= ahc_probe_scbs(ahc
);
4791 if (ahc
->scb_data
->maxhscbs
== 0) {
4792 printk("%s: No SCB space found\n", ahc_name(ahc
));
4797 * Create our DMA tags. These tags define the kinds of device
4798 * accessible memory allocations and memory mappings we will
4799 * need to perform during normal operation.
4801 * Unless we need to further restrict the allocation, we rely
4802 * on the restrictions of the parent dmat, hence the common
4803 * use of MAXADDR and MAXSIZE.
4806 /* DMA tag for our hardware scb structures */
4807 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4808 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4809 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4810 /*highaddr*/BUS_SPACE_MAXADDR
,
4811 /*filter*/NULL
, /*filterarg*/NULL
,
4812 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
),
4814 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4815 /*flags*/0, &scb_data
->hscb_dmat
) != 0) {
4819 scb_data
->init_level
++;
4821 /* Allocation for our hscbs */
4822 if (ahc_dmamem_alloc(ahc
, scb_data
->hscb_dmat
,
4823 (void **)&scb_data
->hscbs
,
4824 BUS_DMA_NOWAIT
, &scb_data
->hscb_dmamap
) != 0) {
4828 scb_data
->init_level
++;
4830 /* And permanently map them */
4831 ahc_dmamap_load(ahc
, scb_data
->hscb_dmat
, scb_data
->hscb_dmamap
,
4833 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
),
4834 ahc_dmamap_cb
, &scb_data
->hscb_busaddr
, /*flags*/0);
4836 scb_data
->init_level
++;
4838 /* DMA tag for our sense buffers */
4839 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
4840 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4841 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4842 /*highaddr*/BUS_SPACE_MAXADDR
,
4843 /*filter*/NULL
, /*filterarg*/NULL
,
4844 AHC_SCB_MAX_ALLOC
* sizeof(struct scsi_sense_data
),
4846 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4847 /*flags*/0, &scb_data
->sense_dmat
) != 0) {
4851 scb_data
->init_level
++;
4854 if (ahc_dmamem_alloc(ahc
, scb_data
->sense_dmat
,
4855 (void **)&scb_data
->sense
,
4856 BUS_DMA_NOWAIT
, &scb_data
->sense_dmamap
) != 0) {
4860 scb_data
->init_level
++;
4862 /* And permanently map them */
4863 ahc_dmamap_load(ahc
, scb_data
->sense_dmat
, scb_data
->sense_dmamap
,
4865 AHC_SCB_MAX_ALLOC
* sizeof(struct scsi_sense_data
),
4866 ahc_dmamap_cb
, &scb_data
->sense_busaddr
, /*flags*/0);
4868 scb_data
->init_level
++;
4870 /* DMA tag for our S/G structures. We allocate in page sized chunks */
4871 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/8,
4872 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
4873 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
4874 /*highaddr*/BUS_SPACE_MAXADDR
,
4875 /*filter*/NULL
, /*filterarg*/NULL
,
4876 PAGE_SIZE
, /*nsegments*/1,
4877 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
4878 /*flags*/0, &scb_data
->sg_dmat
) != 0) {
4882 scb_data
->init_level
++;
4884 /* Perform initial CCB allocation */
4885 memset(scb_data
->hscbs
, 0,
4886 AHC_SCB_MAX_ALLOC
* sizeof(struct hardware_scb
));
4887 ahc_alloc_scbs(ahc
);
4889 if (scb_data
->numscbs
== 0) {
4890 printk("%s: ahc_init_scbdata - "
4891 "Unable to allocate initial scbs\n",
4897 * Reserve the next queued SCB.
4899 ahc
->next_queued_scb
= ahc_get_scb(ahc
);
4902 * Note that we were successful
4912 ahc_fini_scbdata(struct ahc_softc
*ahc
)
4914 struct scb_data
*scb_data
;
4916 scb_data
= ahc
->scb_data
;
4917 if (scb_data
== NULL
)
4920 switch (scb_data
->init_level
) {
4924 struct sg_map_node
*sg_map
;
4926 while ((sg_map
= SLIST_FIRST(&scb_data
->sg_maps
))!= NULL
) {
4927 SLIST_REMOVE_HEAD(&scb_data
->sg_maps
, links
);
4928 ahc_dmamap_unload(ahc
, scb_data
->sg_dmat
,
4930 ahc_dmamem_free(ahc
, scb_data
->sg_dmat
,
4935 ahc_dma_tag_destroy(ahc
, scb_data
->sg_dmat
);
4938 ahc_dmamap_unload(ahc
, scb_data
->sense_dmat
,
4939 scb_data
->sense_dmamap
);
4941 ahc_dmamem_free(ahc
, scb_data
->sense_dmat
, scb_data
->sense
,
4942 scb_data
->sense_dmamap
);
4943 ahc_dmamap_destroy(ahc
, scb_data
->sense_dmat
,
4944 scb_data
->sense_dmamap
);
4946 ahc_dma_tag_destroy(ahc
, scb_data
->sense_dmat
);
4948 ahc_dmamap_unload(ahc
, scb_data
->hscb_dmat
,
4949 scb_data
->hscb_dmamap
);
4951 ahc_dmamem_free(ahc
, scb_data
->hscb_dmat
, scb_data
->hscbs
,
4952 scb_data
->hscb_dmamap
);
4953 ahc_dmamap_destroy(ahc
, scb_data
->hscb_dmat
,
4954 scb_data
->hscb_dmamap
);
4956 ahc_dma_tag_destroy(ahc
, scb_data
->hscb_dmat
);
4961 if (scb_data
->scbarray
!= NULL
)
4962 kfree(scb_data
->scbarray
);
4966 ahc_alloc_scbs(struct ahc_softc
*ahc
)
4968 struct scb_data
*scb_data
;
4969 struct scb
*next_scb
;
4970 struct sg_map_node
*sg_map
;
4971 dma_addr_t physaddr
;
4972 struct ahc_dma_seg
*segs
;
4976 scb_data
= ahc
->scb_data
;
4977 if (scb_data
->numscbs
>= AHC_SCB_MAX_ALLOC
)
4978 /* Can't allocate any more */
4981 next_scb
= &scb_data
->scbarray
[scb_data
->numscbs
];
4983 sg_map
= kmalloc(sizeof(*sg_map
), GFP_ATOMIC
);
4988 /* Allocate S/G space for the next batch of SCBS */
4989 if (ahc_dmamem_alloc(ahc
, scb_data
->sg_dmat
,
4990 (void **)&sg_map
->sg_vaddr
,
4991 BUS_DMA_NOWAIT
, &sg_map
->sg_dmamap
) != 0) {
4996 SLIST_INSERT_HEAD(&scb_data
->sg_maps
, sg_map
, links
);
4998 ahc_dmamap_load(ahc
, scb_data
->sg_dmat
, sg_map
->sg_dmamap
,
4999 sg_map
->sg_vaddr
, PAGE_SIZE
, ahc_dmamap_cb
,
5000 &sg_map
->sg_physaddr
, /*flags*/0);
5002 segs
= sg_map
->sg_vaddr
;
5003 physaddr
= sg_map
->sg_physaddr
;
5005 newcount
= (PAGE_SIZE
/ (AHC_NSEG
* sizeof(struct ahc_dma_seg
)));
5006 newcount
= min(newcount
, (AHC_SCB_MAX_ALLOC
- scb_data
->numscbs
));
5007 for (i
= 0; i
< newcount
; i
++) {
5008 struct scb_platform_data
*pdata
;
5012 pdata
= kmalloc(sizeof(*pdata
), GFP_ATOMIC
);
5015 next_scb
->platform_data
= pdata
;
5016 next_scb
->sg_map
= sg_map
;
5017 next_scb
->sg_list
= segs
;
5019 * The sequencer always starts with the second entry.
5020 * The first entry is embedded in the scb.
5022 next_scb
->sg_list_phys
= physaddr
+ sizeof(struct ahc_dma_seg
);
5023 next_scb
->ahc_softc
= ahc
;
5024 next_scb
->flags
= SCB_FREE
;
5026 error
= ahc_dmamap_create(ahc
, ahc
->buffer_dmat
, /*flags*/0,
5031 next_scb
->hscb
= &scb_data
->hscbs
[scb_data
->numscbs
];
5032 next_scb
->hscb
->tag
= ahc
->scb_data
->numscbs
;
5033 SLIST_INSERT_HEAD(&ahc
->scb_data
->free_scbs
,
5034 next_scb
, links
.sle
);
5036 physaddr
+= (AHC_NSEG
* sizeof(struct ahc_dma_seg
));
5038 ahc
->scb_data
->numscbs
++;
5043 ahc_controller_info(struct ahc_softc
*ahc
, char *buf
)
5047 len
= sprintf(buf
, "%s: ", ahc_chip_names
[ahc
->chip
& AHC_CHIPID_MASK
]);
5049 if ((ahc
->features
& AHC_TWIN
) != 0)
5050 len
= sprintf(buf
, "Twin Channel, A SCSI Id=%d, "
5051 "B SCSI Id=%d, primary %c, ",
5052 ahc
->our_id
, ahc
->our_id_b
,
5053 (ahc
->flags
& AHC_PRIMARY_CHANNEL
) + 'A');
5059 if ((ahc
->features
& AHC_ULTRA
) != 0) {
5061 } else if ((ahc
->features
& AHC_DT
) != 0) {
5062 speed
= "Ultra160 ";
5063 } else if ((ahc
->features
& AHC_ULTRA2
) != 0) {
5066 if ((ahc
->features
& AHC_WIDE
) != 0) {
5071 len
= sprintf(buf
, "%s%s Channel %c, SCSI Id=%d, ",
5072 speed
, type
, ahc
->channel
, ahc
->our_id
);
5076 if ((ahc
->flags
& AHC_PAGESCBS
) != 0)
5077 sprintf(buf
, "%d/%d SCBs",
5078 ahc
->scb_data
->maxhscbs
, AHC_MAX_QUEUE
);
5080 sprintf(buf
, "%d SCBs", ahc
->scb_data
->maxhscbs
);
5084 ahc_chip_init(struct ahc_softc
*ahc
)
5090 u_int scsiseq_template
;
5093 ahc_outb(ahc
, SEQ_FLAGS
, 0);
5094 ahc_outb(ahc
, SEQ_FLAGS2
, 0);
5096 /* Set the SCSI Id, SXFRCTL0, SXFRCTL1, and SIMODE1, for both channels*/
5097 if (ahc
->features
& AHC_TWIN
) {
5100 * Setup Channel B first.
5102 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) | SELBUSB
);
5103 term
= (ahc
->flags
& AHC_TERM_ENB_B
) != 0 ? STPWEN
: 0;
5104 ahc_outb(ahc
, SCSIID
, ahc
->our_id_b
);
5105 scsi_conf
= ahc_inb(ahc
, SCSICONF
+ 1);
5106 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
5107 |term
|ahc
->seltime_b
|ENSTIMER
|ACTNEGEN
);
5108 if ((ahc
->features
& AHC_ULTRA2
) != 0)
5109 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
5110 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
5111 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
5113 /* Select Channel A */
5114 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~SELBUSB
);
5116 term
= (ahc
->flags
& AHC_TERM_ENB_A
) != 0 ? STPWEN
: 0;
5117 if ((ahc
->features
& AHC_ULTRA2
) != 0)
5118 ahc_outb(ahc
, SCSIID_ULTRA2
, ahc
->our_id
);
5120 ahc_outb(ahc
, SCSIID
, ahc
->our_id
);
5121 scsi_conf
= ahc_inb(ahc
, SCSICONF
);
5122 ahc_outb(ahc
, SXFRCTL1
, (scsi_conf
& (ENSPCHK
|STIMESEL
))
5124 |ENSTIMER
|ACTNEGEN
);
5125 if ((ahc
->features
& AHC_ULTRA2
) != 0)
5126 ahc_outb(ahc
, SIMODE0
, ahc_inb(ahc
, SIMODE0
)|ENIOERR
);
5127 ahc_outb(ahc
, SIMODE1
, ENSELTIMO
|ENSCSIRST
|ENSCSIPERR
);
5128 ahc_outb(ahc
, SXFRCTL0
, DFON
|SPIOEN
);
5130 /* There are no untagged SCBs active yet. */
5131 for (i
= 0; i
< 16; i
++) {
5132 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, 0));
5133 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5137 * The SCB based BTT allows an entry per
5138 * target and lun pair.
5140 for (lun
= 1; lun
< AHC_NUM_LUNS
; lun
++)
5141 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, lun
));
5145 /* All of our queues are empty */
5146 for (i
= 0; i
< 256; i
++)
5147 ahc
->qoutfifo
[i
] = SCB_LIST_NULL
;
5148 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_PREREAD
);
5150 for (i
= 0; i
< 256; i
++)
5151 ahc
->qinfifo
[i
] = SCB_LIST_NULL
;
5153 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
5154 ahc_outb(ahc
, TARGID
, 0);
5155 ahc_outb(ahc
, TARGID
+ 1, 0);
5159 * Tell the sequencer where it can find our arrays in memory.
5161 physaddr
= ahc
->scb_data
->hscb_busaddr
;
5162 ahc_outb(ahc
, HSCB_ADDR
, physaddr
& 0xFF);
5163 ahc_outb(ahc
, HSCB_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
5164 ahc_outb(ahc
, HSCB_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
5165 ahc_outb(ahc
, HSCB_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
5167 physaddr
= ahc
->shared_data_busaddr
;
5168 ahc_outb(ahc
, SHARED_DATA_ADDR
, physaddr
& 0xFF);
5169 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 1, (physaddr
>> 8) & 0xFF);
5170 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 2, (physaddr
>> 16) & 0xFF);
5171 ahc_outb(ahc
, SHARED_DATA_ADDR
+ 3, (physaddr
>> 24) & 0xFF);
5174 * Initialize the group code to command length table.
5175 * This overrides the values in TARG_SCSIRATE, so only
5176 * setup the table after we have processed that information.
5178 ahc_outb(ahc
, CMDSIZE_TABLE
, 5);
5179 ahc_outb(ahc
, CMDSIZE_TABLE
+ 1, 9);
5180 ahc_outb(ahc
, CMDSIZE_TABLE
+ 2, 9);
5181 ahc_outb(ahc
, CMDSIZE_TABLE
+ 3, 0);
5182 ahc_outb(ahc
, CMDSIZE_TABLE
+ 4, 15);
5183 ahc_outb(ahc
, CMDSIZE_TABLE
+ 5, 11);
5184 ahc_outb(ahc
, CMDSIZE_TABLE
+ 6, 0);
5185 ahc_outb(ahc
, CMDSIZE_TABLE
+ 7, 0);
5187 if ((ahc
->features
& AHC_HS_MAILBOX
) != 0)
5188 ahc_outb(ahc
, HS_MAILBOX
, 0);
5190 /* Tell the sequencer of our initial queue positions */
5191 if ((ahc
->features
& AHC_TARGETMODE
) != 0) {
5192 ahc
->tqinfifonext
= 1;
5193 ahc_outb(ahc
, KERNEL_TQINPOS
, ahc
->tqinfifonext
- 1);
5194 ahc_outb(ahc
, TQINPOS
, ahc
->tqinfifonext
);
5196 ahc
->qinfifonext
= 0;
5197 ahc
->qoutfifonext
= 0;
5198 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5199 ahc_outb(ahc
, QOFF_CTLSTA
, SCB_QSIZE_256
);
5200 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5201 ahc_outb(ahc
, SNSCB_QOFF
, ahc
->qinfifonext
);
5202 ahc_outb(ahc
, SDSCB_QOFF
, 0);
5204 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5205 ahc_outb(ahc
, QINPOS
, ahc
->qinfifonext
);
5206 ahc_outb(ahc
, QOUTPOS
, ahc
->qoutfifonext
);
5209 /* We don't have any waiting selections */
5210 ahc_outb(ahc
, WAITING_SCBH
, SCB_LIST_NULL
);
5212 /* Our disconnection list is empty too */
5213 ahc_outb(ahc
, DISCONNECTED_SCBH
, SCB_LIST_NULL
);
5215 /* Message out buffer starts empty */
5216 ahc_outb(ahc
, MSG_OUT
, MSG_NOOP
);
5219 * Setup the allowed SCSI Sequences based on operational mode.
5220 * If we are a target, we'll enable select in operations once
5221 * we've had a lun enabled.
5223 scsiseq_template
= ENSELO
|ENAUTOATNO
|ENAUTOATNP
;
5224 if ((ahc
->flags
& AHC_INITIATORROLE
) != 0)
5225 scsiseq_template
|= ENRSELI
;
5226 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq_template
);
5228 /* Initialize our list of free SCBs. */
5229 ahc_build_free_scb_list(ahc
);
5232 * Tell the sequencer which SCB will be the next one it receives.
5234 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
5237 * Load the Sequencer program and Enable the adapter
5241 printk("%s: Downloading Sequencer Program...",
5244 error
= ahc_loadseq(ahc
);
5248 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
5252 * Wait for up to 500ms for our transceivers
5253 * to settle. If the adapter does not have
5254 * a cable attached, the transceivers may
5255 * never settle, so don't complain if we
5259 (ahc_inb(ahc
, SBLKCTL
) & (ENAB40
|ENAB20
)) == 0 && wait
;
5268 * Start the board, ready for normal operation
5271 ahc_init(struct ahc_softc
*ahc
)
5279 size_t driver_data_size
;
5282 if ((ahc_debug
& AHC_DEBUG_SEQUENCER
) != 0)
5283 ahc
->flags
|= AHC_SEQUENCER_DEBUG
;
5286 #ifdef AHC_PRINT_SRAM
5287 printk("Scratch Ram:");
5288 for (i
= 0x20; i
< 0x5f; i
++) {
5289 if (((i
% 8) == 0) && (i
!= 0)) {
5292 printk (" 0x%x", ahc_inb(ahc
, i
));
5294 if ((ahc
->features
& AHC_MORE_SRAM
) != 0) {
5295 for (i
= 0x70; i
< 0x7f; i
++) {
5296 if (((i
% 8) == 0) && (i
!= 0)) {
5299 printk (" 0x%x", ahc_inb(ahc
, i
));
5304 * Reading uninitialized scratch ram may
5305 * generate parity errors.
5307 ahc_outb(ahc
, CLRINT
, CLRPARERR
);
5308 ahc_outb(ahc
, CLRINT
, CLRBRKADRINT
);
5313 * Assume we have a board at this stage and it has been reset.
5315 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0)
5316 ahc
->our_id
= ahc
->our_id_b
= 7;
5319 * Default to allowing initiator operations.
5321 ahc
->flags
|= AHC_INITIATORROLE
;
5324 * Only allow target mode features if this unit has them enabled.
5326 if ((AHC_TMODE_ENABLE
& (0x1 << ahc
->unit
)) == 0)
5327 ahc
->features
&= ~AHC_TARGETMODE
;
5330 /* DMA tag for mapping buffers into device visible space. */
5331 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
5332 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
5333 /*lowaddr*/ahc
->flags
& AHC_39BIT_ADDRESSING
5334 ? (dma_addr_t
)0x7FFFFFFFFFULL
5335 : BUS_SPACE_MAXADDR_32BIT
,
5336 /*highaddr*/BUS_SPACE_MAXADDR
,
5337 /*filter*/NULL
, /*filterarg*/NULL
,
5338 /*maxsize*/(AHC_NSEG
- 1) * PAGE_SIZE
,
5339 /*nsegments*/AHC_NSEG
,
5340 /*maxsegsz*/AHC_MAXTRANSFER_SIZE
,
5341 /*flags*/BUS_DMA_ALLOCNOW
,
5342 &ahc
->buffer_dmat
) != 0) {
5350 * DMA tag for our command fifos and other data in system memory
5351 * the card's sequencer must be able to access. For initiator
5352 * roles, we need to allocate space for the qinfifo and qoutfifo.
5353 * The qinfifo and qoutfifo are composed of 256 1 byte elements.
5354 * When providing for the target mode role, we must additionally
5355 * provide space for the incoming target command fifo and an extra
5356 * byte to deal with a dma bug in some chip versions.
5358 driver_data_size
= 2 * 256 * sizeof(uint8_t);
5359 if ((ahc
->features
& AHC_TARGETMODE
) != 0)
5360 driver_data_size
+= AHC_TMODE_CMDS
* sizeof(struct target_cmd
)
5361 + /*DMA WideOdd Bug Buffer*/1;
5362 if (ahc_dma_tag_create(ahc
, ahc
->parent_dmat
, /*alignment*/1,
5363 /*boundary*/BUS_SPACE_MAXADDR_32BIT
+ 1,
5364 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT
,
5365 /*highaddr*/BUS_SPACE_MAXADDR
,
5366 /*filter*/NULL
, /*filterarg*/NULL
,
5369 /*maxsegsz*/BUS_SPACE_MAXSIZE_32BIT
,
5370 /*flags*/0, &ahc
->shared_data_dmat
) != 0) {
5376 /* Allocation of driver data */
5377 if (ahc_dmamem_alloc(ahc
, ahc
->shared_data_dmat
,
5378 (void **)&ahc
->qoutfifo
,
5379 BUS_DMA_NOWAIT
, &ahc
->shared_data_dmamap
) != 0) {
5385 /* And permanently map it in */
5386 ahc_dmamap_load(ahc
, ahc
->shared_data_dmat
, ahc
->shared_data_dmamap
,
5387 ahc
->qoutfifo
, driver_data_size
, ahc_dmamap_cb
,
5388 &ahc
->shared_data_busaddr
, /*flags*/0);
5390 if ((ahc
->features
& AHC_TARGETMODE
) != 0) {
5391 ahc
->targetcmds
= (struct target_cmd
*)ahc
->qoutfifo
;
5392 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[AHC_TMODE_CMDS
];
5393 ahc
->dma_bug_buf
= ahc
->shared_data_busaddr
5394 + driver_data_size
- 1;
5395 /* All target command blocks start out invalid. */
5396 for (i
= 0; i
< AHC_TMODE_CMDS
; i
++)
5397 ahc
->targetcmds
[i
].cmd_valid
= 0;
5398 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_PREREAD
);
5399 ahc
->qoutfifo
= (uint8_t *)&ahc
->targetcmds
[256];
5401 ahc
->qinfifo
= &ahc
->qoutfifo
[256];
5405 /* Allocate SCB data now that buffer_dmat is initialized */
5406 if (ahc
->scb_data
->maxhscbs
== 0)
5407 if (ahc_init_scbdata(ahc
) != 0)
5411 * Allocate a tstate to house information for our
5412 * initiator presence on the bus as well as the user
5413 * data for any target mode initiator.
5415 if (ahc_alloc_tstate(ahc
, ahc
->our_id
, 'A') == NULL
) {
5416 printk("%s: unable to allocate ahc_tmode_tstate. "
5417 "Failing attach\n", ahc_name(ahc
));
5421 if ((ahc
->features
& AHC_TWIN
) != 0) {
5422 if (ahc_alloc_tstate(ahc
, ahc
->our_id_b
, 'B') == NULL
) {
5423 printk("%s: unable to allocate ahc_tmode_tstate. "
5424 "Failing attach\n", ahc_name(ahc
));
5429 if (ahc
->scb_data
->maxhscbs
< AHC_SCB_MAX_ALLOC
) {
5430 ahc
->flags
|= AHC_PAGESCBS
;
5432 ahc
->flags
&= ~AHC_PAGESCBS
;
5436 if (ahc_debug
& AHC_SHOW_MISC
) {
5437 printk("%s: hardware scb %u bytes; kernel scb %u bytes; "
5438 "ahc_dma %u bytes\n",
5440 (u_int
)sizeof(struct hardware_scb
),
5441 (u_int
)sizeof(struct scb
),
5442 (u_int
)sizeof(struct ahc_dma_seg
));
5444 #endif /* AHC_DEBUG */
5447 * Look at the information that board initialization or
5448 * the board bios has left us.
5450 if (ahc
->features
& AHC_TWIN
) {
5451 scsi_conf
= ahc_inb(ahc
, SCSICONF
+ 1);
5452 if ((scsi_conf
& RESET_SCSI
) != 0
5453 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
5454 ahc
->flags
|= AHC_RESET_BUS_B
;
5457 scsi_conf
= ahc_inb(ahc
, SCSICONF
);
5458 if ((scsi_conf
& RESET_SCSI
) != 0
5459 && (ahc
->flags
& AHC_INITIATORROLE
) != 0)
5460 ahc
->flags
|= AHC_RESET_BUS_A
;
5463 tagenable
= ALL_TARGETS_MASK
;
5465 /* Grab the disconnection disable table and invert it for our needs */
5466 if ((ahc
->flags
& AHC_USEDEFAULTS
) != 0) {
5467 printk("%s: Host Adapter Bios disabled. Using default SCSI "
5468 "device parameters\n", ahc_name(ahc
));
5469 ahc
->flags
|= AHC_EXTENDED_TRANS_A
|AHC_EXTENDED_TRANS_B
|
5470 AHC_TERM_ENB_A
|AHC_TERM_ENB_B
;
5471 discenable
= ALL_TARGETS_MASK
;
5472 if ((ahc
->features
& AHC_ULTRA
) != 0)
5473 ultraenb
= ALL_TARGETS_MASK
;
5475 discenable
= ~((ahc_inb(ahc
, DISC_DSB
+ 1) << 8)
5476 | ahc_inb(ahc
, DISC_DSB
));
5477 if ((ahc
->features
& (AHC_ULTRA
|AHC_ULTRA2
)) != 0)
5478 ultraenb
= (ahc_inb(ahc
, ULTRA_ENB
+ 1) << 8)
5479 | ahc_inb(ahc
, ULTRA_ENB
);
5482 if ((ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) == 0)
5485 for (i
= 0; i
<= max_targ
; i
++) {
5486 struct ahc_initiator_tinfo
*tinfo
;
5487 struct ahc_tmode_tstate
*tstate
;
5493 our_id
= ahc
->our_id
;
5495 if (i
> 7 && (ahc
->features
& AHC_TWIN
) != 0) {
5497 our_id
= ahc
->our_id_b
;
5500 tinfo
= ahc_fetch_transinfo(ahc
, channel
, our_id
,
5501 target_id
, &tstate
);
5502 /* Default to async narrow across the board */
5503 memset(tinfo
, 0, sizeof(*tinfo
));
5504 if (ahc
->flags
& AHC_USEDEFAULTS
) {
5505 if ((ahc
->features
& AHC_WIDE
) != 0)
5506 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
5509 * These will be truncated when we determine the
5510 * connection type we have with the target.
5512 tinfo
->user
.period
= ahc_syncrates
->period
;
5513 tinfo
->user
.offset
= MAX_OFFSET
;
5518 /* Take the settings leftover in scratch RAM. */
5519 scsirate
= ahc_inb(ahc
, TARG_SCSIRATE
+ i
);
5521 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
5525 if ((scsirate
& SOFS
) == 0x0F) {
5527 * Haven't negotiated yet,
5528 * so the format is different.
5530 scsirate
= (scsirate
& SXFR
) >> 4
5533 | (scsirate
& WIDEXFER
);
5534 offset
= MAX_OFFSET_ULTRA2
;
5536 offset
= ahc_inb(ahc
, TARG_OFFSET
+ i
);
5537 if ((scsirate
& ~WIDEXFER
) == 0 && offset
!= 0)
5538 /* Set to the lowest sync rate, 5MHz */
5540 maxsync
= AHC_SYNCRATE_ULTRA2
;
5541 if ((ahc
->features
& AHC_DT
) != 0)
5542 maxsync
= AHC_SYNCRATE_DT
;
5543 tinfo
->user
.period
=
5544 ahc_find_period(ahc
, scsirate
, maxsync
);
5546 tinfo
->user
.period
= 0;
5548 tinfo
->user
.offset
= MAX_OFFSET
;
5549 if ((scsirate
& SXFR_ULTRA2
) <= 8/*10MHz*/
5550 && (ahc
->features
& AHC_DT
) != 0)
5551 tinfo
->user
.ppr_options
=
5553 } else if ((scsirate
& SOFS
) != 0) {
5554 if ((scsirate
& SXFR
) == 0x40
5555 && (ultraenb
& mask
) != 0) {
5556 /* Treat 10MHz as a non-ultra speed */
5560 tinfo
->user
.period
=
5561 ahc_find_period(ahc
, scsirate
,
5563 ? AHC_SYNCRATE_ULTRA
5564 : AHC_SYNCRATE_FAST
);
5565 if (tinfo
->user
.period
!= 0)
5566 tinfo
->user
.offset
= MAX_OFFSET
;
5568 if (tinfo
->user
.period
== 0)
5569 tinfo
->user
.offset
= 0;
5570 if ((scsirate
& WIDEXFER
) != 0
5571 && (ahc
->features
& AHC_WIDE
) != 0)
5572 tinfo
->user
.width
= MSG_EXT_WDTR_BUS_16_BIT
;
5573 tinfo
->user
.protocol_version
= 4;
5574 if ((ahc
->features
& AHC_DT
) != 0)
5575 tinfo
->user
.transport_version
= 3;
5577 tinfo
->user
.transport_version
= 2;
5578 tinfo
->goal
.protocol_version
= 2;
5579 tinfo
->goal
.transport_version
= 2;
5580 tinfo
->curr
.protocol_version
= 2;
5581 tinfo
->curr
.transport_version
= 2;
5583 tstate
->ultraenb
= 0;
5585 ahc
->user_discenable
= discenable
;
5586 ahc
->user_tagenable
= tagenable
;
5588 return (ahc
->bus_chip_init(ahc
));
5592 ahc_intr_enable(struct ahc_softc
*ahc
, int enable
)
5596 hcntrl
= ahc_inb(ahc
, HCNTRL
);
5598 ahc
->pause
&= ~INTEN
;
5599 ahc
->unpause
&= ~INTEN
;
5602 ahc
->pause
|= INTEN
;
5603 ahc
->unpause
|= INTEN
;
5605 ahc_outb(ahc
, HCNTRL
, hcntrl
);
5609 * Ensure that the card is paused in a location
5610 * outside of all critical sections and that all
5611 * pending work is completed prior to returning.
5612 * This routine should only be called from outside
5613 * an interrupt context.
5616 ahc_pause_and_flushwork(struct ahc_softc
*ahc
)
5623 ahc
->flags
|= AHC_ALL_INTERRUPTS
;
5629 * Give the sequencer some time to service
5630 * any active selections.
5637 ahc_outb(ahc
, SCSISEQ
, ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
);
5638 intstat
= ahc_inb(ahc
, INTSTAT
);
5639 if ((intstat
& INT_PEND
) == 0) {
5640 ahc_clear_critical_section(ahc
);
5641 intstat
= ahc_inb(ahc
, INTSTAT
);
5644 && (intstat
!= 0xFF || (ahc
->features
& AHC_REMOVABLE
) == 0)
5645 && ((intstat
& INT_PEND
) != 0
5646 || (ahc_inb(ahc
, SSTAT0
) & (SELDO
|SELINGO
)) != 0));
5647 if (maxloops
== 0) {
5648 printk("Infinite interrupt loop, INTSTAT = %x",
5649 ahc_inb(ahc
, INTSTAT
));
5651 ahc_platform_flushwork(ahc
);
5652 ahc
->flags
&= ~AHC_ALL_INTERRUPTS
;
5657 ahc_suspend(struct ahc_softc
*ahc
)
5660 ahc_pause_and_flushwork(ahc
);
5662 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
) {
5667 #ifdef AHC_TARGET_MODE
5669 * XXX What about ATIOs that have not yet been serviced?
5670 * Perhaps we should just refuse to be suspended if we
5671 * are acting in a target role.
5673 if (ahc
->pending_device
!= NULL
) {
5683 ahc_resume(struct ahc_softc
*ahc
)
5686 ahc_reset(ahc
, /*reinit*/TRUE
);
5687 ahc_intr_enable(ahc
, TRUE
);
5692 /************************** Busy Target Table *********************************/
5694 * Return the untagged transaction id for a given target/channel lun.
5695 * Optionally, clear the entry.
5698 ahc_index_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5701 u_int target_offset
;
5703 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5706 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5707 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5708 scbid
= ahc_inb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
));
5709 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5711 target_offset
= TCL_TARGET_OFFSET(tcl
);
5712 scbid
= ahc_inb(ahc
, BUSY_TARGETS
+ target_offset
);
5719 ahc_unbusy_tcl(struct ahc_softc
*ahc
, u_int tcl
)
5721 u_int target_offset
;
5723 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5726 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5727 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5728 ahc_outb(ahc
, SCB_64_BTT
+TCL_TARGET_OFFSET(tcl
), SCB_LIST_NULL
);
5729 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5731 target_offset
= TCL_TARGET_OFFSET(tcl
);
5732 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, SCB_LIST_NULL
);
5737 ahc_busy_tcl(struct ahc_softc
*ahc
, u_int tcl
, u_int scbid
)
5739 u_int target_offset
;
5741 if ((ahc
->flags
& AHC_SCB_BTT
) != 0) {
5744 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
5745 ahc_outb(ahc
, SCBPTR
, TCL_LUN(tcl
));
5746 ahc_outb(ahc
, SCB_64_BTT
+ TCL_TARGET_OFFSET(tcl
), scbid
);
5747 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
5749 target_offset
= TCL_TARGET_OFFSET(tcl
);
5750 ahc_outb(ahc
, BUSY_TARGETS
+ target_offset
, scbid
);
5754 /************************** SCB and SCB queue management **********************/
5756 ahc_match_scb(struct ahc_softc
*ahc
, struct scb
*scb
, int target
,
5757 char channel
, int lun
, u_int tag
, role_t role
)
5759 int targ
= SCB_GET_TARGET(ahc
, scb
);
5760 char chan
= SCB_GET_CHANNEL(ahc
, scb
);
5761 int slun
= SCB_GET_LUN(scb
);
5764 match
= ((chan
== channel
) || (channel
== ALL_CHANNELS
));
5766 match
= ((targ
== target
) || (target
== CAM_TARGET_WILDCARD
));
5768 match
= ((lun
== slun
) || (lun
== CAM_LUN_WILDCARD
));
5770 #ifdef AHC_TARGET_MODE
5773 group
= XPT_FC_GROUP(scb
->io_ctx
->ccb_h
.func_code
);
5774 if (role
== ROLE_INITIATOR
) {
5775 match
= (group
!= XPT_FC_GROUP_TMODE
)
5776 && ((tag
== scb
->hscb
->tag
)
5777 || (tag
== SCB_LIST_NULL
));
5778 } else if (role
== ROLE_TARGET
) {
5779 match
= (group
== XPT_FC_GROUP_TMODE
)
5780 && ((tag
== scb
->io_ctx
->csio
.tag_id
)
5781 || (tag
== SCB_LIST_NULL
));
5783 #else /* !AHC_TARGET_MODE */
5784 match
= ((tag
== scb
->hscb
->tag
) || (tag
== SCB_LIST_NULL
));
5785 #endif /* AHC_TARGET_MODE */
5792 ahc_freeze_devq(struct ahc_softc
*ahc
, struct scb
*scb
)
5798 target
= SCB_GET_TARGET(ahc
, scb
);
5799 lun
= SCB_GET_LUN(scb
);
5800 channel
= SCB_GET_CHANNEL(ahc
, scb
);
5802 ahc_search_qinfifo(ahc
, target
, channel
, lun
,
5803 /*tag*/SCB_LIST_NULL
, ROLE_UNKNOWN
,
5804 CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
5806 ahc_platform_freeze_devq(ahc
, scb
);
5810 ahc_qinfifo_requeue_tail(struct ahc_softc
*ahc
, struct scb
*scb
)
5812 struct scb
*prev_scb
;
5815 if (ahc_qinfifo_count(ahc
) != 0) {
5819 prev_pos
= ahc
->qinfifonext
- 1;
5820 prev_tag
= ahc
->qinfifo
[prev_pos
];
5821 prev_scb
= ahc_lookup_scb(ahc
, prev_tag
);
5823 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5824 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5825 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5827 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5832 ahc_qinfifo_requeue(struct ahc_softc
*ahc
, struct scb
*prev_scb
,
5835 if (prev_scb
== NULL
) {
5836 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5838 prev_scb
->hscb
->next
= scb
->hscb
->tag
;
5839 ahc_sync_scb(ahc
, prev_scb
,
5840 BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5842 ahc
->qinfifo
[ahc
->qinfifonext
++] = scb
->hscb
->tag
;
5843 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5844 ahc_sync_scb(ahc
, scb
, BUS_DMASYNC_PREREAD
|BUS_DMASYNC_PREWRITE
);
5848 ahc_qinfifo_count(struct ahc_softc
*ahc
)
5853 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5854 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
5855 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
5857 qinpos
= ahc_inb(ahc
, QINPOS
);
5858 diff
= ahc
->qinfifonext
- qinpos
;
5863 ahc_search_qinfifo(struct ahc_softc
*ahc
, int target
, char channel
,
5864 int lun
, u_int tag
, role_t role
, uint32_t status
,
5865 ahc_search_action action
)
5868 struct scb
*prev_scb
;
5878 qintail
= ahc
->qinfifonext
;
5879 have_qregs
= (ahc
->features
& AHC_QUEUE_REGS
) != 0;
5881 qinstart
= ahc_inb(ahc
, SNSCB_QOFF
);
5882 ahc_outb(ahc
, SNSCB_QOFF
, qinstart
);
5884 qinstart
= ahc_inb(ahc
, QINPOS
);
5889 if (action
== SEARCH_COMPLETE
) {
5891 * Don't attempt to run any queued untagged transactions
5892 * until we are done with the abort process.
5894 ahc_freeze_untagged_queues(ahc
);
5898 * Start with an empty queue. Entries that are not chosen
5899 * for removal will be re-added to the queue as we go.
5901 ahc
->qinfifonext
= qinpos
;
5902 ahc_outb(ahc
, NEXT_QUEUED_SCB
, ahc
->next_queued_scb
->hscb
->tag
);
5904 while (qinpos
!= qintail
) {
5905 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinpos
]);
5907 printk("qinpos = %d, SCB index = %d\n",
5908 qinpos
, ahc
->qinfifo
[qinpos
]);
5912 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
, tag
, role
)) {
5914 * We found an scb that needs to be acted on.
5918 case SEARCH_COMPLETE
:
5923 ostat
= ahc_get_transaction_status(scb
);
5924 if (ostat
== CAM_REQ_INPROG
)
5925 ahc_set_transaction_status(scb
, status
);
5926 cstat
= ahc_get_transaction_status(scb
);
5927 if (cstat
!= CAM_REQ_CMP
)
5928 ahc_freeze_scb(scb
);
5929 if ((scb
->flags
& SCB_ACTIVE
) == 0)
5930 printk("Inactive SCB in qinfifo\n");
5938 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5943 ahc_qinfifo_requeue(ahc
, prev_scb
, scb
);
5949 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
5950 ahc_outb(ahc
, HNSCB_QOFF
, ahc
->qinfifonext
);
5952 ahc_outb(ahc
, KERNEL_QINPOS
, ahc
->qinfifonext
);
5955 if (action
!= SEARCH_COUNT
5957 && (qinstart
!= ahc
->qinfifonext
)) {
5959 * The sequencer may be in the process of dmaing
5960 * down the SCB at the beginning of the queue.
5961 * This could be problematic if either the first,
5962 * or the second SCB is removed from the queue
5963 * (the first SCB includes a pointer to the "next"
5964 * SCB to dma). If we have removed any entries, swap
5965 * the first element in the queue with the next HSCB
5966 * so the sequencer will notice that NEXT_QUEUED_SCB
5967 * has changed during its dma attempt and will retry
5970 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qinstart
]);
5973 printk("found = %d, qinstart = %d, qinfifionext = %d\n",
5974 found
, qinstart
, ahc
->qinfifonext
);
5975 panic("First/Second Qinfifo fixup\n");
5978 * ahc_swap_with_next_hscb forces our next pointer to
5979 * point to the reserved SCB for future commands. Save
5980 * and restore our original next pointer to maintain
5983 next
= scb
->hscb
->next
;
5984 ahc
->scb_data
->scbindex
[scb
->hscb
->tag
] = NULL
;
5985 ahc_swap_with_next_hscb(ahc
, scb
);
5986 scb
->hscb
->next
= next
;
5987 ahc
->qinfifo
[qinstart
] = scb
->hscb
->tag
;
5989 /* Tell the card about the new head of the qinfifo. */
5990 ahc_outb(ahc
, NEXT_QUEUED_SCB
, scb
->hscb
->tag
);
5992 /* Fixup the tail "next" pointer. */
5993 qintail
= ahc
->qinfifonext
- 1;
5994 scb
= ahc_lookup_scb(ahc
, ahc
->qinfifo
[qintail
]);
5995 scb
->hscb
->next
= ahc
->next_queued_scb
->hscb
->tag
;
5999 * Search waiting for selection list.
6001 curscbptr
= ahc_inb(ahc
, SCBPTR
);
6002 next
= ahc_inb(ahc
, WAITING_SCBH
); /* Start at head of list. */
6003 prev
= SCB_LIST_NULL
;
6005 while (next
!= SCB_LIST_NULL
) {
6008 ahc_outb(ahc
, SCBPTR
, next
);
6009 scb_index
= ahc_inb(ahc
, SCB_TAG
);
6010 if (scb_index
>= ahc
->scb_data
->numscbs
) {
6011 printk("Waiting List inconsistency. "
6012 "SCB index == %d, yet numscbs == %d.",
6013 scb_index
, ahc
->scb_data
->numscbs
);
6014 ahc_dump_card_state(ahc
);
6015 panic("for safety");
6017 scb
= ahc_lookup_scb(ahc
, scb_index
);
6019 printk("scb_index = %d, next = %d\n",
6021 panic("Waiting List traversal\n");
6023 if (ahc_match_scb(ahc
, scb
, target
, channel
,
6024 lun
, SCB_LIST_NULL
, role
)) {
6026 * We found an scb that needs to be acted on.
6030 case SEARCH_COMPLETE
:
6035 ostat
= ahc_get_transaction_status(scb
);
6036 if (ostat
== CAM_REQ_INPROG
)
6037 ahc_set_transaction_status(scb
,
6039 cstat
= ahc_get_transaction_status(scb
);
6040 if (cstat
!= CAM_REQ_CMP
)
6041 ahc_freeze_scb(scb
);
6042 if ((scb
->flags
& SCB_ACTIVE
) == 0)
6043 printk("Inactive SCB in Waiting List\n");
6048 next
= ahc_rem_wscb(ahc
, next
, prev
);
6052 next
= ahc_inb(ahc
, SCB_NEXT
);
6058 next
= ahc_inb(ahc
, SCB_NEXT
);
6061 ahc_outb(ahc
, SCBPTR
, curscbptr
);
6063 found
+= ahc_search_untagged_queues(ahc
, /*ahc_io_ctx_t*/NULL
, target
,
6064 channel
, lun
, status
, action
);
6066 if (action
== SEARCH_COMPLETE
)
6067 ahc_release_untagged_queues(ahc
);
6072 ahc_search_untagged_queues(struct ahc_softc
*ahc
, ahc_io_ctx_t ctx
,
6073 int target
, char channel
, int lun
, uint32_t status
,
6074 ahc_search_action action
)
6081 if (action
== SEARCH_COMPLETE
) {
6083 * Don't attempt to run any queued untagged transactions
6084 * until we are done with the abort process.
6086 ahc_freeze_untagged_queues(ahc
);
6091 if ((ahc
->flags
& AHC_SCB_BTT
) == 0) {
6094 if (target
!= CAM_TARGET_WILDCARD
) {
6105 for (; i
< maxtarget
; i
++) {
6106 struct scb_tailq
*untagged_q
;
6107 struct scb
*next_scb
;
6109 untagged_q
= &(ahc
->untagged_queues
[i
]);
6110 next_scb
= TAILQ_FIRST(untagged_q
);
6111 while (next_scb
!= NULL
) {
6114 next_scb
= TAILQ_NEXT(scb
, links
.tqe
);
6117 * The head of the list may be the currently
6118 * active untagged command for a device.
6119 * We're only searching for commands that
6120 * have not been started. A transaction
6121 * marked active but still in the qinfifo
6122 * is removed by the qinfifo scanning code
6125 if ((scb
->flags
& SCB_ACTIVE
) != 0)
6128 if (ahc_match_scb(ahc
, scb
, target
, channel
, lun
,
6129 SCB_LIST_NULL
, ROLE_INITIATOR
) == 0
6130 || (ctx
!= NULL
&& ctx
!= scb
->io_ctx
))
6134 * We found an scb that needs to be acted on.
6138 case SEARCH_COMPLETE
:
6143 ostat
= ahc_get_transaction_status(scb
);
6144 if (ostat
== CAM_REQ_INPROG
)
6145 ahc_set_transaction_status(scb
, status
);
6146 cstat
= ahc_get_transaction_status(scb
);
6147 if (cstat
!= CAM_REQ_CMP
)
6148 ahc_freeze_scb(scb
);
6149 if ((scb
->flags
& SCB_ACTIVE
) == 0)
6150 printk("Inactive SCB in untaggedQ\n");
6155 scb
->flags
&= ~SCB_UNTAGGEDQ
;
6156 TAILQ_REMOVE(untagged_q
, scb
, links
.tqe
);
6164 if (action
== SEARCH_COMPLETE
)
6165 ahc_release_untagged_queues(ahc
);
6170 ahc_search_disc_list(struct ahc_softc
*ahc
, int target
, char channel
,
6171 int lun
, u_int tag
, int stop_on_first
, int remove
,
6181 next
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
6182 prev
= SCB_LIST_NULL
;
6185 /* restore this when we're done */
6186 active_scb
= ahc_inb(ahc
, SCBPTR
);
6188 /* Silence compiler */
6189 active_scb
= SCB_LIST_NULL
;
6191 while (next
!= SCB_LIST_NULL
) {
6194 ahc_outb(ahc
, SCBPTR
, next
);
6195 scb_index
= ahc_inb(ahc
, SCB_TAG
);
6196 if (scb_index
>= ahc
->scb_data
->numscbs
) {
6197 printk("Disconnected List inconsistency. "
6198 "SCB index == %d, yet numscbs == %d.",
6199 scb_index
, ahc
->scb_data
->numscbs
);
6200 ahc_dump_card_state(ahc
);
6201 panic("for safety");
6205 panic("Disconnected List Loop. "
6206 "cur SCBPTR == %x, prev SCBPTR == %x.",
6209 scbp
= ahc_lookup_scb(ahc
, scb_index
);
6210 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
,
6211 tag
, ROLE_INITIATOR
)) {
6215 ahc_rem_scb_from_disc_list(ahc
, prev
, next
);
6218 next
= ahc_inb(ahc
, SCB_NEXT
);
6224 next
= ahc_inb(ahc
, SCB_NEXT
);
6228 ahc_outb(ahc
, SCBPTR
, active_scb
);
6233 * Remove an SCB from the on chip list of disconnected transactions.
6234 * This is empty/unused if we are not performing SCB paging.
6237 ahc_rem_scb_from_disc_list(struct ahc_softc
*ahc
, u_int prev
, u_int scbptr
)
6241 ahc_outb(ahc
, SCBPTR
, scbptr
);
6242 next
= ahc_inb(ahc
, SCB_NEXT
);
6244 ahc_outb(ahc
, SCB_CONTROL
, 0);
6246 ahc_add_curscb_to_free_list(ahc
);
6248 if (prev
!= SCB_LIST_NULL
) {
6249 ahc_outb(ahc
, SCBPTR
, prev
);
6250 ahc_outb(ahc
, SCB_NEXT
, next
);
6252 ahc_outb(ahc
, DISCONNECTED_SCBH
, next
);
6258 * Add the SCB as selected by SCBPTR onto the on chip list of
6259 * free hardware SCBs. This list is empty/unused if we are not
6260 * performing SCB paging.
6263 ahc_add_curscb_to_free_list(struct ahc_softc
*ahc
)
6266 * Invalidate the tag so that our abort
6267 * routines don't think it's active.
6269 ahc_outb(ahc
, SCB_TAG
, SCB_LIST_NULL
);
6271 if ((ahc
->flags
& AHC_PAGESCBS
) != 0) {
6272 ahc_outb(ahc
, SCB_NEXT
, ahc_inb(ahc
, FREE_SCBH
));
6273 ahc_outb(ahc
, FREE_SCBH
, ahc_inb(ahc
, SCBPTR
));
6278 * Manipulate the waiting for selection list and return the
6279 * scb that follows the one that we remove.
6282 ahc_rem_wscb(struct ahc_softc
*ahc
, u_int scbpos
, u_int prev
)
6287 * Select the SCB we want to abort and
6288 * pull the next pointer out of it.
6290 curscb
= ahc_inb(ahc
, SCBPTR
);
6291 ahc_outb(ahc
, SCBPTR
, scbpos
);
6292 next
= ahc_inb(ahc
, SCB_NEXT
);
6294 /* Clear the necessary fields */
6295 ahc_outb(ahc
, SCB_CONTROL
, 0);
6297 ahc_add_curscb_to_free_list(ahc
);
6299 /* update the waiting list */
6300 if (prev
== SCB_LIST_NULL
) {
6301 /* First in the list */
6302 ahc_outb(ahc
, WAITING_SCBH
, next
);
6305 * Ensure we aren't attempting to perform
6306 * selection for this entry.
6308 ahc_outb(ahc
, SCSISEQ
, (ahc_inb(ahc
, SCSISEQ
) & ~ENSELO
));
6311 * Select the scb that pointed to us
6312 * and update its next pointer.
6314 ahc_outb(ahc
, SCBPTR
, prev
);
6315 ahc_outb(ahc
, SCB_NEXT
, next
);
6319 * Point us back at the original scb position.
6321 ahc_outb(ahc
, SCBPTR
, curscb
);
6325 /******************************** Error Handling ******************************/
6327 * Abort all SCBs that match the given description (target/channel/lun/tag),
6328 * setting their status to the passed in status if the status has not already
6329 * been modified from CAM_REQ_INPROG. This routine assumes that the sequencer
6330 * is paused before it is called.
6333 ahc_abort_scbs(struct ahc_softc
*ahc
, int target
, char channel
,
6334 int lun
, u_int tag
, role_t role
, uint32_t status
)
6337 struct scb
*scbp_next
;
6347 * Don't attempt to run any queued untagged transactions
6348 * until we are done with the abort process.
6350 ahc_freeze_untagged_queues(ahc
);
6352 /* restore this when we're done */
6353 active_scb
= ahc_inb(ahc
, SCBPTR
);
6355 found
= ahc_search_qinfifo(ahc
, target
, channel
, lun
, SCB_LIST_NULL
,
6356 role
, CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
6359 * Clean out the busy target table for any untagged commands.
6363 if (target
!= CAM_TARGET_WILDCARD
) {
6370 if (lun
== CAM_LUN_WILDCARD
) {
6373 * Unless we are using an SCB based
6374 * busy targets table, there is only
6375 * one table entry for all luns of
6380 if ((ahc
->flags
& AHC_SCB_BTT
) != 0)
6381 maxlun
= AHC_NUM_LUNS
;
6387 if (role
!= ROLE_TARGET
) {
6388 for (;i
< maxtarget
; i
++) {
6389 for (j
= minlun
;j
< maxlun
; j
++) {
6393 tcl
= BUILD_TCL(i
<< 4, j
);
6394 scbid
= ahc_index_busy_tcl(ahc
, tcl
);
6395 scbp
= ahc_lookup_scb(ahc
, scbid
);
6397 || ahc_match_scb(ahc
, scbp
, target
, channel
,
6398 lun
, tag
, role
) == 0)
6400 ahc_unbusy_tcl(ahc
, BUILD_TCL(i
<< 4, j
));
6405 * Go through the disconnected list and remove any entries we
6406 * have queued for completion, 0'ing their control byte too.
6407 * We save the active SCB and restore it ourselves, so there
6408 * is no reason for this search to restore it too.
6410 ahc_search_disc_list(ahc
, target
, channel
, lun
, tag
,
6411 /*stop_on_first*/FALSE
, /*remove*/TRUE
,
6412 /*save_state*/FALSE
);
6416 * Go through the hardware SCB array looking for commands that
6417 * were active but not on any list. In some cases, these remnants
6418 * might not still have mappings in the scbindex array (e.g. unexpected
6419 * bus free with the same scb queued for an abort). Don't hold this
6422 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
6425 ahc_outb(ahc
, SCBPTR
, i
);
6426 scbid
= ahc_inb(ahc
, SCB_TAG
);
6427 scbp
= ahc_lookup_scb(ahc
, scbid
);
6428 if ((scbp
== NULL
&& scbid
!= SCB_LIST_NULL
)
6430 && ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)))
6431 ahc_add_curscb_to_free_list(ahc
);
6435 * Go through the pending CCB list and look for
6436 * commands for this target that are still active.
6437 * These are other tagged commands that were
6438 * disconnected when the reset occurred.
6440 scbp_next
= LIST_FIRST(&ahc
->pending_scbs
);
6441 while (scbp_next
!= NULL
) {
6443 scbp_next
= LIST_NEXT(scbp
, pending_links
);
6444 if (ahc_match_scb(ahc
, scbp
, target
, channel
, lun
, tag
, role
)) {
6447 ostat
= ahc_get_transaction_status(scbp
);
6448 if (ostat
== CAM_REQ_INPROG
)
6449 ahc_set_transaction_status(scbp
, status
);
6450 if (ahc_get_transaction_status(scbp
) != CAM_REQ_CMP
)
6451 ahc_freeze_scb(scbp
);
6452 if ((scbp
->flags
& SCB_ACTIVE
) == 0)
6453 printk("Inactive SCB on pending list\n");
6454 ahc_done(ahc
, scbp
);
6458 ahc_outb(ahc
, SCBPTR
, active_scb
);
6459 ahc_platform_abort_scbs(ahc
, target
, channel
, lun
, tag
, role
, status
);
6460 ahc_release_untagged_queues(ahc
);
6465 ahc_reset_current_bus(struct ahc_softc
*ahc
)
6469 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) & ~ENSCSIRST
);
6470 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
6471 ahc_outb(ahc
, SCSISEQ
, scsiseq
| SCSIRSTO
);
6472 ahc_flush_device_writes(ahc
);
6473 ahc_delay(AHC_BUSRESET_DELAY
);
6474 /* Turn off the bus reset */
6475 ahc_outb(ahc
, SCSISEQ
, scsiseq
& ~SCSIRSTO
);
6477 ahc_clear_intstat(ahc
);
6479 /* Re-enable reset interrupts */
6480 ahc_outb(ahc
, SIMODE1
, ahc_inb(ahc
, SIMODE1
) | ENSCSIRST
);
6484 ahc_reset_channel(struct ahc_softc
*ahc
, char channel
, int initiate_reset
)
6486 struct ahc_devinfo devinfo
;
6487 u_int initiator
, target
, max_scsiid
;
6495 ahc
->pending_device
= NULL
;
6497 ahc_compile_devinfo(&devinfo
,
6498 CAM_TARGET_WILDCARD
,
6499 CAM_TARGET_WILDCARD
,
6501 channel
, ROLE_UNKNOWN
);
6504 /* Make sure the sequencer is in a safe location. */
6505 ahc_clear_critical_section(ahc
);
6508 * Run our command complete fifos to ensure that we perform
6509 * completion processing on any commands that 'completed'
6510 * before the reset occurred.
6512 ahc_run_qoutfifo(ahc
);
6513 #ifdef AHC_TARGET_MODE
6515 * XXX - In Twin mode, the tqinfifo may have commands
6516 * for an unaffected channel in it. However, if
6517 * we have run out of ATIO resources to drain that
6518 * queue, we may not get them all out here. Further,
6519 * the blocked transactions for the reset channel
6520 * should just be killed off, irrespecitve of whether
6521 * we are blocked on ATIO resources. Write a routine
6522 * to compact the tqinfifo appropriately.
6524 if ((ahc
->flags
& AHC_TARGETROLE
) != 0) {
6525 ahc_run_tqinfifo(ahc
, /*paused*/TRUE
);
6530 * Reset the bus if we are initiating this reset
6532 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
6534 if ((ahc
->features
& AHC_TWIN
) != 0
6535 && ((sblkctl
& SELBUSB
) != 0))
6537 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
6538 if (cur_channel
!= channel
) {
6539 /* Case 1: Command for another bus is active
6540 * Stealthily reset the other bus without
6541 * upsetting the current bus.
6543 ahc_outb(ahc
, SBLKCTL
, sblkctl
^ SELBUSB
);
6544 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
6545 #ifdef AHC_TARGET_MODE
6547 * Bus resets clear ENSELI, so we cannot
6548 * defer re-enabling bus reset interrupts
6549 * if we are in target mode.
6551 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
6552 simode1
|= ENSCSIRST
;
6554 ahc_outb(ahc
, SIMODE1
, simode1
);
6556 ahc_reset_current_bus(ahc
);
6557 ahc_clear_intstat(ahc
);
6558 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
6559 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
6560 restart_needed
= FALSE
;
6562 /* Case 2: A command from this bus is active or we're idle */
6563 simode1
= ahc_inb(ahc
, SIMODE1
) & ~(ENBUSFREE
|ENSCSIRST
);
6564 #ifdef AHC_TARGET_MODE
6566 * Bus resets clear ENSELI, so we cannot
6567 * defer re-enabling bus reset interrupts
6568 * if we are in target mode.
6570 if ((ahc
->flags
& AHC_TARGETROLE
) != 0)
6571 simode1
|= ENSCSIRST
;
6573 ahc_outb(ahc
, SIMODE1
, simode1
);
6575 ahc_reset_current_bus(ahc
);
6576 ahc_clear_intstat(ahc
);
6577 ahc_outb(ahc
, SCSISEQ
, scsiseq
& (ENSELI
|ENRSELI
|ENAUTOATNP
));
6578 restart_needed
= TRUE
;
6582 * Clean up all the state information for the
6583 * pending transactions on this bus.
6585 found
= ahc_abort_scbs(ahc
, CAM_TARGET_WILDCARD
, channel
,
6586 CAM_LUN_WILDCARD
, SCB_LIST_NULL
,
6587 ROLE_UNKNOWN
, CAM_SCSI_BUS_RESET
);
6589 max_scsiid
= (ahc
->features
& AHC_WIDE
) ? 15 : 7;
6591 #ifdef AHC_TARGET_MODE
6593 * Send an immediate notify ccb to all target more peripheral
6594 * drivers affected by this action.
6596 for (target
= 0; target
<= max_scsiid
; target
++) {
6597 struct ahc_tmode_tstate
* tstate
;
6600 tstate
= ahc
->enabled_targets
[target
];
6603 for (lun
= 0; lun
< AHC_NUM_LUNS
; lun
++) {
6604 struct ahc_tmode_lstate
* lstate
;
6606 lstate
= tstate
->enabled_luns
[lun
];
6610 ahc_queue_lstate_event(ahc
, lstate
, CAM_TARGET_WILDCARD
,
6611 EVENT_TYPE_BUS_RESET
, /*arg*/0);
6612 ahc_send_lstate_events(ahc
, lstate
);
6616 /* Notify the XPT that a bus reset occurred */
6617 ahc_send_async(ahc
, devinfo
.channel
, CAM_TARGET_WILDCARD
,
6618 CAM_LUN_WILDCARD
, AC_BUS_RESET
);
6621 * Revert to async/narrow transfers until we renegotiate.
6623 for (target
= 0; target
<= max_scsiid
; target
++) {
6625 if (ahc
->enabled_targets
[target
] == NULL
)
6627 for (initiator
= 0; initiator
<= max_scsiid
; initiator
++) {
6628 struct ahc_devinfo devinfo
;
6630 ahc_compile_devinfo(&devinfo
, target
, initiator
,
6632 channel
, ROLE_UNKNOWN
);
6633 ahc_set_width(ahc
, &devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
6634 AHC_TRANS_CUR
, /*paused*/TRUE
);
6635 ahc_set_syncrate(ahc
, &devinfo
, /*syncrate*/NULL
,
6636 /*period*/0, /*offset*/0,
6637 /*ppr_options*/0, AHC_TRANS_CUR
,
6650 /***************************** Residual Processing ****************************/
6652 * Calculate the residual for a just completed SCB.
6655 ahc_calc_residual(struct ahc_softc
*ahc
, struct scb
*scb
)
6657 struct hardware_scb
*hscb
;
6658 struct status_pkt
*spkt
;
6660 uint32_t resid_sgptr
;
6666 * SG_RESID_VALID clear in sgptr.
6667 * 2) Transferless command
6668 * 3) Never performed any transfers.
6669 * sgptr has SG_FULL_RESID set.
6670 * 4) No residual but target did not
6671 * save data pointers after the
6672 * last transfer, so sgptr was
6674 * 5) We have a partial residual.
6675 * Use residual_sgptr to determine
6680 sgptr
= ahc_le32toh(hscb
->sgptr
);
6681 if ((sgptr
& SG_RESID_VALID
) == 0)
6684 sgptr
&= ~SG_RESID_VALID
;
6686 if ((sgptr
& SG_LIST_NULL
) != 0)
6690 spkt
= &hscb
->shared_data
.status
;
6691 resid_sgptr
= ahc_le32toh(spkt
->residual_sg_ptr
);
6692 if ((sgptr
& SG_FULL_RESID
) != 0) {
6694 resid
= ahc_get_transfer_length(scb
);
6695 } else if ((resid_sgptr
& SG_LIST_NULL
) != 0) {
6698 } else if ((resid_sgptr
& ~SG_PTR_MASK
) != 0) {
6699 panic("Bogus resid sgptr value 0x%x\n", resid_sgptr
);
6701 struct ahc_dma_seg
*sg
;
6704 * Remainder of the SG where the transfer
6707 resid
= ahc_le32toh(spkt
->residual_datacnt
) & AHC_SG_LEN_MASK
;
6708 sg
= ahc_sg_bus_to_virt(scb
, resid_sgptr
& SG_PTR_MASK
);
6710 /* The residual sg_ptr always points to the next sg */
6714 * Add up the contents of all residual
6715 * SG segments that are after the SG where
6716 * the transfer stopped.
6718 while ((ahc_le32toh(sg
->len
) & AHC_DMA_LAST_SEG
) == 0) {
6720 resid
+= ahc_le32toh(sg
->len
) & AHC_SG_LEN_MASK
;
6723 if ((scb
->flags
& SCB_SENSE
) == 0)
6724 ahc_set_residual(scb
, resid
);
6726 ahc_set_sense_residual(scb
, resid
);
6729 if ((ahc_debug
& AHC_SHOW_MISC
) != 0) {
6730 ahc_print_path(ahc
, scb
);
6731 printk("Handled %sResidual of %d bytes\n",
6732 (scb
->flags
& SCB_SENSE
) ? "Sense " : "", resid
);
6737 /******************************* Target Mode **********************************/
6738 #ifdef AHC_TARGET_MODE
6740 * Add a target mode event to this lun's queue
6743 ahc_queue_lstate_event(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
,
6744 u_int initiator_id
, u_int event_type
, u_int event_arg
)
6746 struct ahc_tmode_event
*event
;
6749 xpt_freeze_devq(lstate
->path
, /*count*/1);
6750 if (lstate
->event_w_idx
>= lstate
->event_r_idx
)
6751 pending
= lstate
->event_w_idx
- lstate
->event_r_idx
;
6753 pending
= AHC_TMODE_EVENT_BUFFER_SIZE
+ 1
6754 - (lstate
->event_r_idx
- lstate
->event_w_idx
);
6756 if (event_type
== EVENT_TYPE_BUS_RESET
6757 || event_type
== MSG_BUS_DEV_RESET
) {
6759 * Any earlier events are irrelevant, so reset our buffer.
6760 * This has the effect of allowing us to deal with reset
6761 * floods (an external device holding down the reset line)
6762 * without losing the event that is really interesting.
6764 lstate
->event_r_idx
= 0;
6765 lstate
->event_w_idx
= 0;
6766 xpt_release_devq(lstate
->path
, pending
, /*runqueue*/FALSE
);
6769 if (pending
== AHC_TMODE_EVENT_BUFFER_SIZE
) {
6770 xpt_print_path(lstate
->path
);
6771 printk("immediate event %x:%x lost\n",
6772 lstate
->event_buffer
[lstate
->event_r_idx
].event_type
,
6773 lstate
->event_buffer
[lstate
->event_r_idx
].event_arg
);
6774 lstate
->event_r_idx
++;
6775 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6776 lstate
->event_r_idx
= 0;
6777 xpt_release_devq(lstate
->path
, /*count*/1, /*runqueue*/FALSE
);
6780 event
= &lstate
->event_buffer
[lstate
->event_w_idx
];
6781 event
->initiator_id
= initiator_id
;
6782 event
->event_type
= event_type
;
6783 event
->event_arg
= event_arg
;
6784 lstate
->event_w_idx
++;
6785 if (lstate
->event_w_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6786 lstate
->event_w_idx
= 0;
6790 * Send any target mode events queued up waiting
6791 * for immediate notify resources.
6794 ahc_send_lstate_events(struct ahc_softc
*ahc
, struct ahc_tmode_lstate
*lstate
)
6796 struct ccb_hdr
*ccbh
;
6797 struct ccb_immed_notify
*inot
;
6799 while (lstate
->event_r_idx
!= lstate
->event_w_idx
6800 && (ccbh
= SLIST_FIRST(&lstate
->immed_notifies
)) != NULL
) {
6801 struct ahc_tmode_event
*event
;
6803 event
= &lstate
->event_buffer
[lstate
->event_r_idx
];
6804 SLIST_REMOVE_HEAD(&lstate
->immed_notifies
, sim_links
.sle
);
6805 inot
= (struct ccb_immed_notify
*)ccbh
;
6806 switch (event
->event_type
) {
6807 case EVENT_TYPE_BUS_RESET
:
6808 ccbh
->status
= CAM_SCSI_BUS_RESET
|CAM_DEV_QFRZN
;
6811 ccbh
->status
= CAM_MESSAGE_RECV
|CAM_DEV_QFRZN
;
6812 inot
->message_args
[0] = event
->event_type
;
6813 inot
->message_args
[1] = event
->event_arg
;
6816 inot
->initiator_id
= event
->initiator_id
;
6817 inot
->sense_len
= 0;
6818 xpt_done((union ccb
*)inot
);
6819 lstate
->event_r_idx
++;
6820 if (lstate
->event_r_idx
== AHC_TMODE_EVENT_BUFFER_SIZE
)
6821 lstate
->event_r_idx
= 0;
6826 /******************** Sequencer Program Patching/Download *********************/
6830 ahc_dumpseq(struct ahc_softc
* ahc
)
6834 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6835 ahc_outb(ahc
, SEQADDR0
, 0);
6836 ahc_outb(ahc
, SEQADDR1
, 0);
6837 for (i
= 0; i
< ahc
->instruction_ram_size
; i
++) {
6838 uint8_t ins_bytes
[4];
6840 ahc_insb(ahc
, SEQRAM
, ins_bytes
, 4);
6841 printk("0x%08x\n", ins_bytes
[0] << 24
6842 | ins_bytes
[1] << 16
6850 ahc_loadseq(struct ahc_softc
*ahc
)
6852 struct cs cs_table
[num_critical_sections
];
6853 u_int begin_set
[num_critical_sections
];
6854 u_int end_set
[num_critical_sections
];
6855 const struct patch
*cur_patch
;
6860 u_int sg_prefetch_cnt
;
6862 uint8_t download_consts
[7];
6865 * Start out with 0 critical sections
6866 * that apply to this firmware load.
6870 memset(begin_set
, 0, sizeof(begin_set
));
6871 memset(end_set
, 0, sizeof(end_set
));
6873 /* Setup downloadable constant table */
6874 download_consts
[QOUTFIFO_OFFSET
] = 0;
6875 if (ahc
->targetcmds
!= NULL
)
6876 download_consts
[QOUTFIFO_OFFSET
] += 32;
6877 download_consts
[QINFIFO_OFFSET
] = download_consts
[QOUTFIFO_OFFSET
] + 1;
6878 download_consts
[CACHESIZE_MASK
] = ahc
->pci_cachesize
- 1;
6879 download_consts
[INVERTED_CACHESIZE_MASK
] = ~(ahc
->pci_cachesize
- 1);
6880 sg_prefetch_cnt
= ahc
->pci_cachesize
;
6881 if (sg_prefetch_cnt
< (2 * sizeof(struct ahc_dma_seg
)))
6882 sg_prefetch_cnt
= 2 * sizeof(struct ahc_dma_seg
);
6883 download_consts
[SG_PREFETCH_CNT
] = sg_prefetch_cnt
;
6884 download_consts
[SG_PREFETCH_ALIGN_MASK
] = ~(sg_prefetch_cnt
- 1);
6885 download_consts
[SG_PREFETCH_ADDR_MASK
] = (sg_prefetch_cnt
- 1);
6887 cur_patch
= patches
;
6890 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
|LOADRAM
);
6891 ahc_outb(ahc
, SEQADDR0
, 0);
6892 ahc_outb(ahc
, SEQADDR1
, 0);
6894 for (i
= 0; i
< sizeof(seqprog
)/4; i
++) {
6895 if (ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
) == 0) {
6897 * Don't download this instruction as it
6898 * is in a patch that was removed.
6903 if (downloaded
== ahc
->instruction_ram_size
) {
6905 * We're about to exceed the instruction
6906 * storage capacity for this chip. Fail
6909 printk("\n%s: Program too large for instruction memory "
6910 "size of %d!\n", ahc_name(ahc
),
6911 ahc
->instruction_ram_size
);
6916 * Move through the CS table until we find a CS
6917 * that might apply to this instruction.
6919 for (; cur_cs
< num_critical_sections
; cur_cs
++) {
6920 if (critical_sections
[cur_cs
].end
<= i
) {
6921 if (begin_set
[cs_count
] == TRUE
6922 && end_set
[cs_count
] == FALSE
) {
6923 cs_table
[cs_count
].end
= downloaded
;
6924 end_set
[cs_count
] = TRUE
;
6929 if (critical_sections
[cur_cs
].begin
<= i
6930 && begin_set
[cs_count
] == FALSE
) {
6931 cs_table
[cs_count
].begin
= downloaded
;
6932 begin_set
[cs_count
] = TRUE
;
6936 ahc_download_instr(ahc
, i
, download_consts
);
6940 ahc
->num_critical_sections
= cs_count
;
6941 if (cs_count
!= 0) {
6943 cs_count
*= sizeof(struct cs
);
6944 ahc
->critical_sections
= kmalloc(cs_count
, GFP_ATOMIC
);
6945 if (ahc
->critical_sections
== NULL
)
6946 panic("ahc_loadseq: Could not malloc");
6947 memcpy(ahc
->critical_sections
, cs_table
, cs_count
);
6949 ahc_outb(ahc
, SEQCTL
, PERRORDIS
|FAILDIS
|FASTMODE
);
6952 printk(" %d instructions downloaded\n", downloaded
);
6953 printk("%s: Features 0x%x, Bugs 0x%x, Flags 0x%x\n",
6954 ahc_name(ahc
), ahc
->features
, ahc
->bugs
, ahc
->flags
);
6960 ahc_check_patch(struct ahc_softc
*ahc
, const struct patch
**start_patch
,
6961 u_int start_instr
, u_int
*skip_addr
)
6963 const struct patch
*cur_patch
;
6964 const struct patch
*last_patch
;
6967 num_patches
= ARRAY_SIZE(patches
);
6968 last_patch
= &patches
[num_patches
];
6969 cur_patch
= *start_patch
;
6971 while (cur_patch
< last_patch
&& start_instr
== cur_patch
->begin
) {
6973 if (cur_patch
->patch_func(ahc
) == 0) {
6975 /* Start rejecting code */
6976 *skip_addr
= start_instr
+ cur_patch
->skip_instr
;
6977 cur_patch
+= cur_patch
->skip_patch
;
6979 /* Accepted this patch. Advance to the next
6980 * one and wait for our intruction pointer to
6987 *start_patch
= cur_patch
;
6988 if (start_instr
< *skip_addr
)
6989 /* Still skipping */
6996 ahc_download_instr(struct ahc_softc
*ahc
, u_int instrptr
, uint8_t *dconsts
)
6998 union ins_formats instr
;
6999 struct ins_format1
*fmt1_ins
;
7000 struct ins_format3
*fmt3_ins
;
7004 * The firmware is always compiled into a little endian format.
7006 instr
.integer
= ahc_le32toh(*(uint32_t*)&seqprog
[instrptr
* 4]);
7008 fmt1_ins
= &instr
.format1
;
7011 /* Pull the opcode */
7012 opcode
= instr
.format1
.opcode
;
7023 const struct patch
*cur_patch
;
7029 fmt3_ins
= &instr
.format3
;
7031 address
= fmt3_ins
->address
;
7032 cur_patch
= patches
;
7035 for (i
= 0; i
< address
;) {
7037 ahc_check_patch(ahc
, &cur_patch
, i
, &skip_addr
);
7039 if (skip_addr
> i
) {
7042 end_addr
= min(address
, skip_addr
);
7043 address_offset
+= end_addr
- i
;
7049 address
-= address_offset
;
7050 fmt3_ins
->address
= address
;
7059 if (fmt1_ins
->parity
!= 0) {
7060 fmt1_ins
->immediate
= dconsts
[fmt1_ins
->immediate
];
7062 fmt1_ins
->parity
= 0;
7063 if ((ahc
->features
& AHC_CMD_CHAN
) == 0
7064 && opcode
== AIC_OP_BMOV
) {
7066 * Block move was added at the same time
7067 * as the command channel. Verify that
7068 * this is only a move of a single element
7069 * and convert the BMOV to a MOV
7070 * (AND with an immediate of FF).
7072 if (fmt1_ins
->immediate
!= 1)
7073 panic("%s: BMOV not supported\n",
7075 fmt1_ins
->opcode
= AIC_OP_AND
;
7076 fmt1_ins
->immediate
= 0xff;
7080 if ((ahc
->features
& AHC_ULTRA2
) != 0) {
7083 /* Calculate odd parity for the instruction */
7084 for (i
= 0, count
= 0; i
< 31; i
++) {
7088 if ((instr
.integer
& mask
) != 0)
7091 if ((count
& 0x01) == 0)
7092 instr
.format1
.parity
= 1;
7094 /* Compress the instruction for older sequencers */
7095 if (fmt3_ins
!= NULL
) {
7098 | (fmt3_ins
->source
<< 8)
7099 | (fmt3_ins
->address
<< 16)
7100 | (fmt3_ins
->opcode
<< 25);
7104 | (fmt1_ins
->source
<< 8)
7105 | (fmt1_ins
->destination
<< 16)
7106 | (fmt1_ins
->ret
<< 24)
7107 | (fmt1_ins
->opcode
<< 25);
7110 /* The sequencer is a little endian cpu */
7111 instr
.integer
= ahc_htole32(instr
.integer
);
7112 ahc_outsb(ahc
, SEQRAM
, instr
.bytes
, 4);
7115 panic("Unknown opcode encountered in seq program");
7121 ahc_print_register(const ahc_reg_parse_entry_t
*table
, u_int num_entries
,
7122 const char *name
, u_int address
, u_int value
,
7123 u_int
*cur_column
, u_int wrap_point
)
7128 if (cur_column
!= NULL
&& *cur_column
>= wrap_point
) {
7132 printed
= printk("%s[0x%x]", name
, value
);
7133 if (table
== NULL
) {
7134 printed
+= printk(" ");
7135 *cur_column
+= printed
;
7139 while (printed_mask
!= 0xFF) {
7142 for (entry
= 0; entry
< num_entries
; entry
++) {
7143 if (((value
& table
[entry
].mask
)
7144 != table
[entry
].value
)
7145 || ((printed_mask
& table
[entry
].mask
)
7146 == table
[entry
].mask
))
7149 printed
+= printk("%s%s",
7150 printed_mask
== 0 ? ":(" : "|",
7152 printed_mask
|= table
[entry
].mask
;
7156 if (entry
>= num_entries
)
7159 if (printed_mask
!= 0)
7160 printed
+= printk(") ");
7162 printed
+= printk(" ");
7163 if (cur_column
!= NULL
)
7164 *cur_column
+= printed
;
7169 ahc_dump_card_state(struct ahc_softc
*ahc
)
7172 struct scb_tailq
*untagged_q
;
7183 uint8_t saved_scbptr
;
7185 if (ahc_is_paused(ahc
)) {
7192 saved_scbptr
= ahc_inb(ahc
, SCBPTR
);
7193 last_phase
= ahc_inb(ahc
, LASTPHASE
);
7194 printk(">>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<<\n"
7195 "%s: Dumping Card State %s, at SEQADDR 0x%x\n",
7196 ahc_name(ahc
), ahc_lookup_phase_entry(last_phase
)->phasemsg
,
7197 ahc_inb(ahc
, SEQADDR0
) | (ahc_inb(ahc
, SEQADDR1
) << 8));
7199 printk("Card was paused\n");
7200 printk("ACCUM = 0x%x, SINDEX = 0x%x, DINDEX = 0x%x, ARG_2 = 0x%x\n",
7201 ahc_inb(ahc
, ACCUM
), ahc_inb(ahc
, SINDEX
), ahc_inb(ahc
, DINDEX
),
7202 ahc_inb(ahc
, ARG_2
));
7203 printk("HCNT = 0x%x SCBPTR = 0x%x\n", ahc_inb(ahc
, HCNT
),
7204 ahc_inb(ahc
, SCBPTR
));
7206 if ((ahc
->features
& AHC_DT
) != 0)
7207 ahc_scsiphase_print(ahc_inb(ahc
, SCSIPHASE
), &cur_col
, 50);
7208 ahc_scsisigi_print(ahc_inb(ahc
, SCSISIGI
), &cur_col
, 50);
7209 ahc_error_print(ahc_inb(ahc
, ERROR
), &cur_col
, 50);
7210 ahc_scsibusl_print(ahc_inb(ahc
, SCSIBUSL
), &cur_col
, 50);
7211 ahc_lastphase_print(ahc_inb(ahc
, LASTPHASE
), &cur_col
, 50);
7212 ahc_scsiseq_print(ahc_inb(ahc
, SCSISEQ
), &cur_col
, 50);
7213 ahc_sblkctl_print(ahc_inb(ahc
, SBLKCTL
), &cur_col
, 50);
7214 ahc_scsirate_print(ahc_inb(ahc
, SCSIRATE
), &cur_col
, 50);
7215 ahc_seqctl_print(ahc_inb(ahc
, SEQCTL
), &cur_col
, 50);
7216 ahc_seq_flags_print(ahc_inb(ahc
, SEQ_FLAGS
), &cur_col
, 50);
7217 ahc_sstat0_print(ahc_inb(ahc
, SSTAT0
), &cur_col
, 50);
7218 ahc_sstat1_print(ahc_inb(ahc
, SSTAT1
), &cur_col
, 50);
7219 ahc_sstat2_print(ahc_inb(ahc
, SSTAT2
), &cur_col
, 50);
7220 ahc_sstat3_print(ahc_inb(ahc
, SSTAT3
), &cur_col
, 50);
7221 ahc_simode0_print(ahc_inb(ahc
, SIMODE0
), &cur_col
, 50);
7222 ahc_simode1_print(ahc_inb(ahc
, SIMODE1
), &cur_col
, 50);
7223 ahc_sxfrctl0_print(ahc_inb(ahc
, SXFRCTL0
), &cur_col
, 50);
7224 ahc_dfcntrl_print(ahc_inb(ahc
, DFCNTRL
), &cur_col
, 50);
7225 ahc_dfstatus_print(ahc_inb(ahc
, DFSTATUS
), &cur_col
, 50);
7229 for (i
= 0; i
< STACK_SIZE
; i
++)
7230 printk(" 0x%x", ahc_inb(ahc
, STACK
)|(ahc_inb(ahc
, STACK
) << 8));
7231 printk("\nSCB count = %d\n", ahc
->scb_data
->numscbs
);
7232 printk("Kernel NEXTQSCB = %d\n", ahc
->next_queued_scb
->hscb
->tag
);
7233 printk("Card NEXTQSCB = %d\n", ahc_inb(ahc
, NEXT_QUEUED_SCB
));
7235 printk("QINFIFO entries: ");
7236 if ((ahc
->features
& AHC_QUEUE_REGS
) != 0) {
7237 qinpos
= ahc_inb(ahc
, SNSCB_QOFF
);
7238 ahc_outb(ahc
, SNSCB_QOFF
, qinpos
);
7240 qinpos
= ahc_inb(ahc
, QINPOS
);
7241 qintail
= ahc
->qinfifonext
;
7242 while (qinpos
!= qintail
) {
7243 printk("%d ", ahc
->qinfifo
[qinpos
]);
7248 printk("Waiting Queue entries: ");
7249 scb_index
= ahc_inb(ahc
, WAITING_SCBH
);
7251 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
7252 ahc_outb(ahc
, SCBPTR
, scb_index
);
7253 printk("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
7254 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
7258 printk("Disconnected Queue entries: ");
7259 scb_index
= ahc_inb(ahc
, DISCONNECTED_SCBH
);
7261 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
7262 ahc_outb(ahc
, SCBPTR
, scb_index
);
7263 printk("%d:%d ", scb_index
, ahc_inb(ahc
, SCB_TAG
));
7264 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
7268 ahc_sync_qoutfifo(ahc
, BUS_DMASYNC_POSTREAD
);
7269 printk("QOUTFIFO entries: ");
7270 qoutpos
= ahc
->qoutfifonext
;
7272 while (ahc
->qoutfifo
[qoutpos
] != SCB_LIST_NULL
&& i
++ < 256) {
7273 printk("%d ", ahc
->qoutfifo
[qoutpos
]);
7278 printk("Sequencer Free SCB List: ");
7279 scb_index
= ahc_inb(ahc
, FREE_SCBH
);
7281 while (scb_index
!= SCB_LIST_NULL
&& i
++ < 256) {
7282 ahc_outb(ahc
, SCBPTR
, scb_index
);
7283 printk("%d ", scb_index
);
7284 scb_index
= ahc_inb(ahc
, SCB_NEXT
);
7288 printk("Sequencer SCB Info: ");
7289 for (i
= 0; i
< ahc
->scb_data
->maxhscbs
; i
++) {
7290 ahc_outb(ahc
, SCBPTR
, i
);
7291 cur_col
= printk("\n%3d ", i
);
7293 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
), &cur_col
, 60);
7294 ahc_scb_scsiid_print(ahc_inb(ahc
, SCB_SCSIID
), &cur_col
, 60);
7295 ahc_scb_lun_print(ahc_inb(ahc
, SCB_LUN
), &cur_col
, 60);
7296 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
7300 printk("Pending list: ");
7302 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
7305 cur_col
= printk("\n%3d ", scb
->hscb
->tag
);
7306 ahc_scb_control_print(scb
->hscb
->control
, &cur_col
, 60);
7307 ahc_scb_scsiid_print(scb
->hscb
->scsiid
, &cur_col
, 60);
7308 ahc_scb_lun_print(scb
->hscb
->lun
, &cur_col
, 60);
7309 if ((ahc
->flags
& AHC_PAGESCBS
) == 0) {
7310 ahc_outb(ahc
, SCBPTR
, scb
->hscb
->tag
);
7312 ahc_scb_control_print(ahc_inb(ahc
, SCB_CONTROL
),
7314 ahc_scb_tag_print(ahc_inb(ahc
, SCB_TAG
), &cur_col
, 60);
7320 printk("Kernel Free SCB list: ");
7322 SLIST_FOREACH(scb
, &ahc
->scb_data
->free_scbs
, links
.sle
) {
7325 printk("%d ", scb
->hscb
->tag
);
7329 maxtarget
= (ahc
->features
& (AHC_WIDE
|AHC_TWIN
)) ? 15 : 7;
7330 for (target
= 0; target
<= maxtarget
; target
++) {
7331 untagged_q
= &ahc
->untagged_queues
[target
];
7332 if (TAILQ_FIRST(untagged_q
) == NULL
)
7334 printk("Untagged Q(%d): ", target
);
7336 TAILQ_FOREACH(scb
, untagged_q
, links
.tqe
) {
7339 printk("%d ", scb
->hscb
->tag
);
7344 ahc_platform_dump_card_state(ahc
);
7345 printk("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n");
7346 ahc_outb(ahc
, SCBPTR
, saved_scbptr
);
7351 /************************* Target Mode ****************************************/
7352 #ifdef AHC_TARGET_MODE
7354 ahc_find_tmode_devs(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
,
7355 struct ahc_tmode_tstate
**tstate
,
7356 struct ahc_tmode_lstate
**lstate
,
7357 int notfound_failure
)
7360 if ((ahc
->features
& AHC_TARGETMODE
) == 0)
7361 return (CAM_REQ_INVALID
);
7364 * Handle the 'black hole' device that sucks up
7365 * requests to unattached luns on enabled targets.
7367 if (ccb
->ccb_h
.target_id
== CAM_TARGET_WILDCARD
7368 && ccb
->ccb_h
.target_lun
== CAM_LUN_WILDCARD
) {
7370 *lstate
= ahc
->black_hole
;
7374 max_id
= (ahc
->features
& AHC_WIDE
) ? 16 : 8;
7375 if (ccb
->ccb_h
.target_id
>= max_id
)
7376 return (CAM_TID_INVALID
);
7378 if (ccb
->ccb_h
.target_lun
>= AHC_NUM_LUNS
)
7379 return (CAM_LUN_INVALID
);
7381 *tstate
= ahc
->enabled_targets
[ccb
->ccb_h
.target_id
];
7383 if (*tstate
!= NULL
)
7385 (*tstate
)->enabled_luns
[ccb
->ccb_h
.target_lun
];
7388 if (notfound_failure
!= 0 && *lstate
== NULL
)
7389 return (CAM_PATH_INVALID
);
7391 return (CAM_REQ_CMP
);
7395 ahc_handle_en_lun(struct ahc_softc
*ahc
, struct cam_sim
*sim
, union ccb
*ccb
)
7397 struct ahc_tmode_tstate
*tstate
;
7398 struct ahc_tmode_lstate
*lstate
;
7399 struct ccb_en_lun
*cel
;
7409 status
= ahc_find_tmode_devs(ahc
, sim
, ccb
, &tstate
, &lstate
,
7410 /*notfound_failure*/FALSE
);
7412 if (status
!= CAM_REQ_CMP
) {
7413 ccb
->ccb_h
.status
= status
;
7417 if (cam_sim_bus(sim
) == 0)
7418 our_id
= ahc
->our_id
;
7420 our_id
= ahc
->our_id_b
;
7422 if (ccb
->ccb_h
.target_id
!= our_id
) {
7424 * our_id represents our initiator ID, or
7425 * the ID of the first target to have an
7426 * enabled lun in target mode. There are
7427 * two cases that may preclude enabling a
7428 * target id other than our_id.
7430 * o our_id is for an active initiator role.
7431 * Since the hardware does not support
7432 * reselections to the initiator role at
7433 * anything other than our_id, and our_id
7434 * is used by the hardware to indicate the
7435 * ID to use for both select-out and
7436 * reselect-out operations, the only target
7437 * ID we can support in this mode is our_id.
7439 * o The MULTARGID feature is not available and
7440 * a previous target mode ID has been enabled.
7442 if ((ahc
->features
& AHC_MULTIROLE
) != 0) {
7444 if ((ahc
->features
& AHC_MULTI_TID
) != 0
7445 && (ahc
->flags
& AHC_INITIATORROLE
) != 0) {
7447 * Only allow additional targets if
7448 * the initiator role is disabled.
7449 * The hardware cannot handle a re-select-in
7450 * on the initiator id during a re-select-out
7451 * on a different target id.
7453 status
= CAM_TID_INVALID
;
7454 } else if ((ahc
->flags
& AHC_INITIATORROLE
) != 0
7455 || ahc
->enabled_luns
> 0) {
7457 * Only allow our target id to change
7458 * if the initiator role is not configured
7459 * and there are no enabled luns which
7460 * are attached to the currently registered
7463 status
= CAM_TID_INVALID
;
7465 } else if ((ahc
->features
& AHC_MULTI_TID
) == 0
7466 && ahc
->enabled_luns
> 0) {
7468 status
= CAM_TID_INVALID
;
7472 if (status
!= CAM_REQ_CMP
) {
7473 ccb
->ccb_h
.status
= status
;
7478 * We now have an id that is valid.
7479 * If we aren't in target mode, switch modes.
7481 if ((ahc
->flags
& AHC_TARGETROLE
) == 0
7482 && ccb
->ccb_h
.target_id
!= CAM_TARGET_WILDCARD
) {
7484 ahc_flag saved_flags
;
7486 printk("Configuring Target Mode\n");
7488 if (LIST_FIRST(&ahc
->pending_scbs
) != NULL
) {
7489 ccb
->ccb_h
.status
= CAM_BUSY
;
7490 ahc_unlock(ahc
, &s
);
7493 saved_flags
= ahc
->flags
;
7494 ahc
->flags
|= AHC_TARGETROLE
;
7495 if ((ahc
->features
& AHC_MULTIROLE
) == 0)
7496 ahc
->flags
&= ~AHC_INITIATORROLE
;
7498 error
= ahc_loadseq(ahc
);
7501 * Restore original configuration and notify
7502 * the caller that we cannot support target mode.
7503 * Since the adapter started out in this
7504 * configuration, the firmware load will succeed,
7505 * so there is no point in checking ahc_loadseq's
7508 ahc
->flags
= saved_flags
;
7509 (void)ahc_loadseq(ahc
);
7511 ahc_unlock(ahc
, &s
);
7512 ccb
->ccb_h
.status
= CAM_FUNC_NOTAVAIL
;
7516 ahc_unlock(ahc
, &s
);
7519 target
= ccb
->ccb_h
.target_id
;
7520 lun
= ccb
->ccb_h
.target_lun
;
7521 channel
= SIM_CHANNEL(ahc
, sim
);
7522 target_mask
= 0x01 << target
;
7526 if (cel
->enable
!= 0) {
7529 /* Are we already enabled?? */
7530 if (lstate
!= NULL
) {
7531 xpt_print_path(ccb
->ccb_h
.path
);
7532 printk("Lun already enabled\n");
7533 ccb
->ccb_h
.status
= CAM_LUN_ALRDY_ENA
;
7537 if (cel
->grp6_len
!= 0
7538 || cel
->grp7_len
!= 0) {
7540 * Don't (yet?) support vendor
7541 * specific commands.
7543 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7544 printk("Non-zero Group Codes\n");
7550 * Setup our data structures.
7552 if (target
!= CAM_TARGET_WILDCARD
&& tstate
== NULL
) {
7553 tstate
= ahc_alloc_tstate(ahc
, target
, channel
);
7554 if (tstate
== NULL
) {
7555 xpt_print_path(ccb
->ccb_h
.path
);
7556 printk("Couldn't allocate tstate\n");
7557 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
7561 lstate
= kmalloc(sizeof(*lstate
), GFP_ATOMIC
);
7562 if (lstate
== NULL
) {
7563 xpt_print_path(ccb
->ccb_h
.path
);
7564 printk("Couldn't allocate lstate\n");
7565 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
7568 memset(lstate
, 0, sizeof(*lstate
));
7569 status
= xpt_create_path(&lstate
->path
, /*periph*/NULL
,
7570 xpt_path_path_id(ccb
->ccb_h
.path
),
7571 xpt_path_target_id(ccb
->ccb_h
.path
),
7572 xpt_path_lun_id(ccb
->ccb_h
.path
));
7573 if (status
!= CAM_REQ_CMP
) {
7575 xpt_print_path(ccb
->ccb_h
.path
);
7576 printk("Couldn't allocate path\n");
7577 ccb
->ccb_h
.status
= CAM_RESRC_UNAVAIL
;
7580 SLIST_INIT(&lstate
->accept_tios
);
7581 SLIST_INIT(&lstate
->immed_notifies
);
7584 if (target
!= CAM_TARGET_WILDCARD
) {
7585 tstate
->enabled_luns
[lun
] = lstate
;
7586 ahc
->enabled_luns
++;
7588 if ((ahc
->features
& AHC_MULTI_TID
) != 0) {
7591 targid_mask
= ahc_inb(ahc
, TARGID
)
7592 | (ahc_inb(ahc
, TARGID
+ 1) << 8);
7594 targid_mask
|= target_mask
;
7595 ahc_outb(ahc
, TARGID
, targid_mask
);
7596 ahc_outb(ahc
, TARGID
+1, (targid_mask
>> 8));
7598 ahc_update_scsiid(ahc
, targid_mask
);
7603 channel
= SIM_CHANNEL(ahc
, sim
);
7604 our_id
= SIM_SCSI_ID(ahc
, sim
);
7607 * This can only happen if selections
7610 if (target
!= our_id
) {
7615 sblkctl
= ahc_inb(ahc
, SBLKCTL
);
7616 cur_channel
= (sblkctl
& SELBUSB
)
7618 if ((ahc
->features
& AHC_TWIN
) == 0)
7620 swap
= cur_channel
!= channel
;
7622 ahc
->our_id
= target
;
7624 ahc
->our_id_b
= target
;
7627 ahc_outb(ahc
, SBLKCTL
,
7630 ahc_outb(ahc
, SCSIID
, target
);
7633 ahc_outb(ahc
, SBLKCTL
, sblkctl
);
7637 ahc
->black_hole
= lstate
;
7638 /* Allow select-in operations */
7639 if (ahc
->black_hole
!= NULL
&& ahc
->enabled_luns
> 0) {
7640 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7642 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7643 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7645 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7648 ahc_unlock(ahc
, &s
);
7649 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7650 xpt_print_path(ccb
->ccb_h
.path
);
7651 printk("Lun now enabled for target mode\n");
7656 if (lstate
== NULL
) {
7657 ccb
->ccb_h
.status
= CAM_LUN_INVALID
;
7663 ccb
->ccb_h
.status
= CAM_REQ_CMP
;
7664 LIST_FOREACH(scb
, &ahc
->pending_scbs
, pending_links
) {
7665 struct ccb_hdr
*ccbh
;
7667 ccbh
= &scb
->io_ctx
->ccb_h
;
7668 if (ccbh
->func_code
== XPT_CONT_TARGET_IO
7669 && !xpt_path_comp(ccbh
->path
, ccb
->ccb_h
.path
)){
7670 printk("CTIO pending\n");
7671 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7672 ahc_unlock(ahc
, &s
);
7677 if (SLIST_FIRST(&lstate
->accept_tios
) != NULL
) {
7678 printk("ATIOs pending\n");
7679 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7682 if (SLIST_FIRST(&lstate
->immed_notifies
) != NULL
) {
7683 printk("INOTs pending\n");
7684 ccb
->ccb_h
.status
= CAM_REQ_INVALID
;
7687 if (ccb
->ccb_h
.status
!= CAM_REQ_CMP
) {
7688 ahc_unlock(ahc
, &s
);
7692 xpt_print_path(ccb
->ccb_h
.path
);
7693 printk("Target mode disabled\n");
7694 xpt_free_path(lstate
->path
);
7698 /* Can we clean up the target too? */
7699 if (target
!= CAM_TARGET_WILDCARD
) {
7700 tstate
->enabled_luns
[lun
] = NULL
;
7701 ahc
->enabled_luns
--;
7702 for (empty
= 1, i
= 0; i
< 8; i
++)
7703 if (tstate
->enabled_luns
[i
] != NULL
) {
7709 ahc_free_tstate(ahc
, target
, channel
,
7711 if (ahc
->features
& AHC_MULTI_TID
) {
7714 targid_mask
= ahc_inb(ahc
, TARGID
)
7715 | (ahc_inb(ahc
, TARGID
+ 1)
7718 targid_mask
&= ~target_mask
;
7719 ahc_outb(ahc
, TARGID
, targid_mask
);
7720 ahc_outb(ahc
, TARGID
+1,
7721 (targid_mask
>> 8));
7722 ahc_update_scsiid(ahc
, targid_mask
);
7727 ahc
->black_hole
= NULL
;
7730 * We can't allow selections without
7731 * our black hole device.
7735 if (ahc
->enabled_luns
== 0) {
7736 /* Disallow select-in */
7739 scsiseq
= ahc_inb(ahc
, SCSISEQ_TEMPLATE
);
7741 ahc_outb(ahc
, SCSISEQ_TEMPLATE
, scsiseq
);
7742 scsiseq
= ahc_inb(ahc
, SCSISEQ
);
7744 ahc_outb(ahc
, SCSISEQ
, scsiseq
);
7746 if ((ahc
->features
& AHC_MULTIROLE
) == 0) {
7747 printk("Configuring Initiator Mode\n");
7748 ahc
->flags
&= ~AHC_TARGETROLE
;
7749 ahc
->flags
|= AHC_INITIATORROLE
;
7751 * Returning to a configuration that
7752 * fit previously will always succeed.
7754 (void)ahc_loadseq(ahc
);
7757 * Unpaused. The extra unpause
7758 * that follows is harmless.
7763 ahc_unlock(ahc
, &s
);
7768 ahc_update_scsiid(struct ahc_softc
*ahc
, u_int targid_mask
)
7773 if ((ahc
->features
& AHC_MULTI_TID
) == 0)
7774 panic("ahc_update_scsiid called on non-multitid unit\n");
7777 * Since we will rely on the TARGID mask
7778 * for selection enables, ensure that OID
7779 * in SCSIID is not set to some other ID
7780 * that we don't want to allow selections on.
7782 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7783 scsiid
= ahc_inb(ahc
, SCSIID_ULTRA2
);
7785 scsiid
= ahc_inb(ahc
, SCSIID
);
7786 scsiid_mask
= 0x1 << (scsiid
& OID
);
7787 if ((targid_mask
& scsiid_mask
) == 0) {
7790 /* ffs counts from 1 */
7791 our_id
= ffs(targid_mask
);
7793 our_id
= ahc
->our_id
;
7799 if ((ahc
->features
& AHC_ULTRA2
) != 0)
7800 ahc_outb(ahc
, SCSIID_ULTRA2
, scsiid
);
7802 ahc_outb(ahc
, SCSIID
, scsiid
);
7806 ahc_run_tqinfifo(struct ahc_softc
*ahc
, int paused
)
7808 struct target_cmd
*cmd
;
7811 * If the card supports auto-access pause,
7812 * we can access the card directly regardless
7813 * of whether it is paused or not.
7815 if ((ahc
->features
& AHC_AUTOPAUSE
) != 0)
7818 ahc_sync_tqinfifo(ahc
, BUS_DMASYNC_POSTREAD
);
7819 while ((cmd
= &ahc
->targetcmds
[ahc
->tqinfifonext
])->cmd_valid
!= 0) {
7822 * Only advance through the queue if we
7823 * have the resources to process the command.
7825 if (ahc_handle_target_cmd(ahc
, cmd
) != 0)
7829 ahc_dmamap_sync(ahc
, ahc
->shared_data_dmat
,
7830 ahc
->shared_data_dmamap
,
7831 ahc_targetcmd_offset(ahc
, ahc
->tqinfifonext
),
7832 sizeof(struct target_cmd
),
7833 BUS_DMASYNC_PREREAD
);
7834 ahc
->tqinfifonext
++;
7837 * Lazily update our position in the target mode incoming
7838 * command queue as seen by the sequencer.
7840 if ((ahc
->tqinfifonext
& (HOST_TQINPOS
- 1)) == 1) {
7841 if ((ahc
->features
& AHC_HS_MAILBOX
) != 0) {
7844 hs_mailbox
= ahc_inb(ahc
, HS_MAILBOX
);
7845 hs_mailbox
&= ~HOST_TQINPOS
;
7846 hs_mailbox
|= ahc
->tqinfifonext
& HOST_TQINPOS
;
7847 ahc_outb(ahc
, HS_MAILBOX
, hs_mailbox
);
7851 ahc_outb(ahc
, KERNEL_TQINPOS
,
7852 ahc
->tqinfifonext
& HOST_TQINPOS
);
7861 ahc_handle_target_cmd(struct ahc_softc
*ahc
, struct target_cmd
*cmd
)
7863 struct ahc_tmode_tstate
*tstate
;
7864 struct ahc_tmode_lstate
*lstate
;
7865 struct ccb_accept_tio
*atio
;
7871 initiator
= SCSIID_TARGET(ahc
, cmd
->scsiid
);
7872 target
= SCSIID_OUR_ID(cmd
->scsiid
);
7873 lun
= (cmd
->identify
& MSG_IDENTIFY_LUNMASK
);
7876 tstate
= ahc
->enabled_targets
[target
];
7879 lstate
= tstate
->enabled_luns
[lun
];
7882 * Commands for disabled luns go to the black hole driver.
7885 lstate
= ahc
->black_hole
;
7887 atio
= (struct ccb_accept_tio
*)SLIST_FIRST(&lstate
->accept_tios
);
7889 ahc
->flags
|= AHC_TQINFIFO_BLOCKED
;
7891 * Wait for more ATIOs from the peripheral driver for this lun.
7894 printk("%s: ATIOs exhausted\n", ahc_name(ahc
));
7897 ahc
->flags
&= ~AHC_TQINFIFO_BLOCKED
;
7899 printk("Incoming command from %d for %d:%d%s\n",
7900 initiator
, target
, lun
,
7901 lstate
== ahc
->black_hole
? "(Black Holed)" : "");
7903 SLIST_REMOVE_HEAD(&lstate
->accept_tios
, sim_links
.sle
);
7905 if (lstate
== ahc
->black_hole
) {
7906 /* Fill in the wildcards */
7907 atio
->ccb_h
.target_id
= target
;
7908 atio
->ccb_h
.target_lun
= lun
;
7912 * Package it up and send it off to
7913 * whomever has this lun enabled.
7915 atio
->sense_len
= 0;
7916 atio
->init_id
= initiator
;
7917 if (byte
[0] != 0xFF) {
7918 /* Tag was included */
7919 atio
->tag_action
= *byte
++;
7920 atio
->tag_id
= *byte
++;
7921 atio
->ccb_h
.flags
= CAM_TAG_ACTION_VALID
;
7923 atio
->ccb_h
.flags
= 0;
7927 /* Okay. Now determine the cdb size based on the command code */
7928 switch (*byte
>> CMD_GROUP_CODE_SHIFT
) {
7944 /* Only copy the opcode. */
7946 printk("Reserved or VU command code type encountered\n");
7950 memcpy(atio
->cdb_io
.cdb_bytes
, byte
, atio
->cdb_len
);
7952 atio
->ccb_h
.status
|= CAM_CDB_RECVD
;
7954 if ((cmd
->identify
& MSG_IDENTIFY_DISCFLAG
) == 0) {
7956 * We weren't allowed to disconnect.
7957 * We're hanging on the bus until a
7958 * continue target I/O comes in response
7959 * to this accept tio.
7962 printk("Received Immediate Command %d:%d:%d - %p\n",
7963 initiator
, target
, lun
, ahc
->pending_device
);
7965 ahc
->pending_device
= lstate
;
7966 ahc_freeze_ccb((union ccb
*)atio
);
7967 atio
->ccb_h
.flags
|= CAM_DIS_DISCONNECT
;
7969 xpt_done((union ccb
*)atio
);