aic79xx.c revision 1.19 1 1.19 thorpej /* $NetBSD: aic79xx.c,v 1.19 2003/08/29 04:38:07 thorpej Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*
4 1.1 fvdl * Core routines and tables shareable across OS platforms.
5 1.1 fvdl *
6 1.1 fvdl * Copyright (c) 1994-2002 Justin T. Gibbs.
7 1.1 fvdl * Copyright (c) 2000-2003 Adaptec Inc.
8 1.1 fvdl * All rights reserved.
9 1.1 fvdl *
10 1.1 fvdl * Redistribution and use in source and binary forms, with or without
11 1.1 fvdl * modification, are permitted provided that the following conditions
12 1.1 fvdl * are met:
13 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
14 1.1 fvdl * notice, this list of conditions, and the following disclaimer,
15 1.1 fvdl * without modification.
16 1.1 fvdl * 2. Redistributions in binary form must reproduce at minimum a disclaimer
17 1.1 fvdl * substantially similar to the "NO WARRANTY" disclaimer below
18 1.1 fvdl * ("Disclaimer") and any redistribution must be conditioned upon
19 1.1 fvdl * including a substantially similar Disclaimer requirement for further
20 1.1 fvdl * binary redistribution.
21 1.1 fvdl * 3. Neither the names of the above-listed copyright holders nor the names
22 1.1 fvdl * of any contributors may be used to endorse or promote products derived
23 1.1 fvdl * from this software without specific prior written permission.
24 1.1 fvdl *
25 1.1 fvdl * Alternatively, this software may be distributed under the terms of the
26 1.1 fvdl * GNU General Public License ("GPL") version 2 as published by the Free
27 1.1 fvdl * Software Foundation.
28 1.1 fvdl *
29 1.1 fvdl * NO WARRANTY
30 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31 1.1 fvdl * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32 1.1 fvdl * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
33 1.1 fvdl * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34 1.1 fvdl * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 1.1 fvdl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 1.1 fvdl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 1.1 fvdl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
38 1.1 fvdl * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
39 1.1 fvdl * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 1.1 fvdl * POSSIBILITY OF SUCH DAMAGES.
41 1.1 fvdl *
42 1.19 thorpej * Id: //depot/aic7xxx/aic7xxx/aic79xx.c#200 $
43 1.1 fvdl *
44 1.19 thorpej * $FreeBSD: src/sys/dev/aic7xxx/aic79xx.c,v 1.22 2003/06/28 04:42:11 gibbs Exp $
45 1.1 fvdl */
46 1.1 fvdl /*
47 1.1 fvdl * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc.
48 1.1 fvdl * - April 2003
49 1.1 fvdl */
50 1.6 lukem
51 1.6 lukem #include <sys/cdefs.h>
52 1.19 thorpej __KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.19 2003/08/29 04:38:07 thorpej Exp $");
53 1.1 fvdl
54 1.1 fvdl #include <dev/ic/aic79xx_osm.h>
55 1.1 fvdl #include <dev/ic/aic79xx_inline.h>
56 1.1 fvdl #include <dev/ic/aic7xxx_cam.h>
57 1.1 fvdl
58 1.1 fvdl #include <dev/microcode/aic7xxx/aicasm.h>
59 1.1 fvdl #include <dev/microcode/aic7xxx/aicasm_insformat.h>
60 1.1 fvdl
61 1.1 fvdl
62 1.1 fvdl /******************************** Globals *************************************/
63 1.1 fvdl struct ahd_softc_tailq ahd_tailq = TAILQ_HEAD_INITIALIZER(ahd_tailq);
64 1.1 fvdl
65 1.1 fvdl /***************************** Lookup Tables **********************************/
66 1.1 fvdl char *ahd_chip_names[] =
67 1.1 fvdl {
68 1.1 fvdl "NONE",
69 1.1 fvdl "aic7901",
70 1.1 fvdl "aic7902",
71 1.1 fvdl "aic7901A"
72 1.1 fvdl };
73 1.1 fvdl
74 1.1 fvdl /*
75 1.1 fvdl * Hardware error codes.
76 1.1 fvdl */
77 1.1 fvdl struct ahd_hard_error_entry {
78 1.1 fvdl uint8_t errno;
79 1.1 fvdl char *errmesg;
80 1.1 fvdl };
81 1.1 fvdl
82 1.1 fvdl static struct ahd_hard_error_entry ahd_hard_errors[] = {
83 1.1 fvdl { DSCTMOUT, "Discard Timer has timed out" },
84 1.1 fvdl { ILLOPCODE, "Illegal Opcode in sequencer program" },
85 1.1 fvdl { SQPARERR, "Sequencer Parity Error" },
86 1.1 fvdl { DPARERR, "Data-path Parity Error" },
87 1.1 fvdl { MPARERR, "Scratch or SCB Memory Parity Error" },
88 1.1 fvdl { CIOPARERR, "CIOBUS Parity Error" },
89 1.1 fvdl };
90 1.1 fvdl static const u_int num_errors = NUM_ELEMENTS(ahd_hard_errors);
91 1.1 fvdl
92 1.1 fvdl static struct ahd_phase_table_entry ahd_phase_table[] =
93 1.1 fvdl {
94 1.1 fvdl { P_DATAOUT, MSG_NOOP, "in Data-out phase" },
95 1.1 fvdl { P_DATAIN, MSG_INITIATOR_DET_ERR, "in Data-in phase" },
96 1.1 fvdl { P_DATAOUT_DT, MSG_NOOP, "in DT Data-out phase" },
97 1.1 fvdl { P_DATAIN_DT, MSG_INITIATOR_DET_ERR, "in DT Data-in phase" },
98 1.1 fvdl { P_COMMAND, MSG_NOOP, "in Command phase" },
99 1.1 fvdl { P_MESGOUT, MSG_NOOP, "in Message-out phase" },
100 1.1 fvdl { P_STATUS, MSG_INITIATOR_DET_ERR, "in Status phase" },
101 1.1 fvdl { P_MESGIN, MSG_PARITY_ERROR, "in Message-in phase" },
102 1.1 fvdl { P_BUSFREE, MSG_NOOP, "while idle" },
103 1.1 fvdl { 0, MSG_NOOP, "in unknown phase" }
104 1.1 fvdl };
105 1.1 fvdl
106 1.1 fvdl /*
107 1.1 fvdl * In most cases we only wish to itterate over real phases, so
108 1.1 fvdl * exclude the last element from the count.
109 1.1 fvdl */
110 1.1 fvdl static const u_int num_phases = NUM_ELEMENTS(ahd_phase_table) - 1;
111 1.1 fvdl
112 1.1 fvdl /* Our Sequencer Program */
113 1.1 fvdl #include <dev/microcode/aic7xxx/aic79xx_seq.h>
114 1.1 fvdl
115 1.1 fvdl /**************************** Function Declarations ***************************/
116 1.1 fvdl static void ahd_handle_transmission_error(struct ahd_softc *ahd);
117 1.1 fvdl static void ahd_handle_lqiphase_error(struct ahd_softc *ahd,
118 1.1 fvdl u_int lqistat1);
119 1.1 fvdl static int ahd_handle_pkt_busfree(struct ahd_softc *ahd,
120 1.1 fvdl u_int busfreetime);
121 1.1 fvdl static int ahd_handle_nonpkt_busfree(struct ahd_softc *ahd);
122 1.1 fvdl static void ahd_handle_proto_violation(struct ahd_softc *ahd);
123 1.1 fvdl static void ahd_force_renegotiation(struct ahd_softc *ahd,
124 1.1 fvdl struct ahd_devinfo *devinfo);
125 1.1 fvdl
126 1.1 fvdl static struct ahd_tmode_tstate*
127 1.1 fvdl ahd_alloc_tstate(struct ahd_softc *ahd,
128 1.1 fvdl u_int scsi_id, char channel);
129 1.1 fvdl #ifdef AHD_TARGET_MODE
130 1.1 fvdl static void ahd_free_tstate(struct ahd_softc *ahd,
131 1.1 fvdl u_int scsi_id, char channel, int force);
132 1.1 fvdl #endif
133 1.1 fvdl static void ahd_devlimited_syncrate(struct ahd_softc *ahd,
134 1.1 fvdl struct ahd_initiator_tinfo *,
135 1.1 fvdl u_int *period,
136 1.1 fvdl u_int *ppr_options,
137 1.1 fvdl role_t role);
138 1.1 fvdl static void ahd_update_neg_table(struct ahd_softc *ahd,
139 1.1 fvdl struct ahd_devinfo *devinfo,
140 1.1 fvdl struct ahd_transinfo *tinfo);
141 1.1 fvdl static void ahd_update_pending_scbs(struct ahd_softc *ahd);
142 1.1 fvdl static void ahd_fetch_devinfo(struct ahd_softc *ahd,
143 1.1 fvdl struct ahd_devinfo *devinfo);
144 1.1 fvdl static void ahd_scb_devinfo(struct ahd_softc *ahd,
145 1.1 fvdl struct ahd_devinfo *devinfo,
146 1.1 fvdl struct scb *scb);
147 1.1 fvdl static void ahd_setup_initiator_msgout(struct ahd_softc *ahd,
148 1.1 fvdl struct ahd_devinfo *devinfo,
149 1.1 fvdl struct scb *scb);
150 1.1 fvdl static void ahd_build_transfer_msg(struct ahd_softc *ahd,
151 1.1 fvdl struct ahd_devinfo *devinfo);
152 1.1 fvdl static void ahd_construct_sdtr(struct ahd_softc *ahd,
153 1.1 fvdl struct ahd_devinfo *devinfo,
154 1.1 fvdl u_int period, u_int offset);
155 1.1 fvdl static void ahd_construct_wdtr(struct ahd_softc *ahd,
156 1.1 fvdl struct ahd_devinfo *devinfo,
157 1.1 fvdl u_int bus_width);
158 1.1 fvdl static void ahd_construct_ppr(struct ahd_softc *ahd,
159 1.1 fvdl struct ahd_devinfo *devinfo,
160 1.1 fvdl u_int period, u_int offset,
161 1.1 fvdl u_int bus_width, u_int ppr_options);
162 1.1 fvdl static void ahd_clear_msg_state(struct ahd_softc *ahd);
163 1.1 fvdl static void ahd_handle_message_phase(struct ahd_softc *ahd);
164 1.1 fvdl typedef enum {
165 1.1 fvdl AHDMSG_1B,
166 1.1 fvdl AHDMSG_2B,
167 1.1 fvdl AHDMSG_EXT
168 1.1 fvdl } ahd_msgtype;
169 1.1 fvdl static int ahd_sent_msg(struct ahd_softc *ahd, ahd_msgtype type,
170 1.1 fvdl u_int msgval, int full);
171 1.1 fvdl static int ahd_parse_msg(struct ahd_softc *ahd,
172 1.1 fvdl struct ahd_devinfo *devinfo);
173 1.1 fvdl static int ahd_handle_msg_reject(struct ahd_softc *ahd,
174 1.1 fvdl struct ahd_devinfo *devinfo);
175 1.1 fvdl static void ahd_handle_ign_wide_residue(struct ahd_softc *ahd,
176 1.1 fvdl struct ahd_devinfo *devinfo);
177 1.1 fvdl static void ahd_reinitialize_dataptrs(struct ahd_softc *ahd);
178 1.1 fvdl static void ahd_handle_devreset(struct ahd_softc *ahd,
179 1.1 fvdl struct ahd_devinfo *devinfo,
180 1.1 fvdl u_int lun, cam_status status,
181 1.1 fvdl char *message, int verbose_level);
182 1.1 fvdl #if AHD_TARGET_MODE
183 1.1 fvdl static void ahd_setup_target_msgin(struct ahd_softc *ahd,
184 1.1 fvdl struct ahd_devinfo *devinfo,
185 1.1 fvdl struct scb *scb);
186 1.1 fvdl #endif
187 1.1 fvdl
188 1.1 fvdl static u_int ahd_sglist_size(struct ahd_softc *ahd);
189 1.1 fvdl static u_int ahd_sglist_allocsize(struct ahd_softc *ahd);
190 1.1 fvdl static void ahd_initialize_hscbs(struct ahd_softc *ahd);
191 1.1 fvdl static int ahd_init_scbdata(struct ahd_softc *ahd);
192 1.1 fvdl static void ahd_fini_scbdata(struct ahd_softc *ahd);
193 1.1 fvdl static void ahd_setup_iocell_workaround(struct ahd_softc *ahd);
194 1.1 fvdl static void ahd_iocell_first_selection(struct ahd_softc *ahd);
195 1.1 fvdl static void ahd_add_col_list(struct ahd_softc *ahd,
196 1.1 fvdl struct scb *scb, u_int col_idx);
197 1.1 fvdl static void ahd_rem_col_list(struct ahd_softc *ahd,
198 1.1 fvdl struct scb *scb);
199 1.1 fvdl static void ahd_chip_init(struct ahd_softc *ahd);
200 1.1 fvdl static void ahd_qinfifo_requeue(struct ahd_softc *ahd,
201 1.1 fvdl struct scb *prev_scb,
202 1.1 fvdl struct scb *scb);
203 1.1 fvdl static int ahd_qinfifo_count(struct ahd_softc *ahd);
204 1.1 fvdl static int ahd_search_scb_list(struct ahd_softc *ahd, int target,
205 1.1 fvdl char channel, int lun, u_int tag,
206 1.1 fvdl role_t role, uint32_t status,
207 1.1 fvdl ahd_search_action action,
208 1.1 fvdl u_int *list_head, u_int tid);
209 1.1 fvdl static void ahd_stitch_tid_list(struct ahd_softc *ahd,
210 1.1 fvdl u_int tid_prev, u_int tid_cur,
211 1.1 fvdl u_int tid_next);
212 1.1 fvdl static void ahd_add_scb_to_free_list(struct ahd_softc *ahd,
213 1.1 fvdl u_int scbid);
214 1.1 fvdl static u_int ahd_rem_wscb(struct ahd_softc *ahd, u_int scbid,
215 1.1 fvdl u_int prev, u_int next, u_int tid);
216 1.1 fvdl static void ahd_reset_current_bus(struct ahd_softc *ahd);
217 1.1 fvdl static ahd_callback_t ahd_reset_poll;
218 1.1 fvdl static ahd_callback_t ahd_stat_timer;
219 1.1 fvdl #ifdef AHD_DUMP_SEQ
220 1.1 fvdl static void ahd_dumpseq(struct ahd_softc *ahd);
221 1.1 fvdl #endif
222 1.1 fvdl static void ahd_loadseq(struct ahd_softc *ahd);
223 1.1 fvdl static int ahd_check_patch(struct ahd_softc *ahd,
224 1.1 fvdl struct patch **start_patch,
225 1.1 fvdl u_int start_instr, u_int *skip_addr);
226 1.1 fvdl static u_int ahd_resolve_seqaddr(struct ahd_softc *ahd,
227 1.1 fvdl u_int address);
228 1.1 fvdl static void ahd_download_instr(struct ahd_softc *ahd,
229 1.1 fvdl u_int instrptr, uint8_t *dconsts);
230 1.1 fvdl static int ahd_probe_stack_size(struct ahd_softc *ahd);
231 1.1 fvdl #ifdef AHD_TARGET_MODE
232 1.1 fvdl static void ahd_queue_lstate_event(struct ahd_softc *ahd,
233 1.1 fvdl struct ahd_tmode_lstate *lstate,
234 1.1 fvdl u_int initiator_id,
235 1.1 fvdl u_int event_type,
236 1.1 fvdl u_int event_arg);
237 1.1 fvdl static void ahd_update_scsiid(struct ahd_softc *ahd,
238 1.1 fvdl u_int targid_mask);
239 1.1 fvdl static int ahd_handle_target_cmd(struct ahd_softc *ahd,
240 1.1 fvdl struct target_cmd *cmd);
241 1.1 fvdl #endif
242 1.1 fvdl
243 1.1 fvdl /************************** Added for porting to NetBSD ***********************/
244 1.1 fvdl static int ahd_createdmamem(bus_dma_tag_t tag,
245 1.1 fvdl int size,
246 1.1 fvdl int flags,
247 1.1 fvdl bus_dmamap_t *mapp,
248 1.1 fvdl caddr_t *vaddr,
249 1.1 fvdl bus_addr_t *baddr,
250 1.1 fvdl bus_dma_segment_t *seg,
251 1.1 fvdl int *nseg,
252 1.1 fvdl const char *myname, const char *what);
253 1.1 fvdl
254 1.1 fvdl static void ahd_freedmamem(bus_dma_tag_t tag,
255 1.1 fvdl int size,
256 1.1 fvdl bus_dmamap_t map,
257 1.1 fvdl caddr_t vaddr,
258 1.1 fvdl bus_dma_segment_t *seg,
259 1.1 fvdl int nseg);
260 1.1 fvdl static void ahd_update_xfer_mode(struct ahd_softc *ahc,
261 1.1 fvdl struct ahd_devinfo *devinfo);
262 1.1 fvdl
263 1.1 fvdl /******************************** Private Inlines *****************************/
264 1.1 fvdl static __inline void ahd_assert_atn(struct ahd_softc *ahd);
265 1.1 fvdl static __inline int ahd_currently_packetized(struct ahd_softc *ahd);
266 1.1 fvdl static __inline int ahd_set_active_fifo(struct ahd_softc *ahd);
267 1.1 fvdl
268 1.1 fvdl static __inline void
269 1.1 fvdl ahd_assert_atn(struct ahd_softc *ahd)
270 1.1 fvdl {
271 1.1 fvdl ahd_outb(ahd, SCSISIGO, ATNO);
272 1.1 fvdl }
273 1.1 fvdl
274 1.1 fvdl /*
275 1.1 fvdl * Determine if the current connection has a packetized
276 1.1 fvdl * agreement. This does not necessarily mean that we
277 1.1 fvdl * are currently in a packetized transfer. We could
278 1.1 fvdl * just as easily be sending or receiving a message.
279 1.1 fvdl */
280 1.1 fvdl static __inline int
281 1.1 fvdl ahd_currently_packetized(struct ahd_softc *ahd)
282 1.1 fvdl {
283 1.1 fvdl ahd_mode_state saved_modes;
284 1.1 fvdl int packetized;
285 1.1 fvdl
286 1.1 fvdl saved_modes = ahd_save_modes(ahd);
287 1.1 fvdl if ((ahd->bugs & AHD_PKTIZED_STATUS_BUG) != 0) {
288 1.1 fvdl /*
289 1.1 fvdl * The packetized bit refers to the last
290 1.1 fvdl * connection, not the current one. Check
291 1.1 fvdl * for non-zero LQISTATE instead.
292 1.1 fvdl */
293 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
294 1.1 fvdl packetized = ahd_inb(ahd, LQISTATE) != 0;
295 1.1 fvdl } else {
296 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
297 1.1 fvdl packetized = ahd_inb(ahd, LQISTAT2) & PACKETIZED;
298 1.1 fvdl }
299 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
300 1.1 fvdl return (packetized);
301 1.1 fvdl }
302 1.1 fvdl
303 1.1 fvdl static __inline int
304 1.1 fvdl ahd_set_active_fifo(struct ahd_softc *ahd)
305 1.1 fvdl {
306 1.1 fvdl u_int active_fifo;
307 1.1 fvdl
308 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
309 1.1 fvdl active_fifo = ahd_inb(ahd, DFFSTAT) & CURRFIFO;
310 1.1 fvdl switch (active_fifo) {
311 1.1 fvdl case 0:
312 1.1 fvdl case 1:
313 1.1 fvdl ahd_set_modes(ahd, active_fifo, active_fifo);
314 1.1 fvdl return (1);
315 1.1 fvdl default:
316 1.1 fvdl return (0);
317 1.1 fvdl }
318 1.1 fvdl }
319 1.1 fvdl
320 1.1 fvdl /************************* Sequencer Execution Control ************************/
321 1.1 fvdl /*
322 1.1 fvdl * Restart the sequencer program from address zero
323 1.1 fvdl */
324 1.1 fvdl void
325 1.1 fvdl ahd_restart(struct ahd_softc *ahd)
326 1.1 fvdl {
327 1.1 fvdl
328 1.1 fvdl ahd_pause(ahd);
329 1.1 fvdl
330 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
331 1.1 fvdl
332 1.1 fvdl /* No more pending messages */
333 1.1 fvdl ahd_clear_msg_state(ahd);
334 1.1 fvdl ahd_outb(ahd, SCSISIGO, 0); /* De-assert BSY */
335 1.1 fvdl ahd_outb(ahd, MSG_OUT, MSG_NOOP); /* No message to send */
336 1.1 fvdl ahd_outb(ahd, SXFRCTL1, ahd_inb(ahd, SXFRCTL1) & ~BITBUCKET);
337 1.1 fvdl ahd_outb(ahd, SEQINTCTL, 0);
338 1.1 fvdl ahd_outb(ahd, LASTPHASE, P_BUSFREE);
339 1.1 fvdl ahd_outb(ahd, SEQ_FLAGS, 0);
340 1.1 fvdl ahd_outb(ahd, SAVED_SCSIID, 0xFF);
341 1.1 fvdl ahd_outb(ahd, SAVED_LUN, 0xFF);
342 1.1 fvdl
343 1.1 fvdl /*
344 1.1 fvdl * Ensure that the sequencer's idea of TQINPOS
345 1.1 fvdl * matches our own. The sequencer increments TQINPOS
346 1.1 fvdl * only after it sees a DMA complete and a reset could
347 1.1 fvdl * occur before the increment leaving the kernel to believe
348 1.1 fvdl * the command arrived but the sequencer to not.
349 1.1 fvdl */
350 1.1 fvdl ahd_outb(ahd, TQINPOS, ahd->tqinfifonext);
351 1.1 fvdl
352 1.1 fvdl /* Always allow reselection */
353 1.1 fvdl ahd_outb(ahd, SCSISEQ1,
354 1.1 fvdl ahd_inb(ahd, SCSISEQ_TEMPLATE) & (ENSELI|ENRSELI|ENAUTOATNP));
355 1.1 fvdl /* Ensure that no DMA operations are in progress */
356 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN);
357 1.1 fvdl ahd_outb(ahd, SCBHCNT, 0);
358 1.1 fvdl ahd_outb(ahd, CCSCBCTL, CCSCBRESET);
359 1.1 fvdl ahd_outb(ahd, SEQCTL0, FASTMODE|SEQRESET);
360 1.1 fvdl ahd_unpause(ahd);
361 1.1 fvdl }
362 1.1 fvdl
363 1.1 fvdl void
364 1.1 fvdl ahd_clear_fifo(struct ahd_softc *ahd, u_int fifo)
365 1.1 fvdl {
366 1.1 fvdl ahd_mode_state saved_modes;
367 1.1 fvdl
368 1.1 fvdl #ifdef AHD_DEBUG
369 1.1 fvdl if ((ahd_debug & AHD_SHOW_FIFOS) != 0)
370 1.1 fvdl printf("%s: Clearing FIFO %d\n", ahd_name(ahd), fifo);
371 1.1 fvdl #endif
372 1.1 fvdl saved_modes = ahd_save_modes(ahd);
373 1.1 fvdl ahd_set_modes(ahd, fifo, fifo);
374 1.1 fvdl ahd_outb(ahd, DFFSXFRCTL, RSTCHN|CLRSHCNT);
375 1.1 fvdl if ((ahd_inb(ahd, SG_STATE) & FETCH_INPROG) != 0)
376 1.1 fvdl ahd_outb(ahd, CCSGCTL, CCSGRESET);
377 1.1 fvdl ahd_outb(ahd, LONGJMP_ADDR + 1, INVALID_ADDR);
378 1.1 fvdl ahd_outb(ahd, SG_STATE, 0);
379 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
380 1.1 fvdl }
381 1.1 fvdl
382 1.1 fvdl /************************* Input/Output Queues ********************************/
383 1.1 fvdl /*
384 1.1 fvdl * Flush and completed commands that are sitting in the command
385 1.4 wiz * complete queues down on the chip but have yet to be DMA'ed back up.
386 1.1 fvdl */
387 1.1 fvdl void
388 1.1 fvdl ahd_flush_qoutfifo(struct ahd_softc *ahd)
389 1.1 fvdl {
390 1.1 fvdl struct scb *scb;
391 1.1 fvdl ahd_mode_state saved_modes;
392 1.1 fvdl u_int saved_scbptr;
393 1.1 fvdl u_int ccscbctl;
394 1.1 fvdl u_int scbid;
395 1.1 fvdl u_int next_scbid;
396 1.1 fvdl
397 1.1 fvdl saved_modes = ahd_save_modes(ahd);
398 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN);
399 1.1 fvdl saved_scbptr = ahd_get_scbptr(ahd);
400 1.1 fvdl
401 1.1 fvdl /*
402 1.1 fvdl * Wait for any inprogress DMA to complete and clear DMA state
403 1.1 fvdl * if this if for an SCB in the qinfifo.
404 1.1 fvdl */
405 1.18 thorpej while (((ccscbctl = ahd_inb(ahd, CCSCBCTL)) & (CCARREN|CCSCBEN)) != 0) {
406 1.1 fvdl
407 1.1 fvdl if ((ccscbctl & (CCSCBDIR|CCARREN)) == (CCSCBDIR|CCARREN)) {
408 1.1 fvdl if ((ccscbctl & ARRDONE) != 0)
409 1.1 fvdl break;
410 1.1 fvdl } else if ((ccscbctl & CCSCBDONE) != 0)
411 1.1 fvdl break;
412 1.1 fvdl ahd_delay(200);
413 1.1 fvdl }
414 1.1 fvdl if ((ccscbctl & CCSCBDIR) != 0)
415 1.1 fvdl ahd_outb(ahd, CCSCBCTL, ccscbctl & ~(CCARREN|CCSCBEN));
416 1.1 fvdl
417 1.1 fvdl /*
418 1.1 fvdl * Complete any SCBs that just finished being
419 1.1 fvdl * DMA'ed into the qoutfifo.
420 1.1 fvdl */
421 1.1 fvdl ahd_run_qoutfifo(ahd);
422 1.1 fvdl
423 1.1 fvdl /*
424 1.1 fvdl * Manually update/complete any completed SCBs that are waiting to be
425 1.1 fvdl * DMA'ed back up to the host.
426 1.1 fvdl */
427 1.1 fvdl scbid = ahd_inw(ahd, COMPLETE_DMA_SCB_HEAD);
428 1.1 fvdl while (!SCBID_IS_NULL(scbid)) {
429 1.1 fvdl uint8_t *hscb_ptr;
430 1.1 fvdl u_int i;
431 1.1 fvdl
432 1.1 fvdl ahd_set_scbptr(ahd, scbid);
433 1.1 fvdl next_scbid = ahd_inw_scbram(ahd, SCB_NEXT_COMPLETE);
434 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
435 1.1 fvdl if (scb == NULL) {
436 1.1 fvdl printf("%s: Warning - DMA-up and complete "
437 1.1 fvdl "SCB %d invalid\n", ahd_name(ahd), scbid);
438 1.1 fvdl continue;
439 1.1 fvdl }
440 1.1 fvdl hscb_ptr = (uint8_t *)scb->hscb;
441 1.1 fvdl for (i = 0; i < sizeof(struct hardware_scb); i++)
442 1.1 fvdl *hscb_ptr++ = ahd_inb_scbram(ahd, SCB_BASE + i);
443 1.1 fvdl
444 1.1 fvdl ahd_complete_scb(ahd, scb);
445 1.1 fvdl scbid = next_scbid;
446 1.1 fvdl }
447 1.1 fvdl ahd_outw(ahd, COMPLETE_DMA_SCB_HEAD, SCB_LIST_NULL);
448 1.1 fvdl
449 1.1 fvdl scbid = ahd_inw(ahd, COMPLETE_SCB_HEAD);
450 1.1 fvdl while (!SCBID_IS_NULL(scbid)) {
451 1.1 fvdl
452 1.1 fvdl ahd_set_scbptr(ahd, scbid);
453 1.1 fvdl next_scbid = ahd_inw_scbram(ahd, SCB_NEXT_COMPLETE);
454 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
455 1.1 fvdl if (scb == NULL) {
456 1.1 fvdl printf("%s: Warning - Complete SCB %d invalid\n",
457 1.1 fvdl ahd_name(ahd), scbid);
458 1.1 fvdl continue;
459 1.1 fvdl }
460 1.1 fvdl
461 1.1 fvdl ahd_complete_scb(ahd, scb);
462 1.1 fvdl scbid = next_scbid;
463 1.1 fvdl }
464 1.1 fvdl ahd_outw(ahd, COMPLETE_SCB_HEAD, SCB_LIST_NULL);
465 1.1 fvdl ahd_set_scbptr(ahd, saved_scbptr);
466 1.1 fvdl
467 1.1 fvdl /*
468 1.1 fvdl * Flush the good status FIFO for compelted packetized commands.
469 1.1 fvdl */
470 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
471 1.1 fvdl while ((ahd_inb(ahd, LQISTAT2) & LQIGSAVAIL) != 0) {
472 1.1 fvdl scbid = (ahd_inb(ahd, GSFIFO+1) << 8)
473 1.1 fvdl | ahd_inb(ahd, GSFIFO);
474 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
475 1.1 fvdl if (scb == NULL) {
476 1.1 fvdl printf("%s: Warning - GSFIFO SCB %d invalid\n",
477 1.1 fvdl ahd_name(ahd), scbid);
478 1.1 fvdl continue;
479 1.1 fvdl }
480 1.1 fvdl ahd_complete_scb(ahd, scb);
481 1.1 fvdl }
482 1.1 fvdl
483 1.1 fvdl /*
484 1.1 fvdl * Restore state.
485 1.1 fvdl */
486 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
487 1.1 fvdl ahd->flags |= AHD_UPDATE_PEND_CMDS;
488 1.1 fvdl }
489 1.1 fvdl
490 1.1 fvdl void
491 1.1 fvdl ahd_run_qoutfifo(struct ahd_softc *ahd)
492 1.1 fvdl {
493 1.1 fvdl struct scb *scb;
494 1.1 fvdl u_int scb_index;
495 1.1 fvdl
496 1.1 fvdl if ((ahd->flags & AHD_RUNNING_QOUTFIFO) != 0)
497 1.1 fvdl panic("ahd_run_qoutfifo recursion");
498 1.1 fvdl ahd->flags |= AHD_RUNNING_QOUTFIFO;
499 1.1 fvdl ahd_sync_qoutfifo(ahd, BUS_DMASYNC_POSTREAD);
500 1.1 fvdl while ((ahd->qoutfifo[ahd->qoutfifonext]
501 1.1 fvdl & QOUTFIFO_ENTRY_VALID_LE) == ahd->qoutfifonext_valid_tag) {
502 1.1 fvdl
503 1.1 fvdl scb_index = ahd_le16toh(ahd->qoutfifo[ahd->qoutfifonext]
504 1.1 fvdl & ~QOUTFIFO_ENTRY_VALID_LE);
505 1.1 fvdl scb = ahd_lookup_scb(ahd, scb_index);
506 1.1 fvdl if (scb == NULL) {
507 1.1 fvdl printf("%s: WARNING no command for scb %d "
508 1.1 fvdl "(cmdcmplt)\nQOUTPOS = %d\n",
509 1.1 fvdl ahd_name(ahd), scb_index,
510 1.1 fvdl ahd->qoutfifonext);
511 1.1 fvdl ahd_dump_card_state(ahd);
512 1.1 fvdl } else
513 1.1 fvdl ahd_complete_scb(ahd, scb);
514 1.1 fvdl
515 1.1 fvdl ahd->qoutfifonext = (ahd->qoutfifonext+1) & (AHD_QOUT_SIZE-1);
516 1.1 fvdl if (ahd->qoutfifonext == 0)
517 1.1 fvdl ahd->qoutfifonext_valid_tag ^= QOUTFIFO_ENTRY_VALID_LE;
518 1.1 fvdl }
519 1.1 fvdl ahd->flags &= ~AHD_RUNNING_QOUTFIFO;
520 1.1 fvdl }
521 1.1 fvdl
522 1.1 fvdl /************************* Interrupt Handling *********************************/
523 1.1 fvdl void
524 1.1 fvdl ahd_handle_hwerrint(struct ahd_softc *ahd)
525 1.1 fvdl {
526 1.1 fvdl /*
527 1.1 fvdl * Some catastrophic hardware error has occurred.
528 1.1 fvdl * Print it for the user and disable the controller.
529 1.1 fvdl */
530 1.1 fvdl int i;
531 1.1 fvdl int error;
532 1.1 fvdl
533 1.1 fvdl error = ahd_inb(ahd, ERROR);
534 1.1 fvdl for (i = 0; i < num_errors; i++) {
535 1.1 fvdl if ((error & ahd_hard_errors[i].errno) != 0)
536 1.1 fvdl printf("%s: hwerrint, %s\n",
537 1.1 fvdl ahd_name(ahd), ahd_hard_errors[i].errmesg);
538 1.1 fvdl }
539 1.1 fvdl
540 1.1 fvdl ahd_dump_card_state(ahd);
541 1.1 fvdl panic("BRKADRINT");
542 1.1 fvdl
543 1.1 fvdl /* Tell everyone that this HBA is no longer available */
544 1.1 fvdl ahd_abort_scbs(ahd, CAM_TARGET_WILDCARD, ALL_CHANNELS,
545 1.1 fvdl CAM_LUN_WILDCARD, SCB_LIST_NULL, ROLE_UNKNOWN,
546 1.1 fvdl CAM_NO_HBA);
547 1.1 fvdl
548 1.1 fvdl /* Tell the system that this controller has gone away. */
549 1.1 fvdl ahd_free(ahd);
550 1.1 fvdl }
551 1.1 fvdl
552 1.1 fvdl void
553 1.1 fvdl ahd_handle_seqint(struct ahd_softc *ahd, u_int intstat)
554 1.1 fvdl {
555 1.1 fvdl u_int seqintcode;
556 1.1 fvdl
557 1.1 fvdl /*
558 1.1 fvdl * Save the sequencer interrupt code and clear the SEQINT
559 1.1 fvdl * bit. We will unpause the sequencer, if appropriate,
560 1.1 fvdl * after servicing the request.
561 1.1 fvdl */
562 1.1 fvdl seqintcode = ahd_inb(ahd, SEQINTCODE);
563 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSEQINT);
564 1.1 fvdl if ((ahd->bugs & AHD_INTCOLLISION_BUG) != 0) {
565 1.1 fvdl /*
566 1.1 fvdl * Unpause the sequencer and let it clear
567 1.1 fvdl * SEQINT by writing NO_SEQINT to it. This
568 1.1 fvdl * will cause the sequencer to be paused again,
569 1.1 fvdl * which is the expected state of this routine.
570 1.1 fvdl */
571 1.1 fvdl ahd_unpause(ahd);
572 1.1 fvdl while (!ahd_is_paused(ahd))
573 1.1 fvdl ;
574 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSEQINT);
575 1.1 fvdl }
576 1.1 fvdl ahd_update_modes(ahd);
577 1.1 fvdl #ifdef AHD_DEBUG
578 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
579 1.1 fvdl printf("%s: Handle Seqint Called for code %d\n",
580 1.1 fvdl ahd_name(ahd), seqintcode);
581 1.1 fvdl #endif
582 1.1 fvdl switch (seqintcode) {
583 1.9 thorpej case BAD_SCB_STATUS:
584 1.9 thorpej {
585 1.9 thorpej struct scb *scb;
586 1.9 thorpej u_int scbid;
587 1.9 thorpej int cmds_pending;
588 1.9 thorpej
589 1.9 thorpej scbid = ahd_get_scbptr(ahd);
590 1.9 thorpej scb = ahd_lookup_scb(ahd, scbid);
591 1.9 thorpej if (scb != NULL) {
592 1.9 thorpej ahd_complete_scb(ahd, scb);
593 1.9 thorpej } else {
594 1.9 thorpej printf("%s: WARNING no command for scb %d "
595 1.9 thorpej "(bad status)\n", ahd_name(ahd), scbid);
596 1.9 thorpej ahd_dump_card_state(ahd);
597 1.9 thorpej }
598 1.9 thorpej cmds_pending = ahd_inw(ahd, CMDS_PENDING);
599 1.9 thorpej if (cmds_pending > 0)
600 1.9 thorpej ahd_outw(ahd, CMDS_PENDING, cmds_pending - 1);
601 1.9 thorpej break;
602 1.9 thorpej }
603 1.1 fvdl case ENTERING_NONPACK:
604 1.1 fvdl {
605 1.1 fvdl struct scb *scb;
606 1.1 fvdl u_int scbid;
607 1.1 fvdl
608 1.1 fvdl AHD_ASSERT_MODES(ahd, ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK),
609 1.1 fvdl ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK));
610 1.1 fvdl scbid = ahd_get_scbptr(ahd);
611 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
612 1.1 fvdl if (scb == NULL) {
613 1.1 fvdl /*
614 1.1 fvdl * Somehow need to know if this
615 1.1 fvdl * is from a selection or reselection.
616 1.19 thorpej * From that, we can determine target
617 1.1 fvdl * ID so we at least have an I_T nexus.
618 1.1 fvdl */
619 1.1 fvdl } else {
620 1.1 fvdl ahd_outb(ahd, SAVED_SCSIID, scb->hscb->scsiid);
621 1.1 fvdl ahd_outb(ahd, SAVED_LUN, scb->hscb->lun);
622 1.1 fvdl ahd_outb(ahd, SEQ_FLAGS, 0x0);
623 1.1 fvdl }
624 1.1 fvdl if ((ahd_inb(ahd, LQISTAT2) & LQIPHASE_OUTPKT) != 0
625 1.1 fvdl && (ahd_inb(ahd, SCSISIGO) & ATNO) != 0) {
626 1.1 fvdl /*
627 1.1 fvdl * Phase change after read stream with
628 1.1 fvdl * CRC error with P0 asserted on last
629 1.1 fvdl * packet.
630 1.1 fvdl */
631 1.1 fvdl #ifdef AHD_DEBUG
632 1.1 fvdl if ((ahd_debug & AHD_SHOW_RECOVERY) != 0)
633 1.1 fvdl printf("%s: Assuming LQIPHASE_NLQ with "
634 1.1 fvdl "P0 assertion\n", ahd_name(ahd));
635 1.1 fvdl #endif
636 1.1 fvdl }
637 1.1 fvdl #ifdef AHD_DEBUG
638 1.1 fvdl if ((ahd_debug & AHD_SHOW_RECOVERY) != 0)
639 1.1 fvdl printf("%s: Entering NONPACK\n", ahd_name(ahd));
640 1.1 fvdl #endif
641 1.1 fvdl break;
642 1.1 fvdl }
643 1.1 fvdl case INVALID_SEQINT:
644 1.1 fvdl printf("%s: Invalid Sequencer interrupt occurred.\n",
645 1.1 fvdl ahd_name(ahd));
646 1.1 fvdl ahd_dump_card_state(ahd);
647 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
648 1.1 fvdl break;
649 1.1 fvdl case STATUS_OVERRUN:
650 1.1 fvdl {
651 1.9 thorpej struct scb *scb;
652 1.9 thorpej u_int scbid;
653 1.9 thorpej
654 1.9 thorpej scbid = ahd_get_scbptr(ahd);
655 1.9 thorpej scb = ahd_lookup_scb(ahd, scbid);
656 1.9 thorpej if (scb != NULL)
657 1.9 thorpej ahd_print_path(ahd, scb);
658 1.9 thorpej else
659 1.9 thorpej printf("%s: ", ahd_name(ahd));
660 1.9 thorpej printf("SCB %d Packetized Status Overrun", scbid);
661 1.1 fvdl ahd_dump_card_state(ahd);
662 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
663 1.1 fvdl break;
664 1.1 fvdl }
665 1.1 fvdl case CFG4ISTAT_INTR:
666 1.1 fvdl {
667 1.1 fvdl struct scb *scb;
668 1.1 fvdl u_int scbid;
669 1.1 fvdl
670 1.1 fvdl scbid = ahd_get_scbptr(ahd);
671 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
672 1.1 fvdl if (scb == NULL) {
673 1.1 fvdl ahd_dump_card_state(ahd);
674 1.1 fvdl printf("CFG4ISTAT: Free SCB %d referenced", scbid);
675 1.1 fvdl panic("For safety");
676 1.1 fvdl }
677 1.1 fvdl ahd_outq(ahd, HADDR, scb->sense_busaddr);
678 1.1 fvdl ahd_outw(ahd, HCNT, AHD_SENSE_BUFSIZE);
679 1.1 fvdl ahd_outb(ahd, HCNT + 2, 0);
680 1.1 fvdl ahd_outb(ahd, SG_CACHE_PRE, SG_LAST_SEG);
681 1.1 fvdl ahd_outb(ahd, DFCNTRL, PRELOADEN|SCSIEN|HDMAEN);
682 1.1 fvdl break;
683 1.1 fvdl }
684 1.1 fvdl case ILLEGAL_PHASE:
685 1.1 fvdl {
686 1.1 fvdl u_int bus_phase;
687 1.1 fvdl
688 1.1 fvdl bus_phase = ahd_inb(ahd, SCSISIGI) & PHASE_MASK;
689 1.1 fvdl printf("%s: ILLEGAL_PHASE 0x%x\n",
690 1.1 fvdl ahd_name(ahd), bus_phase);
691 1.1 fvdl
692 1.1 fvdl switch (bus_phase) {
693 1.1 fvdl case P_DATAOUT:
694 1.1 fvdl case P_DATAIN:
695 1.1 fvdl case P_DATAOUT_DT:
696 1.1 fvdl case P_DATAIN_DT:
697 1.1 fvdl case P_MESGOUT:
698 1.1 fvdl case P_STATUS:
699 1.1 fvdl case P_MESGIN:
700 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
701 1.1 fvdl printf("%s: Issued Bus Reset.\n", ahd_name(ahd));
702 1.1 fvdl break;
703 1.1 fvdl case P_COMMAND:
704 1.1 fvdl {
705 1.1 fvdl struct ahd_devinfo devinfo;
706 1.1 fvdl struct scb *scb;
707 1.1 fvdl struct ahd_initiator_tinfo *targ_info;
708 1.1 fvdl struct ahd_tmode_tstate *tstate;
709 1.1 fvdl struct ahd_transinfo *tinfo;
710 1.1 fvdl u_int scbid;
711 1.1 fvdl
712 1.1 fvdl /*
713 1.1 fvdl * If a target takes us into the command phase
714 1.1 fvdl * assume that it has been externally reset and
715 1.1 fvdl * has thus lost our previous packetized negotiation
716 1.1 fvdl * agreement. Since we have not sent an identify
717 1.1 fvdl * message and may not have fully qualified the
718 1.1 fvdl * connection, we change our command to TUR, assert
719 1.1 fvdl * ATN and ABORT the task when we go to message in
720 1.1 fvdl * phase. The OSM will see the REQUEUE_REQUEST
721 1.1 fvdl * status and retry the command.
722 1.1 fvdl */
723 1.1 fvdl scbid = ahd_get_scbptr(ahd);
724 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
725 1.1 fvdl if (scb == NULL) {
726 1.1 fvdl printf("Invalid phase with no valid SCB. "
727 1.1 fvdl "Resetting bus.\n");
728 1.1 fvdl ahd_reset_channel(ahd, 'A',
729 1.1 fvdl /*Initiate Reset*/TRUE);
730 1.1 fvdl break;
731 1.1 fvdl }
732 1.1 fvdl ahd_compile_devinfo(&devinfo, SCB_GET_OUR_ID(scb),
733 1.1 fvdl SCB_GET_TARGET(ahd, scb),
734 1.1 fvdl SCB_GET_LUN(scb),
735 1.1 fvdl SCB_GET_CHANNEL(ahd, scb),
736 1.1 fvdl ROLE_INITIATOR);
737 1.1 fvdl targ_info = ahd_fetch_transinfo(ahd,
738 1.1 fvdl devinfo.channel,
739 1.1 fvdl devinfo.our_scsiid,
740 1.1 fvdl devinfo.target,
741 1.1 fvdl &tstate);
742 1.1 fvdl tinfo = &targ_info->curr;
743 1.1 fvdl ahd_set_width(ahd, &devinfo, MSG_EXT_WDTR_BUS_8_BIT,
744 1.1 fvdl AHD_TRANS_ACTIVE, /*paused*/TRUE);
745 1.1 fvdl ahd_set_syncrate(ahd, &devinfo, /*period*/0,
746 1.1 fvdl /*offset*/0, /*ppr_options*/0,
747 1.1 fvdl AHD_TRANS_ACTIVE, /*paused*/TRUE);
748 1.1 fvdl ahd_outb(ahd, SCB_CDB_STORE, 0);
749 1.1 fvdl ahd_outb(ahd, SCB_CDB_STORE+1, 0);
750 1.1 fvdl ahd_outb(ahd, SCB_CDB_STORE+2, 0);
751 1.1 fvdl ahd_outb(ahd, SCB_CDB_STORE+3, 0);
752 1.1 fvdl ahd_outb(ahd, SCB_CDB_STORE+4, 0);
753 1.1 fvdl ahd_outb(ahd, SCB_CDB_STORE+5, 0);
754 1.1 fvdl ahd_outb(ahd, SCB_CDB_LEN, 6);
755 1.1 fvdl scb->hscb->control &= ~(TAG_ENB|SCB_TAG_TYPE);
756 1.1 fvdl scb->hscb->control |= MK_MESSAGE;
757 1.1 fvdl ahd_outb(ahd, SCB_CONTROL, scb->hscb->control);
758 1.1 fvdl ahd_outb(ahd, MSG_OUT, HOST_MSG);
759 1.1 fvdl ahd_outb(ahd, SAVED_SCSIID, scb->hscb->scsiid);
760 1.1 fvdl /*
761 1.1 fvdl * The lun is 0, regardless of the SCB's lun
762 1.1 fvdl * as we have not sent an identify message.
763 1.1 fvdl */
764 1.1 fvdl ahd_outb(ahd, SAVED_LUN, 0);
765 1.1 fvdl ahd_outb(ahd, SEQ_FLAGS, 0);
766 1.1 fvdl ahd_assert_atn(ahd);
767 1.1 fvdl scb->flags &= ~(SCB_PACKETIZED);
768 1.1 fvdl scb->flags |= SCB_ABORT|SCB_CMDPHASE_ABORT;
769 1.1 fvdl ahd_freeze_devq(ahd, scb);
770 1.1 fvdl ahd_set_transaction_status(scb, CAM_REQUEUE_REQ);
771 1.1 fvdl ahd_freeze_scb(scb);
772 1.1 fvdl
773 1.1 fvdl /*
774 1.1 fvdl * Allow the sequencer to continue with
775 1.1 fvdl * non-pack processing.
776 1.1 fvdl */
777 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
778 1.1 fvdl ahd_outb(ahd, CLRLQOINT1, CLRLQOPHACHGINPKT);
779 1.1 fvdl if ((ahd->bugs & AHD_CLRLQO_AUTOCLR_BUG) != 0) {
780 1.1 fvdl ahd_outb(ahd, CLRLQOINT1, 0);
781 1.1 fvdl }
782 1.1 fvdl #ifdef AHD_DEBUG
783 1.1 fvdl if ((ahd_debug & AHD_SHOW_RECOVERY) != 0) {
784 1.1 fvdl ahd_print_path(ahd, scb);
785 1.1 fvdl printf("Unexpected command phase from "
786 1.1 fvdl "packetized target\n");
787 1.1 fvdl }
788 1.1 fvdl #endif
789 1.1 fvdl break;
790 1.1 fvdl }
791 1.1 fvdl }
792 1.1 fvdl break;
793 1.1 fvdl }
794 1.1 fvdl case CFG4OVERRUN:
795 1.1 fvdl {
796 1.1 fvdl struct scb *scb;
797 1.1 fvdl u_int scb_index;
798 1.1 fvdl
799 1.1 fvdl #ifdef AHD_DEBUG
800 1.1 fvdl if ((ahd_debug & AHD_SHOW_RECOVERY) != 0) {
801 1.1 fvdl printf("%s: CFG4OVERRUN mode = %x\n", ahd_name(ahd),
802 1.1 fvdl ahd_inb(ahd, MODE_PTR));
803 1.1 fvdl }
804 1.1 fvdl #endif
805 1.1 fvdl scb_index = ahd_get_scbptr(ahd);
806 1.1 fvdl scb = ahd_lookup_scb(ahd, scb_index);
807 1.1 fvdl if (scb == NULL) {
808 1.1 fvdl /*
809 1.1 fvdl * Attempt to transfer to an SCB that is
810 1.1 fvdl * not outstanding.
811 1.1 fvdl */
812 1.1 fvdl ahd_assert_atn(ahd);
813 1.1 fvdl ahd_outb(ahd, MSG_OUT, HOST_MSG);
814 1.1 fvdl ahd->msgout_buf[0] = MSG_ABORT_TASK;
815 1.1 fvdl ahd->msgout_len = 1;
816 1.1 fvdl ahd->msgout_index = 0;
817 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
818 1.1 fvdl /*
819 1.1 fvdl * Clear status received flag to prevent any
820 1.1 fvdl * attempt to complete this bogus SCB.
821 1.1 fvdl */
822 1.1 fvdl ahd_outb(ahd, SCB_CONTROL,
823 1.1 fvdl ahd_inb(ahd, SCB_CONTROL) & ~STATUS_RCVD);
824 1.1 fvdl }
825 1.1 fvdl break;
826 1.1 fvdl }
827 1.1 fvdl case DUMP_CARD_STATE:
828 1.1 fvdl {
829 1.1 fvdl ahd_dump_card_state(ahd);
830 1.1 fvdl break;
831 1.1 fvdl }
832 1.1 fvdl case PDATA_REINIT:
833 1.1 fvdl {
834 1.1 fvdl #ifdef AHD_DEBUG
835 1.1 fvdl if ((ahd_debug & AHD_SHOW_RECOVERY) != 0) {
836 1.1 fvdl printf("%s: PDATA_REINIT - DFCNTRL = 0x%x "
837 1.1 fvdl "SG_CACHE_SHADOW = 0x%x\n",
838 1.1 fvdl ahd_name(ahd), ahd_inb(ahd, DFCNTRL),
839 1.1 fvdl ahd_inb(ahd, SG_CACHE_SHADOW));
840 1.1 fvdl }
841 1.1 fvdl #endif
842 1.1 fvdl ahd_reinitialize_dataptrs(ahd);
843 1.1 fvdl break;
844 1.1 fvdl }
845 1.1 fvdl case HOST_MSG_LOOP:
846 1.1 fvdl {
847 1.1 fvdl struct ahd_devinfo devinfo;
848 1.1 fvdl
849 1.1 fvdl /*
850 1.1 fvdl * The sequencer has encountered a message phase
851 1.1 fvdl * that requires host assistance for completion.
852 1.1 fvdl * While handling the message phase(s), we will be
853 1.1 fvdl * notified by the sequencer after each byte is
854 1.1 fvdl * transfered so we can track bus phase changes.
855 1.1 fvdl *
856 1.1 fvdl * If this is the first time we've seen a HOST_MSG_LOOP
857 1.1 fvdl * interrupt, initialize the state of the host message
858 1.1 fvdl * loop.
859 1.1 fvdl */
860 1.1 fvdl ahd_fetch_devinfo(ahd, &devinfo);
861 1.1 fvdl if (ahd->msg_type == MSG_TYPE_NONE) {
862 1.1 fvdl struct scb *scb;
863 1.1 fvdl u_int scb_index;
864 1.1 fvdl u_int bus_phase;
865 1.1 fvdl
866 1.1 fvdl bus_phase = ahd_inb(ahd, SCSISIGI) & PHASE_MASK;
867 1.1 fvdl if (bus_phase != P_MESGIN
868 1.1 fvdl && bus_phase != P_MESGOUT) {
869 1.1 fvdl printf("ahd_intr: HOST_MSG_LOOP bad "
870 1.1 fvdl "phase 0x%x\n", bus_phase);
871 1.1 fvdl /*
872 1.1 fvdl * Probably transitioned to bus free before
873 1.1 fvdl * we got here. Just punt the message.
874 1.1 fvdl */
875 1.1 fvdl ahd_dump_card_state(ahd);
876 1.1 fvdl ahd_clear_intstat(ahd);
877 1.1 fvdl ahd_restart(ahd);
878 1.1 fvdl return;
879 1.1 fvdl }
880 1.1 fvdl
881 1.1 fvdl scb_index = ahd_get_scbptr(ahd);
882 1.1 fvdl scb = ahd_lookup_scb(ahd, scb_index);
883 1.1 fvdl if (devinfo.role == ROLE_INITIATOR) {
884 1.1 fvdl if (bus_phase == P_MESGOUT)
885 1.1 fvdl ahd_setup_initiator_msgout(ahd,
886 1.1 fvdl &devinfo,
887 1.1 fvdl scb);
888 1.1 fvdl else {
889 1.1 fvdl ahd->msg_type =
890 1.1 fvdl MSG_TYPE_INITIATOR_MSGIN;
891 1.1 fvdl ahd->msgin_index = 0;
892 1.1 fvdl }
893 1.1 fvdl }
894 1.1 fvdl #if AHD_TARGET_MODE
895 1.1 fvdl else {
896 1.1 fvdl if (bus_phase == P_MESGOUT) {
897 1.1 fvdl ahd->msg_type =
898 1.1 fvdl MSG_TYPE_TARGET_MSGOUT;
899 1.1 fvdl ahd->msgin_index = 0;
900 1.1 fvdl }
901 1.1 fvdl else
902 1.1 fvdl ahd_setup_target_msgin(ahd,
903 1.1 fvdl &devinfo,
904 1.1 fvdl scb);
905 1.1 fvdl }
906 1.1 fvdl #endif
907 1.1 fvdl }
908 1.1 fvdl
909 1.1 fvdl ahd_handle_message_phase(ahd);
910 1.1 fvdl break;
911 1.1 fvdl }
912 1.1 fvdl case NO_MATCH:
913 1.1 fvdl {
914 1.1 fvdl /* Ensure we don't leave the selection hardware on */
915 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
916 1.1 fvdl ahd_outb(ahd, SCSISEQ0, ahd_inb(ahd, SCSISEQ0) & ~ENSELO);
917 1.1 fvdl
918 1.1 fvdl printf("%s:%c:%d: no active SCB for reconnecting "
919 1.1 fvdl "target - issuing BUS DEVICE RESET\n",
920 1.1 fvdl ahd_name(ahd), 'A', ahd_inb(ahd, SELID) >> 4);
921 1.1 fvdl printf("SAVED_SCSIID == 0x%x, SAVED_LUN == 0x%x, "
922 1.1 fvdl "REG0 == 0x%x ACCUM = 0x%x\n",
923 1.1 fvdl ahd_inb(ahd, SAVED_SCSIID), ahd_inb(ahd, SAVED_LUN),
924 1.1 fvdl ahd_inw(ahd, REG0), ahd_inb(ahd, ACCUM));
925 1.1 fvdl printf("SEQ_FLAGS == 0x%x, SCBPTR == 0x%x, BTT == 0x%x, "
926 1.1 fvdl "SINDEX == 0x%x\n",
927 1.1 fvdl ahd_inb(ahd, SEQ_FLAGS), ahd_get_scbptr(ahd),
928 1.1 fvdl ahd_find_busy_tcl(ahd,
929 1.1 fvdl BUILD_TCL(ahd_inb(ahd, SAVED_SCSIID),
930 1.1 fvdl ahd_inb(ahd, SAVED_LUN))),
931 1.1 fvdl ahd_inw(ahd, SINDEX));
932 1.1 fvdl printf("SELID == 0x%x, SCB_SCSIID == 0x%x, SCB_LUN == 0x%x, "
933 1.1 fvdl "SCB_CONTROL == 0x%x\n",
934 1.1 fvdl ahd_inb(ahd, SELID), ahd_inb_scbram(ahd, SCB_SCSIID),
935 1.1 fvdl ahd_inb_scbram(ahd, SCB_LUN),
936 1.1 fvdl ahd_inb_scbram(ahd, SCB_CONTROL));
937 1.1 fvdl printf("SCSIBUS[0] == 0x%x, SCSISIGI == 0x%x\n",
938 1.1 fvdl ahd_inb(ahd, SCSIBUS), ahd_inb(ahd, SCSISIGI));
939 1.1 fvdl printf("SXFRCTL0 == 0x%x\n", ahd_inb(ahd, SXFRCTL0));
940 1.1 fvdl printf("SEQCTL0 == 0x%x\n", ahd_inb(ahd, SEQCTL0));
941 1.1 fvdl ahd_dump_card_state(ahd);
942 1.1 fvdl ahd->msgout_buf[0] = MSG_BUS_DEV_RESET;
943 1.1 fvdl ahd->msgout_len = 1;
944 1.1 fvdl ahd->msgout_index = 0;
945 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
946 1.1 fvdl ahd_outb(ahd, MSG_OUT, HOST_MSG);
947 1.1 fvdl ahd_assert_atn(ahd);
948 1.1 fvdl break;
949 1.1 fvdl }
950 1.1 fvdl case PROTO_VIOLATION:
951 1.1 fvdl {
952 1.1 fvdl ahd_handle_proto_violation(ahd);
953 1.1 fvdl break;
954 1.1 fvdl }
955 1.1 fvdl case IGN_WIDE_RES:
956 1.1 fvdl {
957 1.1 fvdl struct ahd_devinfo devinfo;
958 1.1 fvdl
959 1.1 fvdl ahd_fetch_devinfo(ahd, &devinfo);
960 1.1 fvdl ahd_handle_ign_wide_residue(ahd, &devinfo);
961 1.1 fvdl break;
962 1.1 fvdl }
963 1.1 fvdl case BAD_PHASE:
964 1.1 fvdl {
965 1.1 fvdl u_int lastphase;
966 1.1 fvdl
967 1.1 fvdl lastphase = ahd_inb(ahd, LASTPHASE);
968 1.1 fvdl printf("%s:%c:%d: unknown scsi bus phase %x, "
969 1.1 fvdl "lastphase = 0x%x. Attempting to continue\n",
970 1.1 fvdl ahd_name(ahd), 'A',
971 1.1 fvdl SCSIID_TARGET(ahd, ahd_inb(ahd, SAVED_SCSIID)),
972 1.1 fvdl lastphase, ahd_inb(ahd, SCSISIGI));
973 1.1 fvdl break;
974 1.1 fvdl }
975 1.1 fvdl case MISSED_BUSFREE:
976 1.1 fvdl {
977 1.1 fvdl u_int lastphase;
978 1.1 fvdl
979 1.1 fvdl lastphase = ahd_inb(ahd, LASTPHASE);
980 1.1 fvdl printf("%s:%c:%d: Missed busfree. "
981 1.1 fvdl "Lastphase = 0x%x, Curphase = 0x%x\n",
982 1.1 fvdl ahd_name(ahd), 'A',
983 1.1 fvdl SCSIID_TARGET(ahd, ahd_inb(ahd, SAVED_SCSIID)),
984 1.1 fvdl lastphase, ahd_inb(ahd, SCSISIGI));
985 1.1 fvdl ahd_restart(ahd);
986 1.1 fvdl return;
987 1.1 fvdl }
988 1.1 fvdl case DATA_OVERRUN:
989 1.1 fvdl {
990 1.1 fvdl /*
991 1.1 fvdl * When the sequencer detects an overrun, it
992 1.1 fvdl * places the controller in "BITBUCKET" mode
993 1.1 fvdl * and allows the target to complete its transfer.
994 1.1 fvdl * Unfortunately, none of the counters get updated
995 1.1 fvdl * when the controller is in this mode, so we have
996 1.1 fvdl * no way of knowing how large the overrun was.
997 1.1 fvdl */
998 1.1 fvdl struct scb *scb;
999 1.1 fvdl u_int scbindex;
1000 1.1 fvdl #ifdef AHD_DEBUG
1001 1.1 fvdl u_int lastphase;
1002 1.1 fvdl #endif
1003 1.1 fvdl
1004 1.1 fvdl scbindex = ahd_get_scbptr(ahd);
1005 1.1 fvdl scb = ahd_lookup_scb(ahd, scbindex);
1006 1.1 fvdl #ifdef AHD_DEBUG
1007 1.1 fvdl lastphase = ahd_inb(ahd, LASTPHASE);
1008 1.1 fvdl if ((ahd_debug & AHD_SHOW_RECOVERY) != 0) {
1009 1.1 fvdl ahd_print_path(ahd, scb);
1010 1.1 fvdl printf("data overrun detected %s. Tag == 0x%x.\n",
1011 1.1 fvdl ahd_lookup_phase_entry(lastphase)->phasemsg,
1012 1.1 fvdl SCB_GET_TAG(scb));
1013 1.1 fvdl ahd_print_path(ahd, scb);
1014 1.1 fvdl printf("%s seen Data Phase. Length = %ld. "
1015 1.1 fvdl "NumSGs = %d.\n",
1016 1.1 fvdl ahd_inb(ahd, SEQ_FLAGS) & DPHASE
1017 1.1 fvdl ? "Have" : "Haven't",
1018 1.1 fvdl ahd_get_transfer_length(scb), scb->sg_count);
1019 1.1 fvdl ahd_dump_sglist(scb);
1020 1.1 fvdl }
1021 1.1 fvdl #endif
1022 1.1 fvdl
1023 1.1 fvdl /*
1024 1.1 fvdl * Set this and it will take effect when the
1025 1.1 fvdl * target does a command complete.
1026 1.1 fvdl */
1027 1.1 fvdl ahd_freeze_devq(ahd, scb);
1028 1.1 fvdl ahd_set_transaction_status(scb, CAM_DATA_RUN_ERR);
1029 1.1 fvdl ahd_freeze_scb(scb);
1030 1.1 fvdl break;
1031 1.1 fvdl }
1032 1.1 fvdl case MKMSG_FAILED:
1033 1.1 fvdl {
1034 1.1 fvdl struct ahd_devinfo devinfo;
1035 1.1 fvdl struct scb *scb;
1036 1.1 fvdl u_int scbid;
1037 1.1 fvdl
1038 1.1 fvdl ahd_fetch_devinfo(ahd, &devinfo);
1039 1.1 fvdl printf("%s:%c:%d:%d: Attempt to issue message failed\n",
1040 1.1 fvdl ahd_name(ahd), devinfo.channel, devinfo.target,
1041 1.1 fvdl devinfo.lun);
1042 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1043 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1044 1.1 fvdl if (scb != NULL
1045 1.1 fvdl && (scb->flags & SCB_RECOVERY_SCB) != 0)
1046 1.1 fvdl /*
1047 1.1 fvdl * Ensure that we didn't put a second instance of this
1048 1.1 fvdl * SCB into the QINFIFO.
1049 1.1 fvdl */
1050 1.1 fvdl ahd_search_qinfifo(ahd, SCB_GET_TARGET(ahd, scb),
1051 1.1 fvdl SCB_GET_CHANNEL(ahd, scb),
1052 1.1 fvdl SCB_GET_LUN(scb), SCB_GET_TAG(scb),
1053 1.1 fvdl ROLE_INITIATOR, /*status*/0,
1054 1.1 fvdl SEARCH_REMOVE);
1055 1.1 fvdl ahd_outb(ahd, SCB_CONTROL,
1056 1.1 fvdl ahd_inb(ahd, SCB_CONTROL) & ~MK_MESSAGE);
1057 1.1 fvdl break;
1058 1.1 fvdl }
1059 1.1 fvdl case TASKMGMT_FUNC_COMPLETE:
1060 1.1 fvdl {
1061 1.1 fvdl u_int scbid;
1062 1.1 fvdl struct scb *scb;
1063 1.1 fvdl
1064 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1065 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1066 1.1 fvdl if (scb != NULL) {
1067 1.1 fvdl u_int lun;
1068 1.1 fvdl u_int tag;
1069 1.1 fvdl cam_status error;
1070 1.1 fvdl
1071 1.1 fvdl ahd_print_path(ahd, scb);
1072 1.1 fvdl printf("Task Management Func 0x%x Complete\n",
1073 1.1 fvdl scb->hscb->task_management);
1074 1.1 fvdl lun = CAM_LUN_WILDCARD;
1075 1.1 fvdl tag = SCB_LIST_NULL;
1076 1.1 fvdl
1077 1.1 fvdl switch (scb->hscb->task_management) {
1078 1.1 fvdl case SIU_TASKMGMT_ABORT_TASK:
1079 1.9 thorpej tag = SCB_GET_TAG(scb);
1080 1.1 fvdl case SIU_TASKMGMT_ABORT_TASK_SET:
1081 1.1 fvdl case SIU_TASKMGMT_CLEAR_TASK_SET:
1082 1.1 fvdl lun = scb->hscb->lun;
1083 1.1 fvdl error = CAM_REQ_ABORTED;
1084 1.1 fvdl ahd_abort_scbs(ahd, SCB_GET_TARGET(ahd, scb),
1085 1.1 fvdl 'A', lun, tag, ROLE_INITIATOR,
1086 1.1 fvdl error);
1087 1.1 fvdl break;
1088 1.1 fvdl case SIU_TASKMGMT_LUN_RESET:
1089 1.1 fvdl lun = scb->hscb->lun;
1090 1.1 fvdl case SIU_TASKMGMT_TARGET_RESET:
1091 1.1 fvdl {
1092 1.1 fvdl struct ahd_devinfo devinfo;
1093 1.1 fvdl
1094 1.1 fvdl ahd_scb_devinfo(ahd, &devinfo, scb);
1095 1.1 fvdl error = CAM_BDR_SENT;
1096 1.1 fvdl ahd_handle_devreset(ahd, &devinfo, lun,
1097 1.1 fvdl CAM_BDR_SENT,
1098 1.1 fvdl lun != CAM_LUN_WILDCARD
1099 1.1 fvdl ? "Lun Reset"
1100 1.1 fvdl : "Target Reset",
1101 1.1 fvdl /*verbose_level*/0);
1102 1.1 fvdl break;
1103 1.1 fvdl }
1104 1.1 fvdl default:
1105 1.1 fvdl panic("Unexpected TaskMgmt Func\n");
1106 1.1 fvdl break;
1107 1.1 fvdl }
1108 1.1 fvdl }
1109 1.1 fvdl break;
1110 1.1 fvdl }
1111 1.1 fvdl case TASKMGMT_CMD_CMPLT_OKAY:
1112 1.1 fvdl {
1113 1.1 fvdl u_int scbid;
1114 1.1 fvdl struct scb *scb;
1115 1.1 fvdl
1116 1.1 fvdl /*
1117 1.1 fvdl * An ABORT TASK TMF failed to be delivered before
1118 1.1 fvdl * the targeted command completed normally.
1119 1.1 fvdl */
1120 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1121 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1122 1.1 fvdl if (scb != NULL) {
1123 1.1 fvdl /*
1124 1.1 fvdl * Remove the second instance of this SCB from
1125 1.1 fvdl * the QINFIFO if it is still there.
1126 1.1 fvdl */
1127 1.1 fvdl ahd_print_path(ahd, scb);
1128 1.1 fvdl printf("SCB completes before TMF\n");
1129 1.1 fvdl /*
1130 1.1 fvdl * Handle losing the race. Wait until any
1131 1.1 fvdl * current selection completes. We will then
1132 1.1 fvdl * set the TMF back to zero in this SCB so that
1133 1.1 fvdl * the sequencer doesn't bother to issue another
1134 1.1 fvdl * sequencer interrupt for its completion.
1135 1.1 fvdl */
1136 1.1 fvdl while ((ahd_inb(ahd, SCSISEQ0) & ENSELO) != 0
1137 1.1 fvdl && (ahd_inb(ahd, SSTAT0) & SELDO) == 0
1138 1.1 fvdl && (ahd_inb(ahd, SSTAT1) & SELTO) == 0)
1139 1.1 fvdl ;
1140 1.1 fvdl ahd_outb(ahd, SCB_TASK_MANAGEMENT, 0);
1141 1.1 fvdl ahd_search_qinfifo(ahd, SCB_GET_TARGET(ahd, scb),
1142 1.1 fvdl SCB_GET_CHANNEL(ahd, scb),
1143 1.9 thorpej SCB_GET_LUN(scb), SCB_GET_TAG(scb),
1144 1.1 fvdl ROLE_INITIATOR, /*status*/0,
1145 1.1 fvdl SEARCH_REMOVE);
1146 1.1 fvdl }
1147 1.1 fvdl break;
1148 1.1 fvdl }
1149 1.1 fvdl case TRACEPOINT0:
1150 1.1 fvdl case TRACEPOINT1:
1151 1.1 fvdl case TRACEPOINT2:
1152 1.1 fvdl case TRACEPOINT3:
1153 1.1 fvdl printf("%s: Tracepoint %d\n", ahd_name(ahd),
1154 1.1 fvdl seqintcode - TRACEPOINT0);
1155 1.1 fvdl break;
1156 1.1 fvdl case NO_SEQINT:
1157 1.1 fvdl break;
1158 1.1 fvdl case SAW_HWERR:
1159 1.1 fvdl ahd_handle_hwerrint(ahd);
1160 1.1 fvdl break;
1161 1.1 fvdl default:
1162 1.1 fvdl printf("%s: Unexpected SEQINTCODE %d\n", ahd_name(ahd),
1163 1.1 fvdl seqintcode);
1164 1.1 fvdl break;
1165 1.1 fvdl }
1166 1.1 fvdl /*
1167 1.1 fvdl * The sequencer is paused immediately on
1168 1.1 fvdl * a SEQINT, so we should restart it when
1169 1.1 fvdl * we're done.
1170 1.1 fvdl */
1171 1.1 fvdl ahd_unpause(ahd);
1172 1.1 fvdl }
1173 1.1 fvdl
1174 1.1 fvdl void
1175 1.1 fvdl ahd_handle_scsiint(struct ahd_softc *ahd, u_int intstat)
1176 1.1 fvdl {
1177 1.1 fvdl struct scb *scb;
1178 1.1 fvdl u_int status0;
1179 1.1 fvdl u_int status3;
1180 1.1 fvdl u_int status;
1181 1.1 fvdl u_int lqistat1;
1182 1.1 fvdl u_int lqostat0;
1183 1.1 fvdl u_int scbid;
1184 1.1 fvdl u_int busfreetime;
1185 1.1 fvdl
1186 1.1 fvdl ahd_update_modes(ahd);
1187 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
1188 1.1 fvdl
1189 1.1 fvdl status3 = ahd_inb(ahd, SSTAT3) & (NTRAMPERR|OSRAMPERR);
1190 1.1 fvdl status0 = ahd_inb(ahd, SSTAT0) & (IOERR|OVERRUN|SELDI|SELDO);
1191 1.1 fvdl status = ahd_inb(ahd, SSTAT1) & (SELTO|SCSIRSTI|BUSFREE|SCSIPERR);
1192 1.1 fvdl lqistat1 = ahd_inb(ahd, LQISTAT1);
1193 1.1 fvdl lqostat0 = ahd_inb(ahd, LQOSTAT0);
1194 1.1 fvdl busfreetime = ahd_inb(ahd, SSTAT2) & BUSFREETIME;
1195 1.1 fvdl if ((status0 & (SELDI|SELDO)) != 0) {
1196 1.1 fvdl u_int simode0;
1197 1.1 fvdl
1198 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
1199 1.1 fvdl simode0 = ahd_inb(ahd, SIMODE0);
1200 1.1 fvdl status0 &= simode0 & (IOERR|OVERRUN|SELDI|SELDO);
1201 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
1202 1.1 fvdl }
1203 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1204 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1205 1.1 fvdl if (scb != NULL
1206 1.1 fvdl && (ahd_inb(ahd, SEQ_FLAGS) & NOT_IDENTIFIED) != 0)
1207 1.1 fvdl scb = NULL;
1208 1.1 fvdl
1209 1.1 fvdl /* Make sure the sequencer is in a safe location. */
1210 1.1 fvdl ahd_clear_critical_section(ahd);
1211 1.1 fvdl
1212 1.1 fvdl if ((status0 & IOERR) != 0) {
1213 1.1 fvdl u_int now_lvd;
1214 1.1 fvdl
1215 1.1 fvdl now_lvd = ahd_inb(ahd, SBLKCTL) & ENAB40;
1216 1.1 fvdl printf("%s: Transceiver State Has Changed to %s mode\n",
1217 1.1 fvdl ahd_name(ahd), now_lvd ? "LVD" : "SE");
1218 1.1 fvdl ahd_outb(ahd, CLRSINT0, CLRIOERR);
1219 1.1 fvdl /*
1220 1.1 fvdl * A change in I/O mode is equivalent to a bus reset.
1221 1.1 fvdl */
1222 1.9 thorpej ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
1223 1.1 fvdl ahd_pause(ahd);
1224 1.1 fvdl ahd_setup_iocell_workaround(ahd);
1225 1.1 fvdl ahd_unpause(ahd);
1226 1.1 fvdl } else if ((status0 & OVERRUN) != 0) {
1227 1.1 fvdl printf("%s: SCSI offset overrun detected. Resetting bus.\n",
1228 1.1 fvdl ahd_name(ahd));
1229 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
1230 1.1 fvdl } else if ((status & SCSIRSTI) != 0) {
1231 1.1 fvdl printf("%s: Someone reset channel A\n", ahd_name(ahd));
1232 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/FALSE);
1233 1.1 fvdl } else if ((status & SCSIPERR) != 0) {
1234 1.1 fvdl ahd_handle_transmission_error(ahd);
1235 1.1 fvdl } else if (lqostat0 != 0) {
1236 1.1 fvdl printf("%s: lqostat0 == 0x%x!\n", ahd_name(ahd), lqostat0);
1237 1.1 fvdl ahd_outb(ahd, CLRLQOINT0, lqostat0);
1238 1.1 fvdl if ((ahd->bugs & AHD_CLRLQO_AUTOCLR_BUG) != 0) {
1239 1.1 fvdl ahd_outb(ahd, CLRLQOINT1, 0);
1240 1.1 fvdl }
1241 1.1 fvdl } else if ((status & SELTO) != 0) {
1242 1.1 fvdl u_int scbid;
1243 1.1 fvdl
1244 1.1 fvdl /* Stop the selection */
1245 1.1 fvdl ahd_outb(ahd, SCSISEQ0, 0);
1246 1.1 fvdl
1247 1.1 fvdl /* No more pending messages */
1248 1.1 fvdl ahd_clear_msg_state(ahd);
1249 1.1 fvdl
1250 1.1 fvdl /* Clear interrupt state */
1251 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRSELTIMEO|CLRBUSFREE|CLRSCSIPERR);
1252 1.1 fvdl
1253 1.1 fvdl /*
1254 1.1 fvdl * Although the driver does not care about the
1255 1.1 fvdl * 'Selection in Progress' status bit, the busy
1256 1.1 fvdl * LED does. SELINGO is only cleared by a sucessfull
1257 1.1 fvdl * selection, so we must manually clear it to insure
1258 1.1 fvdl * the LED turns off just incase no future successful
1259 1.1 fvdl * selections occur (e.g. no devices on the bus).
1260 1.1 fvdl */
1261 1.1 fvdl ahd_outb(ahd, CLRSINT0, CLRSELINGO);
1262 1.1 fvdl
1263 1.1 fvdl scbid = ahd_inw(ahd, WAITING_TID_HEAD);
1264 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1265 1.1 fvdl if (scb == NULL) {
1266 1.1 fvdl printf("%s: ahd_intr - referenced scb not "
1267 1.1 fvdl "valid during SELTO scb(0x%x)\n",
1268 1.1 fvdl ahd_name(ahd), scbid);
1269 1.1 fvdl ahd_dump_card_state(ahd);
1270 1.1 fvdl } else {
1271 1.1 fvdl struct ahd_devinfo devinfo;
1272 1.1 fvdl #ifdef AHD_DEBUG
1273 1.1 fvdl if ((ahd_debug & AHD_SHOW_SELTO) != 0) {
1274 1.1 fvdl ahd_print_path(ahd, scb);
1275 1.1 fvdl printf("Saw Selection Timeout for SCB 0x%x\n",
1276 1.1 fvdl scbid);
1277 1.1 fvdl }
1278 1.1 fvdl #endif
1279 1.1 fvdl /*
1280 1.1 fvdl * Force a renegotiation with this target just in
1281 1.1 fvdl * case the cable was pulled and will later be
1282 1.1 fvdl * re-attached. The target may forget its negotiation
1283 1.1 fvdl * settings with us should it attempt to reselect
1284 1.1 fvdl * during the interruption. The target will not issue
1285 1.1 fvdl * a unit attention in this case, so we must always
1286 1.1 fvdl * renegotiate.
1287 1.1 fvdl */
1288 1.1 fvdl ahd_scb_devinfo(ahd, &devinfo, scb);
1289 1.1 fvdl ahd_force_renegotiation(ahd, &devinfo);
1290 1.1 fvdl ahd_set_transaction_status(scb, CAM_SEL_TIMEOUT);
1291 1.1 fvdl ahd_freeze_devq(ahd, scb);
1292 1.1 fvdl }
1293 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
1294 1.1 fvdl ahd_iocell_first_selection(ahd);
1295 1.1 fvdl ahd_unpause(ahd);
1296 1.1 fvdl } else if ((status0 & (SELDI|SELDO)) != 0) {
1297 1.1 fvdl ahd_iocell_first_selection(ahd);
1298 1.1 fvdl ahd_unpause(ahd);
1299 1.1 fvdl } else if (status3 != 0) {
1300 1.1 fvdl printf("%s: SCSI Cell parity error SSTAT3 == 0x%x\n",
1301 1.1 fvdl ahd_name(ahd), status3);
1302 1.1 fvdl ahd_outb(ahd, CLRSINT3, status3);
1303 1.1 fvdl } else if ((lqistat1 & (LQIPHASE_LQ|LQIPHASE_NLQ)) != 0) {
1304 1.1 fvdl ahd_handle_lqiphase_error(ahd, lqistat1);
1305 1.1 fvdl } else if ((lqistat1 & LQICRCI_NLQ) != 0) {
1306 1.1 fvdl /*
1307 1.1 fvdl * This status can be delayed during some
1308 1.1 fvdl * streaming operations. The SCSIPHASE
1309 1.1 fvdl * handler has already dealt with this case
1310 1.1 fvdl * so just clear the error.
1311 1.1 fvdl */
1312 1.1 fvdl ahd_outb(ahd, CLRLQIINT1, CLRLQICRCI_NLQ);
1313 1.1 fvdl } else if ((status & BUSFREE) != 0) {
1314 1.1 fvdl u_int lqostat1;
1315 1.1 fvdl int restart;
1316 1.1 fvdl int clear_fifo;
1317 1.1 fvdl int packetized;
1318 1.1 fvdl u_int mode;
1319 1.1 fvdl
1320 1.1 fvdl /*
1321 1.1 fvdl * Clear our selection hardware as soon as possible.
1322 1.1 fvdl * We may have an entry in the waiting Q for this target,
1323 1.1 fvdl * that is affected by this busfree and we don't want to
1324 1.1 fvdl * go about selecting the target while we handle the event.
1325 1.1 fvdl */
1326 1.1 fvdl ahd_outb(ahd, SCSISEQ0, 0);
1327 1.1 fvdl
1328 1.1 fvdl /*
1329 1.1 fvdl * Determine what we were up to at the time of
1330 1.1 fvdl * the busfree.
1331 1.1 fvdl */
1332 1.1 fvdl mode = AHD_MODE_SCSI;
1333 1.1 fvdl busfreetime = ahd_inb(ahd, SSTAT2) & BUSFREETIME;
1334 1.1 fvdl lqostat1 = ahd_inb(ahd, LQOSTAT1);
1335 1.1 fvdl switch (busfreetime) {
1336 1.1 fvdl case BUSFREE_DFF0:
1337 1.1 fvdl case BUSFREE_DFF1:
1338 1.1 fvdl {
1339 1.1 fvdl u_int scbid;
1340 1.1 fvdl struct scb *scb;
1341 1.1 fvdl
1342 1.1 fvdl mode = busfreetime == BUSFREE_DFF0
1343 1.1 fvdl ? AHD_MODE_DFF0 : AHD_MODE_DFF1;
1344 1.1 fvdl ahd_set_modes(ahd, mode, mode);
1345 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1346 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1347 1.1 fvdl if (scb == NULL) {
1348 1.9 thorpej printf("%s: Invalid SCB %d in DFF%d "
1349 1.1 fvdl "during unexpected busfree\n",
1350 1.9 thorpej ahd_name(ahd), scbid, mode);
1351 1.1 fvdl packetized = 0;
1352 1.1 fvdl } else
1353 1.1 fvdl packetized = (scb->flags & SCB_PACKETIZED) != 0;
1354 1.1 fvdl clear_fifo = 1;
1355 1.1 fvdl break;
1356 1.1 fvdl }
1357 1.1 fvdl case BUSFREE_LQO:
1358 1.1 fvdl clear_fifo = 0;
1359 1.1 fvdl packetized = 1;
1360 1.1 fvdl break;
1361 1.1 fvdl default:
1362 1.1 fvdl clear_fifo = 0;
1363 1.1 fvdl packetized = (lqostat1 & LQOBUSFREE) != 0;
1364 1.1 fvdl if (!packetized
1365 1.1 fvdl && ahd_inb(ahd, LASTPHASE) == P_BUSFREE)
1366 1.1 fvdl packetized = 1;
1367 1.1 fvdl break;
1368 1.1 fvdl }
1369 1.1 fvdl
1370 1.1 fvdl #ifdef AHD_DEBUG
1371 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
1372 1.1 fvdl printf("Saw Busfree. Busfreetime = 0x%x.\n",
1373 1.1 fvdl busfreetime);
1374 1.1 fvdl #endif
1375 1.1 fvdl /*
1376 1.1 fvdl * Busfrees that occur in non-packetized phases are
1377 1.1 fvdl * handled by the nonpkt_busfree handler.
1378 1.1 fvdl */
1379 1.1 fvdl if (packetized && ahd_inb(ahd, LASTPHASE) == P_BUSFREE) {
1380 1.1 fvdl restart = ahd_handle_pkt_busfree(ahd, busfreetime);
1381 1.1 fvdl } else {
1382 1.1 fvdl packetized = 0;
1383 1.1 fvdl restart = ahd_handle_nonpkt_busfree(ahd);
1384 1.1 fvdl }
1385 1.1 fvdl /*
1386 1.1 fvdl * Clear the busfree interrupt status. The setting of
1387 1.1 fvdl * the interrupt is a pulse, so in a perfect world, we
1388 1.1 fvdl * would not need to muck with the ENBUSFREE logic. This
1389 1.1 fvdl * would ensure that if the bus moves on to another
1390 1.1 fvdl * connection, busfree protection is still in force. If
1391 1.1 fvdl * BUSFREEREV is broken, however, we must manually clear
1392 1.1 fvdl * the ENBUSFREE if the busfree occurred during a non-pack
1393 1.1 fvdl * connection so that we don't get false positives during
1394 1.1 fvdl * future, packetized, connections.
1395 1.1 fvdl */
1396 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRBUSFREE);
1397 1.1 fvdl if (packetized == 0
1398 1.1 fvdl && (ahd->bugs & AHD_BUSFREEREV_BUG) != 0)
1399 1.1 fvdl ahd_outb(ahd, SIMODE1,
1400 1.1 fvdl ahd_inb(ahd, SIMODE1) & ~ENBUSFREE);
1401 1.1 fvdl
1402 1.1 fvdl if (clear_fifo)
1403 1.1 fvdl ahd_clear_fifo(ahd, mode);
1404 1.1 fvdl
1405 1.1 fvdl ahd_clear_msg_state(ahd);
1406 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
1407 1.1 fvdl if (restart) {
1408 1.1 fvdl ahd_restart(ahd);
1409 1.1 fvdl } else {
1410 1.1 fvdl ahd_unpause(ahd);
1411 1.1 fvdl }
1412 1.1 fvdl } else {
1413 1.1 fvdl printf("%s: Missing case in ahd_handle_scsiint. status = %x\n",
1414 1.1 fvdl ahd_name(ahd), status);
1415 1.1 fvdl ahd_dump_card_state(ahd);
1416 1.1 fvdl ahd_clear_intstat(ahd);
1417 1.1 fvdl ahd_unpause(ahd);
1418 1.1 fvdl }
1419 1.1 fvdl }
1420 1.1 fvdl
1421 1.1 fvdl static void
1422 1.1 fvdl ahd_handle_transmission_error(struct ahd_softc *ahd)
1423 1.1 fvdl {
1424 1.1 fvdl struct scb *scb;
1425 1.1 fvdl u_int scbid;
1426 1.1 fvdl u_int lqistat1;
1427 1.1 fvdl u_int lqistat2;
1428 1.1 fvdl u_int msg_out;
1429 1.1 fvdl u_int curphase;
1430 1.1 fvdl u_int lastphase;
1431 1.1 fvdl u_int perrdiag;
1432 1.1 fvdl u_int cur_col;
1433 1.1 fvdl int silent;
1434 1.1 fvdl
1435 1.1 fvdl scb = NULL;
1436 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
1437 1.1 fvdl lqistat1 = ahd_inb(ahd, LQISTAT1) & ~(LQIPHASE_LQ|LQIPHASE_NLQ);
1438 1.1 fvdl lqistat2 = ahd_inb(ahd, LQISTAT2);
1439 1.1 fvdl if ((lqistat1 & (LQICRCI_NLQ|LQICRCI_LQ)) == 0
1440 1.1 fvdl && (ahd->bugs & AHD_NLQICRC_DELAYED_BUG) != 0) {
1441 1.1 fvdl u_int lqistate;
1442 1.1 fvdl
1443 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
1444 1.1 fvdl lqistate = ahd_inb(ahd, LQISTATE);
1445 1.1 fvdl if ((lqistate >= 0x1E && lqistate <= 0x24)
1446 1.1 fvdl || (lqistate == 0x29)) {
1447 1.1 fvdl #ifdef AHD_DEBUG
1448 1.1 fvdl if ((ahd_debug & AHD_SHOW_RECOVERY) != 0) {
1449 1.1 fvdl printf("%s: NLQCRC found via LQISTATE\n",
1450 1.1 fvdl ahd_name(ahd));
1451 1.1 fvdl }
1452 1.1 fvdl #endif
1453 1.1 fvdl lqistat1 |= LQICRCI_NLQ;
1454 1.1 fvdl }
1455 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
1456 1.1 fvdl }
1457 1.1 fvdl
1458 1.1 fvdl ahd_outb(ahd, CLRLQIINT1, lqistat1);
1459 1.1 fvdl lastphase = ahd_inb(ahd, LASTPHASE);
1460 1.1 fvdl curphase = ahd_inb(ahd, SCSISIGI) & PHASE_MASK;
1461 1.1 fvdl perrdiag = ahd_inb(ahd, PERRDIAG);
1462 1.1 fvdl msg_out = MSG_INITIATOR_DET_ERR;
1463 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRSCSIPERR);
1464 1.1 fvdl
1465 1.1 fvdl /*
1466 1.1 fvdl * Try to find the SCB associated with this error.
1467 1.1 fvdl */
1468 1.1 fvdl silent = FALSE;
1469 1.1 fvdl if (lqistat1 == 0
1470 1.1 fvdl || (lqistat1 & LQICRCI_NLQ) != 0) {
1471 1.1 fvdl if ((lqistat1 & (LQICRCI_NLQ|LQIOVERI_NLQ)) != 0)
1472 1.1 fvdl ahd_set_active_fifo(ahd);
1473 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1474 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1475 1.1 fvdl if (scb != NULL && SCB_IS_SILENT(scb))
1476 1.1 fvdl silent = TRUE;
1477 1.1 fvdl }
1478 1.1 fvdl
1479 1.1 fvdl cur_col = 0;
1480 1.1 fvdl if (silent == FALSE) {
1481 1.1 fvdl printf("%s: Transmission error detected\n", ahd_name(ahd));
1482 1.1 fvdl ahd_lqistat1_print(lqistat1, &cur_col, 50);
1483 1.1 fvdl ahd_lastphase_print(lastphase, &cur_col, 50);
1484 1.1 fvdl ahd_scsisigi_print(curphase, &cur_col, 50);
1485 1.1 fvdl ahd_perrdiag_print(perrdiag, &cur_col, 50);
1486 1.1 fvdl printf("\n");
1487 1.1 fvdl ahd_dump_card_state(ahd);
1488 1.1 fvdl }
1489 1.1 fvdl
1490 1.1 fvdl if ((lqistat1 & (LQIOVERI_LQ|LQIOVERI_NLQ)) != 0) {
1491 1.1 fvdl if (silent == FALSE) {
1492 1.1 fvdl printf("%s: Gross protocol error during incoming "
1493 1.1 fvdl "packet. lqistat1 == 0x%x. Resetting bus.\n",
1494 1.1 fvdl ahd_name(ahd), lqistat1);
1495 1.1 fvdl }
1496 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
1497 1.1 fvdl return;
1498 1.1 fvdl } else if ((lqistat1 & LQICRCI_LQ) != 0) {
1499 1.1 fvdl /*
1500 1.1 fvdl * A CRC error has been detected on an incoming LQ.
1501 1.1 fvdl * The bus is currently hung on the last ACK.
1502 1.1 fvdl * Hit LQIRETRY to release the last ack, and
1503 1.1 fvdl * wait for the sequencer to determine that ATNO
1504 1.1 fvdl * is asserted while in message out to take us
1505 1.1 fvdl * to our host message loop. No NONPACKREQ or
1506 1.1 fvdl * LQIPHASE type errors will occur in this
1507 1.1 fvdl * scenario. After this first LQIRETRY, the LQI
1508 1.1 fvdl * manager will be in ISELO where it will
1509 1.1 fvdl * happily sit until another packet phase begins.
1510 1.1 fvdl * Unexpected bus free detection is enabled
1511 1.1 fvdl * through any phases that occur after we release
1512 1.1 fvdl * this last ack until the LQI manager sees a
1513 1.1 fvdl * packet phase. This implies we may have to
1514 1.1 fvdl * ignore a perfectly valid "unexected busfree"
1515 1.1 fvdl * after our "initiator detected error" message is
1516 1.1 fvdl * sent. A busfree is the expected response after
1517 1.1 fvdl * we tell the target that it's L_Q was corrupted.
1518 1.1 fvdl * (SPI4R09 10.7.3.3.3)
1519 1.1 fvdl */
1520 1.1 fvdl ahd_outb(ahd, LQCTL2, LQIRETRY);
1521 1.1 fvdl printf("LQIRetry for LQICRCI_LQ to release ACK\n");
1522 1.1 fvdl } else if ((lqistat1 & LQICRCI_NLQ) != 0) {
1523 1.1 fvdl /*
1524 1.1 fvdl * We detected a CRC error in a NON-LQ packet.
1525 1.1 fvdl * The hardware has varying behavior in this situation
1526 1.1 fvdl * depending on whether this packet was part of a
1527 1.1 fvdl * stream or not.
1528 1.1 fvdl *
1529 1.1 fvdl * PKT by PKT mode:
1530 1.1 fvdl * The hardware has already acked the complete packet.
1531 1.1 fvdl * If the target honors our outstanding ATN condition,
1532 1.1 fvdl * we should be (or soon will be) in MSGOUT phase.
1533 1.1 fvdl * This will trigger the LQIPHASE_LQ status bit as the
1534 1.1 fvdl * hardware was expecting another LQ. Unexpected
1535 1.1 fvdl * busfree detection is enabled. Once LQIPHASE_LQ is
1536 1.1 fvdl * true (first entry into host message loop is much
1537 1.1 fvdl * the same), we must clear LQIPHASE_LQ and hit
1538 1.1 fvdl * LQIRETRY so the hardware is ready to handle
1539 1.1 fvdl * a future LQ. NONPACKREQ will not be asserted again
1540 1.1 fvdl * once we hit LQIRETRY until another packet is
1541 1.1 fvdl * processed. The target may either go busfree
1542 1.1 fvdl * or start another packet in response to our message.
1543 1.1 fvdl *
1544 1.1 fvdl * Read Streaming P0 asserted:
1545 1.1 fvdl * If we raise ATN and the target completes the entire
1546 1.1 fvdl * stream (P0 asserted during the last packet), the
1547 1.1 fvdl * hardware will ack all data and return to the ISTART
1548 1.1 fvdl * state. When the target reponds to our ATN condition,
1549 1.1 fvdl * LQIPHASE_LQ will be asserted. We should respond to
1550 1.1 fvdl * this with an LQIRETRY to prepare for any future
1551 1.1 fvdl * packets. NONPACKREQ will not be asserted again
1552 1.1 fvdl * once we hit LQIRETRY until another packet is
1553 1.1 fvdl * processed. The target may either go busfree or
1554 1.1 fvdl * start another packet in response to our message.
1555 1.1 fvdl * Busfree detection is enabled.
1556 1.1 fvdl *
1557 1.1 fvdl * Read Streaming P0 not asserted:
1558 1.1 fvdl * If we raise ATN and the target transitions to
1559 1.1 fvdl * MSGOUT in or after a packet where P0 is not
1560 1.1 fvdl * asserted, the hardware will assert LQIPHASE_NLQ.
1561 1.1 fvdl * We should respond to the LQIPHASE_NLQ with an
1562 1.1 fvdl * LQIRETRY. Should the target stay in a non-pkt
1563 1.1 fvdl * phase after we send our message, the hardware
1564 1.1 fvdl * will assert LQIPHASE_LQ. Recovery is then just as
1565 1.1 fvdl * listed above for the read streaming with P0 asserted.
1566 1.1 fvdl * Busfree detection is enabled.
1567 1.1 fvdl */
1568 1.1 fvdl if (silent == FALSE)
1569 1.1 fvdl printf("LQICRC_NLQ\n");
1570 1.1 fvdl if (scb == NULL) {
1571 1.1 fvdl printf("%s: No SCB valid for LQICRC_NLQ. "
1572 1.1 fvdl "Resetting bus\n", ahd_name(ahd));
1573 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
1574 1.1 fvdl return;
1575 1.1 fvdl }
1576 1.1 fvdl } else if ((lqistat1 & LQIBADLQI) != 0) {
1577 1.1 fvdl printf("Need to handle BADLQI!\n");
1578 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
1579 1.1 fvdl return;
1580 1.1 fvdl } else if ((perrdiag & (PARITYERR|PREVPHASE)) == PARITYERR) {
1581 1.1 fvdl if ((curphase & ~P_DATAIN_DT) != 0) {
1582 1.1 fvdl /* Ack the byte. So we can continue. */
1583 1.1 fvdl if (silent == FALSE)
1584 1.1 fvdl printf("Acking %s to clear perror\n",
1585 1.1 fvdl ahd_lookup_phase_entry(curphase)->phasemsg);
1586 1.1 fvdl ahd_inb(ahd, SCSIDAT);
1587 1.1 fvdl }
1588 1.1 fvdl
1589 1.1 fvdl if (curphase == P_MESGIN)
1590 1.1 fvdl msg_out = MSG_PARITY_ERROR;
1591 1.1 fvdl }
1592 1.1 fvdl
1593 1.1 fvdl /*
1594 1.1 fvdl * We've set the hardware to assert ATN if we
1595 1.1 fvdl * get a parity error on "in" phases, so all we
1596 1.1 fvdl * need to do is stuff the message buffer with
1597 1.1 fvdl * the appropriate message. "In" phases have set
1598 1.1 fvdl * mesg_out to something other than MSG_NOP.
1599 1.1 fvdl */
1600 1.1 fvdl ahd->send_msg_perror = msg_out;
1601 1.1 fvdl if (scb != NULL && msg_out == MSG_INITIATOR_DET_ERR)
1602 1.1 fvdl scb->flags |= SCB_TRANSMISSION_ERROR;
1603 1.1 fvdl ahd_outb(ahd, MSG_OUT, HOST_MSG);
1604 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
1605 1.1 fvdl ahd_unpause(ahd);
1606 1.1 fvdl }
1607 1.1 fvdl
1608 1.1 fvdl static void
1609 1.1 fvdl ahd_handle_lqiphase_error(struct ahd_softc *ahd, u_int lqistat1)
1610 1.1 fvdl {
1611 1.1 fvdl /*
1612 1.1 fvdl * Clear the sources of the interrupts.
1613 1.1 fvdl */
1614 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
1615 1.1 fvdl ahd_outb(ahd, CLRLQIINT1, lqistat1);
1616 1.1 fvdl
1617 1.1 fvdl /*
1618 1.1 fvdl * If the "illegal" phase changes were in response
1619 1.1 fvdl * to our ATN to flag a CRC error, AND we ended up
1620 1.1 fvdl * on packet boundaries, clear the error, restart the
1621 1.1 fvdl * LQI manager as appropriate, and go on our merry
1622 1.1 fvdl * way toward sending the message. Otherwise, reset
1623 1.1 fvdl * the bus to clear the error.
1624 1.1 fvdl */
1625 1.1 fvdl ahd_set_active_fifo(ahd);
1626 1.1 fvdl if ((ahd_inb(ahd, SCSISIGO) & ATNO) != 0
1627 1.1 fvdl && (ahd_inb(ahd, MDFFSTAT) & DLZERO) != 0) {
1628 1.1 fvdl if ((lqistat1 & LQIPHASE_LQ) != 0) {
1629 1.1 fvdl printf("LQIRETRY for LQIPHASE_LQ\n");
1630 1.1 fvdl ahd_outb(ahd, LQCTL2, LQIRETRY);
1631 1.1 fvdl } else if ((lqistat1 & LQIPHASE_NLQ) != 0) {
1632 1.1 fvdl printf("LQIRETRY for LQIPHASE_NLQ\n");
1633 1.1 fvdl ahd_outb(ahd, LQCTL2, LQIRETRY);
1634 1.1 fvdl } else
1635 1.1 fvdl panic("ahd_handle_lqiphase_error: No phase errors\n");
1636 1.1 fvdl ahd_dump_card_state(ahd);
1637 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
1638 1.1 fvdl ahd_unpause(ahd);
1639 1.1 fvdl } else {
1640 1.1 fvdl printf("Reseting Channel for LQI Phase error\n");
1641 1.1 fvdl ahd_dump_card_state(ahd);
1642 1.1 fvdl ahd_reset_channel(ahd, 'A', /*Initiate Reset*/TRUE);
1643 1.1 fvdl }
1644 1.1 fvdl }
1645 1.1 fvdl
1646 1.1 fvdl /*
1647 1.1 fvdl * Packetized unexpected or expected busfree.
1648 1.1 fvdl * Entered in mode based on busfreetime.
1649 1.1 fvdl */
1650 1.1 fvdl static int
1651 1.1 fvdl ahd_handle_pkt_busfree(struct ahd_softc *ahd, u_int busfreetime)
1652 1.1 fvdl {
1653 1.1 fvdl u_int lqostat1;
1654 1.1 fvdl
1655 1.1 fvdl AHD_ASSERT_MODES(ahd, ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK),
1656 1.1 fvdl ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK));
1657 1.1 fvdl lqostat1 = ahd_inb(ahd, LQOSTAT1);
1658 1.1 fvdl if ((lqostat1 & LQOBUSFREE) != 0) {
1659 1.1 fvdl struct scb *scb;
1660 1.1 fvdl u_int scbid;
1661 1.1 fvdl u_int saved_scbptr;
1662 1.1 fvdl u_int waiting_h;
1663 1.1 fvdl u_int waiting_t;
1664 1.1 fvdl u_int next;
1665 1.1 fvdl
1666 1.1 fvdl if ((busfreetime & BUSFREE_LQO) == 0)
1667 1.1 fvdl printf("%s: Warning, BUSFREE time is 0x%x. "
1668 1.1 fvdl "Expected BUSFREE_LQO.\n",
1669 1.1 fvdl ahd_name(ahd), busfreetime);
1670 1.1 fvdl /*
1671 1.1 fvdl * The LQO manager detected an unexpected busfree
1672 1.1 fvdl * either:
1673 1.1 fvdl *
1674 1.1 fvdl * 1) During an outgoing LQ.
1675 1.1 fvdl * 2) After an outgoing LQ but before the first
1676 1.1 fvdl * REQ of the command packet.
1677 1.1 fvdl * 3) During an outgoing command packet.
1678 1.1 fvdl *
1679 1.1 fvdl * In all cases, CURRSCB is pointing to the
1680 1.1 fvdl * SCB that encountered the failure. Clean
1681 1.1 fvdl * up the queue, clear SELDO and LQOBUSFREE,
1682 1.1 fvdl * and allow the sequencer to restart the select
1683 1.1 fvdl * out at its lesure.
1684 1.1 fvdl */
1685 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
1686 1.1 fvdl scbid = ahd_inw(ahd, CURRSCB);
1687 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1688 1.1 fvdl if (scb == NULL)
1689 1.1 fvdl panic("SCB not valid during LQOBUSFREE");
1690 1.1 fvdl /*
1691 1.1 fvdl * Clear the status.
1692 1.1 fvdl */
1693 1.1 fvdl ahd_outb(ahd, CLRLQOINT1, CLRLQOBUSFREE);
1694 1.1 fvdl if ((ahd->bugs & AHD_CLRLQO_AUTOCLR_BUG) != 0)
1695 1.1 fvdl ahd_outb(ahd, CLRLQOINT1, 0);
1696 1.1 fvdl ahd_outb(ahd, SCSISEQ0, ahd_inb(ahd, SCSISEQ0) & ~ENSELO);
1697 1.1 fvdl ahd_flush_device_writes(ahd);
1698 1.1 fvdl ahd_outb(ahd, CLRSINT0, CLRSELDO);
1699 1.1 fvdl
1700 1.1 fvdl /*
1701 1.1 fvdl * Return the LQO manager to its idle loop. It will
1702 1.1 fvdl * not do this automatically if the busfree occurs
1703 1.1 fvdl * after the first REQ of either the LQ or command
1704 1.1 fvdl * packet or between the LQ and command packet.
1705 1.1 fvdl */
1706 1.1 fvdl ahd_outb(ahd, LQCTL2, ahd_inb(ahd, LQCTL2) | LQOTOIDLE);
1707 1.1 fvdl
1708 1.1 fvdl /*
1709 1.1 fvdl * Update the waiting for selection queue so
1710 1.1 fvdl * we restart on the correct SCB.
1711 1.1 fvdl */
1712 1.1 fvdl waiting_h = ahd_inw(ahd, WAITING_TID_HEAD);
1713 1.1 fvdl saved_scbptr = ahd_get_scbptr(ahd);
1714 1.1 fvdl if (waiting_h != scbid) {
1715 1.1 fvdl
1716 1.1 fvdl ahd_outw(ahd, WAITING_TID_HEAD, scbid);
1717 1.1 fvdl waiting_t = ahd_inw(ahd, WAITING_TID_TAIL);
1718 1.1 fvdl if (waiting_t == waiting_h) {
1719 1.1 fvdl ahd_outw(ahd, WAITING_TID_TAIL, scbid);
1720 1.1 fvdl next = SCB_LIST_NULL;
1721 1.1 fvdl } else {
1722 1.1 fvdl ahd_set_scbptr(ahd, waiting_h);
1723 1.1 fvdl next = ahd_inw_scbram(ahd, SCB_NEXT2);
1724 1.1 fvdl }
1725 1.1 fvdl ahd_set_scbptr(ahd, scbid);
1726 1.1 fvdl ahd_outw(ahd, SCB_NEXT2, next);
1727 1.1 fvdl }
1728 1.1 fvdl ahd_set_scbptr(ahd, saved_scbptr);
1729 1.1 fvdl if (scb->crc_retry_count < AHD_MAX_LQ_CRC_ERRORS) {
1730 1.1 fvdl if (SCB_IS_SILENT(scb) == FALSE) {
1731 1.1 fvdl ahd_print_path(ahd, scb);
1732 1.1 fvdl printf("Probable outgoing LQ CRC error. "
1733 1.1 fvdl "Retrying command\n");
1734 1.1 fvdl }
1735 1.1 fvdl scb->crc_retry_count++;
1736 1.1 fvdl } else {
1737 1.1 fvdl ahd_set_transaction_status(scb, CAM_UNCOR_PARITY);
1738 1.1 fvdl ahd_freeze_scb(scb);
1739 1.1 fvdl ahd_freeze_devq(ahd, scb);
1740 1.1 fvdl }
1741 1.1 fvdl /* Return unpausing the sequencer. */
1742 1.1 fvdl return (0);
1743 1.1 fvdl } else if ((ahd_inb(ahd, PERRDIAG) & PARITYERR) != 0) {
1744 1.1 fvdl /*
1745 1.1 fvdl * Ignore what are really parity errors that
1746 1.1 fvdl * occur on the last REQ of a free running
1747 1.1 fvdl * clock prior to going busfree. Some drives
1748 1.1 fvdl * do not properly active negate just before
1749 1.1 fvdl * going busfree resulting in a parity glitch.
1750 1.1 fvdl */
1751 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRSCSIPERR|CLRBUSFREE);
1752 1.1 fvdl #ifdef AHD_DEBUG
1753 1.1 fvdl if ((ahd_debug & AHD_SHOW_MASKED_ERRORS) != 0)
1754 1.1 fvdl printf("%s: Parity on last REQ detected "
1755 1.1 fvdl "during busfree phase.\n",
1756 1.1 fvdl ahd_name(ahd));
1757 1.1 fvdl #endif
1758 1.1 fvdl /* Return unpausing the sequencer. */
1759 1.1 fvdl return (0);
1760 1.1 fvdl }
1761 1.1 fvdl if (ahd->src_mode != AHD_MODE_SCSI) {
1762 1.1 fvdl u_int scbid;
1763 1.1 fvdl struct scb *scb;
1764 1.1 fvdl
1765 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1766 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1767 1.1 fvdl ahd_print_path(ahd, scb);
1768 1.1 fvdl printf("Unexpected PKT busfree condition\n");
1769 1.1 fvdl ahd_dump_card_state(ahd);
1770 1.1 fvdl ahd_abort_scbs(ahd, SCB_GET_TARGET(ahd, scb), 'A',
1771 1.1 fvdl SCB_GET_LUN(scb), SCB_GET_TAG(scb),
1772 1.1 fvdl ROLE_INITIATOR, CAM_UNEXP_BUSFREE);
1773 1.1 fvdl
1774 1.1 fvdl /* Return restarting the sequencer. */
1775 1.1 fvdl return (1);
1776 1.1 fvdl }
1777 1.1 fvdl printf("%s: Unexpected PKT busfree condition\n", ahd_name(ahd));
1778 1.1 fvdl ahd_dump_card_state(ahd);
1779 1.1 fvdl /* Restart the sequencer. */
1780 1.1 fvdl return (1);
1781 1.1 fvdl }
1782 1.1 fvdl
1783 1.1 fvdl /*
1784 1.1 fvdl * Non-packetized unexpected or expected busfree.
1785 1.1 fvdl */
1786 1.1 fvdl static int
1787 1.1 fvdl ahd_handle_nonpkt_busfree(struct ahd_softc *ahd)
1788 1.1 fvdl {
1789 1.1 fvdl struct ahd_devinfo devinfo;
1790 1.1 fvdl struct scb *scb;
1791 1.1 fvdl u_int lastphase;
1792 1.1 fvdl u_int saved_scsiid;
1793 1.1 fvdl u_int saved_lun;
1794 1.1 fvdl u_int target;
1795 1.1 fvdl u_int initiator_role_id;
1796 1.1 fvdl u_int scbid;
1797 1.1 fvdl u_int ppr_busfree;
1798 1.1 fvdl int printerror;
1799 1.1 fvdl
1800 1.1 fvdl /*
1801 1.1 fvdl * Look at what phase we were last in. If its message out,
1802 1.1 fvdl * chances are pretty good that the busfree was in response
1803 1.1 fvdl * to one of our abort requests.
1804 1.1 fvdl */
1805 1.1 fvdl lastphase = ahd_inb(ahd, LASTPHASE);
1806 1.1 fvdl saved_scsiid = ahd_inb(ahd, SAVED_SCSIID);
1807 1.1 fvdl saved_lun = ahd_inb(ahd, SAVED_LUN);
1808 1.1 fvdl target = SCSIID_TARGET(ahd, saved_scsiid);
1809 1.1 fvdl initiator_role_id = SCSIID_OUR_ID(saved_scsiid);
1810 1.1 fvdl ahd_compile_devinfo(&devinfo, initiator_role_id,
1811 1.1 fvdl target, saved_lun, 'A', ROLE_INITIATOR);
1812 1.1 fvdl printerror = 1;
1813 1.1 fvdl
1814 1.1 fvdl scbid = ahd_get_scbptr(ahd);
1815 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
1816 1.1 fvdl if (scb != NULL
1817 1.1 fvdl && (ahd_inb(ahd, SEQ_FLAGS) & NOT_IDENTIFIED) != 0)
1818 1.1 fvdl scb = NULL;
1819 1.1 fvdl
1820 1.1 fvdl ppr_busfree = (ahd->msg_flags & MSG_FLAG_EXPECT_PPR_BUSFREE) != 0;
1821 1.1 fvdl if (lastphase == P_MESGOUT) {
1822 1.1 fvdl u_int tag;
1823 1.1 fvdl
1824 1.1 fvdl tag = SCB_LIST_NULL;
1825 1.1 fvdl if (ahd_sent_msg(ahd, AHDMSG_1B, MSG_ABORT_TAG, TRUE)
1826 1.1 fvdl || ahd_sent_msg(ahd, AHDMSG_1B, MSG_ABORT, TRUE)) {
1827 1.1 fvdl int found;
1828 1.1 fvdl int sent_msg;
1829 1.1 fvdl
1830 1.1 fvdl if (scb == NULL) {
1831 1.1 fvdl ahd_print_devinfo(ahd, &devinfo);
1832 1.1 fvdl printf("Abort for unidentified "
1833 1.1 fvdl "connection completed.\n");
1834 1.1 fvdl /* restart the sequencer. */
1835 1.1 fvdl return (1);
1836 1.1 fvdl }
1837 1.1 fvdl sent_msg = ahd->msgout_buf[ahd->msgout_index - 1];
1838 1.1 fvdl ahd_print_path(ahd, scb);
1839 1.1 fvdl printf("SCB %d - Abort%s Completed.\n",
1840 1.1 fvdl SCB_GET_TAG(scb),
1841 1.1 fvdl sent_msg == MSG_ABORT_TAG ? "" : " Tag");
1842 1.1 fvdl
1843 1.1 fvdl if (sent_msg == MSG_ABORT_TAG)
1844 1.1 fvdl tag = SCB_GET_TAG(scb);
1845 1.1 fvdl
1846 1.1 fvdl if ((scb->flags & SCB_CMDPHASE_ABORT) != 0) {
1847 1.1 fvdl /*
1848 1.1 fvdl * This abort is in response to an
1849 1.1 fvdl * unexpected switch to command phase
1850 1.1 fvdl * for a packetized connection. Since
1851 1.1 fvdl * the identify message was never sent,
1852 1.1 fvdl * "saved lun" is 0. We really want to
1853 1.1 fvdl * abort only the SCB that encountered
1854 1.1 fvdl * this error, which could have a different
1855 1.1 fvdl * lun. The SCB will be retried so the OS
1856 1.1 fvdl * will see the UA after renegotiating to
1857 1.1 fvdl * packetized.
1858 1.1 fvdl */
1859 1.1 fvdl tag = SCB_GET_TAG(scb);
1860 1.1 fvdl saved_lun = scb->hscb->lun;
1861 1.1 fvdl }
1862 1.1 fvdl found = ahd_abort_scbs(ahd, target, 'A', saved_lun,
1863 1.1 fvdl tag, ROLE_INITIATOR,
1864 1.1 fvdl CAM_REQ_ABORTED);
1865 1.1 fvdl printf("found == 0x%x\n", found);
1866 1.1 fvdl printerror = 0;
1867 1.1 fvdl } else if (ahd_sent_msg(ahd, AHDMSG_1B,
1868 1.1 fvdl MSG_BUS_DEV_RESET, TRUE)) {
1869 1.1 fvdl #ifdef __FreeBSD__
1870 1.1 fvdl /*
1871 1.1 fvdl * Don't mark the user's request for this BDR
1872 1.1 fvdl * as completing with CAM_BDR_SENT. CAM3
1873 1.1 fvdl * specifies CAM_REQ_CMP.
1874 1.1 fvdl */
1875 1.1 fvdl if (scb != NULL
1876 1.1 fvdl && scb->io_ctx->ccb_h.func_code== XPT_RESET_DEV
1877 1.1 fvdl && ahd_match_scb(ahd, scb, target, 'A',
1878 1.1 fvdl CAM_LUN_WILDCARD, SCB_LIST_NULL,
1879 1.1 fvdl ROLE_INITIATOR))
1880 1.1 fvdl ahd_set_transaction_status(scb, CAM_REQ_CMP);
1881 1.1 fvdl #endif
1882 1.1 fvdl ahd_handle_devreset(ahd, &devinfo, CAM_LUN_WILDCARD,
1883 1.1 fvdl CAM_BDR_SENT, "Bus Device Reset",
1884 1.1 fvdl /*verbose_level*/0);
1885 1.1 fvdl printerror = 0;
1886 1.1 fvdl } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_PPR, FALSE)
1887 1.1 fvdl && ppr_busfree == 0) {
1888 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
1889 1.1 fvdl struct ahd_tmode_tstate *tstate;
1890 1.1 fvdl
1891 1.1 fvdl /*
1892 1.1 fvdl * PPR Rejected. Try non-ppr negotiation
1893 1.1 fvdl * and retry command.
1894 1.1 fvdl */
1895 1.1 fvdl #ifdef AHD_DEBUG
1896 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
1897 1.1 fvdl printf("PPR negotiation rejected busfree.\n");
1898 1.1 fvdl #endif
1899 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo.channel,
1900 1.1 fvdl devinfo.our_scsiid,
1901 1.1 fvdl devinfo.target, &tstate);
1902 1.1 fvdl tinfo->curr.transport_version = 2;
1903 1.1 fvdl tinfo->goal.transport_version = 2;
1904 1.1 fvdl tinfo->goal.ppr_options = 0;
1905 1.1 fvdl ahd_qinfifo_requeue_tail(ahd, scb);
1906 1.1 fvdl printerror = 0;
1907 1.16 thorpej } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_WDTR, FALSE)
1908 1.1 fvdl && ppr_busfree == 0) {
1909 1.1 fvdl /*
1910 1.16 thorpej * Negotiation Rejected. Go-narrow and
1911 1.1 fvdl * retry command.
1912 1.1 fvdl */
1913 1.1 fvdl #ifdef AHD_DEBUG
1914 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
1915 1.16 thorpej printf("WDTR Negotiation rejected busfree.\n");
1916 1.1 fvdl #endif
1917 1.1 fvdl ahd_set_width(ahd, &devinfo,
1918 1.1 fvdl MSG_EXT_WDTR_BUS_8_BIT,
1919 1.1 fvdl AHD_TRANS_CUR|AHD_TRANS_GOAL,
1920 1.1 fvdl /*paused*/TRUE);
1921 1.16 thorpej ahd_qinfifo_requeue_tail(ahd, scb);
1922 1.16 thorpej printerror = 0;
1923 1.16 thorpej } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_SDTR, FALSE)
1924 1.16 thorpej && ppr_busfree == 0) {
1925 1.16 thorpej /*
1926 1.16 thorpej * Negotiation Rejected. Go-async and
1927 1.16 thorpej * retry command.
1928 1.16 thorpej */
1929 1.16 thorpej #ifdef AHD_DEBUG
1930 1.16 thorpej if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
1931 1.16 thorpej printf("SDTR negotiation rejected busfree.\n");
1932 1.16 thorpej #endif
1933 1.1 fvdl ahd_set_syncrate(ahd, &devinfo,
1934 1.1 fvdl /*period*/0, /*offset*/0,
1935 1.1 fvdl /*ppr_options*/0,
1936 1.1 fvdl AHD_TRANS_CUR|AHD_TRANS_GOAL,
1937 1.1 fvdl /*paused*/TRUE);
1938 1.1 fvdl ahd_qinfifo_requeue_tail(ahd, scb);
1939 1.1 fvdl printerror = 0;
1940 1.1 fvdl } else if ((ahd->msg_flags & MSG_FLAG_EXPECT_IDE_BUSFREE) != 0
1941 1.1 fvdl && ahd_sent_msg(ahd, AHDMSG_1B,
1942 1.1 fvdl MSG_INITIATOR_DET_ERR, TRUE)) {
1943 1.1 fvdl
1944 1.1 fvdl #ifdef AHD_DEBUG
1945 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
1946 1.1 fvdl printf("Expected IDE Busfree\n");
1947 1.1 fvdl #endif
1948 1.1 fvdl printerror = 0;
1949 1.1 fvdl } else if ((ahd->msg_flags & MSG_FLAG_EXPECT_QASREJ_BUSFREE)
1950 1.1 fvdl && ahd_sent_msg(ahd, AHDMSG_1B,
1951 1.1 fvdl MSG_MESSAGE_REJECT, TRUE)) {
1952 1.1 fvdl
1953 1.1 fvdl #ifdef AHD_DEBUG
1954 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
1955 1.1 fvdl printf("Expected QAS Reject Busfree\n");
1956 1.1 fvdl #endif
1957 1.1 fvdl printerror = 0;
1958 1.1 fvdl }
1959 1.1 fvdl }
1960 1.1 fvdl
1961 1.1 fvdl /*
1962 1.1 fvdl * The busfree required flag is honored at the end of
1963 1.1 fvdl * the message phases. We check it last in case we
1964 1.1 fvdl * had to send some other message that caused a busfree.
1965 1.1 fvdl */
1966 1.1 fvdl if (printerror != 0
1967 1.1 fvdl && (lastphase == P_MESGIN || lastphase == P_MESGOUT)
1968 1.1 fvdl && ((ahd->msg_flags & MSG_FLAG_EXPECT_PPR_BUSFREE) != 0)) {
1969 1.1 fvdl
1970 1.1 fvdl ahd_freeze_devq(ahd, scb);
1971 1.1 fvdl ahd_set_transaction_status(scb, CAM_REQUEUE_REQ);
1972 1.1 fvdl ahd_freeze_scb(scb);
1973 1.1 fvdl if ((ahd->msg_flags & MSG_FLAG_IU_REQ_CHANGED) != 0) {
1974 1.1 fvdl ahd_abort_scbs(ahd, SCB_GET_TARGET(ahd, scb),
1975 1.1 fvdl SCB_GET_CHANNEL(ahd, scb),
1976 1.1 fvdl SCB_GET_LUN(scb), SCB_LIST_NULL,
1977 1.1 fvdl ROLE_INITIATOR, CAM_REQ_ABORTED);
1978 1.1 fvdl } else {
1979 1.1 fvdl #ifdef AHD_DEBUG
1980 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
1981 1.1 fvdl printf("PPR Negotiation Busfree.\n");
1982 1.1 fvdl #endif
1983 1.1 fvdl ahd_done(ahd, scb);
1984 1.1 fvdl }
1985 1.1 fvdl printerror = 0;
1986 1.1 fvdl }
1987 1.1 fvdl if (printerror != 0) {
1988 1.1 fvdl int aborted;
1989 1.1 fvdl
1990 1.1 fvdl aborted = 0;
1991 1.1 fvdl if (scb != NULL) {
1992 1.1 fvdl u_int tag;
1993 1.1 fvdl
1994 1.1 fvdl if ((scb->hscb->control & TAG_ENB) != 0)
1995 1.1 fvdl tag = SCB_GET_TAG(scb);
1996 1.1 fvdl else
1997 1.1 fvdl tag = SCB_LIST_NULL;
1998 1.1 fvdl ahd_print_path(ahd, scb);
1999 1.1 fvdl aborted = ahd_abort_scbs(ahd, target, 'A',
2000 1.1 fvdl SCB_GET_LUN(scb), tag,
2001 1.1 fvdl ROLE_INITIATOR,
2002 1.1 fvdl CAM_UNEXP_BUSFREE);
2003 1.1 fvdl } else {
2004 1.1 fvdl /*
2005 1.1 fvdl * We had not fully identified this connection,
2006 1.1 fvdl * so we cannot abort anything.
2007 1.1 fvdl */
2008 1.1 fvdl printf("%s: ", ahd_name(ahd));
2009 1.1 fvdl }
2010 1.1 fvdl if (lastphase != P_BUSFREE)
2011 1.1 fvdl ahd_force_renegotiation(ahd, &devinfo);
2012 1.1 fvdl printf("Unexpected busfree %s, %d SCBs aborted, "
2013 1.1 fvdl "PRGMCNT == 0x%x\n",
2014 1.1 fvdl ahd_lookup_phase_entry(lastphase)->phasemsg,
2015 1.1 fvdl aborted,
2016 1.1 fvdl ahd_inb(ahd, PRGMCNT)
2017 1.1 fvdl | (ahd_inb(ahd, PRGMCNT+1) << 8));
2018 1.1 fvdl ahd_dump_card_state(ahd);
2019 1.1 fvdl }
2020 1.1 fvdl /* Always restart the sequencer. */
2021 1.1 fvdl return (1);
2022 1.1 fvdl }
2023 1.1 fvdl
2024 1.1 fvdl static void
2025 1.1 fvdl ahd_handle_proto_violation(struct ahd_softc *ahd)
2026 1.1 fvdl {
2027 1.1 fvdl struct ahd_devinfo devinfo;
2028 1.1 fvdl struct scb *scb;
2029 1.1 fvdl u_int scbid;
2030 1.1 fvdl u_int seq_flags;
2031 1.1 fvdl u_int curphase;
2032 1.1 fvdl u_int lastphase;
2033 1.1 fvdl int found;
2034 1.1 fvdl
2035 1.1 fvdl ahd_fetch_devinfo(ahd, &devinfo);
2036 1.1 fvdl scbid = ahd_get_scbptr(ahd);
2037 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
2038 1.1 fvdl seq_flags = ahd_inb(ahd, SEQ_FLAGS);
2039 1.1 fvdl curphase = ahd_inb(ahd, SCSISIGI) & PHASE_MASK;
2040 1.1 fvdl lastphase = ahd_inb(ahd, LASTPHASE);
2041 1.1 fvdl if ((seq_flags & NOT_IDENTIFIED) != 0) {
2042 1.1 fvdl
2043 1.1 fvdl /*
2044 1.1 fvdl * The reconnecting target either did not send an
2045 1.1 fvdl * identify message, or did, but we didn't find an SCB
2046 1.1 fvdl * to match.
2047 1.1 fvdl */
2048 1.1 fvdl ahd_print_devinfo(ahd, &devinfo);
2049 1.1 fvdl printf("Target did not send an IDENTIFY message. "
2050 1.1 fvdl "LASTPHASE = 0x%x.\n", lastphase);
2051 1.1 fvdl scb = NULL;
2052 1.1 fvdl } else if (scb == NULL) {
2053 1.1 fvdl /*
2054 1.1 fvdl * We don't seem to have an SCB active for this
2055 1.1 fvdl * transaction. Print an error and reset the bus.
2056 1.1 fvdl */
2057 1.1 fvdl ahd_print_devinfo(ahd, &devinfo);
2058 1.1 fvdl printf("No SCB found during protocol violation\n");
2059 1.1 fvdl goto proto_violation_reset;
2060 1.1 fvdl } else {
2061 1.1 fvdl ahd_set_transaction_status(scb, CAM_SEQUENCE_FAIL);
2062 1.1 fvdl if ((seq_flags & NO_CDB_SENT) != 0) {
2063 1.1 fvdl ahd_print_path(ahd, scb);
2064 1.1 fvdl printf("No or incomplete CDB sent to device.\n");
2065 1.1 fvdl } else if ((ahd_inb_scbram(ahd, SCB_CONTROL)
2066 1.1 fvdl & STATUS_RCVD) == 0) {
2067 1.1 fvdl /*
2068 1.1 fvdl * The target never bothered to provide status to
2069 1.1 fvdl * us prior to completing the command. Since we don't
2070 1.1 fvdl * know the disposition of this command, we must attempt
2071 1.1 fvdl * to abort it. Assert ATN and prepare to send an abort
2072 1.1 fvdl * message.
2073 1.1 fvdl */
2074 1.1 fvdl ahd_print_path(ahd, scb);
2075 1.1 fvdl printf("Completed command without status.\n");
2076 1.1 fvdl } else {
2077 1.1 fvdl ahd_print_path(ahd, scb);
2078 1.1 fvdl printf("Unknown protocol violation.\n");
2079 1.1 fvdl ahd_dump_card_state(ahd);
2080 1.1 fvdl }
2081 1.1 fvdl }
2082 1.1 fvdl if ((lastphase & ~P_DATAIN_DT) == 0
2083 1.1 fvdl || lastphase == P_COMMAND) {
2084 1.1 fvdl proto_violation_reset:
2085 1.1 fvdl /*
2086 1.1 fvdl * Target either went directly to data
2087 1.1 fvdl * phase or didn't respond to our ATN.
2088 1.1 fvdl * The only safe thing to do is to blow
2089 1.1 fvdl * it away with a bus reset.
2090 1.1 fvdl */
2091 1.1 fvdl found = ahd_reset_channel(ahd, 'A', TRUE);
2092 1.1 fvdl printf("%s: Issued Channel %c Bus Reset. "
2093 1.1 fvdl "%d SCBs aborted\n", ahd_name(ahd), 'A', found);
2094 1.1 fvdl } else {
2095 1.1 fvdl /*
2096 1.1 fvdl * Leave the selection hardware off in case
2097 1.1 fvdl * this abort attempt will affect yet to
2098 1.1 fvdl * be sent commands.
2099 1.1 fvdl */
2100 1.1 fvdl ahd_outb(ahd, SCSISEQ0,
2101 1.1 fvdl ahd_inb(ahd, SCSISEQ0) & ~ENSELO);
2102 1.1 fvdl ahd_assert_atn(ahd);
2103 1.1 fvdl ahd_outb(ahd, MSG_OUT, HOST_MSG);
2104 1.1 fvdl if (scb == NULL) {
2105 1.1 fvdl ahd_print_devinfo(ahd, &devinfo);
2106 1.1 fvdl ahd->msgout_buf[0] = MSG_ABORT_TASK;
2107 1.1 fvdl ahd->msgout_len = 1;
2108 1.1 fvdl ahd->msgout_index = 0;
2109 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
2110 1.1 fvdl } else {
2111 1.1 fvdl ahd_print_path(ahd, scb);
2112 1.1 fvdl scb->flags |= SCB_ABORT;
2113 1.1 fvdl }
2114 1.1 fvdl printf("Protocol violation %s. Attempting to abort.\n",
2115 1.1 fvdl ahd_lookup_phase_entry(curphase)->phasemsg);
2116 1.1 fvdl }
2117 1.1 fvdl }
2118 1.1 fvdl
2119 1.1 fvdl /*
2120 1.1 fvdl * Force renegotiation to occur the next time we initiate
2121 1.1 fvdl * a command to the current device.
2122 1.1 fvdl */
2123 1.1 fvdl static void
2124 1.1 fvdl ahd_force_renegotiation(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
2125 1.1 fvdl {
2126 1.1 fvdl struct ahd_initiator_tinfo *targ_info;
2127 1.1 fvdl struct ahd_tmode_tstate *tstate;
2128 1.1 fvdl
2129 1.1 fvdl #ifdef AHD_DEBUG
2130 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) {
2131 1.1 fvdl ahd_print_devinfo(ahd, devinfo);
2132 1.1 fvdl printf("Forcing renegotiation\n");
2133 1.1 fvdl }
2134 1.1 fvdl #endif
2135 1.1 fvdl targ_info = ahd_fetch_transinfo(ahd,
2136 1.1 fvdl devinfo->channel,
2137 1.1 fvdl devinfo->our_scsiid,
2138 1.1 fvdl devinfo->target,
2139 1.1 fvdl &tstate);
2140 1.1 fvdl ahd_update_neg_request(ahd, devinfo, tstate,
2141 1.1 fvdl targ_info, AHD_NEG_IF_NON_ASYNC);
2142 1.1 fvdl }
2143 1.1 fvdl
2144 1.1 fvdl #define AHD_MAX_STEPS 2000
2145 1.1 fvdl void
2146 1.1 fvdl ahd_clear_critical_section(struct ahd_softc *ahd)
2147 1.1 fvdl {
2148 1.1 fvdl ahd_mode_state saved_modes;
2149 1.1 fvdl int stepping;
2150 1.1 fvdl int steps;
2151 1.1 fvdl int first_instr;
2152 1.1 fvdl u_int simode0;
2153 1.1 fvdl u_int simode1;
2154 1.1 fvdl u_int simode3;
2155 1.1 fvdl u_int lqimode0;
2156 1.1 fvdl u_int lqimode1;
2157 1.1 fvdl u_int lqomode0;
2158 1.1 fvdl u_int lqomode1;
2159 1.1 fvdl
2160 1.1 fvdl if (ahd->num_critical_sections == 0)
2161 1.1 fvdl return;
2162 1.1 fvdl
2163 1.1 fvdl stepping = FALSE;
2164 1.1 fvdl steps = 0;
2165 1.1 fvdl first_instr = 0;
2166 1.1 fvdl simode0 = 0;
2167 1.1 fvdl simode1 = 0;
2168 1.1 fvdl simode3 = 0;
2169 1.1 fvdl lqimode0 = 0;
2170 1.1 fvdl lqimode1 = 0;
2171 1.1 fvdl lqomode0 = 0;
2172 1.1 fvdl lqomode1 = 0;
2173 1.1 fvdl saved_modes = ahd_save_modes(ahd);
2174 1.1 fvdl for (;;) {
2175 1.1 fvdl struct cs *cs;
2176 1.1 fvdl u_int seqaddr;
2177 1.1 fvdl u_int i;
2178 1.1 fvdl
2179 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
2180 1.1 fvdl seqaddr = ahd_inb(ahd, CURADDR)
2181 1.1 fvdl | (ahd_inb(ahd, CURADDR+1) << 8);
2182 1.1 fvdl
2183 1.1 fvdl cs = ahd->critical_sections;
2184 1.1 fvdl for (i = 0; i < ahd->num_critical_sections; i++, cs++) {
2185 1.1 fvdl
2186 1.1 fvdl if (cs->begin < seqaddr && cs->end >= seqaddr)
2187 1.1 fvdl break;
2188 1.1 fvdl }
2189 1.1 fvdl
2190 1.1 fvdl if (i == ahd->num_critical_sections)
2191 1.1 fvdl break;
2192 1.1 fvdl
2193 1.1 fvdl if (steps > AHD_MAX_STEPS) {
2194 1.1 fvdl printf("%s: Infinite loop in critical section\n"
2195 1.1 fvdl "%s: First Instruction 0x%x now 0x%x\n",
2196 1.1 fvdl ahd_name(ahd), ahd_name(ahd), first_instr,
2197 1.1 fvdl seqaddr);
2198 1.1 fvdl ahd_dump_card_state(ahd);
2199 1.1 fvdl panic("critical section loop");
2200 1.1 fvdl }
2201 1.1 fvdl
2202 1.1 fvdl steps++;
2203 1.1 fvdl #ifdef AHD_DEBUG
2204 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
2205 1.1 fvdl printf("%s: Single stepping at 0x%x\n", ahd_name(ahd),
2206 1.1 fvdl seqaddr);
2207 1.1 fvdl #endif
2208 1.1 fvdl if (stepping == FALSE) {
2209 1.1 fvdl
2210 1.1 fvdl first_instr = seqaddr;
2211 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
2212 1.1 fvdl simode0 = ahd_inb(ahd, SIMODE0);
2213 1.1 fvdl simode3 = ahd_inb(ahd, SIMODE3);
2214 1.1 fvdl lqimode0 = ahd_inb(ahd, LQIMODE0);
2215 1.1 fvdl lqimode1 = ahd_inb(ahd, LQIMODE1);
2216 1.1 fvdl lqomode0 = ahd_inb(ahd, LQOMODE0);
2217 1.1 fvdl lqomode1 = ahd_inb(ahd, LQOMODE1);
2218 1.1 fvdl ahd_outb(ahd, SIMODE0, 0);
2219 1.1 fvdl ahd_outb(ahd, SIMODE3, 0);
2220 1.1 fvdl ahd_outb(ahd, LQIMODE0, 0);
2221 1.1 fvdl ahd_outb(ahd, LQIMODE1, 0);
2222 1.1 fvdl ahd_outb(ahd, LQOMODE0, 0);
2223 1.1 fvdl ahd_outb(ahd, LQOMODE1, 0);
2224 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
2225 1.19 thorpej simode1 = ahd_inb(ahd, SIMODE1);
2226 1.19 thorpej /*
2227 1.19 thorpej * We don't clear ENBUSFREE. Unfortunately
2228 1.19 thorpej * we cannot re-enable busfree detection within
2229 1.19 thorpej * the current connection, so we must leave it
2230 1.19 thorpej * on while single stepping.
2231 1.19 thorpej */
2232 1.19 thorpej ahd_outb(ahd, SIMODE1, simode1 & ENBUSFREE);
2233 1.1 fvdl ahd_outb(ahd, SEQCTL0, ahd_inb(ahd, SEQCTL0) | STEP);
2234 1.1 fvdl stepping = TRUE;
2235 1.1 fvdl }
2236 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRBUSFREE);
2237 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
2238 1.1 fvdl ahd_set_modes(ahd, ahd->saved_src_mode, ahd->saved_dst_mode);
2239 1.1 fvdl ahd_outb(ahd, HCNTRL, ahd->unpause);
2240 1.19 thorpej while (!ahd_is_paused(ahd))
2241 1.1 fvdl ahd_delay(200);
2242 1.1 fvdl ahd_update_modes(ahd);
2243 1.1 fvdl }
2244 1.1 fvdl if (stepping) {
2245 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
2246 1.1 fvdl ahd_outb(ahd, SIMODE0, simode0);
2247 1.1 fvdl ahd_outb(ahd, SIMODE3, simode3);
2248 1.1 fvdl ahd_outb(ahd, LQIMODE0, lqimode0);
2249 1.1 fvdl ahd_outb(ahd, LQIMODE1, lqimode1);
2250 1.1 fvdl ahd_outb(ahd, LQOMODE0, lqomode0);
2251 1.1 fvdl ahd_outb(ahd, LQOMODE1, lqomode1);
2252 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
2253 1.1 fvdl ahd_outb(ahd, SEQCTL0, ahd_inb(ahd, SEQCTL0) & ~STEP);
2254 1.1 fvdl ahd_outb(ahd, SIMODE1, simode1);
2255 1.9 thorpej /*
2256 1.9 thorpej * SCSIINT seems to glitch occassionally when
2257 1.9 thorpej * the interrupt masks are restored. Clear SCSIINT
2258 1.9 thorpej * one more time so that only persistent errors
2259 1.9 thorpej * are seen as a real interrupt.
2260 1.9 thorpej */
2261 1.9 thorpej ahd_outb(ahd, CLRINT, CLRSCSIINT);
2262 1.1 fvdl }
2263 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
2264 1.1 fvdl }
2265 1.1 fvdl
2266 1.1 fvdl /*
2267 1.1 fvdl * Clear any pending interrupt status.
2268 1.1 fvdl */
2269 1.1 fvdl void
2270 1.1 fvdl ahd_clear_intstat(struct ahd_softc *ahd)
2271 1.1 fvdl {
2272 1.1 fvdl AHD_ASSERT_MODES(ahd, ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK),
2273 1.1 fvdl ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK));
2274 1.1 fvdl /* Clear any interrupt conditions this may have caused */
2275 1.1 fvdl ahd_outb(ahd, CLRLQIINT0, CLRLQIATNQAS|CLRLQICRCT1|CLRLQICRCT2
2276 1.1 fvdl |CLRLQIBADLQT|CLRLQIATNLQ|CLRLQIATNCMD);
2277 1.1 fvdl ahd_outb(ahd, CLRLQIINT1, CLRLQIPHASE_LQ|CLRLQIPHASE_NLQ|CLRLIQABORT
2278 1.1 fvdl |CLRLQICRCI_LQ|CLRLQICRCI_NLQ|CLRLQIBADLQI
2279 1.1 fvdl |CLRLQIOVERI_LQ|CLRLQIOVERI_NLQ|CLRNONPACKREQ);
2280 1.1 fvdl ahd_outb(ahd, CLRLQOINT0, CLRLQOTARGSCBPERR|CLRLQOSTOPT2|CLRLQOATNLQ
2281 1.1 fvdl |CLRLQOATNPKT|CLRLQOTCRC);
2282 1.1 fvdl ahd_outb(ahd, CLRLQOINT1, CLRLQOINITSCBPERR|CLRLQOSTOPI2|CLRLQOBADQAS
2283 1.1 fvdl |CLRLQOBUSFREE|CLRLQOPHACHGINPKT);
2284 1.1 fvdl if ((ahd->bugs & AHD_CLRLQO_AUTOCLR_BUG) != 0) {
2285 1.1 fvdl ahd_outb(ahd, CLRLQOINT0, 0);
2286 1.1 fvdl ahd_outb(ahd, CLRLQOINT1, 0);
2287 1.1 fvdl }
2288 1.1 fvdl ahd_outb(ahd, CLRSINT3, CLRNTRAMPERR|CLROSRAMPERR);
2289 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRSELTIMEO|CLRATNO|CLRSCSIRSTI
2290 1.1 fvdl |CLRBUSFREE|CLRSCSIPERR|CLRREQINIT);
2291 1.1 fvdl ahd_outb(ahd, CLRSINT0, CLRSELDO|CLRSELDI|CLRSELINGO
2292 1.1 fvdl |CLRIOERR|CLROVERRUN);
2293 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
2294 1.1 fvdl }
2295 1.1 fvdl
2296 1.1 fvdl /**************************** Debugging Routines ******************************/
2297 1.1 fvdl #ifdef AHD_DEBUG
2298 1.1 fvdl uint32_t ahd_debug = AHD_DEBUG_OPTS;
2299 1.1 fvdl #endif
2300 1.1 fvdl void
2301 1.1 fvdl ahd_print_scb(struct scb *scb)
2302 1.1 fvdl {
2303 1.1 fvdl struct hardware_scb *hscb;
2304 1.1 fvdl int i;
2305 1.1 fvdl
2306 1.1 fvdl hscb = scb->hscb;
2307 1.1 fvdl printf("scb:%p control:0x%x scsiid:0x%x lun:%d cdb_len:%d\n",
2308 1.1 fvdl (void *)scb,
2309 1.1 fvdl hscb->control,
2310 1.1 fvdl hscb->scsiid,
2311 1.1 fvdl hscb->lun,
2312 1.1 fvdl hscb->cdb_len);
2313 1.1 fvdl printf("Shared Data: ");
2314 1.1 fvdl for (i = 0; i < sizeof(hscb->shared_data.idata.cdb); i++)
2315 1.1 fvdl printf("%#02x", hscb->shared_data.idata.cdb[i]);
2316 1.1 fvdl printf(" dataptr:%#x%x datacnt:%#x sgptr:%#x tag:%#x\n",
2317 1.1 fvdl (uint32_t)((ahd_le64toh(hscb->dataptr) >> 32) & 0xFFFFFFFF),
2318 1.1 fvdl (uint32_t)(ahd_le64toh(hscb->dataptr) & 0xFFFFFFFF),
2319 1.1 fvdl ahd_le32toh(hscb->datacnt),
2320 1.1 fvdl ahd_le32toh(hscb->sgptr),
2321 1.1 fvdl SCB_GET_TAG(scb));
2322 1.1 fvdl ahd_dump_sglist(scb);
2323 1.1 fvdl }
2324 1.1 fvdl
2325 1.1 fvdl void
2326 1.1 fvdl ahd_dump_sglist(struct scb *scb)
2327 1.1 fvdl {
2328 1.1 fvdl int i;
2329 1.1 fvdl
2330 1.1 fvdl if (scb->sg_count > 0) {
2331 1.1 fvdl if ((scb->ahd_softc->flags & AHD_64BIT_ADDRESSING) != 0) {
2332 1.1 fvdl struct ahd_dma64_seg *sg_list;
2333 1.1 fvdl
2334 1.1 fvdl sg_list = (struct ahd_dma64_seg*)scb->sg_list;
2335 1.1 fvdl for (i = 0; i < scb->sg_count; i++) {
2336 1.1 fvdl uint64_t addr;
2337 1.1 fvdl uint32_t len;
2338 1.1 fvdl
2339 1.1 fvdl addr = ahd_le64toh(sg_list[i].addr);
2340 1.1 fvdl len = ahd_le32toh(sg_list[i].len);
2341 1.1 fvdl printf("sg[%d] - Addr 0x%x%x : Length %d%s\n",
2342 1.1 fvdl i,
2343 1.1 fvdl (uint32_t)((addr >> 32) & 0xFFFFFFFF),
2344 1.1 fvdl (uint32_t)(addr & 0xFFFFFFFF),
2345 1.1 fvdl sg_list[i].len & AHD_SG_LEN_MASK,
2346 1.1 fvdl (sg_list[i].len & AHD_DMA_LAST_SEG)
2347 1.1 fvdl ? " Last" : "");
2348 1.1 fvdl }
2349 1.1 fvdl } else {
2350 1.1 fvdl struct ahd_dma_seg *sg_list;
2351 1.1 fvdl
2352 1.1 fvdl sg_list = (struct ahd_dma_seg*)scb->sg_list;
2353 1.1 fvdl for (i = 0; i < scb->sg_count; i++) {
2354 1.1 fvdl uint32_t len;
2355 1.1 fvdl
2356 1.1 fvdl len = ahd_le32toh(sg_list[i].len);
2357 1.1 fvdl printf("sg[%d] - Addr 0x%x%x : Length %d%s\n",
2358 1.1 fvdl i,
2359 1.1 fvdl (len >> 24) & SG_HIGH_ADDR_BITS,
2360 1.1 fvdl ahd_le32toh(sg_list[i].addr),
2361 1.1 fvdl len & AHD_SG_LEN_MASK,
2362 1.1 fvdl len & AHD_DMA_LAST_SEG ? " Last" : "");
2363 1.1 fvdl }
2364 1.1 fvdl }
2365 1.1 fvdl }
2366 1.1 fvdl }
2367 1.1 fvdl
2368 1.1 fvdl /************************* Transfer Negotiation *******************************/
2369 1.1 fvdl /*
2370 1.1 fvdl * Allocate per target mode instance (ID we respond to as a target)
2371 1.1 fvdl * transfer negotiation data structures.
2372 1.1 fvdl */
2373 1.1 fvdl static struct ahd_tmode_tstate *
2374 1.1 fvdl ahd_alloc_tstate(struct ahd_softc *ahd, u_int scsi_id, char channel)
2375 1.1 fvdl {
2376 1.1 fvdl struct ahd_tmode_tstate *master_tstate;
2377 1.1 fvdl struct ahd_tmode_tstate *tstate;
2378 1.1 fvdl int i;
2379 1.1 fvdl
2380 1.1 fvdl master_tstate = ahd->enabled_targets[ahd->our_id];
2381 1.1 fvdl if (ahd->enabled_targets[scsi_id] != NULL
2382 1.1 fvdl && ahd->enabled_targets[scsi_id] != master_tstate)
2383 1.1 fvdl panic("%s: ahd_alloc_tstate - Target already allocated",
2384 1.1 fvdl ahd_name(ahd));
2385 1.1 fvdl tstate = malloc(sizeof(*tstate), M_DEVBUF, M_NOWAIT | M_ZERO);
2386 1.1 fvdl if (tstate == NULL)
2387 1.1 fvdl return (NULL);
2388 1.1 fvdl
2389 1.1 fvdl /*
2390 1.1 fvdl * If we have allocated a master tstate, copy user settings from
2391 1.1 fvdl * the master tstate (taken from SRAM or the EEPROM) for this
2392 1.1 fvdl * channel, but reset our current and goal settings to async/narrow
2393 1.1 fvdl * until an initiator talks to us.
2394 1.1 fvdl */
2395 1.1 fvdl if (master_tstate != NULL) {
2396 1.1 fvdl memcpy(tstate, master_tstate, sizeof(*tstate));
2397 1.1 fvdl memset(tstate->enabled_luns, 0, sizeof(tstate->enabled_luns));
2398 1.1 fvdl for (i = 0; i < 16; i++) {
2399 1.1 fvdl memset(&tstate->transinfo[i].curr, 0,
2400 1.1 fvdl sizeof(tstate->transinfo[i].curr));
2401 1.1 fvdl memset(&tstate->transinfo[i].goal, 0,
2402 1.1 fvdl sizeof(tstate->transinfo[i].goal));
2403 1.1 fvdl }
2404 1.1 fvdl } else
2405 1.1 fvdl memset(tstate, 0, sizeof(*tstate));
2406 1.1 fvdl ahd->enabled_targets[scsi_id] = tstate;
2407 1.1 fvdl return (tstate);
2408 1.1 fvdl }
2409 1.1 fvdl
2410 1.1 fvdl #ifdef AHD_TARGET_MODE
2411 1.1 fvdl /*
2412 1.1 fvdl * Free per target mode instance (ID we respond to as a target)
2413 1.1 fvdl * transfer negotiation data structures.
2414 1.1 fvdl */
2415 1.1 fvdl static void
2416 1.1 fvdl ahd_free_tstate(struct ahd_softc *ahd, u_int scsi_id, char channel, int force)
2417 1.1 fvdl {
2418 1.1 fvdl struct ahd_tmode_tstate *tstate;
2419 1.1 fvdl
2420 1.1 fvdl /*
2421 1.1 fvdl * Don't clean up our "master" tstate.
2422 1.1 fvdl * It has our default user settings.
2423 1.1 fvdl */
2424 1.1 fvdl if (scsi_id == ahd->our_id
2425 1.1 fvdl && force == FALSE)
2426 1.1 fvdl return;
2427 1.1 fvdl
2428 1.1 fvdl tstate = ahd->enabled_targets[scsi_id];
2429 1.1 fvdl if (tstate != NULL)
2430 1.1 fvdl free(tstate, M_DEVBUF);
2431 1.1 fvdl ahd->enabled_targets[scsi_id] = NULL;
2432 1.1 fvdl }
2433 1.1 fvdl #endif
2434 1.1 fvdl
2435 1.1 fvdl /*
2436 1.1 fvdl * Called when we have an active connection to a target on the bus,
2437 1.1 fvdl * this function finds the nearest period to the input period limited
2438 1.1 fvdl * by the capabilities of the bus connectivity of and sync settings for
2439 1.1 fvdl * the target.
2440 1.1 fvdl */
2441 1.1 fvdl void
2442 1.1 fvdl ahd_devlimited_syncrate(struct ahd_softc *ahd,
2443 1.1 fvdl struct ahd_initiator_tinfo *tinfo,
2444 1.1 fvdl u_int *period, u_int *ppr_options, role_t role)
2445 1.1 fvdl {
2446 1.1 fvdl struct ahd_transinfo *transinfo;
2447 1.1 fvdl u_int maxsync;
2448 1.1 fvdl
2449 1.1 fvdl if ((ahd_inb(ahd, SBLKCTL) & ENAB40) != 0
2450 1.1 fvdl && (ahd_inb(ahd, SSTAT2) & EXP_ACTIVE) == 0) {
2451 1.1 fvdl maxsync = AHD_SYNCRATE_PACED;
2452 1.1 fvdl } else {
2453 1.1 fvdl maxsync = AHD_SYNCRATE_ULTRA;
2454 1.1 fvdl /* Can't do DT related options on an SE bus */
2455 1.1 fvdl *ppr_options &= MSG_EXT_PPR_QAS_REQ;
2456 1.1 fvdl }
2457 1.1 fvdl /*
2458 1.1 fvdl * Never allow a value higher than our current goal
2459 1.1 fvdl * period otherwise we may allow a target initiated
2460 1.1 fvdl * negotiation to go above the limit as set by the
2461 1.1 fvdl * user. In the case of an initiator initiated
2462 1.1 fvdl * sync negotiation, we limit based on the user
2463 1.1 fvdl * setting. This allows the system to still accept
2464 1.1 fvdl * incoming negotiations even if target initiated
2465 1.1 fvdl * negotiation is not performed.
2466 1.1 fvdl */
2467 1.1 fvdl if (role == ROLE_TARGET)
2468 1.1 fvdl transinfo = &tinfo->user;
2469 1.1 fvdl else
2470 1.1 fvdl transinfo = &tinfo->goal;
2471 1.1 fvdl *ppr_options &= (transinfo->ppr_options|MSG_EXT_PPR_PCOMP_EN);
2472 1.1 fvdl if (transinfo->width == MSG_EXT_WDTR_BUS_8_BIT) {
2473 1.1 fvdl maxsync = MAX(maxsync, AHD_SYNCRATE_ULTRA2);
2474 1.1 fvdl *ppr_options &= ~MSG_EXT_PPR_DT_REQ;
2475 1.1 fvdl }
2476 1.1 fvdl if (transinfo->period == 0) {
2477 1.1 fvdl *period = 0;
2478 1.1 fvdl *ppr_options = 0;
2479 1.1 fvdl } else {
2480 1.1 fvdl *period = MAX(*period, transinfo->period);
2481 1.1 fvdl ahd_find_syncrate(ahd, period, ppr_options, maxsync);
2482 1.1 fvdl }
2483 1.1 fvdl }
2484 1.1 fvdl
2485 1.1 fvdl /*
2486 1.1 fvdl * Look up the valid period to SCSIRATE conversion in our table.
2487 1.1 fvdl * Return the period and offset that should be sent to the target
2488 1.1 fvdl * if this was the beginning of an SDTR.
2489 1.1 fvdl */
2490 1.1 fvdl void
2491 1.1 fvdl ahd_find_syncrate(struct ahd_softc *ahd, u_int *period,
2492 1.1 fvdl u_int *ppr_options, u_int maxsync)
2493 1.1 fvdl {
2494 1.1 fvdl if (*period < maxsync)
2495 1.1 fvdl *period = maxsync;
2496 1.1 fvdl
2497 1.1 fvdl if ((*ppr_options & MSG_EXT_PPR_DT_REQ) != 0
2498 1.1 fvdl && *period > AHD_SYNCRATE_MIN_DT)
2499 1.1 fvdl *ppr_options &= ~MSG_EXT_PPR_DT_REQ;
2500 1.1 fvdl
2501 1.1 fvdl if (*period > AHD_SYNCRATE_MIN)
2502 1.1 fvdl *period = 0;
2503 1.1 fvdl
2504 1.1 fvdl /* Honor PPR option conformance rules. */
2505 1.1 fvdl if (*period > AHD_SYNCRATE_PACED)
2506 1.1 fvdl *ppr_options &= ~MSG_EXT_PPR_RTI;
2507 1.1 fvdl
2508 1.1 fvdl if ((*ppr_options & MSG_EXT_PPR_IU_REQ) == 0)
2509 1.1 fvdl *ppr_options &= (MSG_EXT_PPR_DT_REQ|MSG_EXT_PPR_QAS_REQ);
2510 1.1 fvdl
2511 1.1 fvdl if ((*ppr_options & MSG_EXT_PPR_DT_REQ) == 0)
2512 1.1 fvdl *ppr_options &= MSG_EXT_PPR_QAS_REQ;
2513 1.1 fvdl
2514 1.1 fvdl /* Skip all PACED only entries if IU is not available */
2515 1.1 fvdl if ((*ppr_options & MSG_EXT_PPR_IU_REQ) == 0
2516 1.1 fvdl && *period < AHD_SYNCRATE_DT)
2517 1.1 fvdl *period = AHD_SYNCRATE_DT;
2518 1.1 fvdl
2519 1.1 fvdl /* Skip all DT only entries if DT is not available */
2520 1.1 fvdl if ((*ppr_options & MSG_EXT_PPR_DT_REQ) == 0
2521 1.1 fvdl && *period < AHD_SYNCRATE_ULTRA2)
2522 1.1 fvdl *period = AHD_SYNCRATE_ULTRA2;
2523 1.1 fvdl }
2524 1.1 fvdl
2525 1.1 fvdl /*
2526 1.1 fvdl * Truncate the given synchronous offset to a value the
2527 1.1 fvdl * current adapter type and syncrate are capable of.
2528 1.1 fvdl */
2529 1.1 fvdl void
2530 1.1 fvdl ahd_validate_offset(struct ahd_softc *ahd,
2531 1.1 fvdl struct ahd_initiator_tinfo *tinfo,
2532 1.1 fvdl u_int period, u_int *offset, int wide,
2533 1.1 fvdl role_t role)
2534 1.1 fvdl {
2535 1.1 fvdl u_int maxoffset;
2536 1.1 fvdl
2537 1.1 fvdl /* Limit offset to what we can do */
2538 1.1 fvdl if (period == 0)
2539 1.1 fvdl maxoffset = 0;
2540 1.1 fvdl else if (period <= AHD_SYNCRATE_PACED) {
2541 1.1 fvdl if ((ahd->bugs & AHD_PACED_NEGTABLE_BUG) != 0)
2542 1.1 fvdl maxoffset = MAX_OFFSET_PACED_BUG;
2543 1.1 fvdl else
2544 1.1 fvdl maxoffset = MAX_OFFSET_PACED;
2545 1.1 fvdl } else
2546 1.1 fvdl maxoffset = MAX_OFFSET_NON_PACED;
2547 1.1 fvdl *offset = MIN(*offset, maxoffset);
2548 1.1 fvdl if (tinfo != NULL) {
2549 1.1 fvdl if (role == ROLE_TARGET)
2550 1.1 fvdl *offset = MIN(*offset, tinfo->user.offset);
2551 1.1 fvdl else
2552 1.1 fvdl *offset = MIN(*offset, tinfo->goal.offset);
2553 1.1 fvdl }
2554 1.1 fvdl }
2555 1.1 fvdl
2556 1.1 fvdl /*
2557 1.1 fvdl * Truncate the given transfer width parameter to a value the
2558 1.1 fvdl * current adapter type is capable of.
2559 1.1 fvdl */
2560 1.1 fvdl void
2561 1.1 fvdl ahd_validate_width(struct ahd_softc *ahd, struct ahd_initiator_tinfo *tinfo,
2562 1.1 fvdl u_int *bus_width, role_t role)
2563 1.1 fvdl {
2564 1.1 fvdl switch (*bus_width) {
2565 1.1 fvdl default:
2566 1.1 fvdl if (ahd->features & AHD_WIDE) {
2567 1.1 fvdl /* Respond Wide */
2568 1.1 fvdl *bus_width = MSG_EXT_WDTR_BUS_16_BIT;
2569 1.1 fvdl break;
2570 1.1 fvdl }
2571 1.1 fvdl /* FALLTHROUGH */
2572 1.1 fvdl case MSG_EXT_WDTR_BUS_8_BIT:
2573 1.1 fvdl *bus_width = MSG_EXT_WDTR_BUS_8_BIT;
2574 1.1 fvdl break;
2575 1.1 fvdl }
2576 1.1 fvdl if (tinfo != NULL) {
2577 1.1 fvdl if (role == ROLE_TARGET)
2578 1.1 fvdl *bus_width = MIN(tinfo->user.width, *bus_width);
2579 1.1 fvdl else
2580 1.1 fvdl *bus_width = MIN(tinfo->goal.width, *bus_width);
2581 1.1 fvdl }
2582 1.1 fvdl }
2583 1.1 fvdl
2584 1.1 fvdl /*
2585 1.1 fvdl * Update the bitmask of targets for which the controller should
2586 1.1 fvdl * negotiate with at the next convenient oportunity. This currently
2587 1.1 fvdl * means the next time we send the initial identify messages for
2588 1.1 fvdl * a new transaction.
2589 1.1 fvdl */
2590 1.1 fvdl int
2591 1.1 fvdl ahd_update_neg_request(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
2592 1.1 fvdl struct ahd_tmode_tstate *tstate,
2593 1.1 fvdl struct ahd_initiator_tinfo *tinfo, ahd_neg_type neg_type)
2594 1.1 fvdl {
2595 1.1 fvdl u_int auto_negotiate_orig;
2596 1.1 fvdl
2597 1.1 fvdl auto_negotiate_orig = tstate->auto_negotiate;
2598 1.1 fvdl if (neg_type == AHD_NEG_ALWAYS) {
2599 1.1 fvdl /*
2600 1.1 fvdl * Force our "current" settings to be
2601 1.1 fvdl * unknown so that unless a bus reset
2602 1.1 fvdl * occurs the need to renegotiate is
2603 1.1 fvdl * recorded persistently.
2604 1.1 fvdl */
2605 1.1 fvdl if ((ahd->features & AHD_WIDE) != 0)
2606 1.1 fvdl tinfo->curr.width = AHD_WIDTH_UNKNOWN;
2607 1.1 fvdl tinfo->curr.period = AHD_PERIOD_UNKNOWN;
2608 1.1 fvdl tinfo->curr.offset = AHD_OFFSET_UNKNOWN;
2609 1.1 fvdl }
2610 1.1 fvdl if (tinfo->curr.period != tinfo->goal.period
2611 1.1 fvdl || tinfo->curr.width != tinfo->goal.width
2612 1.1 fvdl || tinfo->curr.offset != tinfo->goal.offset
2613 1.1 fvdl || tinfo->curr.ppr_options != tinfo->goal.ppr_options
2614 1.1 fvdl || (neg_type == AHD_NEG_IF_NON_ASYNC
2615 1.1 fvdl && (tinfo->goal.offset != 0
2616 1.1 fvdl || tinfo->goal.width != MSG_EXT_WDTR_BUS_8_BIT
2617 1.1 fvdl || tinfo->goal.ppr_options != 0)))
2618 1.1 fvdl tstate->auto_negotiate |= devinfo->target_mask;
2619 1.1 fvdl else
2620 1.1 fvdl tstate->auto_negotiate &= ~devinfo->target_mask;
2621 1.1 fvdl
2622 1.1 fvdl return (auto_negotiate_orig != tstate->auto_negotiate);
2623 1.1 fvdl }
2624 1.1 fvdl
2625 1.1 fvdl /*
2626 1.1 fvdl * Update the user/goal/curr tables of synchronous negotiation
2627 1.1 fvdl * parameters as well as, in the case of a current or active update,
2628 1.1 fvdl * any data structures on the host controller. In the case of an
2629 1.1 fvdl * active update, the specified target is currently talking to us on
2630 1.1 fvdl * the bus, so the transfer parameter update must take effect
2631 1.1 fvdl * immediately.
2632 1.1 fvdl */
2633 1.1 fvdl void
2634 1.1 fvdl ahd_set_syncrate(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
2635 1.1 fvdl u_int period, u_int offset, u_int ppr_options,
2636 1.1 fvdl u_int type, int paused)
2637 1.1 fvdl {
2638 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
2639 1.1 fvdl struct ahd_tmode_tstate *tstate;
2640 1.1 fvdl u_int old_period;
2641 1.1 fvdl u_int old_offset;
2642 1.1 fvdl u_int old_ppr;
2643 1.1 fvdl int active;
2644 1.1 fvdl int update_needed;
2645 1.1 fvdl
2646 1.1 fvdl active = (type & AHD_TRANS_ACTIVE) == AHD_TRANS_ACTIVE;
2647 1.1 fvdl update_needed = 0;
2648 1.1 fvdl
2649 1.1 fvdl if (period == 0 || offset == 0) {
2650 1.1 fvdl period = 0;
2651 1.1 fvdl offset = 0;
2652 1.1 fvdl }
2653 1.1 fvdl
2654 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo->channel, devinfo->our_scsiid,
2655 1.1 fvdl devinfo->target, &tstate);
2656 1.1 fvdl
2657 1.1 fvdl if ((type & AHD_TRANS_USER) != 0) {
2658 1.1 fvdl tinfo->user.period = period;
2659 1.1 fvdl tinfo->user.offset = offset;
2660 1.1 fvdl tinfo->user.ppr_options = ppr_options;
2661 1.1 fvdl }
2662 1.1 fvdl
2663 1.1 fvdl if ((type & AHD_TRANS_GOAL) != 0) {
2664 1.1 fvdl tinfo->goal.period = period;
2665 1.1 fvdl tinfo->goal.offset = offset;
2666 1.1 fvdl tinfo->goal.ppr_options = ppr_options;
2667 1.1 fvdl }
2668 1.1 fvdl
2669 1.1 fvdl old_period = tinfo->curr.period;
2670 1.1 fvdl old_offset = tinfo->curr.offset;
2671 1.1 fvdl old_ppr = tinfo->curr.ppr_options;
2672 1.1 fvdl
2673 1.1 fvdl if ((type & AHD_TRANS_CUR) != 0
2674 1.1 fvdl && (old_period != period
2675 1.1 fvdl || old_offset != offset
2676 1.1 fvdl || old_ppr != ppr_options)) {
2677 1.1 fvdl
2678 1.1 fvdl update_needed++;
2679 1.1 fvdl
2680 1.1 fvdl tinfo->curr.period = period;
2681 1.1 fvdl tinfo->curr.offset = offset;
2682 1.1 fvdl tinfo->curr.ppr_options = ppr_options;
2683 1.1 fvdl
2684 1.1 fvdl ahd_send_async(ahd, devinfo->channel, devinfo->target,
2685 1.1 fvdl CAM_LUN_WILDCARD, AC_TRANSFER_NEG, NULL);
2686 1.1 fvdl
2687 1.1 fvdl if (bootverbose) {
2688 1.1 fvdl if (offset != 0) {
2689 1.1 fvdl int options;
2690 1.1 fvdl
2691 1.1 fvdl printf("%s: target %d synchronous with "
2692 1.1 fvdl "period = 0x%x, offset = 0x%x",
2693 1.1 fvdl ahd_name(ahd), devinfo->target,
2694 1.1 fvdl period, offset);
2695 1.1 fvdl options = 0;
2696 1.1 fvdl if ((ppr_options & MSG_EXT_PPR_RD_STRM) != 0) {
2697 1.1 fvdl printf("(RDSTRM");
2698 1.1 fvdl options++;
2699 1.1 fvdl }
2700 1.1 fvdl if ((ppr_options & MSG_EXT_PPR_DT_REQ) != 0) {
2701 1.1 fvdl printf("%s", options ? "|DT" : "(DT");
2702 1.1 fvdl options++;
2703 1.1 fvdl }
2704 1.1 fvdl if ((ppr_options & MSG_EXT_PPR_IU_REQ) != 0) {
2705 1.1 fvdl printf("%s", options ? "|IU" : "(IU");
2706 1.1 fvdl options++;
2707 1.1 fvdl }
2708 1.1 fvdl if ((ppr_options & MSG_EXT_PPR_RTI) != 0) {
2709 1.1 fvdl printf("%s", options ? "|RTI" : "(RTI");
2710 1.1 fvdl options++;
2711 1.1 fvdl }
2712 1.1 fvdl if ((ppr_options & MSG_EXT_PPR_QAS_REQ) != 0) {
2713 1.1 fvdl printf("%s", options ? "|QAS" : "(QAS");
2714 1.1 fvdl options++;
2715 1.1 fvdl }
2716 1.1 fvdl if (options != 0)
2717 1.1 fvdl printf(")\n");
2718 1.1 fvdl else
2719 1.1 fvdl printf("\n");
2720 1.1 fvdl } else {
2721 1.1 fvdl printf("%s: target %d using "
2722 1.1 fvdl "asynchronous transfers%s\n",
2723 1.1 fvdl ahd_name(ahd), devinfo->target,
2724 1.1 fvdl (ppr_options & MSG_EXT_PPR_QAS_REQ) != 0
2725 1.1 fvdl ? "(QAS)" : "");
2726 1.1 fvdl }
2727 1.1 fvdl }
2728 1.1 fvdl }
2729 1.1 fvdl /*
2730 1.1 fvdl * Always refresh the neg-table to handle the case of the
2731 1.1 fvdl * sequencer setting the ENATNO bit for a MK_MESSAGE request.
2732 1.1 fvdl * We will always renegotiate in that case if this is a
2733 1.1 fvdl * packetized request. Also manage the busfree expected flag
2734 1.1 fvdl * from this common routine so that we catch changes due to
2735 1.1 fvdl * WDTR or SDTR messages.
2736 1.1 fvdl */
2737 1.1 fvdl if ((type & AHD_TRANS_CUR) != 0) {
2738 1.1 fvdl if (!paused)
2739 1.1 fvdl ahd_pause(ahd);
2740 1.1 fvdl ahd_update_neg_table(ahd, devinfo, &tinfo->curr);
2741 1.1 fvdl if (!paused)
2742 1.1 fvdl ahd_unpause(ahd);
2743 1.1 fvdl if (ahd->msg_type != MSG_TYPE_NONE) {
2744 1.1 fvdl if ((old_ppr & MSG_EXT_PPR_IU_REQ)
2745 1.1 fvdl != (ppr_options & MSG_EXT_PPR_IU_REQ)) {
2746 1.1 fvdl #ifdef AHD_DEBUG
2747 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) {
2748 1.1 fvdl ahd_print_devinfo(ahd, devinfo);
2749 1.1 fvdl printf("Expecting IU Change busfree\n");
2750 1.1 fvdl }
2751 1.1 fvdl #endif
2752 1.1 fvdl ahd->msg_flags |= MSG_FLAG_EXPECT_PPR_BUSFREE
2753 1.1 fvdl | MSG_FLAG_IU_REQ_CHANGED;
2754 1.1 fvdl }
2755 1.1 fvdl if ((old_ppr & MSG_EXT_PPR_IU_REQ) != 0) {
2756 1.1 fvdl #ifdef AHD_DEBUG
2757 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
2758 1.1 fvdl printf("PPR with IU_REQ outstanding\n");
2759 1.1 fvdl #endif
2760 1.1 fvdl ahd->msg_flags |= MSG_FLAG_EXPECT_PPR_BUSFREE;
2761 1.1 fvdl }
2762 1.1 fvdl }
2763 1.1 fvdl }
2764 1.1 fvdl
2765 1.1 fvdl update_needed += ahd_update_neg_request(ahd, devinfo, tstate,
2766 1.1 fvdl tinfo, AHD_NEG_TO_GOAL);
2767 1.1 fvdl
2768 1.1 fvdl if (update_needed)
2769 1.1 fvdl ahd_update_xfer_mode(ahd, devinfo);
2770 1.1 fvdl ahd->sc_req = 0;
2771 1.1 fvdl
2772 1.1 fvdl if (update_needed && active)
2773 1.1 fvdl ahd_update_pending_scbs(ahd);
2774 1.1 fvdl }
2775 1.1 fvdl
2776 1.1 fvdl /*
2777 1.1 fvdl * Update the user/goal/curr tables of wide negotiation
2778 1.1 fvdl * parameters as well as, in the case of a current or active update,
2779 1.1 fvdl * any data structures on the host controller. In the case of an
2780 1.1 fvdl * active update, the specified target is currently talking to us on
2781 1.1 fvdl * the bus, so the transfer parameter update must take effect
2782 1.1 fvdl * immediately.
2783 1.1 fvdl */
2784 1.1 fvdl void
2785 1.1 fvdl ahd_set_width(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
2786 1.1 fvdl u_int width, u_int type, int paused)
2787 1.1 fvdl {
2788 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
2789 1.1 fvdl struct ahd_tmode_tstate *tstate;
2790 1.1 fvdl u_int oldwidth;
2791 1.1 fvdl int active;
2792 1.1 fvdl int update_needed;
2793 1.1 fvdl
2794 1.1 fvdl active = (type & AHD_TRANS_ACTIVE) == AHD_TRANS_ACTIVE;
2795 1.1 fvdl update_needed = 0;
2796 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo->channel, devinfo->our_scsiid,
2797 1.1 fvdl devinfo->target, &tstate);
2798 1.1 fvdl
2799 1.1 fvdl if ((type & AHD_TRANS_USER) != 0)
2800 1.1 fvdl tinfo->user.width = width;
2801 1.1 fvdl
2802 1.1 fvdl if ((type & AHD_TRANS_GOAL) != 0)
2803 1.1 fvdl tinfo->goal.width = width;
2804 1.1 fvdl
2805 1.1 fvdl oldwidth = tinfo->curr.width;
2806 1.1 fvdl if ((type & AHD_TRANS_CUR) != 0 && oldwidth != width) {
2807 1.1 fvdl
2808 1.1 fvdl update_needed++;
2809 1.1 fvdl
2810 1.1 fvdl tinfo->curr.width = width;
2811 1.1 fvdl ahd_send_async(ahd, devinfo->channel, devinfo->target,
2812 1.1 fvdl CAM_LUN_WILDCARD, AC_TRANSFER_NEG, NULL);
2813 1.1 fvdl
2814 1.1 fvdl if (bootverbose) {
2815 1.1 fvdl printf("%s: target %d using %dbit transfers\n",
2816 1.1 fvdl ahd_name(ahd), devinfo->target,
2817 1.1 fvdl 8 * (0x01 << width));
2818 1.1 fvdl }
2819 1.1 fvdl }
2820 1.1 fvdl
2821 1.1 fvdl if ((type & AHD_TRANS_CUR) != 0) {
2822 1.1 fvdl if (!paused)
2823 1.1 fvdl ahd_pause(ahd);
2824 1.1 fvdl ahd_update_neg_table(ahd, devinfo, &tinfo->curr);
2825 1.1 fvdl if (!paused)
2826 1.1 fvdl ahd_unpause(ahd);
2827 1.1 fvdl }
2828 1.1 fvdl
2829 1.1 fvdl update_needed += ahd_update_neg_request(ahd, devinfo, tstate,
2830 1.1 fvdl tinfo, AHD_NEG_TO_GOAL);
2831 1.1 fvdl if (update_needed && active)
2832 1.1 fvdl ahd_update_pending_scbs(ahd);
2833 1.1 fvdl
2834 1.1 fvdl }
2835 1.1 fvdl
2836 1.1 fvdl /*
2837 1.1 fvdl * Update the current state of tagged queuing for a given target.
2838 1.1 fvdl */
2839 1.1 fvdl void
2840 1.1 fvdl ahd_set_tags(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
2841 1.1 fvdl ahd_queue_alg alg)
2842 1.1 fvdl {
2843 1.1 fvdl ahd_platform_set_tags(ahd, devinfo, alg);
2844 1.1 fvdl ahd_send_async(ahd, devinfo->channel, devinfo->target,
2845 1.1 fvdl devinfo->lun, AC_TRANSFER_NEG, &alg);
2846 1.1 fvdl }
2847 1.1 fvdl
2848 1.1 fvdl static void
2849 1.1 fvdl ahd_update_neg_table(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
2850 1.1 fvdl struct ahd_transinfo *tinfo)
2851 1.1 fvdl {
2852 1.1 fvdl ahd_mode_state saved_modes;
2853 1.1 fvdl u_int period;
2854 1.1 fvdl u_int ppr_opts;
2855 1.1 fvdl u_int con_opts;
2856 1.1 fvdl u_int offset;
2857 1.1 fvdl u_int saved_negoaddr;
2858 1.1 fvdl uint8_t iocell_opts[sizeof(ahd->iocell_opts)];
2859 1.1 fvdl
2860 1.1 fvdl saved_modes = ahd_save_modes(ahd);
2861 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
2862 1.1 fvdl
2863 1.1 fvdl saved_negoaddr = ahd_inb(ahd, NEGOADDR);
2864 1.1 fvdl ahd_outb(ahd, NEGOADDR, devinfo->target);
2865 1.1 fvdl period = tinfo->period;
2866 1.1 fvdl offset = tinfo->offset;
2867 1.1 fvdl memcpy(iocell_opts, ahd->iocell_opts, sizeof(ahd->iocell_opts));
2868 1.1 fvdl ppr_opts = tinfo->ppr_options & (MSG_EXT_PPR_QAS_REQ|MSG_EXT_PPR_DT_REQ
2869 1.1 fvdl |MSG_EXT_PPR_IU_REQ|MSG_EXT_PPR_RTI);
2870 1.1 fvdl con_opts = 0;
2871 1.1 fvdl if (period == 0)
2872 1.1 fvdl period = AHD_SYNCRATE_ASYNC;
2873 1.1 fvdl if (period == AHD_SYNCRATE_160) {
2874 1.1 fvdl
2875 1.1 fvdl if ((ahd->bugs & AHD_PACED_NEGTABLE_BUG) != 0) {
2876 1.1 fvdl /*
2877 1.1 fvdl * When the SPI4 spec was finalized, PACE transfers
2878 1.1 fvdl * was not made a configurable option in the PPR
2879 1.1 fvdl * message. Instead it is assumed to be enabled for
2880 1.1 fvdl * any syncrate faster than 80MHz. Nevertheless,
2881 1.1 fvdl * Harpoon2A4 allows this to be configurable.
2882 1.1 fvdl *
2883 1.1 fvdl * Harpoon2A4 also assumes at most 2 data bytes per
2884 1.1 fvdl * negotiated REQ/ACK offset. Paced transfers take
2885 1.1 fvdl * 4, so we must adjust our offset.
2886 1.1 fvdl */
2887 1.1 fvdl ppr_opts |= PPROPT_PACE;
2888 1.1 fvdl offset *= 2;
2889 1.1 fvdl
2890 1.1 fvdl /*
2891 1.1 fvdl * Harpoon2A assumed that there would be a
2892 1.1 fvdl * fallback rate between 160MHz and 80Mhz,
2893 1.1 fvdl * so 7 is used as the period factor rather
2894 1.1 fvdl * than 8 for 160MHz.
2895 1.1 fvdl */
2896 1.1 fvdl period = AHD_SYNCRATE_REVA_160;
2897 1.1 fvdl }
2898 1.1 fvdl if ((tinfo->ppr_options & MSG_EXT_PPR_PCOMP_EN) == 0)
2899 1.1 fvdl iocell_opts[AHD_PRECOMP_SLEW_INDEX] &=
2900 1.1 fvdl ~AHD_PRECOMP_MASK;
2901 1.1 fvdl } else {
2902 1.1 fvdl /*
2903 1.1 fvdl * Precomp should be disabled for non-paced transfers.
2904 1.1 fvdl */
2905 1.1 fvdl iocell_opts[AHD_PRECOMP_SLEW_INDEX] &= ~AHD_PRECOMP_MASK;
2906 1.1 fvdl
2907 1.1 fvdl if ((ahd->features & AHD_NEW_IOCELL_OPTS) != 0
2908 1.1 fvdl && (ppr_opts & MSG_EXT_PPR_DT_REQ) != 0) {
2909 1.1 fvdl /*
2910 1.1 fvdl * Slow down our CRC interval to be
2911 1.1 fvdl * compatible with devices that can't
2912 1.1 fvdl * handle a CRC at full speed.
2913 1.1 fvdl */
2914 1.1 fvdl con_opts |= ENSLOWCRC;
2915 1.1 fvdl }
2916 1.1 fvdl }
2917 1.1 fvdl
2918 1.1 fvdl ahd_outb(ahd, ANNEXCOL, AHD_ANNEXCOL_PRECOMP_SLEW);
2919 1.1 fvdl ahd_outb(ahd, ANNEXDAT, iocell_opts[AHD_PRECOMP_SLEW_INDEX]);
2920 1.1 fvdl ahd_outb(ahd, ANNEXCOL, AHD_ANNEXCOL_AMPLITUDE);
2921 1.1 fvdl ahd_outb(ahd, ANNEXDAT, iocell_opts[AHD_AMPLITUDE_INDEX]);
2922 1.1 fvdl
2923 1.1 fvdl ahd_outb(ahd, NEGPERIOD, period);
2924 1.1 fvdl ahd_outb(ahd, NEGPPROPTS, ppr_opts);
2925 1.1 fvdl ahd_outb(ahd, NEGOFFSET, offset);
2926 1.1 fvdl
2927 1.1 fvdl if (tinfo->width == MSG_EXT_WDTR_BUS_16_BIT)
2928 1.1 fvdl con_opts |= WIDEXFER;
2929 1.1 fvdl
2930 1.1 fvdl /*
2931 1.1 fvdl * During packetized transfers, the target will
2932 1.1 fvdl * give us the oportunity to send command packets
2933 1.1 fvdl * without us asserting attention.
2934 1.1 fvdl */
2935 1.1 fvdl if ((tinfo->ppr_options & MSG_EXT_PPR_IU_REQ) == 0)
2936 1.1 fvdl con_opts |= ENAUTOATNO;
2937 1.1 fvdl ahd_outb(ahd, NEGCONOPTS, con_opts);
2938 1.1 fvdl ahd_outb(ahd, NEGOADDR, saved_negoaddr);
2939 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
2940 1.1 fvdl }
2941 1.1 fvdl
2942 1.1 fvdl /*
2943 1.1 fvdl * When the transfer settings for a connection change, setup for
2944 1.1 fvdl * negotiation in pending SCBs to effect the change as quickly as
2945 1.1 fvdl * possible. We also cancel any negotiations that are scheduled
2946 1.1 fvdl * for inflight SCBs that have not been started yet.
2947 1.1 fvdl */
2948 1.1 fvdl static void
2949 1.1 fvdl ahd_update_pending_scbs(struct ahd_softc *ahd)
2950 1.1 fvdl {
2951 1.1 fvdl struct scb *pending_scb;
2952 1.1 fvdl int pending_scb_count;
2953 1.1 fvdl int i;
2954 1.1 fvdl int paused;
2955 1.1 fvdl u_int saved_scbptr;
2956 1.1 fvdl ahd_mode_state saved_modes;
2957 1.1 fvdl
2958 1.1 fvdl /*
2959 1.1 fvdl * Traverse the pending SCB list and ensure that all of the
2960 1.1 fvdl * SCBs there have the proper settings. We can only safely
2961 1.1 fvdl * clear the negotiation required flag (setting requires the
2962 1.1 fvdl * execution queue to be modified) and this is only possible
2963 1.1 fvdl * if we are not already attempting to select out for this
2964 1.1 fvdl * SCB. For this reason, all callers only call this routine
2965 1.1 fvdl * if we are changing the negotiation settings for the currently
2966 1.1 fvdl * active transaction on the bus.
2967 1.1 fvdl */
2968 1.1 fvdl pending_scb_count = 0;
2969 1.1 fvdl LIST_FOREACH(pending_scb, &ahd->pending_scbs, pending_links) {
2970 1.1 fvdl struct ahd_devinfo devinfo;
2971 1.1 fvdl struct hardware_scb *pending_hscb;
2972 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
2973 1.1 fvdl struct ahd_tmode_tstate *tstate;
2974 1.1 fvdl
2975 1.1 fvdl ahd_scb_devinfo(ahd, &devinfo, pending_scb);
2976 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo.channel,
2977 1.1 fvdl devinfo.our_scsiid,
2978 1.1 fvdl devinfo.target, &tstate);
2979 1.1 fvdl pending_hscb = pending_scb->hscb;
2980 1.1 fvdl if ((tstate->auto_negotiate & devinfo.target_mask) == 0
2981 1.1 fvdl && (pending_scb->flags & SCB_AUTO_NEGOTIATE) != 0) {
2982 1.1 fvdl pending_scb->flags &= ~SCB_AUTO_NEGOTIATE;
2983 1.1 fvdl pending_hscb->control &= ~MK_MESSAGE;
2984 1.1 fvdl }
2985 1.1 fvdl ahd_sync_scb(ahd, pending_scb,
2986 1.1 fvdl BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
2987 1.1 fvdl pending_scb_count++;
2988 1.1 fvdl }
2989 1.1 fvdl
2990 1.1 fvdl if (pending_scb_count == 0)
2991 1.1 fvdl return;
2992 1.1 fvdl
2993 1.1 fvdl if (ahd_is_paused(ahd)) {
2994 1.1 fvdl paused = 1;
2995 1.1 fvdl } else {
2996 1.1 fvdl paused = 0;
2997 1.1 fvdl ahd_pause(ahd);
2998 1.1 fvdl }
2999 1.1 fvdl
3000 1.1 fvdl /*
3001 1.1 fvdl * Force the sequencer to reinitialize the selection for
3002 1.1 fvdl * the command at the head of the execution queue if it
3003 1.1 fvdl * has already been setup. The negotiation changes may
3004 1.1 fvdl * effect whether we select-out with ATN.
3005 1.1 fvdl */
3006 1.1 fvdl saved_modes = ahd_save_modes(ahd);
3007 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
3008 1.1 fvdl ahd_outb(ahd, SCSISEQ0, ahd_inb(ahd, SCSISEQ0) & ~ENSELO);
3009 1.1 fvdl saved_scbptr = ahd_get_scbptr(ahd);
3010 1.1 fvdl /* Ensure that the hscbs down on the card match the new information */
3011 1.1 fvdl for (i = 0; i < ahd->scb_data.maxhscbs; i++) {
3012 1.1 fvdl struct hardware_scb *pending_hscb;
3013 1.1 fvdl u_int control;
3014 1.1 fvdl u_int scb_tag;
3015 1.1 fvdl
3016 1.1 fvdl ahd_set_scbptr(ahd, i);
3017 1.1 fvdl scb_tag = i;
3018 1.1 fvdl pending_scb = ahd_lookup_scb(ahd, scb_tag);
3019 1.1 fvdl if (pending_scb == NULL)
3020 1.1 fvdl continue;
3021 1.1 fvdl
3022 1.1 fvdl pending_hscb = pending_scb->hscb;
3023 1.1 fvdl control = ahd_inb_scbram(ahd, SCB_CONTROL);
3024 1.1 fvdl control &= ~MK_MESSAGE;
3025 1.1 fvdl control |= pending_hscb->control & MK_MESSAGE;
3026 1.1 fvdl ahd_outb(ahd, SCB_CONTROL, control);
3027 1.1 fvdl }
3028 1.1 fvdl ahd_set_scbptr(ahd, saved_scbptr);
3029 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
3030 1.1 fvdl
3031 1.1 fvdl if (paused == 0)
3032 1.1 fvdl ahd_unpause(ahd);
3033 1.1 fvdl }
3034 1.1 fvdl
3035 1.1 fvdl /**************************** Pathing Information *****************************/
3036 1.1 fvdl static void
3037 1.1 fvdl ahd_fetch_devinfo(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
3038 1.1 fvdl {
3039 1.1 fvdl ahd_mode_state saved_modes;
3040 1.1 fvdl u_int saved_scsiid;
3041 1.1 fvdl role_t role;
3042 1.1 fvdl int our_id;
3043 1.1 fvdl
3044 1.1 fvdl saved_modes = ahd_save_modes(ahd);
3045 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
3046 1.1 fvdl
3047 1.1 fvdl if (ahd_inb(ahd, SSTAT0) & TARGET)
3048 1.1 fvdl role = ROLE_TARGET;
3049 1.1 fvdl else
3050 1.1 fvdl role = ROLE_INITIATOR;
3051 1.1 fvdl
3052 1.1 fvdl if (role == ROLE_TARGET
3053 1.1 fvdl && (ahd_inb(ahd, SEQ_FLAGS) & CMDPHASE_PENDING) != 0) {
3054 1.1 fvdl /* We were selected, so pull our id from TARGIDIN */
3055 1.1 fvdl our_id = ahd_inb(ahd, TARGIDIN) & OID;
3056 1.1 fvdl } else if (role == ROLE_TARGET)
3057 1.1 fvdl our_id = ahd_inb(ahd, TOWNID);
3058 1.1 fvdl else
3059 1.1 fvdl our_id = ahd_inb(ahd, IOWNID);
3060 1.1 fvdl
3061 1.1 fvdl saved_scsiid = ahd_inb(ahd, SAVED_SCSIID);
3062 1.1 fvdl ahd_compile_devinfo(devinfo,
3063 1.1 fvdl our_id,
3064 1.1 fvdl SCSIID_TARGET(ahd, saved_scsiid),
3065 1.1 fvdl ahd_inb(ahd, SAVED_LUN),
3066 1.1 fvdl SCSIID_CHANNEL(ahd, saved_scsiid),
3067 1.1 fvdl role);
3068 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
3069 1.1 fvdl }
3070 1.1 fvdl
3071 1.1 fvdl void
3072 1.1 fvdl ahd_print_devinfo(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
3073 1.1 fvdl {
3074 1.1 fvdl printf("%s:%c:%d:%d: (0x%x) ", ahd_name(ahd), 'A',
3075 1.1 fvdl devinfo->target, devinfo->lun, ahd_get_scbptr(ahd));
3076 1.1 fvdl }
3077 1.1 fvdl
3078 1.1 fvdl struct ahd_phase_table_entry*
3079 1.1 fvdl ahd_lookup_phase_entry(int phase)
3080 1.1 fvdl {
3081 1.1 fvdl struct ahd_phase_table_entry *entry;
3082 1.1 fvdl struct ahd_phase_table_entry *last_entry;
3083 1.1 fvdl
3084 1.1 fvdl /*
3085 1.1 fvdl * num_phases doesn't include the default entry which
3086 1.1 fvdl * will be returned if the phase doesn't match.
3087 1.1 fvdl */
3088 1.1 fvdl last_entry = &ahd_phase_table[num_phases];
3089 1.1 fvdl for (entry = ahd_phase_table; entry < last_entry; entry++) {
3090 1.1 fvdl if (phase == entry->phase)
3091 1.1 fvdl break;
3092 1.1 fvdl }
3093 1.1 fvdl return (entry);
3094 1.1 fvdl }
3095 1.1 fvdl
3096 1.1 fvdl void
3097 1.1 fvdl ahd_compile_devinfo(struct ahd_devinfo *devinfo, u_int our_id, u_int target,
3098 1.1 fvdl u_int lun, char channel, role_t role)
3099 1.1 fvdl {
3100 1.1 fvdl devinfo->our_scsiid = our_id;
3101 1.1 fvdl devinfo->target = target;
3102 1.1 fvdl devinfo->lun = lun;
3103 1.1 fvdl devinfo->target_offset = target;
3104 1.1 fvdl devinfo->channel = channel;
3105 1.1 fvdl devinfo->role = role;
3106 1.1 fvdl if (channel == 'B')
3107 1.1 fvdl devinfo->target_offset += 8;
3108 1.1 fvdl devinfo->target_mask = (0x01 << devinfo->target_offset);
3109 1.1 fvdl }
3110 1.1 fvdl
3111 1.1 fvdl static void
3112 1.1 fvdl ahd_scb_devinfo(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
3113 1.1 fvdl struct scb *scb)
3114 1.1 fvdl {
3115 1.1 fvdl role_t role;
3116 1.1 fvdl int our_id;
3117 1.1 fvdl
3118 1.1 fvdl our_id = SCSIID_OUR_ID(scb->hscb->scsiid);
3119 1.1 fvdl role = ROLE_INITIATOR;
3120 1.1 fvdl if ((scb->hscb->control & TARGET_SCB) != 0)
3121 1.1 fvdl role = ROLE_TARGET;
3122 1.1 fvdl ahd_compile_devinfo(devinfo, our_id, SCB_GET_TARGET(ahd, scb),
3123 1.1 fvdl SCB_GET_LUN(scb), SCB_GET_CHANNEL(ahd, scb), role);
3124 1.1 fvdl }
3125 1.1 fvdl
3126 1.1 fvdl
3127 1.1 fvdl /************************ Message Phase Processing ****************************/
3128 1.1 fvdl /*
3129 1.1 fvdl * When an initiator transaction with the MK_MESSAGE flag either reconnects
3130 1.1 fvdl * or enters the initial message out phase, we are interrupted. Fill our
3131 1.1 fvdl * outgoing message buffer with the appropriate message and beging handing
3132 1.1 fvdl * the message phase(s) manually.
3133 1.1 fvdl */
3134 1.1 fvdl static void
3135 1.1 fvdl ahd_setup_initiator_msgout(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
3136 1.1 fvdl struct scb *scb)
3137 1.1 fvdl {
3138 1.1 fvdl /*
3139 1.1 fvdl * To facilitate adding multiple messages together,
3140 1.1 fvdl * each routine should increment the index and len
3141 1.1 fvdl * variables instead of setting them explicitly.
3142 1.1 fvdl */
3143 1.1 fvdl ahd->msgout_index = 0;
3144 1.1 fvdl ahd->msgout_len = 0;
3145 1.1 fvdl
3146 1.1 fvdl if (ahd_currently_packetized(ahd))
3147 1.1 fvdl ahd->msg_flags |= MSG_FLAG_PACKETIZED;
3148 1.1 fvdl
3149 1.1 fvdl if (ahd->send_msg_perror
3150 1.1 fvdl && ahd_inb(ahd, MSG_OUT) == HOST_MSG) {
3151 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = ahd->send_msg_perror;
3152 1.1 fvdl ahd->msgout_len++;
3153 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
3154 1.1 fvdl #ifdef AHD_DEBUG
3155 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
3156 1.1 fvdl printf("Setting up for Parity Error delivery\n");
3157 1.1 fvdl #endif
3158 1.1 fvdl return;
3159 1.1 fvdl } else if (scb == NULL) {
3160 1.1 fvdl printf("%s: WARNING. No pending message for "
3161 1.1 fvdl "I_T msgin. Issuing NO-OP\n", ahd_name(ahd));
3162 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_NOOP;
3163 1.1 fvdl ahd->msgout_len++;
3164 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
3165 1.1 fvdl return;
3166 1.1 fvdl }
3167 1.1 fvdl
3168 1.1 fvdl if ((scb->flags & SCB_DEVICE_RESET) == 0
3169 1.1 fvdl && (scb->flags & SCB_PACKETIZED) == 0
3170 1.1 fvdl && ahd_inb(ahd, MSG_OUT) == MSG_IDENTIFYFLAG) {
3171 1.1 fvdl u_int identify_msg;
3172 1.1 fvdl
3173 1.1 fvdl identify_msg = MSG_IDENTIFYFLAG | SCB_GET_LUN(scb);
3174 1.1 fvdl if ((scb->hscb->control & DISCENB) != 0)
3175 1.1 fvdl identify_msg |= MSG_IDENTIFY_DISCFLAG;
3176 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = identify_msg;
3177 1.1 fvdl ahd->msgout_len++;
3178 1.1 fvdl
3179 1.1 fvdl if ((scb->hscb->control & TAG_ENB) != 0) {
3180 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] =
3181 1.1 fvdl scb->hscb->control & (TAG_ENB|SCB_TAG_TYPE);
3182 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = SCB_GET_TAG(scb);
3183 1.1 fvdl ahd->msgout_len += 2;
3184 1.1 fvdl }
3185 1.1 fvdl }
3186 1.1 fvdl
3187 1.1 fvdl if (scb->flags & SCB_DEVICE_RESET) {
3188 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_BUS_DEV_RESET;
3189 1.1 fvdl ahd->msgout_len++;
3190 1.1 fvdl ahd_print_path(ahd, scb);
3191 1.1 fvdl printf("Bus Device Reset Message Sent\n");
3192 1.1 fvdl /*
3193 1.1 fvdl * Clear our selection hardware in advance of
3194 1.1 fvdl * the busfree. We may have an entry in the waiting
3195 1.1 fvdl * Q for this target, and we don't want to go about
3196 1.1 fvdl * selecting while we handle the busfree and blow it
3197 1.1 fvdl * away.
3198 1.1 fvdl */
3199 1.1 fvdl ahd_outb(ahd, SCSISEQ0, 0);
3200 1.1 fvdl } else if ((scb->flags & SCB_ABORT) != 0) {
3201 1.1 fvdl
3202 1.1 fvdl if ((scb->hscb->control & TAG_ENB) != 0) {
3203 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_ABORT_TAG;
3204 1.1 fvdl } else {
3205 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_ABORT;
3206 1.1 fvdl }
3207 1.1 fvdl ahd->msgout_len++;
3208 1.1 fvdl ahd_print_path(ahd, scb);
3209 1.1 fvdl printf("Abort%s Message Sent\n",
3210 1.1 fvdl (scb->hscb->control & TAG_ENB) != 0 ? " Tag" : "");
3211 1.1 fvdl /*
3212 1.1 fvdl * Clear our selection hardware in advance of
3213 1.1 fvdl * the busfree. We may have an entry in the waiting
3214 1.1 fvdl * Q for this target, and we don't want to go about
3215 1.1 fvdl * selecting while we handle the busfree and blow it
3216 1.1 fvdl * away.
3217 1.1 fvdl */
3218 1.1 fvdl ahd_outb(ahd, SCSISEQ0, 0);
3219 1.1 fvdl } else if ((scb->flags & (SCB_AUTO_NEGOTIATE|SCB_NEGOTIATE)) != 0) {
3220 1.1 fvdl ahd_build_transfer_msg(ahd, devinfo);
3221 1.1 fvdl /*
3222 1.1 fvdl * Clear our selection hardware in advance of potential
3223 1.1 fvdl * PPR IU status change busfree. We may have an entry in
3224 1.1 fvdl * the waiting Q for this target, and we don't want to go
3225 1.1 fvdl * about selecting while we handle the busfree and blow
3226 1.1 fvdl * it away.
3227 1.1 fvdl */
3228 1.1 fvdl ahd_outb(ahd, SCSISEQ0, 0);
3229 1.1 fvdl } else {
3230 1.1 fvdl printf("ahd_intr: AWAITING_MSG for an SCB that "
3231 1.1 fvdl "does not have a waiting message\n");
3232 1.1 fvdl printf("SCSIID = %x, target_mask = %x\n", scb->hscb->scsiid,
3233 1.1 fvdl devinfo->target_mask);
3234 1.1 fvdl panic("SCB = %d, SCB Control = %x:%x, MSG_OUT = %x "
3235 1.1 fvdl "SCB flags = %x", SCB_GET_TAG(scb), scb->hscb->control,
3236 1.1 fvdl ahd_inb(ahd, SCB_CONTROL), ahd_inb(ahd, MSG_OUT),
3237 1.1 fvdl scb->flags);
3238 1.1 fvdl }
3239 1.1 fvdl
3240 1.1 fvdl /*
3241 1.1 fvdl * Clear the MK_MESSAGE flag from the SCB so we aren't
3242 1.1 fvdl * asked to send this message again.
3243 1.1 fvdl */
3244 1.1 fvdl ahd_outb(ahd, SCB_CONTROL,
3245 1.1 fvdl ahd_inb_scbram(ahd, SCB_CONTROL) & ~MK_MESSAGE);
3246 1.1 fvdl scb->hscb->control &= ~MK_MESSAGE;
3247 1.1 fvdl ahd->msgout_index = 0;
3248 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
3249 1.1 fvdl }
3250 1.1 fvdl
3251 1.1 fvdl /*
3252 1.1 fvdl * Build an appropriate transfer negotiation message for the
3253 1.1 fvdl * currently active target.
3254 1.1 fvdl */
3255 1.1 fvdl static void
3256 1.1 fvdl ahd_build_transfer_msg(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
3257 1.1 fvdl {
3258 1.1 fvdl /*
3259 1.1 fvdl * We need to initiate transfer negotiations.
3260 1.1 fvdl * If our current and goal settings are identical,
3261 1.1 fvdl * we want to renegotiate due to a check condition.
3262 1.1 fvdl */
3263 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
3264 1.1 fvdl struct ahd_tmode_tstate *tstate;
3265 1.1 fvdl int dowide;
3266 1.1 fvdl int dosync;
3267 1.1 fvdl int doppr;
3268 1.1 fvdl u_int period;
3269 1.1 fvdl u_int ppr_options;
3270 1.1 fvdl u_int offset;
3271 1.1 fvdl
3272 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo->channel, devinfo->our_scsiid,
3273 1.1 fvdl devinfo->target, &tstate);
3274 1.1 fvdl /*
3275 1.1 fvdl * Filter our period based on the current connection.
3276 1.1 fvdl * If we can't perform DT transfers on this segment (not in LVD
3277 1.1 fvdl * mode for instance), then our decision to issue a PPR message
3278 1.1 fvdl * may change.
3279 1.1 fvdl */
3280 1.1 fvdl period = tinfo->goal.period;
3281 1.16 thorpej offset = tinfo->goal.offset;
3282 1.1 fvdl ppr_options = tinfo->goal.ppr_options;
3283 1.1 fvdl /* Target initiated PPR is not allowed in the SCSI spec */
3284 1.1 fvdl if (devinfo->role == ROLE_TARGET)
3285 1.1 fvdl ppr_options = 0;
3286 1.1 fvdl ahd_devlimited_syncrate(ahd, tinfo, &period,
3287 1.1 fvdl &ppr_options, devinfo->role);
3288 1.1 fvdl dowide = tinfo->curr.width != tinfo->goal.width;
3289 1.16 thorpej dosync = tinfo->curr.offset != offset || tinfo->curr.period != period;
3290 1.1 fvdl /*
3291 1.1 fvdl * Only use PPR if we have options that need it, even if the device
3292 1.1 fvdl * claims to support it. There might be an expander in the way
3293 1.1 fvdl * that doesn't.
3294 1.1 fvdl */
3295 1.1 fvdl doppr = ppr_options != 0;
3296 1.1 fvdl
3297 1.1 fvdl if (!dowide && !dosync && !doppr) {
3298 1.1 fvdl dowide = tinfo->goal.width != MSG_EXT_WDTR_BUS_8_BIT;
3299 1.16 thorpej dosync = tinfo->goal.offset != 0;
3300 1.1 fvdl }
3301 1.1 fvdl
3302 1.1 fvdl if (!dowide && !dosync && !doppr) {
3303 1.1 fvdl /*
3304 1.1 fvdl * Force async with a WDTR message if we have a wide bus,
3305 1.1 fvdl * or just issue an SDTR with a 0 offset.
3306 1.1 fvdl */
3307 1.1 fvdl if ((ahd->features & AHD_WIDE) != 0)
3308 1.1 fvdl dowide = 1;
3309 1.1 fvdl else
3310 1.1 fvdl dosync = 1;
3311 1.1 fvdl
3312 1.1 fvdl if (bootverbose) {
3313 1.1 fvdl ahd_print_devinfo(ahd, devinfo);
3314 1.1 fvdl printf("Ensuring async\n");
3315 1.1 fvdl }
3316 1.1 fvdl }
3317 1.1 fvdl /* Target initiated PPR is not allowed in the SCSI spec */
3318 1.1 fvdl if (devinfo->role == ROLE_TARGET)
3319 1.1 fvdl doppr = 0;
3320 1.1 fvdl
3321 1.1 fvdl /*
3322 1.1 fvdl * Both the PPR message and SDTR message require the
3323 1.1 fvdl * goal syncrate to be limited to what the target device
3324 1.1 fvdl * is capable of handling (based on whether an LVD->SE
3325 1.1 fvdl * expander is on the bus), so combine these two cases.
3326 1.1 fvdl * Regardless, guarantee that if we are using WDTR and SDTR
3327 1.1 fvdl * messages that WDTR comes first.
3328 1.1 fvdl */
3329 1.1 fvdl if (doppr || (dosync && !dowide)) {
3330 1.1 fvdl
3331 1.1 fvdl offset = tinfo->goal.offset;
3332 1.1 fvdl ahd_validate_offset(ahd, tinfo, period, &offset,
3333 1.1 fvdl doppr ? tinfo->goal.width
3334 1.1 fvdl : tinfo->curr.width,
3335 1.1 fvdl devinfo->role);
3336 1.1 fvdl if (doppr) {
3337 1.1 fvdl ahd_construct_ppr(ahd, devinfo, period, offset,
3338 1.1 fvdl tinfo->goal.width, ppr_options);
3339 1.1 fvdl } else {
3340 1.1 fvdl ahd_construct_sdtr(ahd, devinfo, period, offset);
3341 1.1 fvdl }
3342 1.1 fvdl } else {
3343 1.1 fvdl ahd_construct_wdtr(ahd, devinfo, tinfo->goal.width);
3344 1.1 fvdl }
3345 1.1 fvdl }
3346 1.1 fvdl
3347 1.1 fvdl /*
3348 1.1 fvdl * Build a synchronous negotiation message in our message
3349 1.1 fvdl * buffer based on the input parameters.
3350 1.1 fvdl */
3351 1.1 fvdl static void
3352 1.1 fvdl ahd_construct_sdtr(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
3353 1.1 fvdl u_int period, u_int offset)
3354 1.1 fvdl {
3355 1.1 fvdl if (offset == 0)
3356 1.1 fvdl period = AHD_ASYNC_XFER_PERIOD;
3357 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXTENDED;
3358 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXT_SDTR_LEN;
3359 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXT_SDTR;
3360 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = period;
3361 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = offset;
3362 1.1 fvdl ahd->msgout_len += 5;
3363 1.1 fvdl if (bootverbose) {
3364 1.1 fvdl printf("(%s:%c:%d:%d): Sending SDTR period %x, offset %x\n",
3365 1.1 fvdl ahd_name(ahd), devinfo->channel, devinfo->target,
3366 1.1 fvdl devinfo->lun, period, offset);
3367 1.1 fvdl }
3368 1.1 fvdl }
3369 1.1 fvdl
3370 1.1 fvdl /*
3371 1.1 fvdl * Build a wide negotiateion message in our message
3372 1.1 fvdl * buffer based on the input parameters.
3373 1.1 fvdl */
3374 1.1 fvdl static void
3375 1.1 fvdl ahd_construct_wdtr(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
3376 1.1 fvdl u_int bus_width)
3377 1.1 fvdl {
3378 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXTENDED;
3379 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXT_WDTR_LEN;
3380 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXT_WDTR;
3381 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = bus_width;
3382 1.1 fvdl ahd->msgout_len += 4;
3383 1.1 fvdl if (bootverbose) {
3384 1.1 fvdl printf("(%s:%c:%d:%d): Sending WDTR %x\n",
3385 1.1 fvdl ahd_name(ahd), devinfo->channel, devinfo->target,
3386 1.1 fvdl devinfo->lun, bus_width);
3387 1.1 fvdl }
3388 1.1 fvdl }
3389 1.1 fvdl
3390 1.1 fvdl /*
3391 1.1 fvdl * Build a parallel protocol request message in our message
3392 1.1 fvdl * buffer based on the input parameters.
3393 1.1 fvdl */
3394 1.1 fvdl static void
3395 1.1 fvdl ahd_construct_ppr(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
3396 1.1 fvdl u_int period, u_int offset, u_int bus_width,
3397 1.1 fvdl u_int ppr_options)
3398 1.1 fvdl {
3399 1.1 fvdl /*
3400 1.1 fvdl * Always request precompensation from
3401 1.1 fvdl * the other target if we are running
3402 1.1 fvdl * at paced syncrates.
3403 1.1 fvdl */
3404 1.1 fvdl if (period <= AHD_SYNCRATE_PACED)
3405 1.1 fvdl ppr_options |= MSG_EXT_PPR_PCOMP_EN;
3406 1.1 fvdl if (offset == 0)
3407 1.1 fvdl period = AHD_ASYNC_XFER_PERIOD;
3408 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXTENDED;
3409 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXT_PPR_LEN;
3410 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = MSG_EXT_PPR;
3411 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = period;
3412 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = 0;
3413 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = offset;
3414 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = bus_width;
3415 1.1 fvdl ahd->msgout_buf[ahd->msgout_index++] = ppr_options;
3416 1.1 fvdl ahd->msgout_len += 8;
3417 1.1 fvdl if (bootverbose) {
3418 1.1 fvdl printf("(%s:%c:%d:%d): Sending PPR bus_width %x, period 0x%x, "
3419 1.1 fvdl "offset 0x%x, ppr_options 0x%x\n", ahd_name(ahd),
3420 1.1 fvdl devinfo->channel, devinfo->target, devinfo->lun,
3421 1.1 fvdl bus_width, period, offset, ppr_options);
3422 1.1 fvdl }
3423 1.1 fvdl }
3424 1.1 fvdl
3425 1.1 fvdl /*
3426 1.1 fvdl * Clear any active message state.
3427 1.1 fvdl */
3428 1.1 fvdl static void
3429 1.1 fvdl ahd_clear_msg_state(struct ahd_softc *ahd)
3430 1.1 fvdl {
3431 1.1 fvdl ahd_mode_state saved_modes;
3432 1.1 fvdl
3433 1.1 fvdl saved_modes = ahd_save_modes(ahd);
3434 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
3435 1.1 fvdl ahd->send_msg_perror = 0;
3436 1.1 fvdl ahd->msg_flags = MSG_FLAG_NONE;
3437 1.1 fvdl ahd->msgout_len = 0;
3438 1.1 fvdl ahd->msgin_index = 0;
3439 1.1 fvdl ahd->msg_type = MSG_TYPE_NONE;
3440 1.1 fvdl if ((ahd_inb(ahd, SCSISIGO) & ATNO) != 0) {
3441 1.1 fvdl /*
3442 1.1 fvdl * The target didn't care to respond to our
3443 1.1 fvdl * message request, so clear ATN.
3444 1.1 fvdl */
3445 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRATNO);
3446 1.1 fvdl }
3447 1.1 fvdl ahd_outb(ahd, MSG_OUT, MSG_NOOP);
3448 1.1 fvdl ahd_outb(ahd, SEQ_FLAGS2,
3449 1.1 fvdl ahd_inb(ahd, SEQ_FLAGS2) & ~TARGET_MSG_PENDING);
3450 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
3451 1.1 fvdl }
3452 1.1 fvdl
3453 1.1 fvdl /*
3454 1.1 fvdl * Manual message loop handler.
3455 1.1 fvdl */
3456 1.1 fvdl static void
3457 1.1 fvdl ahd_handle_message_phase(struct ahd_softc *ahd)
3458 1.1 fvdl {
3459 1.1 fvdl struct ahd_devinfo devinfo;
3460 1.1 fvdl u_int bus_phase;
3461 1.1 fvdl int end_session;
3462 1.1 fvdl
3463 1.1 fvdl ahd_fetch_devinfo(ahd, &devinfo);
3464 1.1 fvdl end_session = FALSE;
3465 1.1 fvdl bus_phase = ahd_inb(ahd, LASTPHASE);
3466 1.1 fvdl
3467 1.1 fvdl if ((ahd_inb(ahd, LQISTAT2) & LQIPHASE_OUTPKT) != 0) {
3468 1.1 fvdl printf("LQIRETRY for LQIPHASE_OUTPKT\n");
3469 1.1 fvdl ahd_outb(ahd, LQCTL2, LQIRETRY);
3470 1.1 fvdl }
3471 1.1 fvdl reswitch:
3472 1.1 fvdl switch (ahd->msg_type) {
3473 1.1 fvdl case MSG_TYPE_INITIATOR_MSGOUT:
3474 1.1 fvdl {
3475 1.1 fvdl int lastbyte;
3476 1.1 fvdl int phasemis;
3477 1.1 fvdl int msgdone;
3478 1.1 fvdl
3479 1.1 fvdl if (ahd->msgout_len == 0 && ahd->send_msg_perror == 0)
3480 1.1 fvdl panic("HOST_MSG_LOOP interrupt with no active message");
3481 1.1 fvdl
3482 1.1 fvdl #ifdef AHD_DEBUG
3483 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) {
3484 1.1 fvdl ahd_print_devinfo(ahd, &devinfo);
3485 1.1 fvdl printf("INITIATOR_MSG_OUT");
3486 1.1 fvdl }
3487 1.1 fvdl #endif
3488 1.1 fvdl phasemis = bus_phase != P_MESGOUT;
3489 1.1 fvdl if (phasemis) {
3490 1.1 fvdl #ifdef AHD_DEBUG
3491 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) {
3492 1.1 fvdl printf(" PHASEMIS %s\n",
3493 1.1 fvdl ahd_lookup_phase_entry(bus_phase)
3494 1.1 fvdl ->phasemsg);
3495 1.1 fvdl }
3496 1.1 fvdl #endif
3497 1.1 fvdl if (bus_phase == P_MESGIN) {
3498 1.1 fvdl /*
3499 1.1 fvdl * Change gears and see if
3500 1.1 fvdl * this messages is of interest to
3501 1.1 fvdl * us or should be passed back to
3502 1.1 fvdl * the sequencer.
3503 1.1 fvdl */
3504 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRATNO);
3505 1.1 fvdl ahd->send_msg_perror = 0;
3506 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGIN;
3507 1.1 fvdl ahd->msgin_index = 0;
3508 1.1 fvdl goto reswitch;
3509 1.1 fvdl }
3510 1.1 fvdl end_session = TRUE;
3511 1.1 fvdl break;
3512 1.1 fvdl }
3513 1.1 fvdl
3514 1.1 fvdl if (ahd->send_msg_perror) {
3515 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRATNO);
3516 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRREQINIT);
3517 1.1 fvdl #ifdef AHD_DEBUG
3518 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
3519 1.1 fvdl printf(" byte 0x%x\n", ahd->send_msg_perror);
3520 1.1 fvdl #endif
3521 1.1 fvdl /*
3522 1.1 fvdl * If we are notifying the target of a CRC error
3523 1.1 fvdl * during packetized operations, the target is
3524 1.1 fvdl * within its rights to acknowledge our message
3525 1.1 fvdl * with a busfree.
3526 1.1 fvdl */
3527 1.1 fvdl if ((ahd->msg_flags & MSG_FLAG_PACKETIZED) != 0
3528 1.1 fvdl && ahd->send_msg_perror == MSG_INITIATOR_DET_ERR)
3529 1.1 fvdl ahd->msg_flags |= MSG_FLAG_EXPECT_IDE_BUSFREE;
3530 1.1 fvdl
3531 1.1 fvdl ahd_outb(ahd, RETURN_2, ahd->send_msg_perror);
3532 1.1 fvdl ahd_outb(ahd, RETURN_1, CONT_MSG_LOOP_WRITE);
3533 1.1 fvdl break;
3534 1.1 fvdl }
3535 1.1 fvdl
3536 1.1 fvdl msgdone = ahd->msgout_index == ahd->msgout_len;
3537 1.1 fvdl if (msgdone) {
3538 1.1 fvdl /*
3539 1.1 fvdl * The target has requested a retry.
3540 1.1 fvdl * Re-assert ATN, reset our message index to
3541 1.1 fvdl * 0, and try again.
3542 1.1 fvdl */
3543 1.1 fvdl ahd->msgout_index = 0;
3544 1.1 fvdl ahd_assert_atn(ahd);
3545 1.1 fvdl }
3546 1.1 fvdl
3547 1.1 fvdl lastbyte = ahd->msgout_index == (ahd->msgout_len - 1);
3548 1.1 fvdl if (lastbyte) {
3549 1.1 fvdl /* Last byte is signified by dropping ATN */
3550 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRATNO);
3551 1.1 fvdl }
3552 1.1 fvdl
3553 1.1 fvdl /*
3554 1.1 fvdl * Clear our interrupt status and present
3555 1.1 fvdl * the next byte on the bus.
3556 1.1 fvdl */
3557 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRREQINIT);
3558 1.1 fvdl #ifdef AHD_DEBUG
3559 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
3560 1.1 fvdl printf(" byte 0x%x\n",
3561 1.1 fvdl ahd->msgout_buf[ahd->msgout_index]);
3562 1.1 fvdl #endif
3563 1.1 fvdl ahd_outb(ahd, RETURN_2, ahd->msgout_buf[ahd->msgout_index++]);
3564 1.1 fvdl ahd_outb(ahd, RETURN_1, CONT_MSG_LOOP_WRITE);
3565 1.1 fvdl break;
3566 1.1 fvdl }
3567 1.1 fvdl case MSG_TYPE_INITIATOR_MSGIN:
3568 1.1 fvdl {
3569 1.1 fvdl int phasemis;
3570 1.1 fvdl int message_done;
3571 1.1 fvdl
3572 1.1 fvdl #ifdef AHD_DEBUG
3573 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) {
3574 1.1 fvdl ahd_print_devinfo(ahd, &devinfo);
3575 1.1 fvdl printf("INITIATOR_MSG_IN");
3576 1.1 fvdl }
3577 1.1 fvdl #endif
3578 1.1 fvdl phasemis = bus_phase != P_MESGIN;
3579 1.1 fvdl if (phasemis) {
3580 1.1 fvdl #ifdef AHD_DEBUG
3581 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) {
3582 1.1 fvdl printf(" PHASEMIS %s\n",
3583 1.1 fvdl ahd_lookup_phase_entry(bus_phase)
3584 1.1 fvdl ->phasemsg);
3585 1.1 fvdl }
3586 1.1 fvdl #endif
3587 1.1 fvdl ahd->msgin_index = 0;
3588 1.1 fvdl if (bus_phase == P_MESGOUT
3589 1.1 fvdl && (ahd->send_msg_perror != 0
3590 1.1 fvdl || (ahd->msgout_len != 0
3591 1.1 fvdl && ahd->msgout_index == 0))) {
3592 1.1 fvdl ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT;
3593 1.1 fvdl goto reswitch;
3594 1.1 fvdl }
3595 1.1 fvdl end_session = TRUE;
3596 1.1 fvdl break;
3597 1.1 fvdl }
3598 1.1 fvdl
3599 1.1 fvdl /* Pull the byte in without acking it */
3600 1.1 fvdl ahd->msgin_buf[ahd->msgin_index] = ahd_inb(ahd, SCSIBUS);
3601 1.1 fvdl #ifdef AHD_DEBUG
3602 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
3603 1.1 fvdl printf(" byte 0x%x\n",
3604 1.1 fvdl ahd->msgin_buf[ahd->msgin_index]);
3605 1.1 fvdl #endif
3606 1.1 fvdl
3607 1.1 fvdl message_done = ahd_parse_msg(ahd, &devinfo);
3608 1.1 fvdl
3609 1.1 fvdl if (message_done) {
3610 1.1 fvdl /*
3611 1.1 fvdl * Clear our incoming message buffer in case there
3612 1.1 fvdl * is another message following this one.
3613 1.1 fvdl */
3614 1.1 fvdl ahd->msgin_index = 0;
3615 1.1 fvdl
3616 1.1 fvdl /*
3617 1.1 fvdl * If this message illicited a response,
3618 1.1 fvdl * assert ATN so the target takes us to the
3619 1.1 fvdl * message out phase.
3620 1.1 fvdl */
3621 1.1 fvdl if (ahd->msgout_len != 0) {
3622 1.1 fvdl #ifdef AHD_DEBUG
3623 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0) {
3624 1.1 fvdl ahd_print_devinfo(ahd, &devinfo);
3625 1.1 fvdl printf("Asserting ATN for response\n");
3626 1.1 fvdl }
3627 1.1 fvdl #endif
3628 1.1 fvdl ahd_assert_atn(ahd);
3629 1.1 fvdl }
3630 1.1 fvdl } else
3631 1.1 fvdl ahd->msgin_index++;
3632 1.1 fvdl
3633 1.1 fvdl if (message_done == MSGLOOP_TERMINATED) {
3634 1.1 fvdl end_session = TRUE;
3635 1.1 fvdl } else {
3636 1.1 fvdl /* Ack the byte */
3637 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRREQINIT);
3638 1.1 fvdl ahd_outb(ahd, RETURN_1, CONT_MSG_LOOP_READ);
3639 1.1 fvdl }
3640 1.1 fvdl break;
3641 1.1 fvdl }
3642 1.1 fvdl case MSG_TYPE_TARGET_MSGIN:
3643 1.1 fvdl {
3644 1.1 fvdl int msgdone;
3645 1.1 fvdl int msgout_request;
3646 1.1 fvdl
3647 1.1 fvdl /*
3648 1.1 fvdl * By default, the message loop will continue.
3649 1.1 fvdl */
3650 1.1 fvdl ahd_outb(ahd, RETURN_1, CONT_MSG_LOOP_TARG);
3651 1.1 fvdl
3652 1.1 fvdl if (ahd->msgout_len == 0)
3653 1.1 fvdl panic("Target MSGIN with no active message");
3654 1.1 fvdl
3655 1.1 fvdl /*
3656 1.1 fvdl * If we interrupted a mesgout session, the initiator
3657 1.1 fvdl * will not know this until our first REQ. So, we
3658 1.1 fvdl * only honor mesgout requests after we've sent our
3659 1.1 fvdl * first byte.
3660 1.1 fvdl */
3661 1.1 fvdl if ((ahd_inb(ahd, SCSISIGI) & ATNI) != 0
3662 1.1 fvdl && ahd->msgout_index > 0)
3663 1.1 fvdl msgout_request = TRUE;
3664 1.1 fvdl else
3665 1.1 fvdl msgout_request = FALSE;
3666 1.1 fvdl
3667 1.1 fvdl if (msgout_request) {
3668 1.1 fvdl
3669 1.1 fvdl /*
3670 1.1 fvdl * Change gears and see if
3671 1.1 fvdl * this messages is of interest to
3672 1.1 fvdl * us or should be passed back to
3673 1.1 fvdl * the sequencer.
3674 1.1 fvdl */
3675 1.1 fvdl ahd->msg_type = MSG_TYPE_TARGET_MSGOUT;
3676 1.1 fvdl ahd_outb(ahd, SCSISIGO, P_MESGOUT | BSYO);
3677 1.1 fvdl ahd->msgin_index = 0;
3678 1.1 fvdl /* Dummy read to REQ for first byte */
3679 1.1 fvdl ahd_inb(ahd, SCSIDAT);
3680 1.1 fvdl ahd_outb(ahd, SXFRCTL0,
3681 1.1 fvdl ahd_inb(ahd, SXFRCTL0) | SPIOEN);
3682 1.1 fvdl break;
3683 1.1 fvdl }
3684 1.1 fvdl
3685 1.1 fvdl msgdone = ahd->msgout_index == ahd->msgout_len;
3686 1.1 fvdl if (msgdone) {
3687 1.1 fvdl ahd_outb(ahd, SXFRCTL0,
3688 1.1 fvdl ahd_inb(ahd, SXFRCTL0) & ~SPIOEN);
3689 1.1 fvdl end_session = TRUE;
3690 1.1 fvdl break;
3691 1.1 fvdl }
3692 1.1 fvdl
3693 1.1 fvdl /*
3694 1.1 fvdl * Present the next byte on the bus.
3695 1.1 fvdl */
3696 1.1 fvdl ahd_outb(ahd, SXFRCTL0, ahd_inb(ahd, SXFRCTL0) | SPIOEN);
3697 1.1 fvdl ahd_outb(ahd, SCSIDAT, ahd->msgout_buf[ahd->msgout_index++]);
3698 1.1 fvdl break;
3699 1.1 fvdl }
3700 1.1 fvdl case MSG_TYPE_TARGET_MSGOUT:
3701 1.1 fvdl {
3702 1.1 fvdl int lastbyte;
3703 1.1 fvdl int msgdone;
3704 1.1 fvdl
3705 1.1 fvdl /*
3706 1.1 fvdl * By default, the message loop will continue.
3707 1.1 fvdl */
3708 1.1 fvdl ahd_outb(ahd, RETURN_1, CONT_MSG_LOOP_TARG);
3709 1.1 fvdl
3710 1.1 fvdl /*
3711 1.1 fvdl * The initiator signals that this is
3712 1.1 fvdl * the last byte by dropping ATN.
3713 1.1 fvdl */
3714 1.1 fvdl lastbyte = (ahd_inb(ahd, SCSISIGI) & ATNI) == 0;
3715 1.1 fvdl
3716 1.1 fvdl /*
3717 1.1 fvdl * Read the latched byte, but turn off SPIOEN first
3718 1.1 fvdl * so that we don't inadvertently cause a REQ for the
3719 1.1 fvdl * next byte.
3720 1.1 fvdl */
3721 1.1 fvdl ahd_outb(ahd, SXFRCTL0, ahd_inb(ahd, SXFRCTL0) & ~SPIOEN);
3722 1.1 fvdl ahd->msgin_buf[ahd->msgin_index] = ahd_inb(ahd, SCSIDAT);
3723 1.1 fvdl msgdone = ahd_parse_msg(ahd, &devinfo);
3724 1.1 fvdl if (msgdone == MSGLOOP_TERMINATED) {
3725 1.1 fvdl /*
3726 1.1 fvdl * The message is *really* done in that it caused
3727 1.1 fvdl * us to go to bus free. The sequencer has already
3728 1.1 fvdl * been reset at this point, so pull the ejection
3729 1.1 fvdl * handle.
3730 1.1 fvdl */
3731 1.1 fvdl return;
3732 1.1 fvdl }
3733 1.1 fvdl
3734 1.1 fvdl ahd->msgin_index++;
3735 1.1 fvdl
3736 1.1 fvdl /*
3737 1.1 fvdl * XXX Read spec about initiator dropping ATN too soon
3738 1.1 fvdl * and use msgdone to detect it.
3739 1.1 fvdl */
3740 1.1 fvdl if (msgdone == MSGLOOP_MSGCOMPLETE) {
3741 1.1 fvdl ahd->msgin_index = 0;
3742 1.1 fvdl
3743 1.1 fvdl /*
3744 1.1 fvdl * If this message illicited a response, transition
3745 1.1 fvdl * to the Message in phase and send it.
3746 1.1 fvdl */
3747 1.1 fvdl if (ahd->msgout_len != 0) {
3748 1.1 fvdl ahd_outb(ahd, SCSISIGO, P_MESGIN | BSYO);
3749 1.1 fvdl ahd_outb(ahd, SXFRCTL0,
3750 1.1 fvdl ahd_inb(ahd, SXFRCTL0) | SPIOEN);
3751 1.1 fvdl ahd->msg_type = MSG_TYPE_TARGET_MSGIN;
3752 1.1 fvdl ahd->msgin_index = 0;
3753 1.1 fvdl break;
3754 1.1 fvdl }
3755 1.1 fvdl }
3756 1.1 fvdl
3757 1.1 fvdl if (lastbyte)
3758 1.1 fvdl end_session = TRUE;
3759 1.1 fvdl else {
3760 1.1 fvdl /* Ask for the next byte. */
3761 1.1 fvdl ahd_outb(ahd, SXFRCTL0,
3762 1.1 fvdl ahd_inb(ahd, SXFRCTL0) | SPIOEN);
3763 1.1 fvdl }
3764 1.1 fvdl
3765 1.1 fvdl break;
3766 1.1 fvdl }
3767 1.1 fvdl default:
3768 1.1 fvdl panic("Unknown REQINIT message type");
3769 1.1 fvdl }
3770 1.1 fvdl
3771 1.1 fvdl if (end_session) {
3772 1.1 fvdl if ((ahd->msg_flags & MSG_FLAG_PACKETIZED) != 0) {
3773 1.1 fvdl printf("%s: Returning to Idle Loop\n",
3774 1.1 fvdl ahd_name(ahd));
3775 1.19 thorpej ahd_clear_msg_state(ahd);
3776 1.19 thorpej
3777 1.19 thorpej /*
3778 1.19 thorpej * Perform the equivalent of a clear_target_state.
3779 1.19 thorpej */
3780 1.1 fvdl ahd_outb(ahd, LASTPHASE, P_BUSFREE);
3781 1.19 thorpej ahd_outb(ahd, SEQ_FLAGS, NOT_IDENTIFIED|NO_CDB_SENT);
3782 1.1 fvdl ahd_outb(ahd, SEQCTL0, FASTMODE|SEQRESET);
3783 1.1 fvdl } else {
3784 1.1 fvdl ahd_clear_msg_state(ahd);
3785 1.1 fvdl ahd_outb(ahd, RETURN_1, EXIT_MSG_LOOP);
3786 1.1 fvdl }
3787 1.1 fvdl }
3788 1.1 fvdl }
3789 1.1 fvdl
3790 1.1 fvdl /*
3791 1.1 fvdl * See if we sent a particular extended message to the target.
3792 1.1 fvdl * If "full" is true, return true only if the target saw the full
3793 1.1 fvdl * message. If "full" is false, return true if the target saw at
3794 1.1 fvdl * least the first byte of the message.
3795 1.1 fvdl */
3796 1.1 fvdl static int
3797 1.1 fvdl ahd_sent_msg(struct ahd_softc *ahd, ahd_msgtype type, u_int msgval, int full)
3798 1.1 fvdl {
3799 1.1 fvdl int found;
3800 1.1 fvdl u_int index;
3801 1.1 fvdl
3802 1.1 fvdl found = FALSE;
3803 1.1 fvdl index = 0;
3804 1.1 fvdl
3805 1.1 fvdl while (index < ahd->msgout_len) {
3806 1.1 fvdl if (ahd->msgout_buf[index] == MSG_EXTENDED) {
3807 1.1 fvdl u_int end_index;
3808 1.1 fvdl
3809 1.1 fvdl end_index = index + 1 + ahd->msgout_buf[index + 1];
3810 1.1 fvdl if (ahd->msgout_buf[index+2] == msgval
3811 1.1 fvdl && type == AHDMSG_EXT) {
3812 1.1 fvdl
3813 1.1 fvdl if (full) {
3814 1.1 fvdl if (ahd->msgout_index > end_index)
3815 1.1 fvdl found = TRUE;
3816 1.1 fvdl } else if (ahd->msgout_index > index)
3817 1.1 fvdl found = TRUE;
3818 1.1 fvdl }
3819 1.1 fvdl index = end_index;
3820 1.1 fvdl } else if (ahd->msgout_buf[index] >= MSG_SIMPLE_TASK
3821 1.1 fvdl && ahd->msgout_buf[index] <= MSG_IGN_WIDE_RESIDUE) {
3822 1.1 fvdl
3823 1.1 fvdl /* Skip tag type and tag id or residue param*/
3824 1.1 fvdl index += 2;
3825 1.1 fvdl } else {
3826 1.1 fvdl /* Single byte message */
3827 1.1 fvdl if (type == AHDMSG_1B
3828 1.1 fvdl && ahd->msgout_index > index
3829 1.1 fvdl && (ahd->msgout_buf[index] == msgval
3830 1.1 fvdl || ((ahd->msgout_buf[index] & MSG_IDENTIFYFLAG) != 0
3831 1.1 fvdl && msgval == MSG_IDENTIFYFLAG)))
3832 1.1 fvdl found = TRUE;
3833 1.1 fvdl index++;
3834 1.1 fvdl }
3835 1.1 fvdl
3836 1.1 fvdl if (found)
3837 1.1 fvdl break;
3838 1.1 fvdl }
3839 1.1 fvdl return (found);
3840 1.1 fvdl }
3841 1.1 fvdl
3842 1.1 fvdl /*
3843 1.1 fvdl * Wait for a complete incoming message, parse it, and respond accordingly.
3844 1.1 fvdl */
3845 1.1 fvdl static int
3846 1.1 fvdl ahd_parse_msg(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
3847 1.1 fvdl {
3848 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
3849 1.1 fvdl struct ahd_tmode_tstate *tstate;
3850 1.1 fvdl int reject;
3851 1.1 fvdl int done;
3852 1.1 fvdl int response;
3853 1.1 fvdl
3854 1.1 fvdl done = MSGLOOP_IN_PROG;
3855 1.1 fvdl response = FALSE;
3856 1.1 fvdl reject = FALSE;
3857 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo->channel, devinfo->our_scsiid,
3858 1.1 fvdl devinfo->target, &tstate);
3859 1.1 fvdl
3860 1.1 fvdl /*
3861 1.1 fvdl * Parse as much of the message as is available,
3862 1.1 fvdl * rejecting it if we don't support it. When
3863 1.1 fvdl * the entire message is available and has been
3864 1.1 fvdl * handled, return MSGLOOP_MSGCOMPLETE, indicating
3865 1.1 fvdl * that we have parsed an entire message.
3866 1.1 fvdl *
3867 1.1 fvdl * In the case of extended messages, we accept the length
3868 1.1 fvdl * byte outright and perform more checking once we know the
3869 1.1 fvdl * extended message type.
3870 1.1 fvdl */
3871 1.1 fvdl switch (ahd->msgin_buf[0]) {
3872 1.1 fvdl case MSG_DISCONNECT:
3873 1.1 fvdl case MSG_SAVEDATAPOINTER:
3874 1.1 fvdl case MSG_CMDCOMPLETE:
3875 1.1 fvdl case MSG_RESTOREPOINTERS:
3876 1.1 fvdl case MSG_IGN_WIDE_RESIDUE:
3877 1.1 fvdl /*
3878 1.1 fvdl * End our message loop as these are messages
3879 1.1 fvdl * the sequencer handles on its own.
3880 1.1 fvdl */
3881 1.1 fvdl done = MSGLOOP_TERMINATED;
3882 1.1 fvdl break;
3883 1.1 fvdl case MSG_MESSAGE_REJECT:
3884 1.1 fvdl response = ahd_handle_msg_reject(ahd, devinfo);
3885 1.1 fvdl /* FALLTHROUGH */
3886 1.1 fvdl case MSG_NOOP:
3887 1.1 fvdl done = MSGLOOP_MSGCOMPLETE;
3888 1.1 fvdl break;
3889 1.1 fvdl case MSG_EXTENDED:
3890 1.1 fvdl {
3891 1.1 fvdl /* Wait for enough of the message to begin validation */
3892 1.1 fvdl if (ahd->msgin_index < 2)
3893 1.1 fvdl break;
3894 1.1 fvdl switch (ahd->msgin_buf[2]) {
3895 1.1 fvdl case MSG_EXT_SDTR:
3896 1.1 fvdl {
3897 1.1 fvdl u_int period;
3898 1.1 fvdl u_int ppr_options;
3899 1.1 fvdl u_int offset;
3900 1.1 fvdl u_int saved_offset;
3901 1.1 fvdl
3902 1.1 fvdl if (ahd->msgin_buf[1] != MSG_EXT_SDTR_LEN) {
3903 1.1 fvdl reject = TRUE;
3904 1.1 fvdl break;
3905 1.1 fvdl }
3906 1.1 fvdl
3907 1.1 fvdl /*
3908 1.1 fvdl * Wait until we have both args before validating
3909 1.1 fvdl * and acting on this message.
3910 1.1 fvdl *
3911 1.1 fvdl * Add one to MSG_EXT_SDTR_LEN to account for
3912 1.1 fvdl * the extended message preamble.
3913 1.1 fvdl */
3914 1.1 fvdl if (ahd->msgin_index < (MSG_EXT_SDTR_LEN + 1))
3915 1.1 fvdl break;
3916 1.1 fvdl
3917 1.1 fvdl period = ahd->msgin_buf[3];
3918 1.1 fvdl ppr_options = 0;
3919 1.1 fvdl saved_offset = offset = ahd->msgin_buf[4];
3920 1.1 fvdl ahd_devlimited_syncrate(ahd, tinfo, &period,
3921 1.1 fvdl &ppr_options, devinfo->role);
3922 1.1 fvdl ahd_validate_offset(ahd, tinfo, period, &offset,
3923 1.1 fvdl tinfo->curr.width, devinfo->role);
3924 1.1 fvdl if (bootverbose) {
3925 1.1 fvdl printf("(%s:%c:%d:%d): Received "
3926 1.1 fvdl "SDTR period %x, offset %x\n\t"
3927 1.1 fvdl "Filtered to period %x, offset %x\n",
3928 1.1 fvdl ahd_name(ahd), devinfo->channel,
3929 1.1 fvdl devinfo->target, devinfo->lun,
3930 1.1 fvdl ahd->msgin_buf[3], saved_offset,
3931 1.1 fvdl period, offset);
3932 1.1 fvdl }
3933 1.1 fvdl ahd_set_syncrate(ahd, devinfo, period,
3934 1.1 fvdl offset, ppr_options,
3935 1.1 fvdl AHD_TRANS_ACTIVE|AHD_TRANS_GOAL,
3936 1.1 fvdl /*paused*/TRUE);
3937 1.1 fvdl
3938 1.1 fvdl /*
3939 1.1 fvdl * See if we initiated Sync Negotiation
3940 1.1 fvdl * and didn't have to fall down to async
3941 1.1 fvdl * transfers.
3942 1.1 fvdl */
3943 1.1 fvdl if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_SDTR, TRUE)) {
3944 1.1 fvdl /* We started it */
3945 1.1 fvdl if (saved_offset != offset) {
3946 1.1 fvdl /* Went too low - force async */
3947 1.1 fvdl reject = TRUE;
3948 1.1 fvdl }
3949 1.1 fvdl } else {
3950 1.1 fvdl /*
3951 1.1 fvdl * Send our own SDTR in reply
3952 1.1 fvdl */
3953 1.1 fvdl if (bootverbose
3954 1.1 fvdl && devinfo->role == ROLE_INITIATOR) {
3955 1.1 fvdl printf("(%s:%c:%d:%d): Target "
3956 1.1 fvdl "Initiated SDTR\n",
3957 1.1 fvdl ahd_name(ahd), devinfo->channel,
3958 1.1 fvdl devinfo->target, devinfo->lun);
3959 1.1 fvdl }
3960 1.1 fvdl ahd->msgout_index = 0;
3961 1.1 fvdl ahd->msgout_len = 0;
3962 1.1 fvdl ahd_construct_sdtr(ahd, devinfo,
3963 1.1 fvdl period, offset);
3964 1.1 fvdl ahd->msgout_index = 0;
3965 1.1 fvdl response = TRUE;
3966 1.1 fvdl }
3967 1.1 fvdl done = MSGLOOP_MSGCOMPLETE;
3968 1.1 fvdl break;
3969 1.1 fvdl }
3970 1.1 fvdl case MSG_EXT_WDTR:
3971 1.1 fvdl {
3972 1.1 fvdl u_int bus_width;
3973 1.1 fvdl u_int saved_width;
3974 1.1 fvdl u_int sending_reply;
3975 1.1 fvdl
3976 1.1 fvdl sending_reply = FALSE;
3977 1.1 fvdl if (ahd->msgin_buf[1] != MSG_EXT_WDTR_LEN) {
3978 1.1 fvdl reject = TRUE;
3979 1.1 fvdl break;
3980 1.1 fvdl }
3981 1.1 fvdl
3982 1.1 fvdl /*
3983 1.1 fvdl * Wait until we have our arg before validating
3984 1.1 fvdl * and acting on this message.
3985 1.1 fvdl *
3986 1.1 fvdl * Add one to MSG_EXT_WDTR_LEN to account for
3987 1.1 fvdl * the extended message preamble.
3988 1.1 fvdl */
3989 1.1 fvdl if (ahd->msgin_index < (MSG_EXT_WDTR_LEN + 1))
3990 1.1 fvdl break;
3991 1.1 fvdl
3992 1.1 fvdl bus_width = ahd->msgin_buf[3];
3993 1.1 fvdl saved_width = bus_width;
3994 1.1 fvdl ahd_validate_width(ahd, tinfo, &bus_width,
3995 1.1 fvdl devinfo->role);
3996 1.1 fvdl if (bootverbose) {
3997 1.1 fvdl printf("(%s:%c:%d:%d): Received WDTR "
3998 1.1 fvdl "%x filtered to %x\n",
3999 1.1 fvdl ahd_name(ahd), devinfo->channel,
4000 1.1 fvdl devinfo->target, devinfo->lun,
4001 1.1 fvdl saved_width, bus_width);
4002 1.1 fvdl }
4003 1.1 fvdl
4004 1.1 fvdl if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_WDTR, TRUE)) {
4005 1.1 fvdl /*
4006 1.1 fvdl * Don't send a WDTR back to the
4007 1.1 fvdl * target, since we asked first.
4008 1.1 fvdl * If the width went higher than our
4009 1.1 fvdl * request, reject it.
4010 1.1 fvdl */
4011 1.1 fvdl if (saved_width > bus_width) {
4012 1.1 fvdl reject = TRUE;
4013 1.1 fvdl printf("(%s:%c:%d:%d): requested %dBit "
4014 1.1 fvdl "transfers. Rejecting...\n",
4015 1.1 fvdl ahd_name(ahd), devinfo->channel,
4016 1.1 fvdl devinfo->target, devinfo->lun,
4017 1.1 fvdl 8 * (0x01 << bus_width));
4018 1.1 fvdl bus_width = 0;
4019 1.1 fvdl }
4020 1.1 fvdl } else {
4021 1.1 fvdl /*
4022 1.1 fvdl * Send our own WDTR in reply
4023 1.1 fvdl */
4024 1.1 fvdl if (bootverbose
4025 1.1 fvdl && devinfo->role == ROLE_INITIATOR) {
4026 1.1 fvdl printf("(%s:%c:%d:%d): Target "
4027 1.1 fvdl "Initiated WDTR\n",
4028 1.1 fvdl ahd_name(ahd), devinfo->channel,
4029 1.1 fvdl devinfo->target, devinfo->lun);
4030 1.1 fvdl }
4031 1.1 fvdl ahd->msgout_index = 0;
4032 1.1 fvdl ahd->msgout_len = 0;
4033 1.1 fvdl ahd_construct_wdtr(ahd, devinfo, bus_width);
4034 1.1 fvdl ahd->msgout_index = 0;
4035 1.1 fvdl response = TRUE;
4036 1.1 fvdl sending_reply = TRUE;
4037 1.1 fvdl }
4038 1.16 thorpej /*
4039 1.16 thorpej * After a wide message, we are async, but
4040 1.16 thorpej * some devices don't seem to honor this portion
4041 1.16 thorpej * of the spec. Force a renegotiation of the
4042 1.16 thorpej * sync component of our transfer agreement even
4043 1.16 thorpej * if our goal is async. By updating our width
4044 1.16 thorpej * after forcing the negotiation, we avoid
4045 1.16 thorpej * renegotiating for width.
4046 1.16 thorpej */
4047 1.16 thorpej ahd_update_neg_request(ahd, devinfo, tstate,
4048 1.16 thorpej tinfo, AHD_NEG_ALWAYS);
4049 1.1 fvdl ahd_set_width(ahd, devinfo, bus_width,
4050 1.1 fvdl AHD_TRANS_ACTIVE|AHD_TRANS_GOAL,
4051 1.1 fvdl /*paused*/TRUE);
4052 1.1 fvdl if (sending_reply == FALSE && reject == FALSE) {
4053 1.1 fvdl
4054 1.16 thorpej /*
4055 1.16 thorpej * We will always have an SDTR to send.
4056 1.16 thorpej */
4057 1.16 thorpej ahd->msgout_index = 0;
4058 1.16 thorpej ahd->msgout_len = 0;
4059 1.16 thorpej ahd_build_transfer_msg(ahd, devinfo);
4060 1.16 thorpej ahd->msgout_index = 0;
4061 1.16 thorpej response = TRUE;
4062 1.1 fvdl }
4063 1.1 fvdl done = MSGLOOP_MSGCOMPLETE;
4064 1.1 fvdl break;
4065 1.1 fvdl }
4066 1.1 fvdl case MSG_EXT_PPR:
4067 1.1 fvdl {
4068 1.1 fvdl u_int period;
4069 1.1 fvdl u_int offset;
4070 1.1 fvdl u_int bus_width;
4071 1.1 fvdl u_int ppr_options;
4072 1.1 fvdl u_int saved_width;
4073 1.1 fvdl u_int saved_offset;
4074 1.1 fvdl u_int saved_ppr_options;
4075 1.1 fvdl
4076 1.1 fvdl if (ahd->msgin_buf[1] != MSG_EXT_PPR_LEN) {
4077 1.1 fvdl reject = TRUE;
4078 1.1 fvdl break;
4079 1.1 fvdl }
4080 1.1 fvdl
4081 1.1 fvdl /*
4082 1.1 fvdl * Wait until we have all args before validating
4083 1.1 fvdl * and acting on this message.
4084 1.1 fvdl *
4085 1.1 fvdl * Add one to MSG_EXT_PPR_LEN to account for
4086 1.1 fvdl * the extended message preamble.
4087 1.1 fvdl */
4088 1.1 fvdl if (ahd->msgin_index < (MSG_EXT_PPR_LEN + 1))
4089 1.1 fvdl break;
4090 1.1 fvdl
4091 1.1 fvdl period = ahd->msgin_buf[3];
4092 1.1 fvdl offset = ahd->msgin_buf[5];
4093 1.1 fvdl bus_width = ahd->msgin_buf[6];
4094 1.1 fvdl saved_width = bus_width;
4095 1.1 fvdl ppr_options = ahd->msgin_buf[7];
4096 1.1 fvdl /*
4097 1.1 fvdl * According to the spec, a DT only
4098 1.1 fvdl * period factor with no DT option
4099 1.1 fvdl * set implies async.
4100 1.1 fvdl */
4101 1.1 fvdl if ((ppr_options & MSG_EXT_PPR_DT_REQ) == 0
4102 1.1 fvdl && period <= 9)
4103 1.1 fvdl offset = 0;
4104 1.1 fvdl saved_ppr_options = ppr_options;
4105 1.1 fvdl saved_offset = offset;
4106 1.1 fvdl
4107 1.1 fvdl /*
4108 1.1 fvdl * Transfer options are only available if we
4109 1.1 fvdl * are negotiating wide.
4110 1.1 fvdl */
4111 1.1 fvdl if (bus_width == 0)
4112 1.1 fvdl ppr_options &= MSG_EXT_PPR_QAS_REQ;
4113 1.1 fvdl
4114 1.1 fvdl ahd_validate_width(ahd, tinfo, &bus_width,
4115 1.1 fvdl devinfo->role);
4116 1.1 fvdl ahd_devlimited_syncrate(ahd, tinfo, &period,
4117 1.1 fvdl &ppr_options, devinfo->role);
4118 1.1 fvdl ahd_validate_offset(ahd, tinfo, period, &offset,
4119 1.1 fvdl bus_width, devinfo->role);
4120 1.1 fvdl
4121 1.1 fvdl if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_PPR, TRUE)) {
4122 1.1 fvdl /*
4123 1.1 fvdl * If we are unable to do any of the
4124 1.1 fvdl * requested options (we went too low),
4125 1.1 fvdl * then we'll have to reject the message.
4126 1.1 fvdl */
4127 1.1 fvdl if (saved_width > bus_width
4128 1.1 fvdl || saved_offset != offset
4129 1.1 fvdl || saved_ppr_options != ppr_options) {
4130 1.1 fvdl reject = TRUE;
4131 1.1 fvdl period = 0;
4132 1.1 fvdl offset = 0;
4133 1.1 fvdl bus_width = 0;
4134 1.1 fvdl ppr_options = 0;
4135 1.1 fvdl }
4136 1.1 fvdl } else {
4137 1.1 fvdl if (devinfo->role != ROLE_TARGET)
4138 1.1 fvdl printf("(%s:%c:%d:%d): Target "
4139 1.1 fvdl "Initiated PPR\n",
4140 1.1 fvdl ahd_name(ahd), devinfo->channel,
4141 1.1 fvdl devinfo->target, devinfo->lun);
4142 1.1 fvdl else
4143 1.1 fvdl printf("(%s:%c:%d:%d): Initiator "
4144 1.1 fvdl "Initiated PPR\n",
4145 1.1 fvdl ahd_name(ahd), devinfo->channel,
4146 1.1 fvdl devinfo->target, devinfo->lun);
4147 1.1 fvdl ahd->msgout_index = 0;
4148 1.1 fvdl ahd->msgout_len = 0;
4149 1.1 fvdl ahd_construct_ppr(ahd, devinfo, period, offset,
4150 1.1 fvdl bus_width, ppr_options);
4151 1.1 fvdl ahd->msgout_index = 0;
4152 1.1 fvdl response = TRUE;
4153 1.1 fvdl }
4154 1.1 fvdl if (bootverbose) {
4155 1.1 fvdl printf("(%s:%c:%d:%d): Received PPR width %x, "
4156 1.1 fvdl "period %x, offset %x,options %x\n"
4157 1.1 fvdl "\tFiltered to width %x, period %x, "
4158 1.1 fvdl "offset %x, options %x\n",
4159 1.1 fvdl ahd_name(ahd), devinfo->channel,
4160 1.1 fvdl devinfo->target, devinfo->lun,
4161 1.1 fvdl saved_width, ahd->msgin_buf[3],
4162 1.1 fvdl saved_offset, saved_ppr_options,
4163 1.1 fvdl bus_width, period, offset, ppr_options);
4164 1.1 fvdl }
4165 1.1 fvdl ahd_set_width(ahd, devinfo, bus_width,
4166 1.1 fvdl AHD_TRANS_ACTIVE|AHD_TRANS_GOAL,
4167 1.1 fvdl /*paused*/TRUE);
4168 1.1 fvdl ahd_set_syncrate(ahd, devinfo, period,
4169 1.1 fvdl offset, ppr_options,
4170 1.1 fvdl AHD_TRANS_ACTIVE|AHD_TRANS_GOAL,
4171 1.1 fvdl /*paused*/TRUE);
4172 1.1 fvdl
4173 1.1 fvdl done = MSGLOOP_MSGCOMPLETE;
4174 1.1 fvdl break;
4175 1.1 fvdl }
4176 1.1 fvdl default:
4177 1.1 fvdl /* Unknown extended message. Reject it. */
4178 1.1 fvdl reject = TRUE;
4179 1.1 fvdl break;
4180 1.1 fvdl }
4181 1.1 fvdl break;
4182 1.1 fvdl }
4183 1.1 fvdl #ifdef AHD_TARGET_MODE
4184 1.1 fvdl case MSG_BUS_DEV_RESET:
4185 1.1 fvdl ahd_handle_devreset(ahd, devinfo, CAM_LUN_WILDCARD,
4186 1.1 fvdl CAM_BDR_SENT,
4187 1.1 fvdl "Bus Device Reset Received",
4188 1.1 fvdl /*verbose_level*/0);
4189 1.1 fvdl ahd_restart(ahd);
4190 1.1 fvdl done = MSGLOOP_TERMINATED;
4191 1.1 fvdl break;
4192 1.1 fvdl case MSG_ABORT_TAG:
4193 1.1 fvdl case MSG_ABORT:
4194 1.1 fvdl case MSG_CLEAR_QUEUE:
4195 1.1 fvdl {
4196 1.1 fvdl int tag;
4197 1.1 fvdl
4198 1.1 fvdl /* Target mode messages */
4199 1.1 fvdl if (devinfo->role != ROLE_TARGET) {
4200 1.1 fvdl reject = TRUE;
4201 1.1 fvdl break;
4202 1.1 fvdl }
4203 1.1 fvdl tag = SCB_LIST_NULL;
4204 1.1 fvdl if (ahd->msgin_buf[0] == MSG_ABORT_TAG)
4205 1.1 fvdl tag = ahd_inb(ahd, INITIATOR_TAG);
4206 1.1 fvdl ahd_abort_scbs(ahd, devinfo->target, devinfo->channel,
4207 1.1 fvdl devinfo->lun, tag, ROLE_TARGET,
4208 1.1 fvdl CAM_REQ_ABORTED);
4209 1.1 fvdl
4210 1.1 fvdl tstate = ahd->enabled_targets[devinfo->our_scsiid];
4211 1.1 fvdl if (tstate != NULL) {
4212 1.1 fvdl struct ahd_tmode_lstate* lstate;
4213 1.1 fvdl
4214 1.1 fvdl lstate = tstate->enabled_luns[devinfo->lun];
4215 1.1 fvdl if (lstate != NULL) {
4216 1.1 fvdl ahd_queue_lstate_event(ahd, lstate,
4217 1.1 fvdl devinfo->our_scsiid,
4218 1.1 fvdl ahd->msgin_buf[0],
4219 1.1 fvdl /*arg*/tag);
4220 1.1 fvdl ahd_send_lstate_events(ahd, lstate);
4221 1.1 fvdl }
4222 1.1 fvdl }
4223 1.1 fvdl ahd_restart(ahd);
4224 1.1 fvdl done = MSGLOOP_TERMINATED;
4225 1.1 fvdl break;
4226 1.1 fvdl }
4227 1.1 fvdl #endif
4228 1.1 fvdl case MSG_QAS_REQUEST:
4229 1.1 fvdl #ifdef AHD_DEBUG
4230 1.1 fvdl if ((ahd_debug & AHD_SHOW_MESSAGES) != 0)
4231 1.1 fvdl printf("%s: QAS request. SCSISIGI == 0x%x\n",
4232 1.1 fvdl ahd_name(ahd), ahd_inb(ahd, SCSISIGI));
4233 1.1 fvdl #endif
4234 1.1 fvdl ahd->msg_flags |= MSG_FLAG_EXPECT_QASREJ_BUSFREE;
4235 1.1 fvdl /* FALLTHROUGH */
4236 1.1 fvdl case MSG_TERM_IO_PROC:
4237 1.1 fvdl default:
4238 1.1 fvdl reject = TRUE;
4239 1.1 fvdl break;
4240 1.1 fvdl }
4241 1.1 fvdl
4242 1.1 fvdl if (reject) {
4243 1.1 fvdl /*
4244 1.1 fvdl * Setup to reject the message.
4245 1.1 fvdl */
4246 1.1 fvdl ahd->msgout_index = 0;
4247 1.1 fvdl ahd->msgout_len = 1;
4248 1.1 fvdl ahd->msgout_buf[0] = MSG_MESSAGE_REJECT;
4249 1.1 fvdl done = MSGLOOP_MSGCOMPLETE;
4250 1.1 fvdl response = TRUE;
4251 1.1 fvdl }
4252 1.1 fvdl
4253 1.1 fvdl if (done != MSGLOOP_IN_PROG && !response)
4254 1.1 fvdl /* Clear the outgoing message buffer */
4255 1.1 fvdl ahd->msgout_len = 0;
4256 1.1 fvdl
4257 1.1 fvdl return (done);
4258 1.1 fvdl }
4259 1.1 fvdl
4260 1.1 fvdl /*
4261 1.1 fvdl * Process a message reject message.
4262 1.1 fvdl */
4263 1.1 fvdl static int
4264 1.1 fvdl ahd_handle_msg_reject(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
4265 1.1 fvdl {
4266 1.1 fvdl /*
4267 1.1 fvdl * What we care about here is if we had an
4268 1.1 fvdl * outstanding SDTR or WDTR message for this
4269 1.1 fvdl * target. If we did, this is a signal that
4270 1.1 fvdl * the target is refusing negotiation.
4271 1.1 fvdl */
4272 1.1 fvdl struct scb *scb;
4273 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
4274 1.1 fvdl struct ahd_tmode_tstate *tstate;
4275 1.1 fvdl u_int scb_index;
4276 1.1 fvdl u_int last_msg;
4277 1.1 fvdl int response = 0;
4278 1.1 fvdl
4279 1.1 fvdl scb_index = ahd_get_scbptr(ahd);
4280 1.1 fvdl scb = ahd_lookup_scb(ahd, scb_index);
4281 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo->channel,
4282 1.1 fvdl devinfo->our_scsiid,
4283 1.1 fvdl devinfo->target, &tstate);
4284 1.1 fvdl /* Might be necessary */
4285 1.1 fvdl last_msg = ahd_inb(ahd, LAST_MSG);
4286 1.1 fvdl
4287 1.1 fvdl if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_PPR, /*full*/FALSE)) {
4288 1.1 fvdl if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_PPR, /*full*/TRUE)
4289 1.1 fvdl && tinfo->goal.period <= AHD_SYNCRATE_PACED) {
4290 1.1 fvdl /*
4291 1.1 fvdl * Target may not like our SPI-4 PPR Options.
4292 1.1 fvdl * Attempt to negotiate 80MHz which will turn
4293 1.1 fvdl * off these options.
4294 1.1 fvdl */
4295 1.1 fvdl if (bootverbose) {
4296 1.1 fvdl printf("(%s:%c:%d:%d): PPR Rejected. "
4297 1.1 fvdl "Trying simple U160 PPR\n",
4298 1.1 fvdl ahd_name(ahd), devinfo->channel,
4299 1.1 fvdl devinfo->target, devinfo->lun);
4300 1.1 fvdl }
4301 1.1 fvdl tinfo->goal.period = AHD_SYNCRATE_DT;
4302 1.1 fvdl tinfo->goal.ppr_options &= MSG_EXT_PPR_IU_REQ
4303 1.1 fvdl | MSG_EXT_PPR_QAS_REQ
4304 1.1 fvdl | MSG_EXT_PPR_DT_REQ;
4305 1.1 fvdl } else {
4306 1.1 fvdl /*
4307 1.1 fvdl * Target does not support the PPR message.
4308 1.1 fvdl * Attempt to negotiate SPI-2 style.
4309 1.1 fvdl */
4310 1.1 fvdl if (bootverbose) {
4311 1.1 fvdl printf("(%s:%c:%d:%d): PPR Rejected. "
4312 1.1 fvdl "Trying WDTR/SDTR\n",
4313 1.1 fvdl ahd_name(ahd), devinfo->channel,
4314 1.1 fvdl devinfo->target, devinfo->lun);
4315 1.1 fvdl }
4316 1.1 fvdl tinfo->goal.ppr_options = 0;
4317 1.1 fvdl tinfo->curr.transport_version = 2;
4318 1.1 fvdl tinfo->goal.transport_version = 2;
4319 1.1 fvdl }
4320 1.1 fvdl ahd->msgout_index = 0;
4321 1.1 fvdl ahd->msgout_len = 0;
4322 1.1 fvdl ahd_build_transfer_msg(ahd, devinfo);
4323 1.1 fvdl ahd->msgout_index = 0;
4324 1.1 fvdl response = 1;
4325 1.1 fvdl } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_WDTR, /*full*/FALSE)) {
4326 1.1 fvdl
4327 1.1 fvdl /* note 8bit xfers */
4328 1.1 fvdl printf("(%s:%c:%d:%d): refuses WIDE negotiation. Using "
4329 1.1 fvdl "8bit transfers\n", ahd_name(ahd),
4330 1.1 fvdl devinfo->channel, devinfo->target, devinfo->lun);
4331 1.1 fvdl ahd_set_width(ahd, devinfo, MSG_EXT_WDTR_BUS_8_BIT,
4332 1.1 fvdl AHD_TRANS_ACTIVE|AHD_TRANS_GOAL,
4333 1.1 fvdl /*paused*/TRUE);
4334 1.1 fvdl /*
4335 1.1 fvdl * No need to clear the sync rate. If the target
4336 1.1 fvdl * did not accept the command, our syncrate is
4337 1.1 fvdl * unaffected. If the target started the negotiation,
4338 1.1 fvdl * but rejected our response, we already cleared the
4339 1.1 fvdl * sync rate before sending our WDTR.
4340 1.1 fvdl */
4341 1.1 fvdl if (tinfo->goal.offset != tinfo->curr.offset) {
4342 1.1 fvdl
4343 1.1 fvdl /* Start the sync negotiation */
4344 1.1 fvdl ahd->msgout_index = 0;
4345 1.1 fvdl ahd->msgout_len = 0;
4346 1.1 fvdl ahd_build_transfer_msg(ahd, devinfo);
4347 1.1 fvdl ahd->msgout_index = 0;
4348 1.1 fvdl response = 1;
4349 1.1 fvdl }
4350 1.1 fvdl } else if (ahd_sent_msg(ahd, AHDMSG_EXT, MSG_EXT_SDTR, /*full*/FALSE)) {
4351 1.1 fvdl /* note asynch xfers and clear flag */
4352 1.1 fvdl ahd_set_syncrate(ahd, devinfo, /*period*/0,
4353 1.1 fvdl /*offset*/0, /*ppr_options*/0,
4354 1.1 fvdl AHD_TRANS_ACTIVE|AHD_TRANS_GOAL,
4355 1.1 fvdl /*paused*/TRUE);
4356 1.1 fvdl printf("(%s:%c:%d:%d): refuses synchronous negotiation. "
4357 1.1 fvdl "Using asynchronous transfers\n",
4358 1.1 fvdl ahd_name(ahd), devinfo->channel,
4359 1.1 fvdl devinfo->target, devinfo->lun);
4360 1.1 fvdl } else if ((scb->hscb->control & MSG_SIMPLE_TASK) != 0) {
4361 1.1 fvdl int tag_type;
4362 1.1 fvdl int mask;
4363 1.1 fvdl
4364 1.1 fvdl tag_type = (scb->hscb->control & MSG_SIMPLE_TASK);
4365 1.1 fvdl
4366 1.1 fvdl if (tag_type == MSG_SIMPLE_TASK) {
4367 1.1 fvdl printf("(%s:%c:%d:%d): refuses tagged commands. "
4368 1.1 fvdl "Performing non-tagged I/O\n", ahd_name(ahd),
4369 1.1 fvdl devinfo->channel, devinfo->target, devinfo->lun);
4370 1.1 fvdl ahd_set_tags(ahd, devinfo, AHD_QUEUE_NONE);
4371 1.1 fvdl mask = ~0x23;
4372 1.1 fvdl } else {
4373 1.1 fvdl printf("(%s:%c:%d:%d): refuses %s tagged commands. "
4374 1.1 fvdl "Performing simple queue tagged I/O only\n",
4375 1.1 fvdl ahd_name(ahd), devinfo->channel, devinfo->target,
4376 1.1 fvdl devinfo->lun, tag_type == MSG_ORDERED_Q_TAG
4377 1.1 fvdl ? "ordered" : "head of queue");
4378 1.1 fvdl ahd_set_tags(ahd, devinfo, AHD_QUEUE_BASIC);
4379 1.1 fvdl mask = ~0x03;
4380 1.1 fvdl }
4381 1.1 fvdl
4382 1.1 fvdl /*
4383 1.1 fvdl * Resend the identify for this CCB as the target
4384 1.1 fvdl * may believe that the selection is invalid otherwise.
4385 1.1 fvdl */
4386 1.1 fvdl ahd_outb(ahd, SCB_CONTROL,
4387 1.1 fvdl ahd_inb_scbram(ahd, SCB_CONTROL) & mask);
4388 1.1 fvdl scb->hscb->control &= mask;
4389 1.1 fvdl ahd_set_transaction_tag(scb, /*enabled*/FALSE,
4390 1.1 fvdl /*type*/MSG_SIMPLE_TASK);
4391 1.1 fvdl ahd_outb(ahd, MSG_OUT, MSG_IDENTIFYFLAG);
4392 1.1 fvdl ahd_assert_atn(ahd);
4393 1.1 fvdl ahd_busy_tcl(ahd, BUILD_TCL(scb->hscb->scsiid, devinfo->lun),
4394 1.1 fvdl SCB_GET_TAG(scb));
4395 1.1 fvdl
4396 1.1 fvdl /*
4397 1.1 fvdl * Requeue all tagged commands for this target
4398 1.1 fvdl * currently in our posession so they can be
4399 1.1 fvdl * converted to untagged commands.
4400 1.1 fvdl */
4401 1.1 fvdl ahd_search_qinfifo(ahd, SCB_GET_TARGET(ahd, scb),
4402 1.1 fvdl SCB_GET_CHANNEL(ahd, scb),
4403 1.1 fvdl SCB_GET_LUN(scb), /*tag*/SCB_LIST_NULL,
4404 1.1 fvdl ROLE_INITIATOR, CAM_REQUEUE_REQ,
4405 1.1 fvdl SEARCH_COMPLETE);
4406 1.1 fvdl } else if (ahd_sent_msg(ahd, AHDMSG_1B, MSG_IDENTIFYFLAG, TRUE)) {
4407 1.1 fvdl /*
4408 1.1 fvdl * Most likely the device believes that we had
4409 1.1 fvdl * previously negotiated packetized.
4410 1.1 fvdl */
4411 1.1 fvdl ahd->msg_flags |= MSG_FLAG_EXPECT_PPR_BUSFREE
4412 1.1 fvdl | MSG_FLAG_IU_REQ_CHANGED;
4413 1.1 fvdl
4414 1.1 fvdl ahd_force_renegotiation(ahd, devinfo);
4415 1.1 fvdl ahd->msgout_index = 0;
4416 1.1 fvdl ahd->msgout_len = 0;
4417 1.1 fvdl ahd_build_transfer_msg(ahd, devinfo);
4418 1.1 fvdl ahd->msgout_index = 0;
4419 1.1 fvdl response = 1;
4420 1.1 fvdl } else {
4421 1.1 fvdl /*
4422 1.1 fvdl * Otherwise, we ignore it.
4423 1.1 fvdl */
4424 1.1 fvdl printf("%s:%c:%d: Message reject for %x -- ignored\n",
4425 1.1 fvdl ahd_name(ahd), devinfo->channel, devinfo->target,
4426 1.1 fvdl last_msg);
4427 1.1 fvdl }
4428 1.1 fvdl return (response);
4429 1.1 fvdl }
4430 1.1 fvdl
4431 1.1 fvdl /*
4432 1.1 fvdl * Process an ignore wide residue message.
4433 1.1 fvdl */
4434 1.1 fvdl static void
4435 1.1 fvdl ahd_handle_ign_wide_residue(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
4436 1.1 fvdl {
4437 1.1 fvdl u_int scb_index;
4438 1.1 fvdl struct scb *scb;
4439 1.1 fvdl
4440 1.1 fvdl printf("%s: ahd_handle_ign_wide_residue\n", ahd_name(ahd));
4441 1.1 fvdl
4442 1.1 fvdl scb_index = ahd_get_scbptr(ahd);
4443 1.1 fvdl scb = ahd_lookup_scb(ahd, scb_index);
4444 1.1 fvdl /*
4445 1.1 fvdl * XXX Actually check data direction in the sequencer?
4446 1.1 fvdl * Perhaps add datadir to some spare bits in the hscb?
4447 1.1 fvdl */
4448 1.1 fvdl if ((ahd_inb(ahd, SEQ_FLAGS) & DPHASE) == 0
4449 1.1 fvdl || ahd_get_transfer_dir(scb) != CAM_DIR_IN) {
4450 1.1 fvdl /*
4451 1.1 fvdl * Ignore the message if we haven't
4452 1.1 fvdl * seen an appropriate data phase yet.
4453 1.1 fvdl */
4454 1.1 fvdl } else {
4455 1.1 fvdl /*
4456 1.1 fvdl * If the residual occurred on the last
4457 1.1 fvdl * transfer and the transfer request was
4458 1.1 fvdl * expected to end on an odd count, do
4459 1.1 fvdl * nothing. Otherwise, subtract a byte
4460 1.1 fvdl * and update the residual count accordingly.
4461 1.1 fvdl */
4462 1.1 fvdl uint32_t sgptr;
4463 1.1 fvdl
4464 1.1 fvdl sgptr = ahd_inb_scbram(ahd, SCB_RESIDUAL_SGPTR);
4465 1.1 fvdl if ((sgptr & SG_LIST_NULL) != 0
4466 1.11 thorpej && (ahd_inb(ahd, SCB_TASK_ATTRIBUTE) & SCB_XFERLEN_ODD) != 0) {
4467 1.1 fvdl /*
4468 1.1 fvdl * If the residual occurred on the last
4469 1.1 fvdl * transfer and the transfer request was
4470 1.1 fvdl * expected to end on an odd count, do
4471 1.1 fvdl * nothing.
4472 1.1 fvdl */
4473 1.1 fvdl } else {
4474 1.1 fvdl uint32_t data_cnt;
4475 1.1 fvdl uint64_t data_addr;
4476 1.1 fvdl uint32_t sglen;
4477 1.1 fvdl
4478 1.1 fvdl /* Pull in the rest of the sgptr */
4479 1.11 thorpej sgptr = ahd_inl_scbram(ahd, SCB_RESIDUAL_SGPTR);
4480 1.11 thorpej data_cnt = ahd_inl_scbram(ahd, SCB_RESIDUAL_DATACNT);
4481 1.11 thorpej if ((sgptr & SG_LIST_NULL) != 0) {
4482 1.11 thorpej /*
4483 1.11 thorpej * The residual data count is not updated
4484 1.11 thorpej * for the command run to completion case.
4485 1.11 thorpej * Explcitly zero the count.
4486 1.11 thorpej */
4487 1.11 thorpej data_cnt &= ~AHD_SG_LEN_MASK;
4488 1.11 thorpej }
4489 1.11 thorpej data_addr = ahd_inq(ahd, SHADDR);
4490 1.1 fvdl data_cnt += 1;
4491 1.1 fvdl data_addr -= 1;
4492 1.11 thorpej sgptr &= SG_PTR_MASK;
4493 1.1 fvdl if ((ahd->flags & AHD_64BIT_ADDRESSING) != 0) {
4494 1.1 fvdl struct ahd_dma64_seg *sg;
4495 1.1 fvdl
4496 1.1 fvdl sg = ahd_sg_bus_to_virt(ahd, scb, sgptr);
4497 1.1 fvdl
4498 1.1 fvdl /*
4499 1.1 fvdl * The residual sg ptr points to the next S/G
4500 1.1 fvdl * to load so we must go back one.
4501 1.1 fvdl */
4502 1.1 fvdl sg--;
4503 1.1 fvdl sglen = ahd_le32toh(sg->len) & AHD_SG_LEN_MASK;
4504 1.1 fvdl if (sg != scb->sg_list
4505 1.1 fvdl && sglen < (data_cnt & AHD_SG_LEN_MASK)) {
4506 1.1 fvdl
4507 1.1 fvdl sg--;
4508 1.1 fvdl sglen = ahd_le32toh(sg->len);
4509 1.1 fvdl /*
4510 1.1 fvdl * Preserve High Address and SG_LIST
4511 1.1 fvdl * bits while setting the count to 1.
4512 1.1 fvdl */
4513 1.1 fvdl data_cnt = 1|(sglen&(~AHD_SG_LEN_MASK));
4514 1.1 fvdl data_addr = ahd_le64toh(sg->addr)
4515 1.1 fvdl + (sglen & AHD_SG_LEN_MASK)
4516 1.1 fvdl - 1;
4517 1.1 fvdl
4518 1.1 fvdl /*
4519 1.1 fvdl * Increment sg so it points to the
4520 1.1 fvdl * "next" sg.
4521 1.1 fvdl */
4522 1.1 fvdl sg++;
4523 1.1 fvdl sgptr = ahd_sg_virt_to_bus(ahd, scb,
4524 1.1 fvdl sg);
4525 1.1 fvdl }
4526 1.1 fvdl } else {
4527 1.1 fvdl struct ahd_dma_seg *sg;
4528 1.1 fvdl
4529 1.1 fvdl sg = ahd_sg_bus_to_virt(ahd, scb, sgptr);
4530 1.1 fvdl
4531 1.1 fvdl /*
4532 1.1 fvdl * The residual sg ptr points to the next S/G
4533 1.1 fvdl * to load so we must go back one.
4534 1.1 fvdl */
4535 1.1 fvdl sg--;
4536 1.1 fvdl sglen = ahd_le32toh(sg->len) & AHD_SG_LEN_MASK;
4537 1.1 fvdl if (sg != scb->sg_list
4538 1.1 fvdl && sglen < (data_cnt & AHD_SG_LEN_MASK)) {
4539 1.1 fvdl
4540 1.1 fvdl sg--;
4541 1.1 fvdl sglen = ahd_le32toh(sg->len);
4542 1.1 fvdl /*
4543 1.1 fvdl * Preserve High Address and SG_LIST
4544 1.1 fvdl * bits while setting the count to 1.
4545 1.1 fvdl */
4546 1.1 fvdl data_cnt = 1|(sglen&(~AHD_SG_LEN_MASK));
4547 1.1 fvdl data_addr = ahd_le32toh(sg->addr)
4548 1.1 fvdl + (sglen & AHD_SG_LEN_MASK)
4549 1.1 fvdl - 1;
4550 1.1 fvdl
4551 1.1 fvdl /*
4552 1.1 fvdl * Increment sg so it points to the
4553 1.1 fvdl * "next" sg.
4554 1.1 fvdl */
4555 1.1 fvdl sg++;
4556 1.1 fvdl sgptr = ahd_sg_virt_to_bus(ahd, scb,
4557 1.1 fvdl sg);
4558 1.1 fvdl }
4559 1.1 fvdl }
4560 1.11 thorpej /*
4561 1.11 thorpej * Toggle the "oddness" of the transfer length
4562 1.11 thorpej * to handle this mid-transfer ignore wide
4563 1.11 thorpej * residue. This ensures that the oddness is
4564 1.11 thorpej * correct for subsequent data transfers.
4565 1.11 thorpej */
4566 1.11 thorpej ahd_outb(ahd, SCB_TASK_ATTRIBUTE,
4567 1.11 thorpej ahd_inb(ahd, SCB_TASK_ATTRIBUTE) ^ SCB_XFERLEN_ODD);
4568 1.1 fvdl
4569 1.11 thorpej ahd_outl(ahd, SCB_RESIDUAL_SGPTR, sgptr);
4570 1.11 thorpej ahd_outl(ahd, SCB_RESIDUAL_DATACNT, data_cnt);
4571 1.1 fvdl /*
4572 1.1 fvdl * The FIFO's pointers will be updated if/when the
4573 1.1 fvdl * sequencer re-enters a data phase.
4574 1.1 fvdl */
4575 1.1 fvdl }
4576 1.1 fvdl }
4577 1.1 fvdl }
4578 1.1 fvdl
4579 1.1 fvdl
4580 1.1 fvdl /*
4581 1.1 fvdl * Reinitialize the data pointers for the active transfer
4582 1.1 fvdl * based on its current residual.
4583 1.1 fvdl */
4584 1.1 fvdl static void
4585 1.1 fvdl ahd_reinitialize_dataptrs(struct ahd_softc *ahd)
4586 1.1 fvdl {
4587 1.1 fvdl struct scb *scb;
4588 1.1 fvdl ahd_mode_state saved_modes;
4589 1.1 fvdl u_int scb_index;
4590 1.1 fvdl u_int wait;
4591 1.1 fvdl uint32_t sgptr;
4592 1.1 fvdl uint32_t resid;
4593 1.1 fvdl uint64_t dataptr;
4594 1.1 fvdl
4595 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_DFF0_MSK|AHD_MODE_DFF1_MSK,
4596 1.1 fvdl AHD_MODE_DFF0_MSK|AHD_MODE_DFF1_MSK);
4597 1.1 fvdl
4598 1.1 fvdl scb_index = ahd_get_scbptr(ahd);
4599 1.1 fvdl scb = ahd_lookup_scb(ahd, scb_index);
4600 1.1 fvdl
4601 1.1 fvdl /*
4602 1.1 fvdl * Release and reacquire the FIFO so we
4603 1.1 fvdl * have a clean slate.
4604 1.1 fvdl */
4605 1.1 fvdl ahd_outb(ahd, DFFSXFRCTL, CLRCHN);
4606 1.1 fvdl wait = 1000;
4607 1.19 thorpej while (--wait && !(ahd_inb(ahd, MDFFSTAT) & FIFOFREE))
4608 1.1 fvdl ahd_delay(100);
4609 1.1 fvdl if (wait == 0) {
4610 1.1 fvdl ahd_print_path(ahd, scb);
4611 1.1 fvdl printf("ahd_reinitialize_dataptrs: Forcing FIFO free.\n");
4612 1.1 fvdl ahd_outb(ahd, DFFSXFRCTL, RSTCHN|CLRSHCNT);
4613 1.1 fvdl }
4614 1.1 fvdl saved_modes = ahd_save_modes(ahd);
4615 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
4616 1.1 fvdl ahd_outb(ahd, DFFSTAT,
4617 1.1 fvdl ahd_inb(ahd, DFFSTAT)
4618 1.1 fvdl | (saved_modes == 0x11 ? CURRFIFO_1 : CURRFIFO_0));
4619 1.1 fvdl
4620 1.1 fvdl /*
4621 1.1 fvdl * Determine initial values for data_addr and data_cnt
4622 1.1 fvdl * for resuming the data phase.
4623 1.1 fvdl */
4624 1.1 fvdl sgptr = (ahd_inb_scbram(ahd, SCB_RESIDUAL_SGPTR + 3) << 24)
4625 1.1 fvdl | (ahd_inb_scbram(ahd, SCB_RESIDUAL_SGPTR + 2) << 16)
4626 1.1 fvdl | (ahd_inb_scbram(ahd, SCB_RESIDUAL_SGPTR + 1) << 8)
4627 1.1 fvdl | ahd_inb_scbram(ahd, SCB_RESIDUAL_SGPTR);
4628 1.1 fvdl sgptr &= SG_PTR_MASK;
4629 1.1 fvdl
4630 1.1 fvdl resid = (ahd_inb_scbram(ahd, SCB_RESIDUAL_DATACNT + 2) << 16)
4631 1.1 fvdl | (ahd_inb_scbram(ahd, SCB_RESIDUAL_DATACNT + 1) << 8)
4632 1.1 fvdl | ahd_inb_scbram(ahd, SCB_RESIDUAL_DATACNT);
4633 1.1 fvdl
4634 1.1 fvdl if ((ahd->flags & AHD_64BIT_ADDRESSING) != 0) {
4635 1.1 fvdl struct ahd_dma64_seg *sg;
4636 1.1 fvdl
4637 1.1 fvdl sg = ahd_sg_bus_to_virt(ahd, scb, sgptr);
4638 1.1 fvdl
4639 1.1 fvdl /* The residual sg_ptr always points to the next sg */
4640 1.1 fvdl sg--;
4641 1.1 fvdl
4642 1.1 fvdl dataptr = ahd_le64toh(sg->addr)
4643 1.1 fvdl + (ahd_le32toh(sg->len) & AHD_SG_LEN_MASK)
4644 1.1 fvdl - resid;
4645 1.1 fvdl ahd_outb(ahd, HADDR + 7, dataptr >> 56);
4646 1.1 fvdl ahd_outb(ahd, HADDR + 6, dataptr >> 48);
4647 1.1 fvdl ahd_outb(ahd, HADDR + 5, dataptr >> 40);
4648 1.1 fvdl ahd_outb(ahd, HADDR + 4, dataptr >> 32);
4649 1.1 fvdl } else {
4650 1.1 fvdl struct ahd_dma_seg *sg;
4651 1.1 fvdl
4652 1.1 fvdl sg = ahd_sg_bus_to_virt(ahd, scb, sgptr);
4653 1.1 fvdl
4654 1.1 fvdl /* The residual sg_ptr always points to the next sg */
4655 1.1 fvdl sg--;
4656 1.1 fvdl
4657 1.1 fvdl dataptr = ahd_le32toh(sg->addr)
4658 1.1 fvdl + (ahd_le32toh(sg->len) & AHD_SG_LEN_MASK)
4659 1.1 fvdl - resid;
4660 1.1 fvdl ahd_outb(ahd, HADDR + 4,
4661 1.1 fvdl (ahd_le32toh(sg->len) & ~AHD_SG_LEN_MASK) >> 24);
4662 1.1 fvdl }
4663 1.1 fvdl ahd_outb(ahd, HADDR + 3, dataptr >> 24);
4664 1.1 fvdl ahd_outb(ahd, HADDR + 2, dataptr >> 16);
4665 1.1 fvdl ahd_outb(ahd, HADDR + 1, dataptr >> 8);
4666 1.1 fvdl ahd_outb(ahd, HADDR, dataptr);
4667 1.1 fvdl ahd_outb(ahd, HCNT + 2, resid >> 16);
4668 1.1 fvdl ahd_outb(ahd, HCNT + 1, resid >> 8);
4669 1.1 fvdl ahd_outb(ahd, HCNT, resid);
4670 1.1 fvdl }
4671 1.1 fvdl
4672 1.1 fvdl /*
4673 1.1 fvdl * Handle the effects of issuing a bus device reset message.
4674 1.1 fvdl */
4675 1.1 fvdl static void
4676 1.1 fvdl ahd_handle_devreset(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
4677 1.1 fvdl u_int lun, cam_status status, char *message,
4678 1.1 fvdl int verbose_level)
4679 1.1 fvdl {
4680 1.1 fvdl #ifdef AHD_TARGET_MODE
4681 1.1 fvdl struct ahd_tmode_tstate* tstate;
4682 1.1 fvdl #endif
4683 1.1 fvdl int found;
4684 1.1 fvdl
4685 1.1 fvdl found = ahd_abort_scbs(ahd, devinfo->target, devinfo->channel,
4686 1.1 fvdl lun, SCB_LIST_NULL, devinfo->role,
4687 1.1 fvdl status);
4688 1.1 fvdl
4689 1.1 fvdl #ifdef AHD_TARGET_MODE
4690 1.1 fvdl /*
4691 1.1 fvdl * Send an immediate notify ccb to all target mord peripheral
4692 1.1 fvdl * drivers affected by this action.
4693 1.1 fvdl */
4694 1.1 fvdl tstate = ahd->enabled_targets[devinfo->our_scsiid];
4695 1.1 fvdl if (tstate != NULL) {
4696 1.1 fvdl u_int cur_lun;
4697 1.1 fvdl u_int max_lun;
4698 1.1 fvdl
4699 1.1 fvdl if (lun != CAM_LUN_WILDCARD) {
4700 1.1 fvdl cur_lun = 0;
4701 1.1 fvdl max_lun = AHD_NUM_LUNS - 1;
4702 1.1 fvdl } else {
4703 1.1 fvdl cur_lun = lun;
4704 1.1 fvdl max_lun = lun;
4705 1.1 fvdl }
4706 1.1 fvdl for (cur_lun <= max_lun; cur_lun++) {
4707 1.1 fvdl struct ahd_tmode_lstate* lstate;
4708 1.1 fvdl
4709 1.1 fvdl lstate = tstate->enabled_luns[cur_lun];
4710 1.1 fvdl if (lstate == NULL)
4711 1.1 fvdl continue;
4712 1.1 fvdl
4713 1.1 fvdl ahd_queue_lstate_event(ahd, lstate, devinfo->our_scsiid,
4714 1.1 fvdl MSG_BUS_DEV_RESET, /*arg*/0);
4715 1.1 fvdl ahd_send_lstate_events(ahd, lstate);
4716 1.1 fvdl }
4717 1.1 fvdl }
4718 1.1 fvdl #endif
4719 1.1 fvdl
4720 1.1 fvdl /*
4721 1.1 fvdl * Go back to async/narrow transfers and renegotiate.
4722 1.1 fvdl */
4723 1.1 fvdl ahd_set_width(ahd, devinfo, MSG_EXT_WDTR_BUS_8_BIT,
4724 1.1 fvdl AHD_TRANS_CUR, /*paused*/TRUE);
4725 1.1 fvdl ahd_set_syncrate(ahd, devinfo, /*period*/0, /*offset*/0,
4726 1.1 fvdl /*ppr_options*/0, AHD_TRANS_CUR, /*paused*/TRUE);
4727 1.1 fvdl
4728 1.1 fvdl ahd_send_async(ahd, devinfo->channel, devinfo->target,
4729 1.1 fvdl lun, AC_SENT_BDR, NULL);
4730 1.1 fvdl
4731 1.1 fvdl if (message != NULL
4732 1.1 fvdl && (verbose_level <= bootverbose))
4733 1.1 fvdl printf("%s: %s on %c:%d. %d SCBs aborted\n", ahd_name(ahd),
4734 1.1 fvdl message, devinfo->channel, devinfo->target, found);
4735 1.1 fvdl }
4736 1.1 fvdl
4737 1.1 fvdl #ifdef AHD_TARGET_MODE
4738 1.1 fvdl static void
4739 1.1 fvdl ahd_setup_target_msgin(struct ahd_softc *ahd, struct ahd_devinfo *devinfo,
4740 1.1 fvdl struct scb *scb)
4741 1.1 fvdl {
4742 1.1 fvdl
4743 1.1 fvdl /*
4744 1.1 fvdl * To facilitate adding multiple messages together,
4745 1.1 fvdl * each routine should increment the index and len
4746 1.1 fvdl * variables instead of setting them explicitly.
4747 1.1 fvdl */
4748 1.1 fvdl ahd->msgout_index = 0;
4749 1.1 fvdl ahd->msgout_len = 0;
4750 1.1 fvdl
4751 1.1 fvdl if (scb != NULL && (scb->flags & SCB_AUTO_NEGOTIATE) != 0)
4752 1.1 fvdl ahd_build_transfer_msg(ahd, devinfo);
4753 1.1 fvdl else
4754 1.1 fvdl panic("ahd_intr: AWAITING target message with no message");
4755 1.1 fvdl
4756 1.1 fvdl ahd->msgout_index = 0;
4757 1.1 fvdl ahd->msg_type = MSG_TYPE_TARGET_MSGIN;
4758 1.1 fvdl }
4759 1.1 fvdl #endif
4760 1.1 fvdl /**************************** Initialization **********************************/
4761 1.1 fvdl static u_int
4762 1.1 fvdl ahd_sglist_size(struct ahd_softc *ahd)
4763 1.1 fvdl {
4764 1.1 fvdl bus_size_t list_size;
4765 1.1 fvdl
4766 1.1 fvdl list_size = sizeof(struct ahd_dma_seg) * AHD_NSEG;
4767 1.1 fvdl if ((ahd->flags & AHD_64BIT_ADDRESSING) != 0)
4768 1.1 fvdl list_size = sizeof(struct ahd_dma64_seg) * AHD_NSEG;
4769 1.1 fvdl return (list_size);
4770 1.1 fvdl }
4771 1.1 fvdl
4772 1.1 fvdl /*
4773 1.1 fvdl * Calculate the optimum S/G List allocation size. S/G elements used
4774 1.1 fvdl * for a given transaction must be physically contiguous. Assume the
4775 1.1 fvdl * OS will allocate full pages to us, so it doesn't make sense to request
4776 1.1 fvdl * less than a page.
4777 1.1 fvdl */
4778 1.1 fvdl static u_int
4779 1.1 fvdl ahd_sglist_allocsize(struct ahd_softc *ahd)
4780 1.1 fvdl {
4781 1.1 fvdl bus_size_t sg_list_increment;
4782 1.1 fvdl bus_size_t sg_list_size;
4783 1.1 fvdl bus_size_t max_list_size;
4784 1.1 fvdl bus_size_t best_list_size;
4785 1.1 fvdl
4786 1.1 fvdl /* Start out with the minimum required for AHD_NSEG. */
4787 1.1 fvdl sg_list_increment = ahd_sglist_size(ahd);
4788 1.1 fvdl sg_list_size = sg_list_increment;
4789 1.1 fvdl
4790 1.1 fvdl /* Get us as close as possible to a page in size. */
4791 1.1 fvdl while ((sg_list_size + sg_list_increment) <= PAGE_SIZE)
4792 1.1 fvdl sg_list_size += sg_list_increment;
4793 1.1 fvdl
4794 1.1 fvdl /*
4795 1.1 fvdl * Try to reduce the amount of wastage by allocating
4796 1.1 fvdl * multiple pages.
4797 1.1 fvdl */
4798 1.1 fvdl best_list_size = sg_list_size;
4799 1.1 fvdl max_list_size = roundup(sg_list_increment, PAGE_SIZE);
4800 1.1 fvdl if (max_list_size < 4 * PAGE_SIZE)
4801 1.1 fvdl max_list_size = 4 * PAGE_SIZE;
4802 1.1 fvdl if (max_list_size > (AHD_SCB_MAX_ALLOC * sg_list_increment))
4803 1.1 fvdl max_list_size = (AHD_SCB_MAX_ALLOC * sg_list_increment);
4804 1.1 fvdl while ((sg_list_size + sg_list_increment) <= max_list_size
4805 1.1 fvdl && (sg_list_size % PAGE_SIZE) != 0) {
4806 1.1 fvdl bus_size_t new_mod;
4807 1.1 fvdl bus_size_t best_mod;
4808 1.1 fvdl
4809 1.1 fvdl sg_list_size += sg_list_increment;
4810 1.1 fvdl new_mod = sg_list_size % PAGE_SIZE;
4811 1.1 fvdl best_mod = best_list_size % PAGE_SIZE;
4812 1.1 fvdl if (new_mod > best_mod || new_mod == 0) {
4813 1.1 fvdl best_list_size = sg_list_size;
4814 1.1 fvdl }
4815 1.1 fvdl }
4816 1.1 fvdl return (best_list_size);
4817 1.1 fvdl }
4818 1.1 fvdl
4819 1.1 fvdl int
4820 1.1 fvdl ahd_softc_init(struct ahd_softc *ahd)
4821 1.1 fvdl {
4822 1.1 fvdl
4823 1.1 fvdl ahd->unpause = 0;
4824 1.1 fvdl ahd->pause = PAUSE;
4825 1.1 fvdl return (0);
4826 1.1 fvdl }
4827 1.1 fvdl
4828 1.1 fvdl void
4829 1.1 fvdl ahd_set_unit(struct ahd_softc *ahd, int unit)
4830 1.1 fvdl {
4831 1.1 fvdl ahd->unit = unit;
4832 1.1 fvdl }
4833 1.1 fvdl
4834 1.1 fvdl void
4835 1.1 fvdl ahd_set_name(struct ahd_softc *ahd, char *name)
4836 1.1 fvdl {
4837 1.1 fvdl if (ahd->name != NULL)
4838 1.1 fvdl free(ahd->name, M_DEVBUF);
4839 1.1 fvdl ahd->name = name;
4840 1.1 fvdl }
4841 1.1 fvdl
4842 1.1 fvdl void
4843 1.1 fvdl ahd_free(struct ahd_softc *ahd)
4844 1.1 fvdl {
4845 1.1 fvdl int i;
4846 1.1 fvdl
4847 1.1 fvdl switch (ahd->init_level) {
4848 1.1 fvdl default:
4849 1.1 fvdl case 2:
4850 1.1 fvdl ahd_shutdown(ahd);
4851 1.1 fvdl TAILQ_REMOVE(&ahd_tailq, ahd, links);
4852 1.1 fvdl /* FALLTHROUGH */
4853 1.1 fvdl case 1:
4854 1.7 thorpej bus_dmamap_unload(ahd->parent_dmat, ahd->shared_data_map.dmamap);
4855 1.7 thorpej bus_dmamap_destroy(ahd->parent_dmat, ahd->shared_data_map.dmamap);
4856 1.1 fvdl bus_dmamem_unmap(ahd->parent_dmat, (caddr_t)ahd->qoutfifo, ahd->shared_data_size);
4857 1.7 thorpej bus_dmamem_free(ahd->parent_dmat, &ahd->shared_data_map.dmasegs, ahd->shared_data_map.nseg);
4858 1.1 fvdl break;
4859 1.1 fvdl case 0:
4860 1.1 fvdl break;
4861 1.1 fvdl }
4862 1.1 fvdl
4863 1.1 fvdl ahd_platform_free(ahd);
4864 1.9 thorpej ahd_fini_scbdata(ahd);
4865 1.1 fvdl for (i = 0; i < AHD_NUM_TARGETS; i++) {
4866 1.1 fvdl struct ahd_tmode_tstate *tstate;
4867 1.1 fvdl
4868 1.1 fvdl tstate = ahd->enabled_targets[i];
4869 1.1 fvdl if (tstate != NULL) {
4870 1.1 fvdl #if AHD_TARGET_MODE
4871 1.1 fvdl int j;
4872 1.1 fvdl
4873 1.1 fvdl for (j = 0; j < AHD_NUM_LUNS; j++) {
4874 1.1 fvdl struct ahd_tmode_lstate *lstate;
4875 1.1 fvdl
4876 1.1 fvdl lstate = tstate->enabled_luns[j];
4877 1.1 fvdl if (lstate != NULL) {
4878 1.1 fvdl xpt_free_path(lstate->path);
4879 1.1 fvdl free(lstate, M_DEVBUF);
4880 1.1 fvdl }
4881 1.1 fvdl }
4882 1.1 fvdl #endif
4883 1.1 fvdl free(tstate, M_DEVBUF);
4884 1.1 fvdl }
4885 1.1 fvdl }
4886 1.1 fvdl #if AHD_TARGET_MODE
4887 1.1 fvdl if (ahd->black_hole != NULL) {
4888 1.1 fvdl xpt_free_path(ahd->black_hole->path);
4889 1.1 fvdl free(ahd->black_hole, M_DEVBUF);
4890 1.1 fvdl }
4891 1.1 fvdl #endif
4892 1.1 fvdl if (ahd->name != NULL)
4893 1.1 fvdl free(ahd->name, M_DEVBUF);
4894 1.1 fvdl if (ahd->seep_config != NULL)
4895 1.1 fvdl free(ahd->seep_config, M_DEVBUF);
4896 1.1 fvdl if (ahd->saved_stack != NULL)
4897 1.1 fvdl free(ahd->saved_stack, M_DEVBUF);
4898 1.1 fvdl #ifndef __FreeBSD__
4899 1.1 fvdl free(ahd, M_DEVBUF);
4900 1.1 fvdl #endif
4901 1.1 fvdl return;
4902 1.1 fvdl }
4903 1.1 fvdl
4904 1.1 fvdl void
4905 1.1 fvdl ahd_shutdown(void *arg)
4906 1.1 fvdl {
4907 1.1 fvdl struct ahd_softc *ahd;
4908 1.1 fvdl
4909 1.1 fvdl ahd = (struct ahd_softc *)arg;
4910 1.1 fvdl
4911 1.1 fvdl #ifdef AHD_DEBUG
4912 1.1 fvdl printf("%s: ahd_shutdown\n", ahd_name(ahd));
4913 1.1 fvdl #endif
4914 1.1 fvdl /*
4915 1.1 fvdl * Stop periodic timer callbacks.
4916 1.1 fvdl */
4917 1.1 fvdl ahd_timer_stop(&ahd->reset_timer);
4918 1.1 fvdl ahd_timer_stop(&ahd->stat_timer);
4919 1.1 fvdl
4920 1.1 fvdl /* This will reset most registers to 0, but not all */
4921 1.15 thorpej ahd_reset(ahd, /*reinit*/FALSE);
4922 1.1 fvdl }
4923 1.1 fvdl
4924 1.1 fvdl /*
4925 1.1 fvdl * Reset the controller and record some information about it
4926 1.15 thorpej * that is only available just after a reset. If "reinit" is
4927 1.15 thorpej * non-zero, this reset occured after initial configuration
4928 1.15 thorpej * and the caller requests that the chip be fully reinitialized
4929 1.15 thorpej * to a runable state. Chip interrupts are *not* enabled after
4930 1.15 thorpej * a reinitialization. The caller must enable interrupts via
4931 1.15 thorpej * ahd_intr_enable().
4932 1.1 fvdl */
4933 1.1 fvdl int
4934 1.15 thorpej ahd_reset(struct ahd_softc *ahd, int reinit)
4935 1.1 fvdl {
4936 1.1 fvdl u_int sxfrctl1;
4937 1.1 fvdl int wait;
4938 1.1 fvdl uint32_t cmd;
4939 1.1 fvdl struct ahd_pci_busdata *bd = ahd->bus_data;
4940 1.1 fvdl
4941 1.1 fvdl /*
4942 1.1 fvdl * Preserve the value of the SXFRCTL1 register for all channels.
4943 1.1 fvdl * It contains settings that affect termination and we don't want
4944 1.1 fvdl * to disturb the integrity of the bus.
4945 1.1 fvdl */
4946 1.1 fvdl ahd_pause(ahd);
4947 1.1 fvdl ahd_update_modes(ahd);
4948 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
4949 1.1 fvdl sxfrctl1 = ahd_inb(ahd, SXFRCTL1);
4950 1.1 fvdl
4951 1.1 fvdl cmd = pci_conf_read(bd->pc, bd->tag, PCI_COMMAND_STATUS_REG);
4952 1.1 fvdl
4953 1.1 fvdl if ((ahd->bugs & AHD_PCIX_CHIPRST_BUG) != 0) {
4954 1.1 fvdl uint32_t mod_cmd;
4955 1.1 fvdl
4956 1.1 fvdl /*
4957 1.1 fvdl * A4 Razor #632
4958 1.1 fvdl * During the assertion of CHIPRST, the chip
4959 1.1 fvdl * does not disable its parity logic prior to
4960 1.1 fvdl * the start of the reset. This may cause a
4961 1.1 fvdl * parity error to be detected and thus a
4962 1.1 fvdl * spurious SERR or PERR assertion. Disble
4963 1.1 fvdl * PERR and SERR responses during the CHIPRST.
4964 1.1 fvdl */
4965 1.1 fvdl mod_cmd = cmd & ~(PCI_COMMAND_PARITY_ENABLE|PCI_COMMAND_SERR_ENABLE);
4966 1.1 fvdl pci_conf_write(bd->pc, bd->tag, PCI_COMMAND_STATUS_REG, mod_cmd);
4967 1.1 fvdl }
4968 1.1 fvdl ahd_outb(ahd, HCNTRL, CHIPRST | ahd->pause);
4969 1.1 fvdl
4970 1.1 fvdl /*
4971 1.1 fvdl * Ensure that the reset has finished. We delay 1000us
4972 1.1 fvdl * prior to reading the register to make sure the chip
4973 1.1 fvdl * has sufficiently completed its reset to handle register
4974 1.1 fvdl * accesses.
4975 1.1 fvdl */
4976 1.1 fvdl wait = 1000;
4977 1.1 fvdl do {
4978 1.1 fvdl ahd_delay(1000);
4979 1.1 fvdl } while (--wait && !(ahd_inb(ahd, HCNTRL) & CHIPRSTACK));
4980 1.1 fvdl
4981 1.1 fvdl if (wait == 0) {
4982 1.1 fvdl printf("%s: WARNING - Failed chip reset! "
4983 1.1 fvdl "Trying to initialize anyway.\n", ahd_name(ahd));
4984 1.1 fvdl }
4985 1.1 fvdl ahd_outb(ahd, HCNTRL, ahd->pause);
4986 1.1 fvdl
4987 1.1 fvdl if ((ahd->bugs & AHD_PCIX_CHIPRST_BUG) != 0) {
4988 1.1 fvdl /*
4989 1.1 fvdl * Clear any latched PCI error status and restore
4990 1.1 fvdl * previous SERR and PERR response enables.
4991 1.1 fvdl */
4992 1.1 fvdl pci_conf_write(bd->pc, bd->tag, PCI_COMMAND_STATUS_REG, 0x000000FF);
4993 1.1 fvdl pci_conf_write(bd->pc, bd->tag, PCI_COMMAND_STATUS_REG,
4994 1.1 fvdl PCI_COMMAND_SERR_ENABLE|PCI_COMMAND_PARITY_ENABLE);
4995 1.1 fvdl }
4996 1.1 fvdl
4997 1.1 fvdl /*
4998 1.1 fvdl * Mode should be SCSI after a chip reset, but lets
4999 1.1 fvdl * set it just to be safe. We touch the MODE_PTR
5000 1.1 fvdl * register directly so as to bypass the lazy update
5001 1.1 fvdl * ode in ahd_set_modes().
5002 1.1 fvdl */
5003 1.1 fvdl ahd_known_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
5004 1.1 fvdl ahd_outb(ahd, MODE_PTR,
5005 1.1 fvdl ahd_build_mode_state(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI));
5006 1.1 fvdl
5007 1.1 fvdl /*
5008 1.1 fvdl * Restore SXFRCTL1.
5009 1.1 fvdl *
5010 1.1 fvdl * We must always initialize STPWEN to 1 before we
5011 1.1 fvdl * restore the saved values. STPWEN is initialized
5012 1.1 fvdl * to a tri-state condition which can only be cleared
5013 1.1 fvdl * by turning it on.
5014 1.1 fvdl */
5015 1.1 fvdl ahd_outb(ahd, SXFRCTL1, sxfrctl1|STPWEN);
5016 1.1 fvdl ahd_outb(ahd, SXFRCTL1, sxfrctl1);
5017 1.1 fvdl
5018 1.1 fvdl /* Determine chip configuration */
5019 1.1 fvdl ahd->features &= ~AHD_WIDE;
5020 1.1 fvdl if ((ahd_inb(ahd, SBLKCTL) & SELWIDE) != 0)
5021 1.1 fvdl ahd->features |= AHD_WIDE;
5022 1.1 fvdl
5023 1.1 fvdl /*
5024 1.1 fvdl * If a recovery action has forced a chip reset,
5025 1.1 fvdl * re-initialize the chip to our liking.
5026 1.1 fvdl */
5027 1.15 thorpej if (reinit != 0)
5028 1.1 fvdl ahd_chip_init(ahd);
5029 1.1 fvdl
5030 1.1 fvdl return (0);
5031 1.1 fvdl }
5032 1.1 fvdl
5033 1.1 fvdl /*
5034 1.1 fvdl * Determine the number of SCBs available on the controller
5035 1.1 fvdl */
5036 1.1 fvdl int
5037 1.1 fvdl ahd_probe_scbs(struct ahd_softc *ahd) {
5038 1.1 fvdl int i;
5039 1.1 fvdl
5040 1.1 fvdl AHD_ASSERT_MODES(ahd, ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK),
5041 1.1 fvdl ~(AHD_MODE_UNKNOWN_MSK|AHD_MODE_CFG_MSK));
5042 1.1 fvdl for (i = 0; i < AHD_SCB_MAX; i++) {
5043 1.1 fvdl int j;
5044 1.1 fvdl int ret;
5045 1.1 fvdl
5046 1.1 fvdl ahd_set_scbptr(ahd, i);
5047 1.1 fvdl ahd_outw(ahd, SCB_BASE, i);
5048 1.1 fvdl for (j = 2; j < 64; j++)
5049 1.1 fvdl ahd_outb(ahd, SCB_BASE+j, 0);
5050 1.1 fvdl /* Start out life as unallocated (needing an abort) */
5051 1.1 fvdl ahd_outb(ahd, SCB_CONTROL, MK_MESSAGE);
5052 1.1 fvdl ret = ahd_inw_scbram(ahd, SCB_BASE);
5053 1.1 fvdl if (ret != i) {
5054 1.1 fvdl printf("%s: ahd_probe_scbs (!=%d): returned 0x%x\n", ahd_name(ahd), i, ret);
5055 1.1 fvdl break;
5056 1.1 fvdl }
5057 1.1 fvdl ahd_set_scbptr(ahd, 0);
5058 1.1 fvdl ret = ahd_inw_scbram(ahd, SCB_BASE);
5059 1.1 fvdl if (ret != 0) {
5060 1.1 fvdl printf("ahd_probe_scbs (non zero): returned 0x%x\n", ret);
5061 1.1 fvdl break;
5062 1.1 fvdl }
5063 1.1 fvdl }
5064 1.1 fvdl return (i);
5065 1.1 fvdl }
5066 1.1 fvdl
5067 1.1 fvdl static void
5068 1.1 fvdl ahd_initialize_hscbs(struct ahd_softc *ahd)
5069 1.1 fvdl {
5070 1.1 fvdl int i;
5071 1.1 fvdl
5072 1.1 fvdl for (i = 0; i < ahd->scb_data.maxhscbs; i++) {
5073 1.1 fvdl ahd_set_scbptr(ahd, i);
5074 1.1 fvdl
5075 1.1 fvdl /* Clear the control byte. */
5076 1.1 fvdl ahd_outb(ahd, SCB_CONTROL, 0);
5077 1.1 fvdl
5078 1.1 fvdl /* Set the next pointer */
5079 1.1 fvdl ahd_outw(ahd, SCB_NEXT, SCB_LIST_NULL);
5080 1.1 fvdl }
5081 1.1 fvdl }
5082 1.1 fvdl
5083 1.1 fvdl static int
5084 1.1 fvdl ahd_init_scbdata(struct ahd_softc *ahd)
5085 1.1 fvdl {
5086 1.1 fvdl struct scb_data *scb_data;
5087 1.1 fvdl int i;
5088 1.1 fvdl
5089 1.1 fvdl scb_data = &ahd->scb_data;
5090 1.1 fvdl TAILQ_INIT(&scb_data->free_scbs);
5091 1.1 fvdl for (i = 0; i < AHD_NUM_TARGETS * AHD_NUM_LUNS_NONPKT; i++)
5092 1.1 fvdl LIST_INIT(&scb_data->free_scb_lists[i]);
5093 1.1 fvdl LIST_INIT(&scb_data->any_dev_free_scb_list);
5094 1.1 fvdl SLIST_INIT(&scb_data->hscb_maps);
5095 1.1 fvdl SLIST_INIT(&scb_data->sg_maps);
5096 1.1 fvdl SLIST_INIT(&scb_data->sense_maps);
5097 1.1 fvdl
5098 1.1 fvdl /* Determine the number of hardware SCBs and initialize them */
5099 1.1 fvdl scb_data->maxhscbs = ahd_probe_scbs(ahd);
5100 1.1 fvdl if (scb_data->maxhscbs == 0) {
5101 1.1 fvdl printf("%s: No SCB space found\n", ahd_name(ahd));
5102 1.1 fvdl return (ENXIO);
5103 1.1 fvdl }
5104 1.1 fvdl ahd_initialize_hscbs(ahd);
5105 1.1 fvdl
5106 1.1 fvdl /*
5107 1.1 fvdl * Create our DMA tags. These tags define the kinds of device
5108 1.1 fvdl * accessible memory allocations and memory mappings we will
5109 1.1 fvdl * need to perform during normal operation.
5110 1.1 fvdl *
5111 1.1 fvdl * Unless we need to further restrict the allocation, we rely
5112 1.1 fvdl * on the restrictions of the parent dmat, hence the common
5113 1.1 fvdl * use of MAXADDR and MAXSIZE.
5114 1.1 fvdl */
5115 1.1 fvdl
5116 1.1 fvdl /* Perform initial CCB allocation */
5117 1.1 fvdl ahd_alloc_scbs(ahd);
5118 1.1 fvdl
5119 1.1 fvdl if (scb_data->numscbs == 0) {
5120 1.1 fvdl printf("%s: ahd_init_scbdata - "
5121 1.1 fvdl "Unable to allocate initial scbs\n",
5122 1.1 fvdl ahd_name(ahd));
5123 1.1 fvdl goto error_exit;
5124 1.1 fvdl }
5125 1.1 fvdl
5126 1.1 fvdl /*
5127 1.1 fvdl * Note that we were successfull
5128 1.1 fvdl */
5129 1.1 fvdl return (0);
5130 1.1 fvdl
5131 1.1 fvdl error_exit:
5132 1.1 fvdl
5133 1.1 fvdl return (ENOMEM);
5134 1.1 fvdl }
5135 1.1 fvdl
5136 1.1 fvdl static struct scb *
5137 1.1 fvdl ahd_find_scb_by_tag(struct ahd_softc *ahd, u_int tag)
5138 1.1 fvdl {
5139 1.1 fvdl struct scb *scb;
5140 1.1 fvdl
5141 1.1 fvdl /*
5142 1.1 fvdl * Look on the pending list.
5143 1.1 fvdl */
5144 1.1 fvdl LIST_FOREACH(scb, &ahd->pending_scbs, pending_links) {
5145 1.1 fvdl if (SCB_GET_TAG(scb) == tag)
5146 1.1 fvdl return (scb);
5147 1.1 fvdl }
5148 1.1 fvdl
5149 1.1 fvdl /*
5150 1.1 fvdl * Then on all of the collision free lists.
5151 1.1 fvdl */
5152 1.1 fvdl TAILQ_FOREACH(scb, &ahd->scb_data.free_scbs, links.tqe) {
5153 1.1 fvdl struct scb *list_scb;
5154 1.1 fvdl
5155 1.1 fvdl list_scb = scb;
5156 1.1 fvdl do {
5157 1.1 fvdl if (SCB_GET_TAG(list_scb) == tag)
5158 1.1 fvdl return (list_scb);
5159 1.1 fvdl list_scb = LIST_NEXT(list_scb, collision_links);
5160 1.1 fvdl } while (list_scb);
5161 1.1 fvdl }
5162 1.1 fvdl
5163 1.1 fvdl /*
5164 1.1 fvdl * And finally on the generic free list.
5165 1.1 fvdl */
5166 1.1 fvdl LIST_FOREACH(scb, &ahd->scb_data.any_dev_free_scb_list, links.le) {
5167 1.1 fvdl if (SCB_GET_TAG(scb) == tag)
5168 1.1 fvdl return (scb);
5169 1.1 fvdl }
5170 1.1 fvdl
5171 1.1 fvdl return (NULL);
5172 1.1 fvdl }
5173 1.1 fvdl
5174 1.1 fvdl static void
5175 1.1 fvdl ahd_fini_scbdata(struct ahd_softc *ahd)
5176 1.1 fvdl {
5177 1.1 fvdl struct scb_data *scb_data;
5178 1.1 fvdl
5179 1.1 fvdl scb_data = &ahd->scb_data;
5180 1.1 fvdl if (scb_data == NULL)
5181 1.1 fvdl return;
5182 1.1 fvdl
5183 1.1 fvdl switch (scb_data->init_level) {
5184 1.1 fvdl default:
5185 1.1 fvdl case 3:
5186 1.1 fvdl {
5187 1.1 fvdl struct map_node *sns_map;
5188 1.1 fvdl
5189 1.1 fvdl while ((sns_map = SLIST_FIRST(&scb_data->sense_maps)) != NULL) {
5190 1.1 fvdl SLIST_REMOVE_HEAD(&scb_data->sense_maps, links);
5191 1.1 fvdl ahd_freedmamem(ahd->parent_dmat, PAGE_SIZE,
5192 1.1 fvdl sns_map->dmamap, (caddr_t)sns_map->vaddr,
5193 1.1 fvdl &sns_map->dmasegs, sns_map->nseg);
5194 1.1 fvdl free(sns_map, M_DEVBUF);
5195 1.1 fvdl }
5196 1.1 fvdl /* FALLTHROUGH */
5197 1.1 fvdl }
5198 1.1 fvdl case 2:
5199 1.1 fvdl {
5200 1.1 fvdl struct map_node *sg_map;
5201 1.1 fvdl
5202 1.1 fvdl while ((sg_map = SLIST_FIRST(&scb_data->sg_maps)) != NULL) {
5203 1.1 fvdl SLIST_REMOVE_HEAD(&scb_data->sg_maps, links);
5204 1.1 fvdl ahd_freedmamem(ahd->parent_dmat, ahd_sglist_allocsize(ahd),
5205 1.1 fvdl sg_map->dmamap, (caddr_t)sg_map->vaddr,
5206 1.1 fvdl &sg_map->dmasegs, sg_map->nseg);
5207 1.1 fvdl free(sg_map, M_DEVBUF);
5208 1.1 fvdl }
5209 1.1 fvdl /* FALLTHROUGH */
5210 1.1 fvdl }
5211 1.1 fvdl case 1:
5212 1.1 fvdl {
5213 1.1 fvdl struct map_node *hscb_map;
5214 1.1 fvdl
5215 1.1 fvdl while ((hscb_map = SLIST_FIRST(&scb_data->hscb_maps)) != NULL) {
5216 1.1 fvdl SLIST_REMOVE_HEAD(&scb_data->hscb_maps, links);
5217 1.1 fvdl ahd_freedmamem(ahd->parent_dmat, PAGE_SIZE,
5218 1.1 fvdl hscb_map->dmamap, (caddr_t)hscb_map->vaddr,
5219 1.1 fvdl &hscb_map->dmasegs, hscb_map->nseg);
5220 1.1 fvdl free(hscb_map, M_DEVBUF);
5221 1.1 fvdl }
5222 1.1 fvdl /* FALLTHROUGH */
5223 1.1 fvdl }
5224 1.1 fvdl case 0:
5225 1.1 fvdl break;
5226 1.1 fvdl }
5227 1.1 fvdl }
5228 1.1 fvdl
5229 1.1 fvdl /*
5230 1.1 fvdl * DSP filter Bypass must be enabled until the first selection
5231 1.1 fvdl * after a change in bus mode (Razor #491 and #493).
5232 1.1 fvdl */
5233 1.1 fvdl static void
5234 1.1 fvdl ahd_setup_iocell_workaround(struct ahd_softc *ahd)
5235 1.1 fvdl {
5236 1.1 fvdl ahd_mode_state saved_modes;
5237 1.1 fvdl
5238 1.1 fvdl saved_modes = ahd_save_modes(ahd);
5239 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
5240 1.1 fvdl ahd_outb(ahd, DSPDATACTL, ahd_inb(ahd, DSPDATACTL)
5241 1.1 fvdl | BYPASSENAB | RCVROFFSTDIS | XMITOFFSTDIS);
5242 1.1 fvdl ahd_outb(ahd, SIMODE0, ahd_inb(ahd, SIMODE0) | (ENSELDO|ENSELDI));
5243 1.1 fvdl #ifdef AHD_DEBUG
5244 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
5245 1.1 fvdl printf("%s: Setting up iocell workaround\n", ahd_name(ahd));
5246 1.1 fvdl #endif
5247 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
5248 1.1 fvdl }
5249 1.1 fvdl
5250 1.1 fvdl static void
5251 1.1 fvdl ahd_iocell_first_selection(struct ahd_softc *ahd)
5252 1.1 fvdl {
5253 1.1 fvdl ahd_mode_state saved_modes;
5254 1.1 fvdl u_int sblkctl;
5255 1.1 fvdl
5256 1.1 fvdl saved_modes = ahd_save_modes(ahd);
5257 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
5258 1.1 fvdl sblkctl = ahd_inb(ahd, SBLKCTL);
5259 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
5260 1.1 fvdl #ifdef AHD_DEBUG
5261 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
5262 1.1 fvdl printf("%s: iocell first selection\n", ahd_name(ahd));
5263 1.1 fvdl #endif
5264 1.1 fvdl if ((sblkctl & ENAB40) != 0) {
5265 1.1 fvdl ahd_outb(ahd, DSPDATACTL,
5266 1.1 fvdl ahd_inb(ahd, DSPDATACTL) & ~BYPASSENAB);
5267 1.1 fvdl #ifdef AHD_DEBUG
5268 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
5269 1.1 fvdl printf("%s: BYPASS now disabled\n", ahd_name(ahd));
5270 1.1 fvdl #endif
5271 1.1 fvdl }
5272 1.1 fvdl ahd_outb(ahd, SIMODE0, ahd_inb(ahd, SIMODE0) & ~(ENSELDO|ENSELDI));
5273 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
5274 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
5275 1.1 fvdl }
5276 1.1 fvdl
5277 1.1 fvdl /*************************** SCB Management ***********************************/
5278 1.1 fvdl static void
5279 1.1 fvdl ahd_add_col_list(struct ahd_softc *ahd, struct scb *scb, u_int col_idx)
5280 1.1 fvdl {
5281 1.1 fvdl struct scb_list *free_list;
5282 1.1 fvdl struct scb_tailq *free_tailq;
5283 1.1 fvdl struct scb *first_scb;
5284 1.1 fvdl
5285 1.1 fvdl scb->flags |= SCB_ON_COL_LIST;
5286 1.1 fvdl AHD_SET_SCB_COL_IDX(scb, col_idx);
5287 1.1 fvdl free_list = &ahd->scb_data.free_scb_lists[col_idx];
5288 1.1 fvdl free_tailq = &ahd->scb_data.free_scbs;
5289 1.1 fvdl first_scb = LIST_FIRST(free_list);
5290 1.1 fvdl if (first_scb != NULL) {
5291 1.1 fvdl LIST_INSERT_AFTER(first_scb, scb, collision_links);
5292 1.1 fvdl } else {
5293 1.1 fvdl LIST_INSERT_HEAD(free_list, scb, collision_links);
5294 1.1 fvdl TAILQ_INSERT_TAIL(free_tailq, scb, links.tqe);
5295 1.1 fvdl }
5296 1.1 fvdl }
5297 1.1 fvdl
5298 1.1 fvdl static void
5299 1.1 fvdl ahd_rem_col_list(struct ahd_softc *ahd, struct scb *scb)
5300 1.1 fvdl {
5301 1.1 fvdl struct scb_list *free_list;
5302 1.1 fvdl struct scb_tailq *free_tailq;
5303 1.1 fvdl struct scb *first_scb;
5304 1.1 fvdl u_int col_idx;
5305 1.1 fvdl
5306 1.1 fvdl scb->flags &= ~SCB_ON_COL_LIST;
5307 1.1 fvdl col_idx = AHD_GET_SCB_COL_IDX(ahd, scb);
5308 1.1 fvdl free_list = &ahd->scb_data.free_scb_lists[col_idx];
5309 1.1 fvdl free_tailq = &ahd->scb_data.free_scbs;
5310 1.1 fvdl first_scb = LIST_FIRST(free_list);
5311 1.1 fvdl if (first_scb == scb) {
5312 1.1 fvdl struct scb *next_scb;
5313 1.1 fvdl
5314 1.1 fvdl /*
5315 1.1 fvdl * Maintain order in the collision free
5316 1.1 fvdl * lists for fairness if this device has
5317 1.1 fvdl * other colliding tags active.
5318 1.1 fvdl */
5319 1.1 fvdl next_scb = LIST_NEXT(scb, collision_links);
5320 1.1 fvdl if (next_scb != NULL) {
5321 1.1 fvdl TAILQ_INSERT_AFTER(free_tailq, scb,
5322 1.1 fvdl next_scb, links.tqe);
5323 1.1 fvdl }
5324 1.1 fvdl TAILQ_REMOVE(free_tailq, scb, links.tqe);
5325 1.1 fvdl }
5326 1.1 fvdl LIST_REMOVE(scb, collision_links);
5327 1.1 fvdl }
5328 1.1 fvdl
5329 1.1 fvdl /*
5330 1.1 fvdl * Get a free scb. If there are none, see if we can allocate a new SCB.
5331 1.1 fvdl */
5332 1.1 fvdl struct scb *
5333 1.1 fvdl ahd_get_scb(struct ahd_softc *ahd, u_int col_idx)
5334 1.1 fvdl {
5335 1.1 fvdl struct scb *scb;
5336 1.1 fvdl int tries;
5337 1.1 fvdl
5338 1.1 fvdl tries = 0;
5339 1.1 fvdl look_again:
5340 1.1 fvdl TAILQ_FOREACH(scb, &ahd->scb_data.free_scbs, links.tqe) {
5341 1.1 fvdl if (AHD_GET_SCB_COL_IDX(ahd, scb) != col_idx) {
5342 1.1 fvdl ahd_rem_col_list(ahd, scb);
5343 1.1 fvdl goto found;
5344 1.1 fvdl }
5345 1.1 fvdl }
5346 1.1 fvdl if ((scb = LIST_FIRST(&ahd->scb_data.any_dev_free_scb_list)) == NULL) {
5347 1.1 fvdl
5348 1.1 fvdl if (tries++ != 0)
5349 1.1 fvdl return (NULL);
5350 1.1 fvdl ahd_alloc_scbs(ahd);
5351 1.1 fvdl goto look_again;
5352 1.1 fvdl }
5353 1.1 fvdl LIST_REMOVE(scb, links.le);
5354 1.1 fvdl if (col_idx != AHD_NEVER_COL_IDX
5355 1.1 fvdl && (scb->col_scb != NULL)
5356 1.1 fvdl && (scb->col_scb->flags & SCB_ACTIVE) == 0) {
5357 1.1 fvdl LIST_REMOVE(scb->col_scb, links.le);
5358 1.1 fvdl ahd_add_col_list(ahd, scb->col_scb, col_idx);
5359 1.1 fvdl }
5360 1.1 fvdl found:
5361 1.1 fvdl scb->flags |= SCB_ACTIVE;
5362 1.1 fvdl return (scb);
5363 1.1 fvdl }
5364 1.1 fvdl
5365 1.1 fvdl /*
5366 1.1 fvdl * Return an SCB resource to the free list.
5367 1.1 fvdl */
5368 1.1 fvdl void
5369 1.1 fvdl ahd_free_scb(struct ahd_softc *ahd, struct scb *scb)
5370 1.1 fvdl {
5371 1.1 fvdl
5372 1.1 fvdl /* Clean up for the next user */
5373 1.1 fvdl scb->flags = SCB_FLAG_NONE;
5374 1.1 fvdl scb->hscb->control = 0;
5375 1.9 thorpej ahd->scb_data.scbindex[SCB_GET_TAG(scb)] = NULL;
5376 1.1 fvdl
5377 1.1 fvdl if (scb->col_scb == NULL) {
5378 1.1 fvdl
5379 1.1 fvdl /*
5380 1.1 fvdl * No collision possible. Just free normally.
5381 1.1 fvdl */
5382 1.1 fvdl LIST_INSERT_HEAD(&ahd->scb_data.any_dev_free_scb_list,
5383 1.1 fvdl scb, links.le);
5384 1.1 fvdl } else if ((scb->col_scb->flags & SCB_ON_COL_LIST) != 0) {
5385 1.1 fvdl
5386 1.1 fvdl /*
5387 1.1 fvdl * The SCB we might have collided with is on
5388 1.1 fvdl * a free collision list. Put both SCBs on
5389 1.1 fvdl * the generic list.
5390 1.1 fvdl */
5391 1.1 fvdl ahd_rem_col_list(ahd, scb->col_scb);
5392 1.1 fvdl LIST_INSERT_HEAD(&ahd->scb_data.any_dev_free_scb_list,
5393 1.1 fvdl scb, links.le);
5394 1.1 fvdl LIST_INSERT_HEAD(&ahd->scb_data.any_dev_free_scb_list,
5395 1.1 fvdl scb->col_scb, links.le);
5396 1.1 fvdl } else if ((scb->col_scb->flags
5397 1.1 fvdl & (SCB_PACKETIZED|SCB_ACTIVE)) == SCB_ACTIVE
5398 1.1 fvdl && (scb->col_scb->hscb->control & TAG_ENB) != 0) {
5399 1.1 fvdl
5400 1.1 fvdl /*
5401 1.1 fvdl * The SCB we might collide with on the next allocation
5402 1.1 fvdl * is still active in a non-packetized, tagged, context.
5403 1.1 fvdl * Put us on the SCB collision list.
5404 1.1 fvdl */
5405 1.1 fvdl ahd_add_col_list(ahd, scb,
5406 1.1 fvdl AHD_GET_SCB_COL_IDX(ahd, scb->col_scb));
5407 1.1 fvdl } else {
5408 1.1 fvdl /*
5409 1.1 fvdl * The SCB we might collide with on the next allocation
5410 1.1 fvdl * is either active in a packetized context, or free.
5411 1.1 fvdl * Since we can't collide, put this SCB on the generic
5412 1.1 fvdl * free list.
5413 1.1 fvdl */
5414 1.1 fvdl LIST_INSERT_HEAD(&ahd->scb_data.any_dev_free_scb_list,
5415 1.1 fvdl scb, links.le);
5416 1.1 fvdl }
5417 1.1 fvdl
5418 1.1 fvdl ahd_platform_scb_free(ahd, scb);
5419 1.1 fvdl }
5420 1.1 fvdl
5421 1.1 fvdl void
5422 1.1 fvdl ahd_alloc_scbs(struct ahd_softc *ahd)
5423 1.1 fvdl {
5424 1.1 fvdl struct scb_data *scb_data;
5425 1.1 fvdl struct scb *next_scb;
5426 1.1 fvdl struct hardware_scb *hscb;
5427 1.1 fvdl struct map_node *hscb_map;
5428 1.1 fvdl struct map_node *sg_map;
5429 1.1 fvdl struct map_node *sense_map;
5430 1.1 fvdl uint8_t *segs;
5431 1.1 fvdl uint8_t *sense_data;
5432 1.1 fvdl bus_addr_t hscb_busaddr;
5433 1.1 fvdl bus_addr_t sg_busaddr;
5434 1.1 fvdl bus_addr_t sense_busaddr;
5435 1.1 fvdl int newcount;
5436 1.1 fvdl int i;
5437 1.1 fvdl
5438 1.1 fvdl scb_data = &ahd->scb_data;
5439 1.1 fvdl if (scb_data->numscbs >= AHD_SCB_MAX_ALLOC)
5440 1.1 fvdl /* Can't allocate any more */
5441 1.1 fvdl return;
5442 1.1 fvdl
5443 1.7 thorpej KASSERT(scb_data->scbs_left >= 0);
5444 1.1 fvdl if (scb_data->scbs_left != 0) {
5445 1.1 fvdl int offset;
5446 1.1 fvdl
5447 1.1 fvdl offset = (PAGE_SIZE / sizeof(*hscb)) - scb_data->scbs_left;
5448 1.1 fvdl hscb_map = SLIST_FIRST(&scb_data->hscb_maps);
5449 1.1 fvdl hscb = &((struct hardware_scb *)hscb_map->vaddr)[offset];
5450 1.1 fvdl hscb_busaddr = hscb_map->physaddr + (offset * sizeof(*hscb));
5451 1.1 fvdl } else {
5452 1.1 fvdl hscb_map = malloc(sizeof(*hscb_map), M_DEVBUF, M_NOWAIT);
5453 1.1 fvdl
5454 1.1 fvdl if (hscb_map == NULL)
5455 1.1 fvdl return;
5456 1.1 fvdl
5457 1.1 fvdl memset(hscb_map, 0, sizeof(*hscb_map));
5458 1.1 fvdl
5459 1.1 fvdl /* Allocate the next batch of hardware SCBs */
5460 1.1 fvdl if (ahd_createdmamem(ahd->parent_dmat, PAGE_SIZE, ahd->sc_dmaflags,
5461 1.1 fvdl &hscb_map->dmamap, (caddr_t *)&hscb_map->vaddr,
5462 1.1 fvdl &hscb_map->physaddr, &hscb_map->dmasegs,
5463 1.1 fvdl &hscb_map->nseg, ahd_name(ahd),
5464 1.1 fvdl "hardware SCB structures") < 0) {
5465 1.1 fvdl free(hscb_map, M_DEVBUF);
5466 1.1 fvdl return;
5467 1.1 fvdl }
5468 1.1 fvdl
5469 1.1 fvdl SLIST_INSERT_HEAD(&scb_data->hscb_maps, hscb_map, links);
5470 1.1 fvdl
5471 1.1 fvdl hscb = (struct hardware_scb *)hscb_map->vaddr;
5472 1.1 fvdl hscb_busaddr = hscb_map->physaddr;
5473 1.1 fvdl scb_data->scbs_left = PAGE_SIZE / sizeof(*hscb);
5474 1.1 fvdl }
5475 1.1 fvdl
5476 1.1 fvdl scb_data->init_level++;
5477 1.1 fvdl
5478 1.1 fvdl if (scb_data->sgs_left != 0) {
5479 1.1 fvdl int offset;
5480 1.1 fvdl
5481 1.9 thorpej offset = ((ahd_sglist_allocsize(ahd) / ahd_sglist_size(ahd))
5482 1.9 thorpej - scb_data->sgs_left) * ahd_sglist_size(ahd);
5483 1.1 fvdl sg_map = SLIST_FIRST(&scb_data->sg_maps);
5484 1.1 fvdl segs = sg_map->vaddr + offset;
5485 1.1 fvdl sg_busaddr = sg_map->physaddr + offset;
5486 1.1 fvdl } else {
5487 1.1 fvdl sg_map = malloc(sizeof(*sg_map), M_DEVBUF, M_NOWAIT);
5488 1.1 fvdl
5489 1.1 fvdl if (sg_map == NULL)
5490 1.1 fvdl return;
5491 1.1 fvdl
5492 1.1 fvdl bzero(sg_map, sizeof(*sg_map));
5493 1.1 fvdl
5494 1.1 fvdl /* Allocate the next batch of S/G lists */
5495 1.1 fvdl if (ahd_createdmamem(ahd->parent_dmat, ahd_sglist_allocsize(ahd), ahd->sc_dmaflags,
5496 1.1 fvdl &sg_map->dmamap, (caddr_t *)&sg_map->vaddr,
5497 1.1 fvdl &sg_map->physaddr, &sg_map->dmasegs,
5498 1.1 fvdl &sg_map->nseg, ahd_name(ahd),
5499 1.1 fvdl "SG data structures") < 0) {
5500 1.1 fvdl free(sg_map, M_DEVBUF);
5501 1.1 fvdl return;
5502 1.1 fvdl }
5503 1.1 fvdl
5504 1.1 fvdl SLIST_INSERT_HEAD(&scb_data->sg_maps, sg_map, links);
5505 1.1 fvdl
5506 1.1 fvdl segs = sg_map->vaddr;
5507 1.1 fvdl sg_busaddr = sg_map->physaddr;
5508 1.1 fvdl scb_data->sgs_left =
5509 1.1 fvdl ahd_sglist_allocsize(ahd) / ahd_sglist_size(ahd);
5510 1.1 fvdl #ifdef AHD_DEBUG
5511 1.1 fvdl if (ahd_debug & AHD_SHOW_MEMORY)
5512 1.1 fvdl printf("%s: ahd_alloc_scbs - Mapped SG data\n", ahd_name(ahd));
5513 1.1 fvdl #endif
5514 1.1 fvdl }
5515 1.1 fvdl
5516 1.1 fvdl scb_data->init_level++;
5517 1.1 fvdl
5518 1.1 fvdl
5519 1.1 fvdl if (scb_data->sense_left != 0) {
5520 1.1 fvdl int offset;
5521 1.1 fvdl
5522 1.1 fvdl offset = PAGE_SIZE - (AHD_SENSE_BUFSIZE * scb_data->sense_left);
5523 1.1 fvdl sense_map = SLIST_FIRST(&scb_data->sense_maps);
5524 1.1 fvdl sense_data = sense_map->vaddr + offset;
5525 1.1 fvdl sense_busaddr = sense_map->physaddr + offset;
5526 1.1 fvdl } else {
5527 1.1 fvdl sense_map = malloc(sizeof(*sense_map), M_DEVBUF, M_NOWAIT);
5528 1.1 fvdl
5529 1.1 fvdl if (sense_map == NULL)
5530 1.1 fvdl return;
5531 1.1 fvdl
5532 1.1 fvdl bzero(sense_map, sizeof(*sense_map));
5533 1.1 fvdl
5534 1.1 fvdl /* Allocate the next batch of sense buffers */
5535 1.1 fvdl if (ahd_createdmamem(ahd->parent_dmat, PAGE_SIZE, ahd->sc_dmaflags,
5536 1.1 fvdl &sense_map->dmamap, (caddr_t *)&sense_map->vaddr,
5537 1.1 fvdl &sense_map->physaddr, &sense_map->dmasegs,
5538 1.1 fvdl &sense_map->nseg, ahd_name(ahd),
5539 1.1 fvdl "Sense Data structures") < 0) {
5540 1.1 fvdl free(sense_map, M_DEVBUF);
5541 1.1 fvdl return;
5542 1.1 fvdl }
5543 1.1 fvdl
5544 1.1 fvdl SLIST_INSERT_HEAD(&scb_data->sense_maps, sense_map, links);
5545 1.1 fvdl
5546 1.1 fvdl sense_data = sense_map->vaddr;
5547 1.1 fvdl sense_busaddr = sense_map->physaddr;
5548 1.1 fvdl scb_data->sense_left = PAGE_SIZE / AHD_SENSE_BUFSIZE;
5549 1.1 fvdl #ifdef AHD_DEBUG
5550 1.1 fvdl if (ahd_debug & AHD_SHOW_MEMORY)
5551 1.1 fvdl printf("%s: ahd_alloc_scbs - Mapped sense data\n", ahd_name(ahd));
5552 1.1 fvdl #endif
5553 1.1 fvdl }
5554 1.1 fvdl
5555 1.1 fvdl scb_data->init_level++;
5556 1.1 fvdl
5557 1.1 fvdl newcount = MIN(scb_data->sense_left, scb_data->scbs_left);
5558 1.1 fvdl newcount = MIN(newcount, scb_data->sgs_left);
5559 1.1 fvdl newcount = MIN(newcount, (AHD_SCB_MAX_ALLOC - scb_data->numscbs));
5560 1.1 fvdl scb_data->sense_left -= newcount;
5561 1.1 fvdl scb_data->scbs_left -= newcount;
5562 1.1 fvdl scb_data->sgs_left -= newcount;
5563 1.1 fvdl
5564 1.1 fvdl for (i = 0; i < newcount; i++) {
5565 1.1 fvdl u_int col_tag;
5566 1.1 fvdl
5567 1.1 fvdl struct scb_platform_data *pdata;
5568 1.1 fvdl #ifndef __linux__
5569 1.1 fvdl int error;
5570 1.1 fvdl #endif
5571 1.1 fvdl next_scb = (struct scb *)malloc(sizeof(*next_scb),
5572 1.1 fvdl M_DEVBUF, M_NOWAIT);
5573 1.1 fvdl if (next_scb == NULL)
5574 1.1 fvdl break;
5575 1.1 fvdl
5576 1.1 fvdl pdata = (struct scb_platform_data *)malloc(sizeof(*pdata),
5577 1.1 fvdl M_DEVBUF, M_NOWAIT);
5578 1.1 fvdl if (pdata == NULL) {
5579 1.1 fvdl free(next_scb, M_DEVBUF);
5580 1.1 fvdl break;
5581 1.1 fvdl }
5582 1.1 fvdl next_scb->platform_data = pdata;
5583 1.1 fvdl next_scb->hscb_map = hscb_map;
5584 1.1 fvdl next_scb->sg_map = sg_map;
5585 1.1 fvdl next_scb->sense_map = sense_map;
5586 1.1 fvdl next_scb->sg_list = segs;
5587 1.1 fvdl next_scb->sense_data = sense_data;
5588 1.1 fvdl next_scb->sense_busaddr = sense_busaddr;
5589 1.10 thorpej memset(hscb, 0, sizeof(*hscb));
5590 1.1 fvdl next_scb->hscb = hscb;
5591 1.1 fvdl hscb->hscb_busaddr = ahd_htole32(hscb_busaddr);
5592 1.7 thorpej KASSERT((vaddr_t)hscb >= (vaddr_t)hscb_map->vaddr &&
5593 1.7 thorpej (vaddr_t)hscb < (vaddr_t)hscb_map->vaddr + PAGE_SIZE);
5594 1.1 fvdl
5595 1.1 fvdl /*
5596 1.1 fvdl * The sequencer always starts with the second entry.
5597 1.1 fvdl * The first entry is embedded in the scb.
5598 1.1 fvdl */
5599 1.1 fvdl next_scb->sg_list_busaddr = sg_busaddr;
5600 1.1 fvdl if ((ahd->flags & AHD_64BIT_ADDRESSING) != 0)
5601 1.1 fvdl next_scb->sg_list_busaddr
5602 1.1 fvdl += sizeof(struct ahd_dma64_seg);
5603 1.1 fvdl else
5604 1.1 fvdl next_scb->sg_list_busaddr += sizeof(struct ahd_dma_seg);
5605 1.1 fvdl next_scb->ahd_softc = ahd;
5606 1.1 fvdl next_scb->flags = SCB_FLAG_NONE;
5607 1.1 fvdl
5608 1.1 fvdl error = bus_dmamap_create(ahd->parent_dmat,
5609 1.1 fvdl AHD_MAXTRANSFER_SIZE, AHD_NSEG, MAXBSIZE, 0,
5610 1.1 fvdl BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW|ahd->sc_dmaflags,
5611 1.1 fvdl &next_scb->dmamap);
5612 1.1 fvdl if (error != 0) {
5613 1.1 fvdl free(next_scb, M_DEVBUF);
5614 1.1 fvdl free(pdata, M_DEVBUF);
5615 1.1 fvdl break;
5616 1.1 fvdl }
5617 1.1 fvdl next_scb->hscb->tag = ahd_htole16(scb_data->numscbs);
5618 1.1 fvdl col_tag = scb_data->numscbs ^ 0x100;
5619 1.1 fvdl next_scb->col_scb = ahd_find_scb_by_tag(ahd, col_tag);
5620 1.1 fvdl if (next_scb->col_scb != NULL)
5621 1.1 fvdl next_scb->col_scb->col_scb = next_scb;
5622 1.1 fvdl ahd_free_scb(ahd, next_scb);
5623 1.1 fvdl hscb++;
5624 1.1 fvdl hscb_busaddr += sizeof(*hscb);
5625 1.1 fvdl segs += ahd_sglist_size(ahd);
5626 1.1 fvdl sg_busaddr += ahd_sglist_size(ahd);
5627 1.1 fvdl sense_data += AHD_SENSE_BUFSIZE;
5628 1.1 fvdl sense_busaddr += AHD_SENSE_BUFSIZE;
5629 1.1 fvdl scb_data->numscbs++;
5630 1.1 fvdl }
5631 1.1 fvdl }
5632 1.1 fvdl
5633 1.1 fvdl void
5634 1.1 fvdl ahd_controller_info(struct ahd_softc *ahd, char *buf)
5635 1.1 fvdl {
5636 1.1 fvdl const char *speed;
5637 1.1 fvdl const char *type;
5638 1.1 fvdl int len;
5639 1.1 fvdl
5640 1.1 fvdl len = sprintf(buf, "%s: ", ahd_chip_names[ahd->chip & AHD_CHIPID_MASK]);
5641 1.1 fvdl buf += len;
5642 1.1 fvdl
5643 1.1 fvdl speed = "Ultra320 ";
5644 1.1 fvdl if ((ahd->features & AHD_WIDE) != 0) {
5645 1.1 fvdl type = "Wide ";
5646 1.1 fvdl } else {
5647 1.1 fvdl type = "Single ";
5648 1.1 fvdl }
5649 1.1 fvdl len = sprintf(buf, "%s%sChannel %c, SCSI Id=%d, ",
5650 1.1 fvdl speed, type, ahd->channel, ahd->our_id);
5651 1.1 fvdl buf += len;
5652 1.1 fvdl
5653 1.1 fvdl sprintf(buf, "%s, %d SCBs", ahd->bus_description,
5654 1.1 fvdl ahd->scb_data.maxhscbs);
5655 1.1 fvdl }
5656 1.1 fvdl
5657 1.1 fvdl static const char *channel_strings[] = {
5658 1.1 fvdl "Primary Low",
5659 1.1 fvdl "Primary High",
5660 1.1 fvdl "Secondary Low",
5661 1.1 fvdl "Secondary High"
5662 1.1 fvdl };
5663 1.1 fvdl
5664 1.1 fvdl static const char *termstat_strings[] = {
5665 1.1 fvdl "Terminated Correctly",
5666 1.1 fvdl "Over Terminated",
5667 1.1 fvdl "Under Terminated",
5668 1.1 fvdl "Not Configured"
5669 1.1 fvdl };
5670 1.1 fvdl
5671 1.1 fvdl /*
5672 1.1 fvdl * Start the board, ready for normal operation
5673 1.1 fvdl */
5674 1.1 fvdl int
5675 1.1 fvdl ahd_init(struct ahd_softc *ahd)
5676 1.1 fvdl {
5677 1.1 fvdl uint8_t *next_vaddr;
5678 1.1 fvdl bus_addr_t next_baddr;
5679 1.1 fvdl size_t driver_data_size;
5680 1.1 fvdl int i;
5681 1.1 fvdl int error;
5682 1.1 fvdl u_int warn_user;
5683 1.1 fvdl uint8_t current_sensing;
5684 1.1 fvdl uint8_t fstat;
5685 1.1 fvdl
5686 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
5687 1.1 fvdl
5688 1.1 fvdl ahd->stack_size = ahd_probe_stack_size(ahd);
5689 1.1 fvdl ahd->saved_stack = malloc(ahd->stack_size * sizeof(uint16_t),
5690 1.1 fvdl M_DEVBUF, M_NOWAIT);
5691 1.1 fvdl if (ahd->saved_stack == NULL)
5692 1.1 fvdl return (ENOMEM);
5693 1.1 fvdl /* Zero the memory */
5694 1.1 fvdl memset(ahd->saved_stack, 0, ahd->stack_size * sizeof(uint16_t));
5695 1.1 fvdl
5696 1.1 fvdl /*
5697 1.1 fvdl * Verify that the compiler hasn't over-agressively
5698 1.1 fvdl * padded important structures.
5699 1.1 fvdl */
5700 1.1 fvdl if (sizeof(struct hardware_scb) != 64)
5701 1.1 fvdl panic("Hardware SCB size is incorrect");
5702 1.1 fvdl
5703 1.1 fvdl #ifdef AHD_DEBUG
5704 1.1 fvdl if ((ahd_debug & AHD_DEBUG_SEQUENCER) != 0)
5705 1.1 fvdl ahd->flags |= AHD_SEQUENCER_DEBUG;
5706 1.1 fvdl #endif
5707 1.1 fvdl
5708 1.1 fvdl /*
5709 1.1 fvdl * Default to allowing initiator operations.
5710 1.1 fvdl */
5711 1.1 fvdl ahd->flags |= AHD_INITIATORROLE;
5712 1.1 fvdl
5713 1.1 fvdl /*
5714 1.1 fvdl * Only allow target mode features if this unit has them enabled.
5715 1.1 fvdl */
5716 1.1 fvdl if ((AHD_TMODE_ENABLE & (0x1 << ahd->unit)) == 0)
5717 1.1 fvdl ahd->features &= ~AHD_TARGETMODE;
5718 1.1 fvdl
5719 1.1 fvdl /*
5720 1.1 fvdl * DMA tag for our command fifos and other data in system memory
5721 1.1 fvdl * the card's sequencer must be able to access. For initiator
5722 1.1 fvdl * roles, we need to allocate space for the qoutfifo. When providing
5723 1.1 fvdl * for the target mode role, we must additionally provide space for
5724 1.1 fvdl * the incoming target command fifo.
5725 1.1 fvdl */
5726 1.1 fvdl driver_data_size = AHD_SCB_MAX * sizeof(uint16_t)
5727 1.1 fvdl + sizeof(struct hardware_scb);
5728 1.1 fvdl if ((ahd->features & AHD_TARGETMODE) != 0)
5729 1.1 fvdl driver_data_size += AHD_TMODE_CMDS * sizeof(struct target_cmd);
5730 1.1 fvdl if ((ahd->bugs & AHD_PKT_BITBUCKET_BUG) != 0)
5731 1.1 fvdl driver_data_size += PKT_OVERRUN_BUFSIZE;
5732 1.1 fvdl ahd->shared_data_size = driver_data_size;
5733 1.1 fvdl
5734 1.7 thorpej memset(&ahd->shared_data_map, 0, sizeof(ahd->shared_data_map));
5735 1.1 fvdl ahd->sc_dmaflags = BUS_DMA_NOWAIT;
5736 1.1 fvdl
5737 1.1 fvdl if (ahd_createdmamem(ahd->parent_dmat, ahd->shared_data_size,
5738 1.1 fvdl ahd->sc_dmaflags,
5739 1.7 thorpej &ahd->shared_data_map.dmamap, (caddr_t *)&ahd->shared_data_map.vaddr,
5740 1.7 thorpej &ahd->shared_data_map.physaddr, &ahd->shared_data_map.dmasegs,
5741 1.7 thorpej &ahd->shared_data_map.nseg, ahd_name(ahd), "shared data") < 0)
5742 1.1 fvdl return (ENOMEM);
5743 1.7 thorpej ahd->qoutfifo = (void *) ahd->shared_data_map.vaddr;
5744 1.1 fvdl
5745 1.1 fvdl ahd->init_level++;
5746 1.1 fvdl
5747 1.1 fvdl next_vaddr = (uint8_t *)&ahd->qoutfifo[AHD_QOUT_SIZE];
5748 1.7 thorpej next_baddr = ahd->shared_data_map.physaddr + AHD_QOUT_SIZE*sizeof(uint16_t);
5749 1.1 fvdl if ((ahd->features & AHD_TARGETMODE) != 0) {
5750 1.1 fvdl ahd->targetcmds = (struct target_cmd *)next_vaddr;
5751 1.1 fvdl next_vaddr += AHD_TMODE_CMDS * sizeof(struct target_cmd);
5752 1.1 fvdl next_baddr += AHD_TMODE_CMDS * sizeof(struct target_cmd);
5753 1.1 fvdl }
5754 1.1 fvdl
5755 1.1 fvdl if ((ahd->bugs & AHD_PKT_BITBUCKET_BUG) != 0) {
5756 1.1 fvdl ahd->overrun_buf = next_vaddr;
5757 1.1 fvdl next_vaddr += PKT_OVERRUN_BUFSIZE;
5758 1.1 fvdl next_baddr += PKT_OVERRUN_BUFSIZE;
5759 1.1 fvdl }
5760 1.1 fvdl
5761 1.1 fvdl /*
5762 1.1 fvdl * We need one SCB to serve as the "next SCB". Since the
5763 1.1 fvdl * tag identifier in this SCB will never be used, there is
5764 1.1 fvdl * no point in using a valid HSCB tag from an SCB pulled from
5765 1.1 fvdl * the standard free pool. So, we allocate this "sentinel"
5766 1.1 fvdl * specially from the DMA safe memory chunk used for the QOUTFIFO.
5767 1.1 fvdl */
5768 1.1 fvdl ahd->next_queued_hscb = (struct hardware_scb *)next_vaddr;
5769 1.7 thorpej ahd->next_queued_hscb_map = &ahd->shared_data_map;
5770 1.9 thorpej ahd->next_queued_hscb->hscb_busaddr = ahd_htole32(next_baddr);
5771 1.1 fvdl
5772 1.1 fvdl memset(&ahd->scb_data, 0, sizeof(struct scb_data));
5773 1.1 fvdl
5774 1.1 fvdl /* Allocate SCB data now that parent_dmat is initialized */
5775 1.1 fvdl if (ahd_init_scbdata(ahd) != 0)
5776 1.1 fvdl return (ENOMEM);
5777 1.1 fvdl
5778 1.1 fvdl if ((ahd->flags & AHD_INITIATORROLE) == 0)
5779 1.1 fvdl ahd->flags &= ~AHD_RESET_BUS_A;
5780 1.1 fvdl
5781 1.1 fvdl /*
5782 1.1 fvdl * Before committing these settings to the chip, give
5783 1.1 fvdl * the OSM one last chance to modify our configuration.
5784 1.1 fvdl */
5785 1.1 fvdl ahd_platform_init(ahd);
5786 1.1 fvdl
5787 1.1 fvdl /* Bring up the chip. */
5788 1.1 fvdl ahd_chip_init(ahd);
5789 1.1 fvdl
5790 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
5791 1.1 fvdl
5792 1.1 fvdl if ((ahd->flags & AHD_CURRENT_SENSING) == 0)
5793 1.1 fvdl goto init_done;
5794 1.1 fvdl
5795 1.1 fvdl /*
5796 1.1 fvdl * Verify termination based on current draw and
5797 1.1 fvdl * warn user if the bus is over/under terminated.
5798 1.1 fvdl */
5799 1.1 fvdl error = ahd_write_flexport(ahd, FLXADDR_ROMSTAT_CURSENSECTL,
5800 1.1 fvdl CURSENSE_ENB);
5801 1.1 fvdl if (error != 0) {
5802 1.1 fvdl printf("%s: current sensing timeout 1\n", ahd_name(ahd));
5803 1.1 fvdl goto init_done;
5804 1.1 fvdl }
5805 1.1 fvdl for (i = 20, fstat = FLX_FSTAT_BUSY;
5806 1.1 fvdl (fstat & FLX_FSTAT_BUSY) != 0 && i; i--) {
5807 1.1 fvdl error = ahd_read_flexport(ahd, FLXADDR_FLEXSTAT, &fstat);
5808 1.1 fvdl if (error != 0) {
5809 1.1 fvdl printf("%s: current sensing timeout 2\n",
5810 1.1 fvdl ahd_name(ahd));
5811 1.1 fvdl goto init_done;
5812 1.1 fvdl }
5813 1.1 fvdl }
5814 1.1 fvdl if (i == 0) {
5815 1.1 fvdl printf("%s: Timedout during current-sensing test\n",
5816 1.1 fvdl ahd_name(ahd));
5817 1.1 fvdl goto init_done;
5818 1.1 fvdl }
5819 1.1 fvdl
5820 1.1 fvdl /* Latch Current Sensing status. */
5821 1.1 fvdl error = ahd_read_flexport(ahd, FLXADDR_CURRENT_STAT, ¤t_sensing);
5822 1.1 fvdl if (error != 0) {
5823 1.1 fvdl printf("%s: current sensing timeout 3\n", ahd_name(ahd));
5824 1.1 fvdl goto init_done;
5825 1.1 fvdl }
5826 1.1 fvdl
5827 1.1 fvdl /* Diable current sensing. */
5828 1.1 fvdl ahd_write_flexport(ahd, FLXADDR_ROMSTAT_CURSENSECTL, 0);
5829 1.1 fvdl
5830 1.1 fvdl #ifdef AHD_DEBUG
5831 1.1 fvdl if ((ahd_debug & AHD_SHOW_TERMCTL) != 0) {
5832 1.1 fvdl printf("%s: current_sensing == 0x%x\n",
5833 1.1 fvdl ahd_name(ahd), current_sensing);
5834 1.1 fvdl }
5835 1.1 fvdl #endif
5836 1.1 fvdl warn_user = 0;
5837 1.1 fvdl for (i = 0; i < 4; i++, current_sensing >>= FLX_CSTAT_SHIFT) {
5838 1.1 fvdl u_int term_stat;
5839 1.1 fvdl
5840 1.1 fvdl term_stat = (current_sensing & FLX_CSTAT_MASK);
5841 1.1 fvdl switch (term_stat) {
5842 1.1 fvdl case FLX_CSTAT_OVER:
5843 1.1 fvdl case FLX_CSTAT_UNDER:
5844 1.1 fvdl warn_user++;
5845 1.1 fvdl case FLX_CSTAT_INVALID:
5846 1.1 fvdl case FLX_CSTAT_OKAY:
5847 1.1 fvdl if (warn_user == 0 && bootverbose == 0)
5848 1.1 fvdl break;
5849 1.1 fvdl printf("%s: %s Channel %s\n", ahd_name(ahd),
5850 1.1 fvdl channel_strings[i], termstat_strings[term_stat]);
5851 1.1 fvdl break;
5852 1.1 fvdl }
5853 1.1 fvdl }
5854 1.1 fvdl if (warn_user) {
5855 1.1 fvdl printf("%s: WARNING. Termination is not configured correctly.\n"
5856 1.1 fvdl "%s: WARNING. SCSI bus operations may FAIL.\n",
5857 1.1 fvdl ahd_name(ahd), ahd_name(ahd));
5858 1.1 fvdl }
5859 1.1 fvdl init_done:
5860 1.1 fvdl ahd_reset_current_bus(ahd);
5861 1.1 fvdl ahd_restart(ahd);
5862 1.1 fvdl ahd_timer_reset(&ahd->stat_timer, AHD_STAT_UPDATE_US,
5863 1.1 fvdl ahd_stat_timer, ahd);
5864 1.1 fvdl
5865 1.1 fvdl /* We have to wait until after any system dumps... */
5866 1.1 fvdl ahd->shutdown_hook = shutdownhook_establish(ahd_shutdown, ahd);
5867 1.1 fvdl
5868 1.1 fvdl return (0);
5869 1.1 fvdl }
5870 1.1 fvdl
5871 1.1 fvdl /*
5872 1.1 fvdl * (Re)initialize chip state after a chip reset.
5873 1.1 fvdl */
5874 1.1 fvdl static void
5875 1.1 fvdl ahd_chip_init(struct ahd_softc *ahd)
5876 1.1 fvdl {
5877 1.1 fvdl uint32_t busaddr;
5878 1.1 fvdl u_int sxfrctl1;
5879 1.1 fvdl u_int scsiseq_template;
5880 1.1 fvdl u_int wait;
5881 1.1 fvdl u_int i;
5882 1.1 fvdl u_int target;
5883 1.1 fvdl
5884 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
5885 1.1 fvdl /*
5886 1.1 fvdl * Take the LED out of diagnostic mode
5887 1.1 fvdl */
5888 1.1 fvdl ahd_outb(ahd, SBLKCTL, ahd_inb(ahd, SBLKCTL) & ~(DIAGLEDEN|DIAGLEDON));
5889 1.1 fvdl
5890 1.1 fvdl /*
5891 1.1 fvdl * Return HS_MAILBOX to its default value.
5892 1.1 fvdl */
5893 1.1 fvdl ahd->hs_mailbox = 0;
5894 1.1 fvdl ahd_outb(ahd, HS_MAILBOX, 0);
5895 1.1 fvdl
5896 1.1 fvdl /* Set the SCSI Id, SXFRCTL0, SXFRCTL1, and SIMODE1. */
5897 1.1 fvdl ahd_outb(ahd, IOWNID, ahd->our_id);
5898 1.1 fvdl ahd_outb(ahd, TOWNID, ahd->our_id);
5899 1.1 fvdl sxfrctl1 = (ahd->flags & AHD_TERM_ENB_A) != 0 ? STPWEN : 0;
5900 1.1 fvdl sxfrctl1 |= (ahd->flags & AHD_SPCHK_ENB_A) != 0 ? ENSPCHK : 0;
5901 1.1 fvdl if ((ahd->bugs & AHD_LONG_SETIMO_BUG)
5902 1.1 fvdl && (ahd->seltime != STIMESEL_MIN)) {
5903 1.1 fvdl /*
5904 1.1 fvdl * The selection timer duration is twice as long
5905 1.1 fvdl * as it should be. Halve it by adding "1" to
5906 1.1 fvdl * the user specified setting.
5907 1.1 fvdl */
5908 1.1 fvdl sxfrctl1 |= ahd->seltime + STIMESEL_BUG_ADJ;
5909 1.1 fvdl } else {
5910 1.1 fvdl sxfrctl1 |= ahd->seltime;
5911 1.1 fvdl }
5912 1.1 fvdl
5913 1.1 fvdl ahd_outb(ahd, SXFRCTL0, DFON);
5914 1.1 fvdl ahd_outb(ahd, SXFRCTL1, sxfrctl1|ahd->seltime|ENSTIMER|ACTNEGEN);
5915 1.1 fvdl ahd_outb(ahd, SIMODE1, ENSELTIMO|ENSCSIRST|ENSCSIPERR);
5916 1.1 fvdl
5917 1.1 fvdl /*
5918 1.1 fvdl * Now that termination is set, wait for up
5919 1.1 fvdl * to 500ms for our transceivers to settle. If
5920 1.1 fvdl * the adapter does not have a cable attached,
5921 1.9 thorpej * the transceivers may never settle, so don't
5922 1.1 fvdl * complain if we fail here.
5923 1.1 fvdl */
5924 1.1 fvdl for (wait = 10000;
5925 1.1 fvdl (ahd_inb(ahd, SBLKCTL) & (ENAB40|ENAB20)) == 0 && wait;
5926 1.1 fvdl wait--)
5927 1.1 fvdl ahd_delay(100);
5928 1.1 fvdl
5929 1.1 fvdl /* Clear any false bus resets due to the transceivers settling */
5930 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRSCSIRSTI);
5931 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
5932 1.1 fvdl
5933 1.1 fvdl /* Initialize mode specific S/G state. */
5934 1.1 fvdl for (i = 0; i < 2; i++) {
5935 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_DFF0 + i, AHD_MODE_DFF0 + i);
5936 1.1 fvdl ahd_outb(ahd, LONGJMP_ADDR + 1, INVALID_ADDR);
5937 1.1 fvdl ahd_outb(ahd, SG_STATE, 0);
5938 1.1 fvdl ahd_outb(ahd, CLRSEQINTSRC, 0xFF);
5939 1.1 fvdl ahd_outb(ahd, SEQIMODE,
5940 1.1 fvdl ENSAVEPTRS|ENCFG4DATA|ENCFG4ISTAT
5941 1.1 fvdl |ENCFG4TSTAT|ENCFG4ICMD|ENCFG4TCMD);
5942 1.1 fvdl }
5943 1.1 fvdl
5944 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
5945 1.1 fvdl ahd_outb(ahd, DSCOMMAND0, ahd_inb(ahd, DSCOMMAND0)|MPARCKEN|CACHETHEN);
5946 1.1 fvdl ahd_outb(ahd, DFF_THRSH, RD_DFTHRSH_75|WR_DFTHRSH_75);
5947 1.1 fvdl ahd_outb(ahd, SIMODE0, ENIOERR|ENOVERRUN);
5948 1.1 fvdl ahd_outb(ahd, SIMODE3, ENNTRAMPERR|ENOSRAMPERR);
5949 1.1 fvdl if ((ahd->bugs & AHD_BUSFREEREV_BUG) != 0) {
5950 1.1 fvdl ahd_outb(ahd, OPTIONMODE, AUTOACKEN|AUTO_MSGOUT_DE);
5951 1.1 fvdl } else {
5952 1.1 fvdl ahd_outb(ahd, OPTIONMODE, AUTOACKEN|BUSFREEREV|AUTO_MSGOUT_DE);
5953 1.1 fvdl }
5954 1.1 fvdl ahd_outb(ahd, SCSCHKN, CURRFIFODEF|WIDERESEN|SHVALIDSTDIS);
5955 1.1 fvdl if ((ahd->chip & AHD_BUS_MASK) == AHD_PCIX)
5956 1.1 fvdl /*
5957 1.1 fvdl * Do not issue a target abort when a split completion
5958 1.1 fvdl * error occurs. Let our PCIX interrupt handler deal
5959 1.1 fvdl * with it instead. H2A4 Razor #625
5960 1.1 fvdl */
5961 1.1 fvdl ahd_outb(ahd, PCIXCTL, ahd_inb(ahd, PCIXCTL) | SPLTSTADIS);
5962 1.1 fvdl
5963 1.1 fvdl if ((ahd->bugs & AHD_LQOOVERRUN_BUG) != 0)
5964 1.1 fvdl ahd_outb(ahd, LQOSCSCTL, LQONOCHKOVER);
5965 1.1 fvdl
5966 1.1 fvdl /*
5967 1.1 fvdl * Tweak IOCELL settings.
5968 1.1 fvdl */
5969 1.1 fvdl if ((ahd->flags & AHD_HP_BOARD) != 0) {
5970 1.1 fvdl for (i = 0; i < NUMDSPS; i++) {
5971 1.1 fvdl ahd_outb(ahd, DSPSELECT, i);
5972 1.1 fvdl ahd_outb(ahd, WRTBIASCTL, WRTBIASCTL_HP_DEFAULT);
5973 1.1 fvdl }
5974 1.1 fvdl #ifdef AHD_DEBUG
5975 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
5976 1.1 fvdl printf("%s: WRTBIASCTL now 0x%x\n", ahd_name(ahd),
5977 1.1 fvdl WRTBIASCTL_HP_DEFAULT);
5978 1.1 fvdl #endif
5979 1.1 fvdl }
5980 1.1 fvdl ahd_setup_iocell_workaround(ahd);
5981 1.1 fvdl
5982 1.1 fvdl /*
5983 1.1 fvdl * Enable LQI Manager interrupts.
5984 1.1 fvdl */
5985 1.1 fvdl ahd_outb(ahd, LQIMODE1, ENLQIPHASE_LQ|ENLQIPHASE_NLQ|ENLIQABORT
5986 1.1 fvdl | ENLQICRCI_LQ|ENLQICRCI_NLQ|ENLQIBADLQI
5987 1.1 fvdl | ENLQIOVERI_LQ|ENLQIOVERI_NLQ);
5988 1.1 fvdl ahd_outb(ahd, LQOMODE0, ENLQOATNLQ|ENLQOATNPKT|ENLQOTCRC);
5989 1.1 fvdl /*
5990 1.1 fvdl * An interrupt from LQOBUSFREE is made redundant by the
5991 1.1 fvdl * BUSFREE interrupt. We choose to have the sequencer catch
5992 1.1 fvdl * LQOPHCHGINPKT errors manually for the command phase at the
5993 1.1 fvdl * start of a packetized selection case.
5994 1.1 fvdl ahd_outb(ahd, LQOMODE1, ENLQOBUSFREE|ENLQOPHACHGINPKT);
5995 1.1 fvdl */
5996 1.1 fvdl ahd_outb(ahd, LQOMODE1, 0);
5997 1.1 fvdl
5998 1.1 fvdl /*
5999 1.1 fvdl * Setup sequencer interrupt handlers.
6000 1.1 fvdl */
6001 1.1 fvdl ahd_outw(ahd, INTVEC1_ADDR, ahd_resolve_seqaddr(ahd, LABEL_seq_isr));
6002 1.1 fvdl ahd_outw(ahd, INTVEC2_ADDR, ahd_resolve_seqaddr(ahd, LABEL_timer_isr));
6003 1.1 fvdl
6004 1.1 fvdl /*
6005 1.1 fvdl * Setup SCB Offset registers.
6006 1.1 fvdl */
6007 1.1 fvdl if ((ahd->bugs & AHD_PKT_LUN_BUG) != 0) {
6008 1.1 fvdl ahd_outb(ahd, LUNPTR, offsetof(struct hardware_scb,
6009 1.1 fvdl pkt_long_lun));
6010 1.1 fvdl } else {
6011 1.1 fvdl ahd_outb(ahd, LUNPTR, offsetof(struct hardware_scb, lun));
6012 1.1 fvdl }
6013 1.1 fvdl ahd_outb(ahd, CMDLENPTR, offsetof(struct hardware_scb, cdb_len));
6014 1.1 fvdl ahd_outb(ahd, ATTRPTR, offsetof(struct hardware_scb, task_attribute));
6015 1.1 fvdl ahd_outb(ahd, FLAGPTR, offsetof(struct hardware_scb, task_management));
6016 1.1 fvdl ahd_outb(ahd, CMDPTR, offsetof(struct hardware_scb,
6017 1.1 fvdl shared_data.idata.cdb));
6018 1.1 fvdl ahd_outb(ahd, QNEXTPTR,
6019 1.1 fvdl offsetof(struct hardware_scb, next_hscb_busaddr));
6020 1.1 fvdl ahd_outb(ahd, ABRTBITPTR, MK_MESSAGE_BIT_OFFSET);
6021 1.1 fvdl ahd_outb(ahd, ABRTBYTEPTR, offsetof(struct hardware_scb, control));
6022 1.1 fvdl if ((ahd->bugs & AHD_PKT_LUN_BUG) != 0) {
6023 1.1 fvdl ahd_outb(ahd, LUNLEN,
6024 1.1 fvdl sizeof(ahd->next_queued_hscb->pkt_long_lun) - 1);
6025 1.1 fvdl } else {
6026 1.13 thorpej ahd_outb(ahd, LUNLEN, LUNLEN_SINGLE_LEVEL_LUN);
6027 1.1 fvdl }
6028 1.1 fvdl ahd_outb(ahd, CDBLIMIT, SCB_CDB_LEN_PTR - 1);
6029 1.1 fvdl ahd_outb(ahd, MAXCMD, 0xFF);
6030 1.1 fvdl ahd_outb(ahd, SCBAUTOPTR,
6031 1.1 fvdl AUSCBPTR_EN | offsetof(struct hardware_scb, tag));
6032 1.1 fvdl
6033 1.1 fvdl /* We haven't been enabled for target mode yet. */
6034 1.1 fvdl ahd_outb(ahd, MULTARGID, 0);
6035 1.1 fvdl ahd_outb(ahd, MULTARGID + 1, 0);
6036 1.1 fvdl
6037 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
6038 1.1 fvdl /* Initialize the negotiation table. */
6039 1.1 fvdl if ((ahd->features & AHD_NEW_IOCELL_OPTS) == 0) {
6040 1.1 fvdl /*
6041 1.1 fvdl * Clear the spare bytes in the neg table to avoid
6042 1.1 fvdl * spurious parity errors.
6043 1.1 fvdl */
6044 1.1 fvdl for (target = 0; target < AHD_NUM_TARGETS; target++) {
6045 1.1 fvdl ahd_outb(ahd, NEGOADDR, target);
6046 1.1 fvdl ahd_outb(ahd, ANNEXCOL, AHD_ANNEXCOL_PER_DEV0);
6047 1.1 fvdl for (i = 0; i < AHD_NUM_PER_DEV_ANNEXCOLS; i++)
6048 1.1 fvdl ahd_outb(ahd, ANNEXDAT, 0);
6049 1.1 fvdl }
6050 1.1 fvdl }
6051 1.1 fvdl
6052 1.1 fvdl for (target = 0; target < AHD_NUM_TARGETS; target++) {
6053 1.1 fvdl struct ahd_devinfo devinfo;
6054 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
6055 1.1 fvdl struct ahd_tmode_tstate *tstate;
6056 1.1 fvdl
6057 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, 'A', ahd->our_id,
6058 1.1 fvdl target, &tstate);
6059 1.1 fvdl ahd_compile_devinfo(&devinfo, ahd->our_id,
6060 1.1 fvdl target, CAM_LUN_WILDCARD,
6061 1.1 fvdl 'A', ROLE_INITIATOR);
6062 1.1 fvdl ahd_update_neg_table(ahd, &devinfo, &tinfo->curr);
6063 1.1 fvdl }
6064 1.1 fvdl
6065 1.1 fvdl ahd_outb(ahd, CLRSINT3, NTRAMPERR|OSRAMPERR);
6066 1.1 fvdl ahd_outb(ahd, CLRINT, CLRSCSIINT);
6067 1.1 fvdl
6068 1.19 thorpej #if NEEDS_MORE_TESTING
6069 1.1 fvdl /*
6070 1.1 fvdl * Always enable abort on incoming L_Qs if this feature is
6071 1.1 fvdl * supported. We use this to catch invalid SCB references.
6072 1.1 fvdl */
6073 1.1 fvdl if ((ahd->bugs & AHD_ABORT_LQI_BUG) == 0)
6074 1.1 fvdl ahd_outb(ahd, LQCTL1, ABORTPENDING);
6075 1.1 fvdl else
6076 1.19 thorpej #endif
6077 1.1 fvdl ahd_outb(ahd, LQCTL1, 0);
6078 1.1 fvdl
6079 1.1 fvdl /* All of our queues are empty */
6080 1.1 fvdl ahd->qoutfifonext = 0;
6081 1.1 fvdl ahd->qoutfifonext_valid_tag = QOUTFIFO_ENTRY_VALID_LE;
6082 1.1 fvdl ahd_outb(ahd, QOUTFIFO_ENTRY_VALID_TAG, QOUTFIFO_ENTRY_VALID >> 8);
6083 1.1 fvdl for (i = 0; i < AHD_QOUT_SIZE; i++)
6084 1.1 fvdl ahd->qoutfifo[i] = 0;
6085 1.1 fvdl ahd_sync_qoutfifo(ahd, BUS_DMASYNC_PREREAD);
6086 1.1 fvdl
6087 1.1 fvdl ahd->qinfifonext = 0;
6088 1.1 fvdl for (i = 0; i < AHD_QIN_SIZE; i++)
6089 1.1 fvdl ahd->qinfifo[i] = SCB_LIST_NULL;
6090 1.1 fvdl
6091 1.1 fvdl if ((ahd->features & AHD_TARGETMODE) != 0) {
6092 1.1 fvdl /* All target command blocks start out invalid. */
6093 1.1 fvdl for (i = 0; i < AHD_TMODE_CMDS; i++)
6094 1.1 fvdl ahd->targetcmds[i].cmd_valid = 0;
6095 1.1 fvdl ahd_sync_tqinfifo(ahd, BUS_DMASYNC_PREREAD);
6096 1.1 fvdl ahd->tqinfifonext = 1;
6097 1.1 fvdl ahd_outb(ahd, KERNEL_TQINPOS, ahd->tqinfifonext - 1);
6098 1.1 fvdl ahd_outb(ahd, TQINPOS, ahd->tqinfifonext);
6099 1.1 fvdl }
6100 1.1 fvdl
6101 1.1 fvdl /* Initialize Scratch Ram. */
6102 1.1 fvdl ahd_outb(ahd, SEQ_FLAGS, 0);
6103 1.1 fvdl ahd_outb(ahd, SEQ_FLAGS2, 0);
6104 1.1 fvdl
6105 1.1 fvdl /* We don't have any waiting selections */
6106 1.1 fvdl ahd_outw(ahd, WAITING_TID_HEAD, SCB_LIST_NULL);
6107 1.1 fvdl ahd_outw(ahd, WAITING_TID_TAIL, SCB_LIST_NULL);
6108 1.1 fvdl for (i = 0; i < AHD_NUM_TARGETS; i++) {
6109 1.1 fvdl ahd_outw(ahd, WAITING_SCB_TAILS + (2 * i), SCB_LIST_NULL);
6110 1.1 fvdl }
6111 1.1 fvdl
6112 1.1 fvdl /*
6113 1.1 fvdl * Nobody is waiting to be DMAed into the QOUTFIFO.
6114 1.1 fvdl */
6115 1.1 fvdl ahd_outw(ahd, COMPLETE_SCB_HEAD, SCB_LIST_NULL);
6116 1.1 fvdl ahd_outw(ahd, COMPLETE_SCB_DMAINPROG_HEAD, SCB_LIST_NULL);
6117 1.1 fvdl ahd_outw(ahd, COMPLETE_DMA_SCB_HEAD, SCB_LIST_NULL);
6118 1.1 fvdl
6119 1.1 fvdl /*
6120 1.1 fvdl * The Freeze Count is 0.
6121 1.1 fvdl */
6122 1.1 fvdl ahd_outw(ahd, QFREEZE_COUNT, 0);
6123 1.1 fvdl
6124 1.1 fvdl /*
6125 1.1 fvdl * Tell the sequencer where it can find our arrays in memory.
6126 1.1 fvdl */
6127 1.7 thorpej busaddr = ahd->shared_data_map.physaddr;
6128 1.1 fvdl ahd_outb(ahd, SHARED_DATA_ADDR, busaddr & 0xFF);
6129 1.1 fvdl ahd_outb(ahd, SHARED_DATA_ADDR + 1, (busaddr >> 8) & 0xFF);
6130 1.1 fvdl ahd_outb(ahd, SHARED_DATA_ADDR + 2, (busaddr >> 16) & 0xFF);
6131 1.1 fvdl ahd_outb(ahd, SHARED_DATA_ADDR + 3, (busaddr >> 24) & 0xFF);
6132 1.1 fvdl ahd_outb(ahd, QOUTFIFO_NEXT_ADDR, busaddr & 0xFF);
6133 1.1 fvdl ahd_outb(ahd, QOUTFIFO_NEXT_ADDR + 1, (busaddr >> 8) & 0xFF);
6134 1.1 fvdl ahd_outb(ahd, QOUTFIFO_NEXT_ADDR + 2, (busaddr >> 16) & 0xFF);
6135 1.1 fvdl ahd_outb(ahd, QOUTFIFO_NEXT_ADDR + 3, (busaddr >> 24) & 0xFF);
6136 1.1 fvdl /*
6137 1.1 fvdl * Setup the allowed SCSI Sequences based on operational mode.
6138 1.1 fvdl * If we are a target, we'll enable select in operations once
6139 1.1 fvdl * we've had a lun enabled.
6140 1.1 fvdl */
6141 1.1 fvdl scsiseq_template = ENAUTOATNP;
6142 1.1 fvdl if ((ahd->flags & AHD_INITIATORROLE) != 0)
6143 1.1 fvdl scsiseq_template |= ENRSELI;
6144 1.1 fvdl ahd_outb(ahd, SCSISEQ_TEMPLATE, scsiseq_template);
6145 1.1 fvdl
6146 1.1 fvdl /* There are no busy SCBs yet. */
6147 1.1 fvdl for (target = 0; target < AHD_NUM_TARGETS; target++) {
6148 1.1 fvdl int lun;
6149 1.1 fvdl
6150 1.1 fvdl for (lun = 0; lun < AHD_NUM_LUNS_NONPKT; lun++)
6151 1.1 fvdl ahd_unbusy_tcl(ahd, BUILD_TCL_RAW(target, 'A', lun));
6152 1.1 fvdl }
6153 1.1 fvdl
6154 1.1 fvdl /*
6155 1.1 fvdl * Initialize the group code to command length table.
6156 1.1 fvdl * Vendor Unique codes are set to 0 so we only capture
6157 1.1 fvdl * the first byte of the cdb. These can be overridden
6158 1.1 fvdl * when target mode is enabled.
6159 1.1 fvdl */
6160 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE, 5);
6161 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE + 1, 9);
6162 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE + 2, 9);
6163 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE + 3, 0);
6164 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE + 4, 15);
6165 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE + 5, 11);
6166 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE + 6, 0);
6167 1.1 fvdl ahd_outb(ahd, CMDSIZE_TABLE + 7, 0);
6168 1.1 fvdl
6169 1.1 fvdl /* Tell the sequencer of our initial queue positions */
6170 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN);
6171 1.1 fvdl ahd_outb(ahd, QOFF_CTLSTA, SCB_QSIZE_512);
6172 1.1 fvdl ahd->qinfifonext = 0;
6173 1.1 fvdl ahd_set_hnscb_qoff(ahd, ahd->qinfifonext);
6174 1.1 fvdl ahd_set_hescb_qoff(ahd, 0);
6175 1.1 fvdl ahd_set_snscb_qoff(ahd, 0);
6176 1.1 fvdl ahd_set_sescb_qoff(ahd, 0);
6177 1.1 fvdl ahd_set_sdscb_qoff(ahd, 0);
6178 1.1 fvdl
6179 1.1 fvdl /*
6180 1.1 fvdl * Tell the sequencer which SCB will be the next one it receives.
6181 1.1 fvdl */
6182 1.1 fvdl busaddr = ahd_le32toh(ahd->next_queued_hscb->hscb_busaddr);
6183 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 0, busaddr & 0xFF);
6184 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 1, (busaddr >> 8) & 0xFF);
6185 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 2, (busaddr >> 16) & 0xFF);
6186 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 3, (busaddr >> 24) & 0xFF);
6187 1.1 fvdl
6188 1.1 fvdl /*
6189 1.5 wiz * Default to coalescing disabled.
6190 1.1 fvdl */
6191 1.5 wiz ahd_outw(ahd, INT_COALESCING_CMDCOUNT, 0);
6192 1.1 fvdl ahd_outw(ahd, CMDS_PENDING, 0);
6193 1.5 wiz ahd_update_coalescing_values(ahd, ahd->int_coalescing_timer,
6194 1.5 wiz ahd->int_coalescing_maxcmds,
6195 1.5 wiz ahd->int_coalescing_mincmds);
6196 1.5 wiz ahd_enable_coalescing(ahd, FALSE);
6197 1.1 fvdl
6198 1.1 fvdl ahd_loadseq(ahd);
6199 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
6200 1.1 fvdl }
6201 1.1 fvdl
6202 1.1 fvdl /*
6203 1.1 fvdl * Setup default device and controller settings.
6204 1.1 fvdl * This should only be called if our probe has
6205 1.1 fvdl * determined that no configuration data is available.
6206 1.1 fvdl */
6207 1.1 fvdl int
6208 1.1 fvdl ahd_default_config(struct ahd_softc *ahd)
6209 1.1 fvdl {
6210 1.1 fvdl int targ;
6211 1.1 fvdl
6212 1.1 fvdl ahd->our_id = 7;
6213 1.1 fvdl
6214 1.1 fvdl /*
6215 1.1 fvdl * Allocate a tstate to house information for our
6216 1.1 fvdl * initiator presence on the bus as well as the user
6217 1.1 fvdl * data for any target mode initiator.
6218 1.1 fvdl */
6219 1.1 fvdl if (ahd_alloc_tstate(ahd, ahd->our_id, 'A') == NULL) {
6220 1.1 fvdl printf("%s: unable to allocate ahd_tmode_tstate. "
6221 1.1 fvdl "Failing attach\n", ahd_name(ahd));
6222 1.1 fvdl return (ENOMEM);
6223 1.1 fvdl }
6224 1.1 fvdl
6225 1.1 fvdl for (targ = 0; targ < AHD_NUM_TARGETS; targ++) {
6226 1.1 fvdl struct ahd_devinfo devinfo;
6227 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
6228 1.1 fvdl struct ahd_tmode_tstate *tstate;
6229 1.1 fvdl uint16_t target_mask;
6230 1.1 fvdl
6231 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, 'A', ahd->our_id,
6232 1.1 fvdl targ, &tstate);
6233 1.1 fvdl /*
6234 1.1 fvdl * We support SPC2 and SPI4.
6235 1.1 fvdl */
6236 1.1 fvdl tinfo->user.protocol_version = 4;
6237 1.1 fvdl tinfo->user.transport_version = 4;
6238 1.1 fvdl
6239 1.1 fvdl target_mask = 0x01 << targ;
6240 1.1 fvdl ahd->user_discenable |= target_mask;
6241 1.1 fvdl tstate->discenable |= target_mask;
6242 1.1 fvdl ahd->user_tagenable |= target_mask;
6243 1.1 fvdl #ifdef AHD_FORCE_160
6244 1.1 fvdl tinfo->user.period = AHD_SYNCRATE_DT;
6245 1.1 fvdl #else
6246 1.1 fvdl tinfo->user.period = AHD_SYNCRATE_160;
6247 1.1 fvdl #endif
6248 1.1 fvdl tinfo->user.offset= MAX_OFFSET;
6249 1.1 fvdl tinfo->user.ppr_options = MSG_EXT_PPR_RDSTRM
6250 1.1 fvdl | MSG_EXT_PPR_WRFLOW
6251 1.1 fvdl | MSG_EXT_PPR_HOLDMCS
6252 1.1 fvdl | MSG_EXT_PPR_IU_REQ
6253 1.1 fvdl | MSG_EXT_PPR_QAS_REQ
6254 1.1 fvdl | MSG_EXT_PPR_DT_REQ;
6255 1.1 fvdl if ((ahd->features & AHD_RTI) != 0)
6256 1.1 fvdl tinfo->user.ppr_options |= MSG_EXT_PPR_RTI;
6257 1.1 fvdl
6258 1.1 fvdl tinfo->user.width = MSG_EXT_WDTR_BUS_16_BIT;
6259 1.1 fvdl
6260 1.1 fvdl /*
6261 1.1 fvdl * Start out Async/Narrow/Untagged and with
6262 1.1 fvdl * conservative protocol support.
6263 1.1 fvdl */
6264 1.1 fvdl tinfo->goal.protocol_version = 2;
6265 1.1 fvdl tinfo->goal.transport_version = 2;
6266 1.1 fvdl tinfo->curr.protocol_version = 2;
6267 1.1 fvdl tinfo->curr.transport_version = 2;
6268 1.1 fvdl ahd_compile_devinfo(&devinfo, ahd->our_id,
6269 1.1 fvdl targ, CAM_LUN_WILDCARD,
6270 1.1 fvdl 'A', ROLE_INITIATOR);
6271 1.1 fvdl tstate->tagenable &= ~target_mask;
6272 1.1 fvdl ahd_set_width(ahd, &devinfo, MSG_EXT_WDTR_BUS_8_BIT,
6273 1.1 fvdl AHD_TRANS_CUR|AHD_TRANS_GOAL, /*paused*/TRUE);
6274 1.1 fvdl ahd_set_syncrate(ahd, &devinfo, /*period*/0, /*offset*/0,
6275 1.1 fvdl /*ppr_options*/0, AHD_TRANS_CUR|AHD_TRANS_GOAL,
6276 1.1 fvdl /*paused*/TRUE);
6277 1.1 fvdl }
6278 1.1 fvdl return (0);
6279 1.1 fvdl }
6280 1.1 fvdl
6281 1.1 fvdl /*
6282 1.1 fvdl * Parse device configuration information.
6283 1.1 fvdl */
6284 1.1 fvdl int
6285 1.1 fvdl ahd_parse_cfgdata(struct ahd_softc *ahd, struct seeprom_config *sc)
6286 1.1 fvdl {
6287 1.1 fvdl int targ;
6288 1.1 fvdl int max_targ;
6289 1.1 fvdl
6290 1.1 fvdl max_targ = sc->max_targets & CFMAXTARG;
6291 1.1 fvdl ahd->our_id = sc->brtime_id & CFSCSIID;
6292 1.1 fvdl
6293 1.1 fvdl /*
6294 1.1 fvdl * Allocate a tstate to house information for our
6295 1.1 fvdl * initiator presence on the bus as well as the user
6296 1.1 fvdl * data for any target mode initiator.
6297 1.1 fvdl */
6298 1.1 fvdl if (ahd_alloc_tstate(ahd, ahd->our_id, 'A') == NULL) {
6299 1.1 fvdl printf("%s: unable to allocate ahd_tmode_tstate. "
6300 1.1 fvdl "Failing attach\n", ahd_name(ahd));
6301 1.1 fvdl return (ENOMEM);
6302 1.1 fvdl }
6303 1.1 fvdl
6304 1.1 fvdl for (targ = 0; targ < max_targ; targ++) {
6305 1.1 fvdl struct ahd_devinfo devinfo;
6306 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
6307 1.1 fvdl struct ahd_transinfo *user_tinfo;
6308 1.1 fvdl struct ahd_tmode_tstate *tstate;
6309 1.1 fvdl uint16_t target_mask;
6310 1.1 fvdl
6311 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, 'A', ahd->our_id,
6312 1.1 fvdl targ, &tstate);
6313 1.1 fvdl user_tinfo = &tinfo->user;
6314 1.1 fvdl
6315 1.1 fvdl /*
6316 1.1 fvdl * We support SPC2 and SPI4.
6317 1.1 fvdl */
6318 1.1 fvdl tinfo->user.protocol_version = 4;
6319 1.1 fvdl tinfo->user.transport_version = 4;
6320 1.1 fvdl
6321 1.1 fvdl target_mask = 0x01 << targ;
6322 1.1 fvdl ahd->user_discenable &= ~target_mask;
6323 1.1 fvdl tstate->discenable &= ~target_mask;
6324 1.1 fvdl ahd->user_tagenable &= ~target_mask;
6325 1.1 fvdl if (sc->device_flags[targ] & CFDISC) {
6326 1.1 fvdl tstate->discenable |= target_mask;
6327 1.1 fvdl ahd->user_discenable |= target_mask;
6328 1.1 fvdl ahd->user_tagenable |= target_mask;
6329 1.1 fvdl } else {
6330 1.1 fvdl /*
6331 1.1 fvdl * Cannot be packetized without disconnection.
6332 1.1 fvdl */
6333 1.1 fvdl sc->device_flags[targ] &= ~CFPACKETIZED;
6334 1.1 fvdl }
6335 1.1 fvdl
6336 1.1 fvdl user_tinfo->ppr_options = 0;
6337 1.1 fvdl user_tinfo->period = (sc->device_flags[targ] & CFXFER);
6338 1.1 fvdl if (user_tinfo->period < CFXFER_ASYNC) {
6339 1.1 fvdl if (user_tinfo->period <= AHD_PERIOD_10MHz)
6340 1.1 fvdl user_tinfo->ppr_options |= MSG_EXT_PPR_DT_REQ;
6341 1.1 fvdl user_tinfo->offset = MAX_OFFSET;
6342 1.1 fvdl } else {
6343 1.1 fvdl user_tinfo->offset = 0;
6344 1.1 fvdl user_tinfo->period = AHD_ASYNC_XFER_PERIOD;
6345 1.1 fvdl }
6346 1.1 fvdl #ifdef AHD_FORCE_160
6347 1.1 fvdl if (user_tinfo->period <= AHD_SYNCRATE_160)
6348 1.1 fvdl user_tinfo->period = AHD_SYNCRATE_DT;
6349 1.1 fvdl #endif
6350 1.1 fvdl
6351 1.1 fvdl if ((sc->device_flags[targ] & CFPACKETIZED) != 0) {
6352 1.1 fvdl user_tinfo->ppr_options |= MSG_EXT_PPR_RDSTRM
6353 1.1 fvdl | MSG_EXT_PPR_WRFLOW
6354 1.1 fvdl | MSG_EXT_PPR_HOLDMCS
6355 1.1 fvdl | MSG_EXT_PPR_IU_REQ;
6356 1.1 fvdl if ((ahd->features & AHD_RTI) != 0)
6357 1.1 fvdl user_tinfo->ppr_options |= MSG_EXT_PPR_RTI;
6358 1.1 fvdl }
6359 1.1 fvdl
6360 1.1 fvdl if ((sc->device_flags[targ] & CFQAS) != 0)
6361 1.1 fvdl user_tinfo->ppr_options |= MSG_EXT_PPR_QAS_REQ;
6362 1.1 fvdl
6363 1.1 fvdl if ((sc->device_flags[targ] & CFWIDEB) != 0)
6364 1.1 fvdl user_tinfo->width = MSG_EXT_WDTR_BUS_16_BIT;
6365 1.1 fvdl else
6366 1.1 fvdl user_tinfo->width = MSG_EXT_WDTR_BUS_8_BIT;
6367 1.1 fvdl #ifdef AHD_DEBUG
6368 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0)
6369 1.1 fvdl printf("(%d): %x:%x:%x:%x\n", targ, user_tinfo->width,
6370 1.1 fvdl user_tinfo->period, user_tinfo->offset,
6371 1.1 fvdl user_tinfo->ppr_options);
6372 1.1 fvdl #endif
6373 1.1 fvdl /*
6374 1.1 fvdl * Start out Async/Narrow/Untagged and with
6375 1.1 fvdl * conservative protocol support.
6376 1.1 fvdl */
6377 1.1 fvdl tstate->tagenable &= ~target_mask;
6378 1.1 fvdl tinfo->goal.protocol_version = 2;
6379 1.1 fvdl tinfo->goal.transport_version = 2;
6380 1.1 fvdl tinfo->curr.protocol_version = 2;
6381 1.1 fvdl tinfo->curr.transport_version = 2;
6382 1.1 fvdl ahd_compile_devinfo(&devinfo, ahd->our_id,
6383 1.1 fvdl targ, CAM_LUN_WILDCARD,
6384 1.1 fvdl 'A', ROLE_INITIATOR);
6385 1.1 fvdl ahd_set_width(ahd, &devinfo, MSG_EXT_WDTR_BUS_8_BIT,
6386 1.1 fvdl AHD_TRANS_CUR|AHD_TRANS_GOAL, /*paused*/TRUE);
6387 1.1 fvdl ahd_set_syncrate(ahd, &devinfo, /*period*/0, /*offset*/0,
6388 1.1 fvdl /*ppr_options*/0, AHD_TRANS_CUR|AHD_TRANS_GOAL,
6389 1.1 fvdl /*paused*/TRUE);
6390 1.1 fvdl }
6391 1.1 fvdl
6392 1.1 fvdl ahd->flags &= ~AHD_SPCHK_ENB_A;
6393 1.1 fvdl if (sc->bios_control & CFSPARITY)
6394 1.1 fvdl ahd->flags |= AHD_SPCHK_ENB_A;
6395 1.1 fvdl
6396 1.1 fvdl ahd->flags &= ~AHD_RESET_BUS_A;
6397 1.1 fvdl if (sc->bios_control & CFRESETB)
6398 1.1 fvdl ahd->flags |= AHD_RESET_BUS_A;
6399 1.1 fvdl
6400 1.1 fvdl ahd->flags &= ~AHD_EXTENDED_TRANS_A;
6401 1.1 fvdl if (sc->bios_control & CFEXTEND)
6402 1.1 fvdl ahd->flags |= AHD_EXTENDED_TRANS_A;
6403 1.1 fvdl
6404 1.1 fvdl ahd->flags &= ~AHD_BIOS_ENABLED;
6405 1.1 fvdl if ((sc->bios_control & CFBIOSSTATE) == CFBS_ENABLED)
6406 1.1 fvdl ahd->flags |= AHD_BIOS_ENABLED;
6407 1.1 fvdl
6408 1.1 fvdl ahd->flags &= ~AHD_STPWLEVEL_A;
6409 1.1 fvdl if ((sc->adapter_control & CFSTPWLEVEL) != 0)
6410 1.1 fvdl ahd->flags |= AHD_STPWLEVEL_A;
6411 1.1 fvdl
6412 1.1 fvdl return (0);
6413 1.1 fvdl }
6414 1.1 fvdl
6415 1.9 thorpej /*
6416 1.9 thorpej * Parse device configuration information.
6417 1.9 thorpej */
6418 1.9 thorpej int
6419 1.9 thorpej ahd_parse_vpddata(struct ahd_softc *ahd, struct vpd_config *vpd)
6420 1.9 thorpej {
6421 1.9 thorpej int error;
6422 1.9 thorpej
6423 1.9 thorpej error = ahd_verify_vpd_cksum(vpd);
6424 1.9 thorpej if (error == 0)
6425 1.9 thorpej return (EINVAL);
6426 1.9 thorpej if ((vpd->bios_flags & VPDBOOTHOST) != 0)
6427 1.9 thorpej ahd->flags |= AHD_BOOT_CHANNEL;
6428 1.9 thorpej return (0);
6429 1.9 thorpej }
6430 1.9 thorpej
6431 1.1 fvdl void
6432 1.1 fvdl ahd_intr_enable(struct ahd_softc *ahd, int enable)
6433 1.1 fvdl {
6434 1.1 fvdl u_int hcntrl;
6435 1.1 fvdl
6436 1.1 fvdl hcntrl = ahd_inb(ahd, HCNTRL);
6437 1.1 fvdl hcntrl &= ~INTEN;
6438 1.1 fvdl ahd->pause &= ~INTEN;
6439 1.1 fvdl ahd->unpause &= ~INTEN;
6440 1.1 fvdl if (enable) {
6441 1.1 fvdl hcntrl |= INTEN;
6442 1.1 fvdl ahd->pause |= INTEN;
6443 1.1 fvdl ahd->unpause |= INTEN;
6444 1.1 fvdl }
6445 1.1 fvdl ahd_outb(ahd, HCNTRL, hcntrl);
6446 1.1 fvdl }
6447 1.1 fvdl
6448 1.1 fvdl void
6449 1.5 wiz ahd_update_coalescing_values(struct ahd_softc *ahd, u_int timer, u_int maxcmds,
6450 1.1 fvdl u_int mincmds)
6451 1.1 fvdl {
6452 1.1 fvdl if (timer > AHD_TIMER_MAX_US)
6453 1.1 fvdl timer = AHD_TIMER_MAX_US;
6454 1.5 wiz ahd->int_coalescing_timer = timer;
6455 1.1 fvdl
6456 1.5 wiz if (maxcmds > AHD_INT_COALESCING_MAXCMDS_MAX)
6457 1.5 wiz maxcmds = AHD_INT_COALESCING_MAXCMDS_MAX;
6458 1.5 wiz if (mincmds > AHD_INT_COALESCING_MINCMDS_MAX)
6459 1.5 wiz mincmds = AHD_INT_COALESCING_MINCMDS_MAX;
6460 1.5 wiz ahd->int_coalescing_maxcmds = maxcmds;
6461 1.5 wiz ahd_outw(ahd, INT_COALESCING_TIMER, timer / AHD_TIMER_US_PER_TICK);
6462 1.5 wiz ahd_outb(ahd, INT_COALESCING_MAXCMDS, -maxcmds);
6463 1.5 wiz ahd_outb(ahd, INT_COALESCING_MINCMDS, -mincmds);
6464 1.1 fvdl }
6465 1.1 fvdl
6466 1.1 fvdl void
6467 1.5 wiz ahd_enable_coalescing(struct ahd_softc *ahd, int enable)
6468 1.1 fvdl {
6469 1.1 fvdl
6470 1.5 wiz ahd->hs_mailbox &= ~ENINT_COALESCE;
6471 1.1 fvdl if (enable)
6472 1.5 wiz ahd->hs_mailbox |= ENINT_COALESCE;
6473 1.1 fvdl ahd_outb(ahd, HS_MAILBOX, ahd->hs_mailbox);
6474 1.1 fvdl ahd_flush_device_writes(ahd);
6475 1.1 fvdl ahd_run_qoutfifo(ahd);
6476 1.1 fvdl }
6477 1.1 fvdl
6478 1.1 fvdl /*
6479 1.1 fvdl * Ensure that the card is paused in a location
6480 1.1 fvdl * outside of all critical sections and that all
6481 1.1 fvdl * pending work is completed prior to returning.
6482 1.1 fvdl * This routine should only be called from outside
6483 1.1 fvdl * an interrupt context.
6484 1.1 fvdl */
6485 1.1 fvdl void
6486 1.1 fvdl ahd_pause_and_flushwork(struct ahd_softc *ahd)
6487 1.1 fvdl {
6488 1.9 thorpej u_int intstat;
6489 1.9 thorpej u_int maxloops;
6490 1.9 thorpej u_int qfreeze_cnt;
6491 1.1 fvdl
6492 1.1 fvdl maxloops = 1000;
6493 1.1 fvdl ahd->flags |= AHD_ALL_INTERRUPTS;
6494 1.9 thorpej ahd_pause(ahd);
6495 1.9 thorpej /*
6496 1.9 thorpej * Increment the QFreeze Count so that the sequencer
6497 1.9 thorpej * will not start new selections. We do this only
6498 1.9 thorpej * until we are safely paused without further selections
6499 1.9 thorpej * pending.
6500 1.9 thorpej */
6501 1.9 thorpej ahd_outw(ahd, QFREEZE_COUNT, ahd_inw(ahd, QFREEZE_COUNT) + 1);
6502 1.9 thorpej ahd_outb(ahd, SEQ_FLAGS2, ahd_inb(ahd, SEQ_FLAGS2) | SELECTOUT_QFROZEN);
6503 1.1 fvdl do {
6504 1.1 fvdl struct scb *waiting_scb;
6505 1.1 fvdl
6506 1.9 thorpej ahd_unpause(ahd);
6507 1.1 fvdl ahd_intr(ahd);
6508 1.1 fvdl ahd_pause(ahd);
6509 1.1 fvdl ahd_clear_critical_section(ahd);
6510 1.9 thorpej intstat = ahd_inb(ahd, INTSTAT);
6511 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
6512 1.1 fvdl if ((ahd_inb(ahd, SSTAT0) & (SELDO|SELINGO)) == 0)
6513 1.1 fvdl ahd_outb(ahd, SCSISEQ0,
6514 1.1 fvdl ahd_inb(ahd, SCSISEQ0) & ~ENSELO);
6515 1.1 fvdl /*
6516 1.1 fvdl * In the non-packetized case, the sequencer (for Rev A),
6517 1.1 fvdl * relies on ENSELO remaining set after SELDO. The hardware
6518 1.1 fvdl * auto-clears ENSELO in the packetized case.
6519 1.1 fvdl */
6520 1.1 fvdl waiting_scb = ahd_lookup_scb(ahd,
6521 1.1 fvdl ahd_inw(ahd, WAITING_TID_HEAD));
6522 1.1 fvdl if (waiting_scb != NULL
6523 1.1 fvdl && (waiting_scb->flags & SCB_PACKETIZED) == 0
6524 1.1 fvdl && (ahd_inb(ahd, SSTAT0) & (SELDO|SELINGO)) != 0)
6525 1.1 fvdl ahd_outb(ahd, SCSISEQ0,
6526 1.1 fvdl ahd_inb(ahd, SCSISEQ0) | ENSELO);
6527 1.1 fvdl } while (--maxloops
6528 1.1 fvdl && (intstat != 0xFF || (ahd->features & AHD_REMOVABLE) == 0)
6529 1.1 fvdl && ((intstat & INT_PEND) != 0
6530 1.9 thorpej || (ahd_inb(ahd, SCSISEQ0) & ENSELO) != 0
6531 1.9 thorpej || (ahd_inb(ahd, SSTAT0) & (SELDO|SELINGO)) != 0));
6532 1.1 fvdl if (maxloops == 0) {
6533 1.1 fvdl printf("Infinite interrupt loop, INTSTAT = %x",
6534 1.1 fvdl ahd_inb(ahd, INTSTAT));
6535 1.1 fvdl }
6536 1.9 thorpej qfreeze_cnt = ahd_inw(ahd, QFREEZE_COUNT);
6537 1.9 thorpej if (qfreeze_cnt == 0) {
6538 1.9 thorpej printf("%s: ahd_pause_and_flushwork with 0 qfreeze count!\n",
6539 1.9 thorpej ahd_name(ahd));
6540 1.9 thorpej } else {
6541 1.9 thorpej qfreeze_cnt--;
6542 1.9 thorpej }
6543 1.9 thorpej ahd_outw(ahd, QFREEZE_COUNT, qfreeze_cnt);
6544 1.9 thorpej if (qfreeze_cnt == 0)
6545 1.9 thorpej ahd_outb(ahd, SEQ_FLAGS2,
6546 1.9 thorpej ahd_inb(ahd, SEQ_FLAGS2) & ~SELECTOUT_QFROZEN);
6547 1.1 fvdl
6548 1.1 fvdl ahd_flush_qoutfifo(ahd);
6549 1.1 fvdl
6550 1.1 fvdl ahd_platform_flushwork(ahd);
6551 1.1 fvdl ahd->flags &= ~AHD_ALL_INTERRUPTS;
6552 1.1 fvdl }
6553 1.1 fvdl
6554 1.1 fvdl int
6555 1.1 fvdl ahd_suspend(struct ahd_softc *ahd)
6556 1.1 fvdl {
6557 1.1 fvdl
6558 1.1 fvdl ahd_pause_and_flushwork(ahd);
6559 1.1 fvdl
6560 1.15 thorpej if (LIST_FIRST(&ahd->pending_scbs) != NULL) {
6561 1.15 thorpej ahd_unpause(ahd);
6562 1.1 fvdl return (EBUSY);
6563 1.1 fvdl }
6564 1.1 fvdl ahd_shutdown(ahd);
6565 1.1 fvdl return (0);
6566 1.1 fvdl }
6567 1.1 fvdl
6568 1.1 fvdl int
6569 1.1 fvdl ahd_resume(struct ahd_softc *ahd)
6570 1.1 fvdl {
6571 1.1 fvdl
6572 1.15 thorpej ahd_reset(ahd, /*reinit*/TRUE);
6573 1.15 thorpej ahd_intr_enable(ahd, TRUE);
6574 1.15 thorpej ahd_restart(ahd);
6575 1.1 fvdl return (0);
6576 1.1 fvdl }
6577 1.1 fvdl
6578 1.1 fvdl /************************** Busy Target Table *********************************/
6579 1.1 fvdl /*
6580 1.1 fvdl * Set SCBPTR to the SCB that contains the busy
6581 1.1 fvdl * table entry for TCL. Return the offset into
6582 1.1 fvdl * the SCB that contains the entry for TCL.
6583 1.1 fvdl * saved_scbid is dereferenced and set to the
6584 1.1 fvdl * scbid that should be restored once manipualtion
6585 1.1 fvdl * of the TCL entry is complete.
6586 1.1 fvdl */
6587 1.1 fvdl static __inline u_int
6588 1.1 fvdl ahd_index_busy_tcl(struct ahd_softc *ahd, u_int *saved_scbid, u_int tcl)
6589 1.1 fvdl {
6590 1.1 fvdl /*
6591 1.1 fvdl * Index to the SCB that contains the busy entry.
6592 1.1 fvdl */
6593 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
6594 1.1 fvdl *saved_scbid = ahd_get_scbptr(ahd);
6595 1.1 fvdl ahd_set_scbptr(ahd, TCL_LUN(tcl)
6596 1.1 fvdl | ((TCL_TARGET_OFFSET(tcl) & 0xC) << 4));
6597 1.1 fvdl
6598 1.1 fvdl /*
6599 1.1 fvdl * And now calculate the SCB offset to the entry.
6600 1.1 fvdl * Each entry is 2 bytes wide, hence the
6601 1.1 fvdl * multiplication by 2.
6602 1.1 fvdl */
6603 1.1 fvdl return (((TCL_TARGET_OFFSET(tcl) & 0x3) << 1) + SCB_DISCONNECTED_LISTS);
6604 1.1 fvdl }
6605 1.1 fvdl
6606 1.1 fvdl /*
6607 1.1 fvdl * Return the untagged transaction id for a given target/channel lun.
6608 1.1 fvdl */
6609 1.1 fvdl u_int
6610 1.1 fvdl ahd_find_busy_tcl(struct ahd_softc *ahd, u_int tcl)
6611 1.1 fvdl {
6612 1.1 fvdl u_int scbid;
6613 1.1 fvdl u_int scb_offset;
6614 1.1 fvdl u_int saved_scbptr;
6615 1.1 fvdl
6616 1.1 fvdl scb_offset = ahd_index_busy_tcl(ahd, &saved_scbptr, tcl);
6617 1.1 fvdl scbid = ahd_inw_scbram(ahd, scb_offset);
6618 1.1 fvdl ahd_set_scbptr(ahd, saved_scbptr);
6619 1.1 fvdl return (scbid);
6620 1.1 fvdl }
6621 1.1 fvdl
6622 1.1 fvdl void
6623 1.1 fvdl ahd_busy_tcl(struct ahd_softc *ahd, u_int tcl, u_int scbid)
6624 1.1 fvdl {
6625 1.1 fvdl u_int scb_offset;
6626 1.1 fvdl u_int saved_scbptr;
6627 1.1 fvdl
6628 1.1 fvdl scb_offset = ahd_index_busy_tcl(ahd, &saved_scbptr, tcl);
6629 1.1 fvdl ahd_outw(ahd, scb_offset, scbid);
6630 1.1 fvdl ahd_set_scbptr(ahd, saved_scbptr);
6631 1.1 fvdl }
6632 1.1 fvdl
6633 1.1 fvdl /************************** SCB and SCB queue management **********************/
6634 1.1 fvdl int
6635 1.1 fvdl ahd_match_scb(struct ahd_softc *ahd, struct scb *scb, int target,
6636 1.1 fvdl char channel, int lun, u_int tag, role_t role)
6637 1.1 fvdl {
6638 1.1 fvdl int targ = SCB_GET_TARGET(ahd, scb);
6639 1.1 fvdl char chan = SCB_GET_CHANNEL(ahd, scb);
6640 1.1 fvdl int slun = SCB_GET_LUN(scb);
6641 1.1 fvdl int match;
6642 1.1 fvdl
6643 1.1 fvdl match = ((chan == channel) || (channel == ALL_CHANNELS));
6644 1.1 fvdl if (match != 0)
6645 1.1 fvdl match = ((targ == target) || (target == CAM_TARGET_WILDCARD));
6646 1.1 fvdl if (match != 0)
6647 1.1 fvdl match = ((lun == slun) || (lun == CAM_LUN_WILDCARD));
6648 1.1 fvdl if (match != 0) {
6649 1.1 fvdl #if AHD_TARGET_MODE
6650 1.1 fvdl int group;
6651 1.1 fvdl
6652 1.1 fvdl group = XPT_FC_GROUP(scb->io_ctx->ccb_h.func_code);
6653 1.1 fvdl if (role == ROLE_INITIATOR) {
6654 1.1 fvdl match = (group != XPT_FC_GROUP_TMODE)
6655 1.1 fvdl && ((tag == SCB_GET_TAG(scb))
6656 1.1 fvdl || (tag == SCB_LIST_NULL));
6657 1.1 fvdl } else if (role == ROLE_TARGET) {
6658 1.1 fvdl match = (group == XPT_FC_GROUP_TMODE)
6659 1.1 fvdl && ((tag == scb->io_ctx->csio.tag_id)
6660 1.1 fvdl || (tag == SCB_LIST_NULL));
6661 1.1 fvdl }
6662 1.1 fvdl #else /* !AHD_TARGET_MODE */
6663 1.1 fvdl match = ((tag == SCB_GET_TAG(scb)) || (tag == SCB_LIST_NULL));
6664 1.1 fvdl #endif /* AHD_TARGET_MODE */
6665 1.1 fvdl }
6666 1.1 fvdl
6667 1.1 fvdl return match;
6668 1.1 fvdl }
6669 1.1 fvdl
6670 1.1 fvdl void
6671 1.1 fvdl ahd_freeze_devq(struct ahd_softc *ahd, struct scb *scb)
6672 1.1 fvdl {
6673 1.1 fvdl int target;
6674 1.1 fvdl char channel;
6675 1.1 fvdl int lun;
6676 1.1 fvdl
6677 1.1 fvdl target = SCB_GET_TARGET(ahd, scb);
6678 1.1 fvdl lun = SCB_GET_LUN(scb);
6679 1.1 fvdl channel = SCB_GET_CHANNEL(ahd, scb);
6680 1.1 fvdl
6681 1.1 fvdl ahd_search_qinfifo(ahd, target, channel, lun,
6682 1.1 fvdl /*tag*/SCB_LIST_NULL, ROLE_UNKNOWN,
6683 1.1 fvdl CAM_REQUEUE_REQ, SEARCH_COMPLETE);
6684 1.1 fvdl
6685 1.1 fvdl ahd_platform_freeze_devq(ahd, scb);
6686 1.1 fvdl }
6687 1.1 fvdl
6688 1.1 fvdl void
6689 1.1 fvdl ahd_qinfifo_requeue_tail(struct ahd_softc *ahd, struct scb *scb)
6690 1.1 fvdl {
6691 1.1 fvdl struct scb *prev_scb;
6692 1.1 fvdl ahd_mode_state saved_modes;
6693 1.1 fvdl
6694 1.1 fvdl saved_modes = ahd_save_modes(ahd);
6695 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN);
6696 1.1 fvdl prev_scb = NULL;
6697 1.1 fvdl if (ahd_qinfifo_count(ahd) != 0) {
6698 1.1 fvdl u_int prev_tag;
6699 1.1 fvdl u_int prev_pos;
6700 1.1 fvdl
6701 1.1 fvdl prev_pos = AHD_QIN_WRAP(ahd->qinfifonext - 1);
6702 1.1 fvdl prev_tag = ahd->qinfifo[prev_pos];
6703 1.1 fvdl prev_scb = ahd_lookup_scb(ahd, prev_tag);
6704 1.1 fvdl }
6705 1.1 fvdl ahd_qinfifo_requeue(ahd, prev_scb, scb);
6706 1.1 fvdl ahd_set_hnscb_qoff(ahd, ahd->qinfifonext);
6707 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
6708 1.1 fvdl }
6709 1.1 fvdl
6710 1.1 fvdl static void
6711 1.1 fvdl ahd_qinfifo_requeue(struct ahd_softc *ahd, struct scb *prev_scb,
6712 1.1 fvdl struct scb *scb)
6713 1.1 fvdl {
6714 1.1 fvdl if (prev_scb == NULL) {
6715 1.1 fvdl uint32_t busaddr;
6716 1.1 fvdl
6717 1.1 fvdl busaddr = ahd_le32toh(scb->hscb->hscb_busaddr);
6718 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 0, busaddr & 0xFF);
6719 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 1, (busaddr >> 8) & 0xFF);
6720 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 2, (busaddr >> 16) & 0xFF);
6721 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 3, (busaddr >> 24) & 0xFF);
6722 1.1 fvdl } else {
6723 1.1 fvdl prev_scb->hscb->next_hscb_busaddr = scb->hscb->hscb_busaddr;
6724 1.1 fvdl ahd_sync_scb(ahd, prev_scb,
6725 1.1 fvdl BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
6726 1.1 fvdl }
6727 1.1 fvdl ahd->qinfifo[AHD_QIN_WRAP(ahd->qinfifonext)] = SCB_GET_TAG(scb);
6728 1.1 fvdl ahd->qinfifonext++;
6729 1.1 fvdl scb->hscb->next_hscb_busaddr = ahd->next_queued_hscb->hscb_busaddr;
6730 1.1 fvdl ahd_sync_scb(ahd, scb, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
6731 1.1 fvdl }
6732 1.1 fvdl
6733 1.1 fvdl static int
6734 1.1 fvdl ahd_qinfifo_count(struct ahd_softc *ahd)
6735 1.1 fvdl {
6736 1.1 fvdl u_int qinpos;
6737 1.1 fvdl u_int wrap_qinpos;
6738 1.1 fvdl u_int wrap_qinfifonext;
6739 1.1 fvdl
6740 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_CCHAN_MSK, AHD_MODE_CCHAN_MSK);
6741 1.1 fvdl qinpos = ahd_get_snscb_qoff(ahd);
6742 1.1 fvdl wrap_qinpos = AHD_QIN_WRAP(qinpos);
6743 1.1 fvdl wrap_qinfifonext = AHD_QIN_WRAP(ahd->qinfifonext);
6744 1.1 fvdl if (wrap_qinfifonext >= wrap_qinpos)
6745 1.1 fvdl return (wrap_qinfifonext - wrap_qinpos);
6746 1.1 fvdl else
6747 1.1 fvdl return (wrap_qinfifonext
6748 1.1 fvdl + NUM_ELEMENTS(ahd->qinfifo) - wrap_qinpos);
6749 1.1 fvdl }
6750 1.1 fvdl
6751 1.1 fvdl void
6752 1.1 fvdl ahd_reset_cmds_pending(struct ahd_softc *ahd)
6753 1.1 fvdl {
6754 1.1 fvdl struct scb *scb;
6755 1.1 fvdl ahd_mode_state saved_modes;
6756 1.1 fvdl u_int pending_cmds;
6757 1.1 fvdl
6758 1.1 fvdl saved_modes = ahd_save_modes(ahd);
6759 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN);
6760 1.1 fvdl
6761 1.1 fvdl /*
6762 1.1 fvdl * Don't count any commands as outstanding that the
6763 1.1 fvdl * sequencer has already marked for completion.
6764 1.1 fvdl */
6765 1.1 fvdl ahd_flush_qoutfifo(ahd);
6766 1.1 fvdl
6767 1.1 fvdl pending_cmds = 0;
6768 1.1 fvdl LIST_FOREACH(scb, &ahd->pending_scbs, pending_links) {
6769 1.1 fvdl pending_cmds++;
6770 1.1 fvdl }
6771 1.1 fvdl ahd_outw(ahd, CMDS_PENDING, pending_cmds - ahd_qinfifo_count(ahd));
6772 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
6773 1.1 fvdl ahd->flags &= ~AHD_UPDATE_PEND_CMDS;
6774 1.1 fvdl }
6775 1.1 fvdl
6776 1.1 fvdl int
6777 1.1 fvdl ahd_search_qinfifo(struct ahd_softc *ahd, int target, char channel,
6778 1.1 fvdl int lun, u_int tag, role_t role, uint32_t status,
6779 1.1 fvdl ahd_search_action action)
6780 1.1 fvdl {
6781 1.1 fvdl struct scb *scb;
6782 1.1 fvdl struct scb *prev_scb;
6783 1.1 fvdl ahd_mode_state saved_modes;
6784 1.1 fvdl u_int qinstart;
6785 1.1 fvdl u_int qinpos;
6786 1.1 fvdl u_int qintail;
6787 1.1 fvdl u_int tid_next;
6788 1.1 fvdl u_int tid_prev;
6789 1.1 fvdl u_int scbid;
6790 1.1 fvdl u_int savedscbptr;
6791 1.1 fvdl uint32_t busaddr;
6792 1.1 fvdl int found;
6793 1.1 fvdl int targets;
6794 1.1 fvdl int pending_cmds;
6795 1.1 fvdl int qincount;
6796 1.1 fvdl
6797 1.1 fvdl /* Must be in CCHAN mode */
6798 1.1 fvdl saved_modes = ahd_save_modes(ahd);
6799 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN);
6800 1.1 fvdl
6801 1.1 fvdl /*
6802 1.1 fvdl * Halt any pending SCB DMA. The sequencer will reinitiate
6803 1.4 wiz * this DMA if the qinfifo is not empty once we unpause.
6804 1.1 fvdl */
6805 1.1 fvdl if ((ahd_inb(ahd, CCSCBCTL) & (CCARREN|CCSCBEN|CCSCBDIR))
6806 1.1 fvdl == (CCARREN|CCSCBEN|CCSCBDIR)) {
6807 1.1 fvdl ahd_outb(ahd, CCSCBCTL,
6808 1.1 fvdl ahd_inb(ahd, CCSCBCTL) & ~(CCARREN|CCSCBEN));
6809 1.1 fvdl while ((ahd_inb(ahd, CCSCBCTL) & (CCARREN|CCSCBEN)) != 0)
6810 1.1 fvdl ;
6811 1.1 fvdl }
6812 1.1 fvdl /* Determine sequencer's position in the qinfifo. */
6813 1.1 fvdl qintail = AHD_QIN_WRAP(ahd->qinfifonext);
6814 1.1 fvdl qinstart = ahd_get_snscb_qoff(ahd);
6815 1.1 fvdl qinpos = AHD_QIN_WRAP(qinstart);
6816 1.1 fvdl found = 0;
6817 1.1 fvdl prev_scb = NULL;
6818 1.1 fvdl
6819 1.1 fvdl pending_cmds = 0;
6820 1.1 fvdl LIST_FOREACH(scb, &ahd->pending_scbs, pending_links) {
6821 1.1 fvdl pending_cmds++;
6822 1.1 fvdl }
6823 1.1 fvdl qincount = ahd_qinfifo_count(ahd);
6824 1.1 fvdl
6825 1.1 fvdl if (action == SEARCH_PRINT) {
6826 1.1 fvdl printf("qinstart = 0x%x qinfifonext = 0x%x\n",
6827 1.1 fvdl qinstart, ahd->qinfifonext);
6828 1.1 fvdl }
6829 1.1 fvdl
6830 1.1 fvdl /*
6831 1.1 fvdl * Start with an empty queue. Entries that are not chosen
6832 1.1 fvdl * for removal will be re-added to the queue as we go.
6833 1.1 fvdl */
6834 1.1 fvdl ahd->qinfifonext = qinstart;
6835 1.1 fvdl busaddr = ahd_le32toh(ahd->next_queued_hscb->hscb_busaddr);
6836 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 0, busaddr & 0xFF);
6837 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 1, (busaddr >> 8) & 0xFF);
6838 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 2, (busaddr >> 16) & 0xFF);
6839 1.1 fvdl ahd_outb(ahd, NEXT_QUEUED_SCB_ADDR + 3, (busaddr >> 24) & 0xFF);
6840 1.1 fvdl
6841 1.1 fvdl while (qinpos != qintail) {
6842 1.1 fvdl scb = ahd_lookup_scb(ahd, ahd->qinfifo[qinpos]);
6843 1.1 fvdl if (scb == NULL) {
6844 1.1 fvdl panic("Loop 1\n");
6845 1.1 fvdl }
6846 1.1 fvdl
6847 1.1 fvdl if (ahd_match_scb(ahd, scb, target, channel, lun, tag, role)) {
6848 1.1 fvdl /*
6849 1.1 fvdl * We found an scb that needs to be acted on.
6850 1.1 fvdl */
6851 1.1 fvdl found++;
6852 1.1 fvdl switch (action) {
6853 1.1 fvdl case SEARCH_COMPLETE:
6854 1.1 fvdl {
6855 1.1 fvdl cam_status ostat;
6856 1.1 fvdl cam_status cstat;
6857 1.1 fvdl
6858 1.1 fvdl ostat = ahd_get_scsi_status(scb);
6859 1.1 fvdl if (ostat == CAM_REQ_INPROG)
6860 1.1 fvdl ahd_set_scsi_status(scb, status);
6861 1.1 fvdl cstat = ahd_get_transaction_status(scb);
6862 1.1 fvdl if (cstat != CAM_REQ_CMP)
6863 1.1 fvdl ahd_freeze_scb(scb);
6864 1.1 fvdl if ((scb->flags & SCB_ACTIVE) == 0)
6865 1.1 fvdl printf("Inactive SCB in qinfifo\n");
6866 1.1 fvdl if (scb->xs->error != CAM_REQ_CMP)
6867 1.1 fvdl printf("SEARCH_COMPLETE(0x%x): ostat 0x%x, cstat 0x%x, xs_error 0x%x\n",
6868 1.1 fvdl SCB_GET_TAG(scb), ostat, cstat, scb->xs->error);
6869 1.1 fvdl ahd_done(ahd, scb);
6870 1.1 fvdl
6871 1.1 fvdl /* FALLTHROUGH */
6872 1.1 fvdl }
6873 1.1 fvdl case SEARCH_REMOVE:
6874 1.1 fvdl break;
6875 1.1 fvdl case SEARCH_PRINT:
6876 1.1 fvdl printf(" 0x%x", ahd->qinfifo[qinpos]);
6877 1.1 fvdl /* FALLTHROUGH */
6878 1.1 fvdl case SEARCH_COUNT:
6879 1.1 fvdl ahd_qinfifo_requeue(ahd, prev_scb, scb);
6880 1.1 fvdl prev_scb = scb;
6881 1.1 fvdl break;
6882 1.1 fvdl }
6883 1.1 fvdl } else {
6884 1.1 fvdl ahd_qinfifo_requeue(ahd, prev_scb, scb);
6885 1.1 fvdl prev_scb = scb;
6886 1.1 fvdl }
6887 1.1 fvdl qinpos = AHD_QIN_WRAP(qinpos+1);
6888 1.1 fvdl }
6889 1.1 fvdl
6890 1.1 fvdl ahd_set_hnscb_qoff(ahd, ahd->qinfifonext);
6891 1.1 fvdl
6892 1.1 fvdl if (action == SEARCH_PRINT)
6893 1.1 fvdl printf("\nWAITING_TID_QUEUES:\n");
6894 1.1 fvdl
6895 1.1 fvdl /*
6896 1.1 fvdl * Search waiting for selection lists. We traverse the
6897 1.1 fvdl * list of "their ids" waiting for selection and, if
6898 1.1 fvdl * appropriate, traverse the SCBs of each "their id"
6899 1.1 fvdl * looking for matches.
6900 1.1 fvdl */
6901 1.1 fvdl savedscbptr = ahd_get_scbptr(ahd);
6902 1.1 fvdl tid_next = ahd_inw(ahd, WAITING_TID_HEAD);
6903 1.1 fvdl tid_prev = SCB_LIST_NULL;
6904 1.1 fvdl targets = 0;
6905 1.1 fvdl for (scbid = tid_next; !SCBID_IS_NULL(scbid); scbid = tid_next) {
6906 1.1 fvdl u_int tid_head;
6907 1.1 fvdl
6908 1.1 fvdl /*
6909 1.1 fvdl * We limit based on the number of SCBs since
6910 1.1 fvdl * MK_MESSAGE SCBs are not in the per-tid lists.
6911 1.1 fvdl */
6912 1.1 fvdl targets++;
6913 1.1 fvdl if (targets > AHD_SCB_MAX) {
6914 1.1 fvdl panic("TID LIST LOOP");
6915 1.1 fvdl }
6916 1.1 fvdl if (scbid >= ahd->scb_data.numscbs) {
6917 1.1 fvdl printf("%s: Waiting TID List inconsistency. "
6918 1.1 fvdl "SCB index == 0x%x, yet numscbs == 0x%x.",
6919 1.1 fvdl ahd_name(ahd), scbid, ahd->scb_data.numscbs);
6920 1.1 fvdl ahd_dump_card_state(ahd);
6921 1.1 fvdl panic("for safety");
6922 1.1 fvdl }
6923 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
6924 1.1 fvdl if (scb == NULL) {
6925 1.1 fvdl printf("%s: SCB = 0x%x Not Active!\n",
6926 1.1 fvdl ahd_name(ahd), scbid);
6927 1.1 fvdl panic("Waiting TID List traversal\n");
6928 1.1 fvdl break;
6929 1.1 fvdl }
6930 1.1 fvdl ahd_set_scbptr(ahd, scbid);
6931 1.1 fvdl tid_next = ahd_inw_scbram(ahd, SCB_NEXT2);
6932 1.1 fvdl if (ahd_match_scb(ahd, scb, target, channel, CAM_LUN_WILDCARD,
6933 1.1 fvdl SCB_LIST_NULL, ROLE_UNKNOWN) == 0) {
6934 1.1 fvdl tid_prev = scbid;
6935 1.1 fvdl continue;
6936 1.1 fvdl }
6937 1.1 fvdl
6938 1.1 fvdl /*
6939 1.1 fvdl * We found a list of scbs that needs to be searched.
6940 1.1 fvdl */
6941 1.1 fvdl if (action == SEARCH_PRINT)
6942 1.1 fvdl printf(" %d ( ", SCB_GET_TARGET(ahd, scb));
6943 1.1 fvdl tid_head = scbid;
6944 1.1 fvdl found += ahd_search_scb_list(ahd, target, channel,
6945 1.1 fvdl lun, tag, role, status,
6946 1.1 fvdl action, &tid_head,
6947 1.1 fvdl SCB_GET_TARGET(ahd, scb));
6948 1.1 fvdl if (tid_head != scbid)
6949 1.1 fvdl ahd_stitch_tid_list(ahd, tid_prev, tid_head, tid_next);
6950 1.1 fvdl if (!SCBID_IS_NULL(tid_head))
6951 1.1 fvdl tid_prev = tid_head;
6952 1.1 fvdl if (action == SEARCH_PRINT)
6953 1.1 fvdl printf(")\n");
6954 1.1 fvdl }
6955 1.1 fvdl ahd_set_scbptr(ahd, savedscbptr);
6956 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
6957 1.1 fvdl return (found);
6958 1.1 fvdl }
6959 1.1 fvdl
6960 1.1 fvdl static int
6961 1.1 fvdl ahd_search_scb_list(struct ahd_softc *ahd, int target, char channel,
6962 1.1 fvdl int lun, u_int tag, role_t role, uint32_t status,
6963 1.1 fvdl ahd_search_action action, u_int *list_head, u_int tid)
6964 1.1 fvdl {
6965 1.1 fvdl struct scb *scb;
6966 1.1 fvdl u_int scbid;
6967 1.1 fvdl u_int next;
6968 1.1 fvdl u_int prev;
6969 1.1 fvdl int found;
6970 1.1 fvdl
6971 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_CCHAN_MSK, AHD_MODE_CCHAN_MSK);
6972 1.1 fvdl found = 0;
6973 1.1 fvdl prev = SCB_LIST_NULL;
6974 1.1 fvdl next = *list_head;
6975 1.1 fvdl for (scbid = next; !SCBID_IS_NULL(scbid); scbid = next) {
6976 1.1 fvdl if (scbid >= ahd->scb_data.numscbs) {
6977 1.1 fvdl printf("%s:SCB List inconsistency. "
6978 1.1 fvdl "SCB == 0x%x, yet numscbs == 0x%x.",
6979 1.1 fvdl ahd_name(ahd), scbid, ahd->scb_data.numscbs);
6980 1.1 fvdl ahd_dump_card_state(ahd);
6981 1.1 fvdl panic("for safety");
6982 1.1 fvdl }
6983 1.1 fvdl scb = ahd_lookup_scb(ahd, scbid);
6984 1.1 fvdl if (scb == NULL) {
6985 1.1 fvdl printf("%s: SCB = %d Not Active!\n",
6986 1.1 fvdl ahd_name(ahd), scbid);
6987 1.1 fvdl panic("Waiting List traversal\n");
6988 1.1 fvdl }
6989 1.1 fvdl ahd_set_scbptr(ahd, scbid);
6990 1.1 fvdl next = ahd_inw_scbram(ahd, SCB_NEXT);
6991 1.1 fvdl if (ahd_match_scb(ahd, scb, target, channel,
6992 1.1 fvdl lun, SCB_LIST_NULL, role) == 0) {
6993 1.1 fvdl prev = scbid;
6994 1.1 fvdl continue;
6995 1.1 fvdl }
6996 1.1 fvdl found++;
6997 1.1 fvdl switch (action) {
6998 1.1 fvdl case SEARCH_COMPLETE:
6999 1.1 fvdl {
7000 1.1 fvdl cam_status ostat;
7001 1.1 fvdl cam_status cstat;
7002 1.1 fvdl
7003 1.1 fvdl ostat = ahd_get_scsi_status(scb);
7004 1.1 fvdl if (ostat == CAM_REQ_INPROG)
7005 1.1 fvdl ahd_set_scsi_status(scb, status);
7006 1.1 fvdl cstat = ahd_get_transaction_status(scb);
7007 1.1 fvdl if (cstat != CAM_REQ_CMP)
7008 1.1 fvdl ahd_freeze_scb(scb);
7009 1.1 fvdl if ((scb->flags & SCB_ACTIVE) == 0)
7010 1.1 fvdl printf("Inactive SCB in Waiting List\n");
7011 1.1 fvdl ahd_done(ahd, scb);
7012 1.1 fvdl /* FALLTHROUGH */
7013 1.1 fvdl }
7014 1.1 fvdl case SEARCH_REMOVE:
7015 1.1 fvdl ahd_rem_wscb(ahd, scbid, prev, next, tid);
7016 1.1 fvdl if (prev == SCB_LIST_NULL)
7017 1.1 fvdl *list_head = next;
7018 1.1 fvdl break;
7019 1.1 fvdl case SEARCH_PRINT:
7020 1.1 fvdl printf("0x%x ", scbid);
7021 1.1 fvdl case SEARCH_COUNT:
7022 1.1 fvdl prev = scbid;
7023 1.1 fvdl break;
7024 1.1 fvdl }
7025 1.1 fvdl if (found > AHD_SCB_MAX)
7026 1.1 fvdl panic("SCB LIST LOOP");
7027 1.1 fvdl }
7028 1.1 fvdl if (action == SEARCH_COMPLETE
7029 1.1 fvdl || action == SEARCH_REMOVE)
7030 1.1 fvdl ahd_outw(ahd, CMDS_PENDING, ahd_inw(ahd, CMDS_PENDING) - found);
7031 1.1 fvdl return (found);
7032 1.1 fvdl }
7033 1.1 fvdl
7034 1.1 fvdl static void
7035 1.1 fvdl ahd_stitch_tid_list(struct ahd_softc *ahd, u_int tid_prev,
7036 1.1 fvdl u_int tid_cur, u_int tid_next)
7037 1.1 fvdl {
7038 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_CCHAN_MSK, AHD_MODE_CCHAN_MSK);
7039 1.1 fvdl
7040 1.1 fvdl if (SCBID_IS_NULL(tid_cur)) {
7041 1.1 fvdl
7042 1.1 fvdl /* Bypass current TID list */
7043 1.1 fvdl if (SCBID_IS_NULL(tid_prev)) {
7044 1.1 fvdl ahd_outw(ahd, WAITING_TID_HEAD, tid_next);
7045 1.1 fvdl } else {
7046 1.1 fvdl ahd_set_scbptr(ahd, tid_prev);
7047 1.1 fvdl ahd_outw(ahd, SCB_NEXT2, tid_next);
7048 1.1 fvdl }
7049 1.1 fvdl if (SCBID_IS_NULL(tid_next))
7050 1.1 fvdl ahd_outw(ahd, WAITING_TID_TAIL, tid_prev);
7051 1.1 fvdl } else {
7052 1.1 fvdl
7053 1.1 fvdl /* Stitch through tid_cur */
7054 1.1 fvdl if (SCBID_IS_NULL(tid_prev)) {
7055 1.1 fvdl ahd_outw(ahd, WAITING_TID_HEAD, tid_cur);
7056 1.1 fvdl } else {
7057 1.1 fvdl ahd_set_scbptr(ahd, tid_prev);
7058 1.1 fvdl ahd_outw(ahd, SCB_NEXT2, tid_cur);
7059 1.1 fvdl }
7060 1.1 fvdl ahd_set_scbptr(ahd, tid_cur);
7061 1.1 fvdl ahd_outw(ahd, SCB_NEXT2, tid_next);
7062 1.1 fvdl
7063 1.1 fvdl if (SCBID_IS_NULL(tid_next))
7064 1.1 fvdl ahd_outw(ahd, WAITING_TID_TAIL, tid_cur);
7065 1.1 fvdl }
7066 1.1 fvdl }
7067 1.1 fvdl
7068 1.1 fvdl /*
7069 1.1 fvdl * Manipulate the waiting for selection list and return the
7070 1.1 fvdl * scb that follows the one that we remove.
7071 1.1 fvdl */
7072 1.1 fvdl static u_int
7073 1.1 fvdl ahd_rem_wscb(struct ahd_softc *ahd, u_int scbid,
7074 1.1 fvdl u_int prev, u_int next, u_int tid)
7075 1.1 fvdl {
7076 1.1 fvdl u_int tail_offset;
7077 1.1 fvdl
7078 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_CCHAN_MSK, AHD_MODE_CCHAN_MSK);
7079 1.1 fvdl if (!SCBID_IS_NULL(prev)) {
7080 1.1 fvdl ahd_set_scbptr(ahd, prev);
7081 1.1 fvdl ahd_outw(ahd, SCB_NEXT, next);
7082 1.1 fvdl }
7083 1.1 fvdl
7084 1.1 fvdl /*
7085 1.1 fvdl * SCBs that had MK_MESSAGE set in them will not
7086 1.1 fvdl * be queued to the per-target lists, so don't
7087 1.1 fvdl * blindly clear the tail pointer.
7088 1.1 fvdl */
7089 1.1 fvdl tail_offset = WAITING_SCB_TAILS + (2 * tid);
7090 1.1 fvdl if (SCBID_IS_NULL(next)
7091 1.1 fvdl && ahd_inw(ahd, tail_offset) == scbid)
7092 1.1 fvdl ahd_outw(ahd, tail_offset, prev);
7093 1.1 fvdl ahd_add_scb_to_free_list(ahd, scbid);
7094 1.1 fvdl return (next);
7095 1.1 fvdl }
7096 1.1 fvdl
7097 1.1 fvdl /*
7098 1.1 fvdl * Add the SCB as selected by SCBPTR onto the on chip list of
7099 1.1 fvdl * free hardware SCBs. This list is empty/unused if we are not
7100 1.1 fvdl * performing SCB paging.
7101 1.1 fvdl */
7102 1.1 fvdl static void
7103 1.1 fvdl ahd_add_scb_to_free_list(struct ahd_softc *ahd, u_int scbid)
7104 1.1 fvdl {
7105 1.1 fvdl /* XXX Need some other mechanism to designate "free". */
7106 1.1 fvdl /*
7107 1.1 fvdl * Invalidate the tag so that our abort
7108 1.1 fvdl * routines don't think it's active.
7109 1.1 fvdl ahd_outb(ahd, SCB_TAG, SCB_LIST_NULL);
7110 1.1 fvdl */
7111 1.1 fvdl }
7112 1.1 fvdl
7113 1.1 fvdl /******************************** Error Handling ******************************/
7114 1.1 fvdl /*
7115 1.1 fvdl * Abort all SCBs that match the given description (target/channel/lun/tag),
7116 1.1 fvdl * setting their status to the passed in status if the status has not already
7117 1.1 fvdl * been modified from CAM_REQ_INPROG. This routine assumes that the sequencer
7118 1.1 fvdl * is paused before it is called.
7119 1.1 fvdl */
7120 1.1 fvdl int
7121 1.1 fvdl ahd_abort_scbs(struct ahd_softc *ahd, int target, char channel,
7122 1.1 fvdl int lun, u_int tag, role_t role, uint32_t status)
7123 1.1 fvdl {
7124 1.1 fvdl struct scb *scbp;
7125 1.1 fvdl struct scb *scbp_next;
7126 1.1 fvdl u_int i, j;
7127 1.1 fvdl u_int maxtarget;
7128 1.1 fvdl u_int minlun;
7129 1.1 fvdl u_int maxlun;
7130 1.1 fvdl int found;
7131 1.1 fvdl ahd_mode_state saved_modes;
7132 1.1 fvdl
7133 1.9 thorpej /* restore this when we're done */
7134 1.1 fvdl saved_modes = ahd_save_modes(ahd);
7135 1.9 thorpej ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
7136 1.1 fvdl
7137 1.1 fvdl found = ahd_search_qinfifo(ahd, target, channel, lun, SCB_LIST_NULL,
7138 1.1 fvdl role, CAM_REQUEUE_REQ, SEARCH_COMPLETE);
7139 1.1 fvdl
7140 1.1 fvdl /*
7141 1.1 fvdl * Clean out the busy target table for any untagged commands.
7142 1.1 fvdl */
7143 1.1 fvdl i = 0;
7144 1.1 fvdl maxtarget = 16;
7145 1.1 fvdl if (target != CAM_TARGET_WILDCARD) {
7146 1.1 fvdl i = target;
7147 1.1 fvdl if (channel == 'B')
7148 1.1 fvdl i += 8;
7149 1.1 fvdl maxtarget = i + 1;
7150 1.1 fvdl }
7151 1.1 fvdl
7152 1.1 fvdl if (lun == CAM_LUN_WILDCARD) {
7153 1.1 fvdl minlun = 0;
7154 1.1 fvdl maxlun = AHD_NUM_LUNS_NONPKT;
7155 1.1 fvdl } else if (lun >= AHD_NUM_LUNS_NONPKT) {
7156 1.1 fvdl minlun = maxlun = 0;
7157 1.1 fvdl } else {
7158 1.1 fvdl minlun = lun;
7159 1.1 fvdl maxlun = lun + 1;
7160 1.1 fvdl }
7161 1.1 fvdl
7162 1.1 fvdl if (role != ROLE_TARGET) {
7163 1.1 fvdl for (;i < maxtarget; i++) {
7164 1.1 fvdl for (j = minlun;j < maxlun; j++) {
7165 1.1 fvdl u_int scbid;
7166 1.1 fvdl u_int tcl;
7167 1.1 fvdl
7168 1.1 fvdl tcl = BUILD_TCL_RAW(i, 'A', j);
7169 1.1 fvdl scbid = ahd_find_busy_tcl(ahd, tcl);
7170 1.1 fvdl scbp = ahd_lookup_scb(ahd, scbid);
7171 1.1 fvdl if (scbp == NULL
7172 1.1 fvdl || ahd_match_scb(ahd, scbp, target, channel,
7173 1.1 fvdl lun, tag, role) == 0)
7174 1.1 fvdl continue;
7175 1.1 fvdl ahd_unbusy_tcl(ahd, BUILD_TCL_RAW(i, 'A', j));
7176 1.1 fvdl }
7177 1.1 fvdl }
7178 1.1 fvdl }
7179 1.1 fvdl
7180 1.1 fvdl /*
7181 1.1 fvdl * Don't abort commands that have already completed,
7182 1.1 fvdl * but haven't quite made it up to the host yet.
7183 1.1 fvdl */
7184 1.1 fvdl ahd_flush_qoutfifo(ahd);
7185 1.1 fvdl
7186 1.1 fvdl /*
7187 1.1 fvdl * Go through the pending CCB list and look for
7188 1.1 fvdl * commands for this target that are still active.
7189 1.1 fvdl * These are other tagged commands that were
7190 1.1 fvdl * disconnected when the reset occurred.
7191 1.1 fvdl */
7192 1.1 fvdl scbp_next = LIST_FIRST(&ahd->pending_scbs);
7193 1.1 fvdl while (scbp_next != NULL) {
7194 1.1 fvdl scbp = scbp_next;
7195 1.1 fvdl scbp_next = LIST_NEXT(scbp, pending_links);
7196 1.1 fvdl if (ahd_match_scb(ahd, scbp, target, channel, lun, tag, role)) {
7197 1.1 fvdl cam_status ostat;
7198 1.1 fvdl
7199 1.1 fvdl ostat = ahd_get_scsi_status(scbp);
7200 1.1 fvdl if (ostat == CAM_REQ_INPROG)
7201 1.1 fvdl ahd_set_scsi_status(scbp, status);
7202 1.1 fvdl if (ahd_get_transaction_status(scbp) != CAM_REQ_CMP)
7203 1.1 fvdl ahd_freeze_scb(scbp);
7204 1.1 fvdl if ((scbp->flags & SCB_ACTIVE) == 0)
7205 1.1 fvdl printf("Inactive SCB on pending list\n");
7206 1.1 fvdl ahd_done(ahd, scbp);
7207 1.1 fvdl found++;
7208 1.1 fvdl }
7209 1.1 fvdl }
7210 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
7211 1.1 fvdl ahd_platform_abort_scbs(ahd, target, channel, lun, tag, role, status);
7212 1.1 fvdl ahd->flags |= AHD_UPDATE_PEND_CMDS;
7213 1.1 fvdl return found;
7214 1.1 fvdl }
7215 1.1 fvdl
7216 1.1 fvdl static void
7217 1.1 fvdl ahd_reset_current_bus(struct ahd_softc *ahd)
7218 1.1 fvdl {
7219 1.1 fvdl uint8_t scsiseq;
7220 1.1 fvdl
7221 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
7222 1.1 fvdl ahd_outb(ahd, SIMODE1, ahd_inb(ahd, SIMODE1) & ~ENSCSIRST);
7223 1.1 fvdl scsiseq = ahd_inb(ahd, SCSISEQ0) & ~(ENSELO|ENARBO|SCSIRSTO);
7224 1.1 fvdl ahd_outb(ahd, SCSISEQ0, scsiseq | SCSIRSTO);
7225 1.19 thorpej ahd_flush_device_writes(ahd);
7226 1.1 fvdl ahd_delay(AHD_BUSRESET_DELAY);
7227 1.1 fvdl /* Turn off the bus reset */
7228 1.1 fvdl ahd_outb(ahd, SCSISEQ0, scsiseq);
7229 1.19 thorpej ahd_flush_device_writes(ahd);
7230 1.19 thorpej ahd_delay(AHD_BUSRESET_DELAY);
7231 1.1 fvdl if ((ahd->bugs & AHD_SCSIRST_BUG) != 0) {
7232 1.1 fvdl /*
7233 1.1 fvdl * 2A Razor #474
7234 1.1 fvdl * Certain chip state is not cleared for
7235 1.1 fvdl * SCSI bus resets that we initiate, so
7236 1.1 fvdl * we must reset the chip.
7237 1.1 fvdl */
7238 1.15 thorpej ahd_reset(ahd, /*reinit*/TRUE);
7239 1.1 fvdl ahd_intr_enable(ahd, /*enable*/TRUE);
7240 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
7241 1.1 fvdl }
7242 1.1 fvdl
7243 1.1 fvdl ahd_clear_intstat(ahd);
7244 1.1 fvdl }
7245 1.1 fvdl
7246 1.1 fvdl int
7247 1.1 fvdl ahd_reset_channel(struct ahd_softc *ahd, char channel, int initiate_reset)
7248 1.1 fvdl {
7249 1.1 fvdl struct ahd_devinfo devinfo;
7250 1.1 fvdl u_int initiator;
7251 1.1 fvdl u_int target;
7252 1.1 fvdl u_int max_scsiid;
7253 1.1 fvdl int found;
7254 1.1 fvdl u_int fifo;
7255 1.1 fvdl u_int next_fifo;
7256 1.1 fvdl
7257 1.1 fvdl
7258 1.1 fvdl ahd->pending_device = NULL;
7259 1.1 fvdl
7260 1.1 fvdl ahd_compile_devinfo(&devinfo,
7261 1.1 fvdl CAM_TARGET_WILDCARD,
7262 1.1 fvdl CAM_TARGET_WILDCARD,
7263 1.1 fvdl CAM_LUN_WILDCARD,
7264 1.1 fvdl channel, ROLE_UNKNOWN);
7265 1.1 fvdl ahd_pause(ahd);
7266 1.1 fvdl
7267 1.1 fvdl /* Make sure the sequencer is in a safe location. */
7268 1.1 fvdl ahd_clear_critical_section(ahd);
7269 1.1 fvdl
7270 1.1 fvdl #if AHD_TARGET_MODE
7271 1.1 fvdl if ((ahd->flags & AHD_TARGETROLE) != 0) {
7272 1.1 fvdl ahd_run_tqinfifo(ahd, /*paused*/TRUE);
7273 1.1 fvdl }
7274 1.1 fvdl #endif
7275 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
7276 1.1 fvdl
7277 1.1 fvdl /*
7278 1.1 fvdl * Disable selections so no automatic hardware
7279 1.1 fvdl * functions will modify chip state.
7280 1.1 fvdl */
7281 1.1 fvdl ahd_outb(ahd, SCSISEQ0, 0);
7282 1.1 fvdl ahd_outb(ahd, SCSISEQ1, 0);
7283 1.1 fvdl
7284 1.1 fvdl /*
7285 1.1 fvdl * Safely shut down our DMA engines. Always start with
7286 1.1 fvdl * the FIFO that is not currently active (if any are
7287 1.1 fvdl * actively connected).
7288 1.1 fvdl */
7289 1.1 fvdl next_fifo = fifo = ahd_inb(ahd, DFFSTAT) & CURRFIFO;
7290 1.1 fvdl if (next_fifo > CURRFIFO_1)
7291 1.1 fvdl /* If disconneced, arbitrarily start with FIFO1. */
7292 1.1 fvdl next_fifo = fifo = 0;
7293 1.1 fvdl do {
7294 1.1 fvdl next_fifo ^= CURRFIFO_1;
7295 1.1 fvdl ahd_set_modes(ahd, next_fifo, next_fifo);
7296 1.1 fvdl ahd_outb(ahd, DFCNTRL,
7297 1.1 fvdl ahd_inb(ahd, DFCNTRL) & ~(SCSIEN|HDMAEN));
7298 1.1 fvdl while ((ahd_inb(ahd, DFCNTRL) & HDMAENACK) != 0)
7299 1.1 fvdl ahd_delay(10);
7300 1.1 fvdl /*
7301 1.1 fvdl * Set CURRFIFO to the now inactive channel.
7302 1.1 fvdl */
7303 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
7304 1.1 fvdl ahd_outb(ahd, DFFSTAT, next_fifo);
7305 1.1 fvdl } while (next_fifo != fifo);
7306 1.9 thorpej
7307 1.1 fvdl /*
7308 1.1 fvdl * Reset the bus if we are initiating this reset
7309 1.1 fvdl */
7310 1.1 fvdl ahd_clear_msg_state(ahd);
7311 1.1 fvdl ahd_outb(ahd, SIMODE1,
7312 1.1 fvdl ahd_inb(ahd, SIMODE1) & ~(ENBUSFREE|ENSCSIRST|ENBUSFREE));
7313 1.9 thorpej
7314 1.1 fvdl if (initiate_reset)
7315 1.1 fvdl ahd_reset_current_bus(ahd);
7316 1.9 thorpej
7317 1.1 fvdl ahd_clear_intstat(ahd);
7318 1.1 fvdl
7319 1.1 fvdl /*
7320 1.1 fvdl * Clean up all the state information for the
7321 1.1 fvdl * pending transactions on this bus.
7322 1.1 fvdl */
7323 1.1 fvdl found = ahd_abort_scbs(ahd, CAM_TARGET_WILDCARD, channel,
7324 1.1 fvdl CAM_LUN_WILDCARD, SCB_LIST_NULL,
7325 1.1 fvdl ROLE_UNKNOWN, CAM_SCSI_BUS_RESET);
7326 1.1 fvdl
7327 1.1 fvdl /*
7328 1.1 fvdl * Cleanup anything left in the FIFOs.
7329 1.1 fvdl */
7330 1.1 fvdl ahd_clear_fifo(ahd, 0);
7331 1.1 fvdl ahd_clear_fifo(ahd, 1);
7332 1.1 fvdl
7333 1.1 fvdl /*
7334 1.1 fvdl * Revert to async/narrow transfers until we renegotiate.
7335 1.1 fvdl */
7336 1.1 fvdl max_scsiid = (ahd->features & AHD_WIDE) ? 15 : 7;
7337 1.1 fvdl for (target = 0; target <= max_scsiid; target++) {
7338 1.1 fvdl
7339 1.1 fvdl if (ahd->enabled_targets[target] == NULL)
7340 1.1 fvdl continue;
7341 1.1 fvdl for (initiator = 0; initiator <= max_scsiid; initiator++) {
7342 1.1 fvdl struct ahd_devinfo devinfo;
7343 1.1 fvdl
7344 1.1 fvdl ahd_compile_devinfo(&devinfo, target, initiator,
7345 1.1 fvdl CAM_LUN_WILDCARD,
7346 1.1 fvdl 'A', ROLE_UNKNOWN);
7347 1.1 fvdl ahd_set_width(ahd, &devinfo, MSG_EXT_WDTR_BUS_8_BIT,
7348 1.1 fvdl AHD_TRANS_CUR, /*paused*/TRUE);
7349 1.1 fvdl ahd_set_syncrate(ahd, &devinfo, /*period*/0,
7350 1.1 fvdl /*offset*/0, /*ppr_options*/0,
7351 1.1 fvdl AHD_TRANS_CUR, /*paused*/TRUE);
7352 1.1 fvdl }
7353 1.1 fvdl }
7354 1.1 fvdl
7355 1.1 fvdl #ifdef AHD_TARGET_MODE
7356 1.1 fvdl max_scsiid = (ahd->features & AHD_WIDE) ? 15 : 7;
7357 1.1 fvdl
7358 1.1 fvdl /*
7359 1.1 fvdl * Send an immediate notify ccb to all target more peripheral
7360 1.1 fvdl * drivers affected by this action.
7361 1.1 fvdl */
7362 1.1 fvdl for (target = 0; target <= max_scsiid; target++) {
7363 1.1 fvdl struct ahd_tmode_tstate* tstate;
7364 1.1 fvdl u_int lun;
7365 1.1 fvdl
7366 1.1 fvdl tstate = ahd->enabled_targets[target];
7367 1.1 fvdl if (tstate == NULL)
7368 1.1 fvdl continue;
7369 1.1 fvdl for (lun = 0; lun < AHD_NUM_LUNS; lun++) {
7370 1.1 fvdl struct ahd_tmode_lstate* lstate;
7371 1.1 fvdl
7372 1.1 fvdl lstate = tstate->enabled_luns[lun];
7373 1.1 fvdl if (lstate == NULL)
7374 1.1 fvdl continue;
7375 1.1 fvdl
7376 1.1 fvdl ahd_queue_lstate_event(ahd, lstate, CAM_TARGET_WILDCARD,
7377 1.1 fvdl EVENT_TYPE_BUS_RESET, /*arg*/0);
7378 1.1 fvdl ahd_send_lstate_events(ahd, lstate);
7379 1.1 fvdl }
7380 1.1 fvdl }
7381 1.1 fvdl #endif
7382 1.1 fvdl
7383 1.1 fvdl /* Notify the XPT that a bus reset occurred */
7384 1.1 fvdl ahd_send_async(ahd, devinfo.channel, CAM_TARGET_WILDCARD,
7385 1.1 fvdl CAM_LUN_WILDCARD, AC_BUS_RESET, NULL);
7386 1.1 fvdl ahd_restart(ahd);
7387 1.1 fvdl
7388 1.1 fvdl /*
7389 1.1 fvdl * Freeze the SIMQ until our poller can determine that
7390 1.1 fvdl * the bus reset has really gone away. We set the initial
7391 1.1 fvdl * timer to 0 to have the check performed as soon as possible
7392 1.1 fvdl * from the timer context.
7393 1.1 fvdl */
7394 1.1 fvdl if ((ahd->flags & AHD_RESET_POLL_ACTIVE) == 0) {
7395 1.1 fvdl ahd->flags |= AHD_RESET_POLL_ACTIVE;
7396 1.1 fvdl ahd_freeze_simq(ahd);
7397 1.1 fvdl ahd_timer_reset(&ahd->reset_timer, 0, ahd_reset_poll, ahd);
7398 1.1 fvdl }
7399 1.1 fvdl return (found);
7400 1.1 fvdl }
7401 1.1 fvdl
7402 1.1 fvdl
7403 1.1 fvdl #define AHD_RESET_POLL_US 1000
7404 1.1 fvdl static void
7405 1.1 fvdl ahd_reset_poll(void *arg)
7406 1.1 fvdl {
7407 1.1 fvdl struct ahd_softc *ahd;
7408 1.1 fvdl u_int scsiseq1;
7409 1.1 fvdl u_long l;
7410 1.1 fvdl int s;
7411 1.1 fvdl
7412 1.1 fvdl ahd_list_lock(&l);
7413 1.1 fvdl ahd = (void*)arg;
7414 1.1 fvdl if (ahd == NULL) {
7415 1.1 fvdl printf("ahd_reset_poll: Instance %p no longer exists\n", arg);
7416 1.1 fvdl ahd_list_unlock(&l);
7417 1.1 fvdl return;
7418 1.1 fvdl }
7419 1.1 fvdl ahd_lock(ahd, &s);
7420 1.1 fvdl ahd_pause(ahd);
7421 1.1 fvdl ahd_update_modes(ahd);
7422 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
7423 1.1 fvdl ahd_outb(ahd, CLRSINT1, CLRSCSIRSTI);
7424 1.1 fvdl if ((ahd_inb(ahd, SSTAT1) & SCSIRSTI) != 0) {
7425 1.1 fvdl ahd_timer_reset(&ahd->reset_timer, AHD_RESET_POLL_US,
7426 1.1 fvdl ahd_reset_poll, ahd);
7427 1.1 fvdl ahd_unpause(ahd);
7428 1.1 fvdl ahd_unlock(ahd, &s);
7429 1.1 fvdl ahd_list_unlock(&l);
7430 1.1 fvdl return;
7431 1.1 fvdl }
7432 1.1 fvdl
7433 1.1 fvdl /* Reset is now low. Complete chip reinitialization. */
7434 1.1 fvdl ahd_outb(ahd, SIMODE1, ahd_inb(ahd, SIMODE1) | ENSCSIRST);
7435 1.1 fvdl scsiseq1 = ahd_inb(ahd, SCSISEQ_TEMPLATE);
7436 1.1 fvdl ahd_outb(ahd, SCSISEQ1, scsiseq1 & (ENSELI|ENRSELI|ENAUTOATNP));
7437 1.1 fvdl ahd_unpause(ahd);
7438 1.1 fvdl ahd->flags &= ~AHD_RESET_POLL_ACTIVE;
7439 1.1 fvdl ahd_unlock(ahd, &s);
7440 1.1 fvdl ahd_release_simq(ahd);
7441 1.1 fvdl ahd_list_unlock(&l);
7442 1.1 fvdl }
7443 1.1 fvdl
7444 1.1 fvdl /**************************** Statistics Processing ***************************/
7445 1.1 fvdl static void
7446 1.1 fvdl ahd_stat_timer(void *arg)
7447 1.1 fvdl {
7448 1.1 fvdl struct ahd_softc *ahd;
7449 1.1 fvdl u_long l;
7450 1.1 fvdl int s;
7451 1.1 fvdl int enint_coal;
7452 1.1 fvdl
7453 1.1 fvdl ahd_list_lock(&l);
7454 1.1 fvdl ahd = (void *)arg;
7455 1.1 fvdl if (ahd == NULL) {
7456 1.1 fvdl printf("ahd_stat_timer: Instance %p no longer exists\n", arg);
7457 1.1 fvdl ahd_list_unlock(&l);
7458 1.1 fvdl return;
7459 1.1 fvdl }
7460 1.1 fvdl ahd_lock(ahd, &s);
7461 1.1 fvdl
7462 1.5 wiz enint_coal = ahd->hs_mailbox & ENINT_COALESCE;
7463 1.5 wiz if (ahd->cmdcmplt_total > ahd->int_coalescing_threshold)
7464 1.5 wiz enint_coal |= ENINT_COALESCE;
7465 1.5 wiz else if (ahd->cmdcmplt_total < ahd->int_coalescing_stop_threshold)
7466 1.5 wiz enint_coal &= ~ENINT_COALESCE;
7467 1.1 fvdl
7468 1.5 wiz if (enint_coal != (ahd->hs_mailbox & ENINT_COALESCE)) {
7469 1.5 wiz ahd_enable_coalescing(ahd, enint_coal);
7470 1.1 fvdl #ifdef AHD_DEBUG
7471 1.5 wiz if ((ahd_debug & AHD_SHOW_INT_COALESCING) != 0)
7472 1.5 wiz printf("%s: Interrupt coalescing "
7473 1.1 fvdl "now %sabled. Cmds %d\n",
7474 1.1 fvdl ahd_name(ahd),
7475 1.5 wiz (enint_coal & ENINT_COALESCE) ? "en" : "dis",
7476 1.1 fvdl ahd->cmdcmplt_total);
7477 1.1 fvdl #endif
7478 1.1 fvdl }
7479 1.1 fvdl
7480 1.1 fvdl ahd->cmdcmplt_bucket = (ahd->cmdcmplt_bucket+1) & (AHD_STAT_BUCKETS-1);
7481 1.1 fvdl ahd->cmdcmplt_total -= ahd->cmdcmplt_counts[ahd->cmdcmplt_bucket];
7482 1.1 fvdl ahd->cmdcmplt_counts[ahd->cmdcmplt_bucket] = 0;
7483 1.1 fvdl ahd_timer_reset(&ahd->stat_timer, AHD_STAT_UPDATE_US,
7484 1.1 fvdl ahd_stat_timer, ahd);
7485 1.1 fvdl ahd_unlock(ahd, &s);
7486 1.1 fvdl ahd_list_unlock(&l);
7487 1.1 fvdl }
7488 1.1 fvdl
7489 1.1 fvdl /****************************** Status Processing *****************************/
7490 1.1 fvdl void
7491 1.1 fvdl ahd_handle_scb_status(struct ahd_softc *ahd, struct scb *scb)
7492 1.1 fvdl {
7493 1.1 fvdl if (scb->hscb->shared_data.istatus.scsi_status != 0) {
7494 1.1 fvdl ahd_handle_scsi_status(ahd, scb);
7495 1.1 fvdl } else {
7496 1.1 fvdl ahd_calc_residual(ahd, scb);
7497 1.1 fvdl ahd_done(ahd, scb);
7498 1.1 fvdl }
7499 1.1 fvdl }
7500 1.1 fvdl
7501 1.1 fvdl void
7502 1.1 fvdl ahd_handle_scsi_status(struct ahd_softc *ahd, struct scb *scb)
7503 1.1 fvdl {
7504 1.1 fvdl struct hardware_scb *hscb;
7505 1.1 fvdl u_int qfreeze_cnt;
7506 1.1 fvdl
7507 1.1 fvdl /*
7508 1.1 fvdl * The sequencer freezes its select-out queue
7509 1.1 fvdl * anytime a SCSI status error occurs. We must
7510 1.1 fvdl * handle the error and decrement the QFREEZE count
7511 1.1 fvdl * to allow the sequencer to continue.
7512 1.1 fvdl */
7513 1.1 fvdl hscb = scb->hscb;
7514 1.1 fvdl
7515 1.1 fvdl /* Freeze the queue until the client sees the error. */
7516 1.1 fvdl ahd_freeze_devq(ahd, scb);
7517 1.1 fvdl ahd_freeze_scb(scb);
7518 1.1 fvdl qfreeze_cnt = ahd_inw(ahd, QFREEZE_COUNT);
7519 1.1 fvdl if (qfreeze_cnt == 0) {
7520 1.1 fvdl printf("%s: Bad status with 0 qfreeze count!\n", ahd_name(ahd));
7521 1.1 fvdl } else {
7522 1.1 fvdl qfreeze_cnt--;
7523 1.1 fvdl ahd_outw(ahd, QFREEZE_COUNT, qfreeze_cnt);
7524 1.1 fvdl }
7525 1.1 fvdl if (qfreeze_cnt == 0)
7526 1.1 fvdl ahd_outb(ahd, SEQ_FLAGS2,
7527 1.1 fvdl ahd_inb(ahd, SEQ_FLAGS2) & ~SELECTOUT_QFROZEN);
7528 1.9 thorpej
7529 1.1 fvdl /* Don't want to clobber the original sense code */
7530 1.1 fvdl if ((scb->flags & SCB_SENSE) != 0) {
7531 1.1 fvdl /*
7532 1.1 fvdl * Clear the SCB_SENSE Flag and perform
7533 1.1 fvdl * a normal command completion.
7534 1.1 fvdl */
7535 1.1 fvdl scb->flags &= ~SCB_SENSE;
7536 1.1 fvdl ahd_set_transaction_status(scb, CAM_AUTOSENSE_FAIL);
7537 1.1 fvdl ahd_done(ahd, scb);
7538 1.1 fvdl return;
7539 1.1 fvdl }
7540 1.1 fvdl ahd_set_scsi_status(scb, hscb->shared_data.istatus.scsi_status);
7541 1.1 fvdl ahd_set_xfer_status(scb, hscb->shared_data.istatus.scsi_status);
7542 1.1 fvdl switch (hscb->shared_data.istatus.scsi_status) {
7543 1.1 fvdl case STATUS_PKT_SENSE:
7544 1.1 fvdl {
7545 1.1 fvdl struct scsi_status_iu_header *siu;
7546 1.1 fvdl
7547 1.1 fvdl ahd_sync_sense(ahd, scb, BUS_DMASYNC_POSTREAD);
7548 1.1 fvdl siu = (struct scsi_status_iu_header *)scb->sense_data;
7549 1.1 fvdl ahd_set_scsi_status(scb, siu->status);
7550 1.1 fvdl #ifdef AHD_DEBUG
7551 1.1 fvdl if ((ahd_debug & AHD_SHOW_SENSE) != 0) {
7552 1.1 fvdl ahd_print_path(ahd, scb);
7553 1.1 fvdl printf("SCB 0x%x Received PKT Status of 0x%x\n",
7554 1.1 fvdl SCB_GET_TAG(scb), siu->status);
7555 1.1 fvdl }
7556 1.1 fvdl #endif
7557 1.1 fvdl if ((siu->flags & SIU_RSPVALID) != 0) {
7558 1.1 fvdl scsipi_printaddr(scb->xs->xs_periph);
7559 1.1 fvdl if (scsi_4btoul(siu->pkt_failures_length) < 4) {
7560 1.1 fvdl printf("Unable to parse pkt_failures\n");
7561 1.1 fvdl } else {
7562 1.1 fvdl
7563 1.1 fvdl switch (SIU_PKTFAIL_CODE(siu)) {
7564 1.1 fvdl case SIU_PFC_NONE:
7565 1.1 fvdl printf("No packet failure found\n");
7566 1.1 fvdl break;
7567 1.1 fvdl case SIU_PFC_CIU_FIELDS_INVALID:
7568 1.1 fvdl printf("Invalid Command IU Field\n");
7569 1.1 fvdl break;
7570 1.1 fvdl case SIU_PFC_TMF_NOT_SUPPORTED:
7571 1.1 fvdl printf("TMF not supportd\n");
7572 1.1 fvdl break;
7573 1.1 fvdl case SIU_PFC_TMF_FAILED:
7574 1.1 fvdl printf("TMF failed\n");
7575 1.1 fvdl break;
7576 1.1 fvdl case SIU_PFC_INVALID_TYPE_CODE:
7577 1.1 fvdl printf("Invalid L_Q Type code\n");
7578 1.1 fvdl break;
7579 1.1 fvdl case SIU_PFC_ILLEGAL_REQUEST:
7580 1.1 fvdl printf("Illegal request\n");
7581 1.1 fvdl default:
7582 1.1 fvdl break;
7583 1.1 fvdl }
7584 1.1 fvdl }
7585 1.1 fvdl if (siu->status == SCSI_STATUS_OK)
7586 1.1 fvdl ahd_set_transaction_status(scb, CAM_REQ_CMP_ERR);
7587 1.1 fvdl }
7588 1.1 fvdl if ((siu->flags & SIU_SNSVALID) != 0) {
7589 1.1 fvdl scb->flags |= SCB_PKT_SENSE;
7590 1.1 fvdl #ifdef AHD_DEBUG
7591 1.1 fvdl if ((ahd_debug & AHD_SHOW_SENSE) != 0) {
7592 1.1 fvdl printf("Sense data available (%d)\n", siu->sense_length[0]);
7593 1.1 fvdl printf("SK 0x%x ASC 0x%x ASCQ 0x%x\n",
7594 1.1 fvdl ((uint8_t)scb->sense_data[SIU_SENSE_OFFSET(siu)+2]) & 0x0F,
7595 1.1 fvdl ((uint8_t)scb->sense_data[SIU_SENSE_OFFSET(siu)+12]),
7596 1.1 fvdl ((uint8_t)scb->sense_data[SIU_SENSE_OFFSET(siu)+13]));
7597 1.1 fvdl }
7598 1.1 fvdl #endif
7599 1.1 fvdl }
7600 1.1 fvdl ahd_done(ahd, scb);
7601 1.1 fvdl break;
7602 1.1 fvdl }
7603 1.1 fvdl case SCSI_STATUS_CMD_TERMINATED:
7604 1.1 fvdl case SCSI_STATUS_CHECK_COND:
7605 1.1 fvdl {
7606 1.1 fvdl struct ahd_devinfo devinfo;
7607 1.1 fvdl struct ahd_dma_seg *sg;
7608 1.1 fvdl struct scsipi_sense *sc;
7609 1.1 fvdl struct ahd_initiator_tinfo *targ_info;
7610 1.1 fvdl struct ahd_tmode_tstate *tstate;
7611 1.1 fvdl struct ahd_transinfo *tinfo;
7612 1.1 fvdl #ifdef AHD_DEBUG
7613 1.1 fvdl if (ahd_debug & AHD_SHOW_SENSE) {
7614 1.1 fvdl ahd_print_path(ahd, scb);
7615 1.1 fvdl printf("SCB %d: requests Check Status\n",
7616 1.1 fvdl SCB_GET_TAG(scb));
7617 1.1 fvdl }
7618 1.1 fvdl #endif
7619 1.1 fvdl
7620 1.1 fvdl if (ahd_perform_autosense(scb) == 0)
7621 1.1 fvdl break;
7622 1.1 fvdl
7623 1.1 fvdl ahd_compile_devinfo(&devinfo, SCB_GET_OUR_ID(scb),
7624 1.1 fvdl SCB_GET_TARGET(ahd, scb),
7625 1.1 fvdl SCB_GET_LUN(scb),
7626 1.1 fvdl SCB_GET_CHANNEL(ahd, scb),
7627 1.1 fvdl ROLE_INITIATOR);
7628 1.1 fvdl targ_info = ahd_fetch_transinfo(ahd,
7629 1.1 fvdl devinfo.channel,
7630 1.1 fvdl devinfo.our_scsiid,
7631 1.1 fvdl devinfo.target,
7632 1.1 fvdl &tstate);
7633 1.1 fvdl tinfo = &targ_info->curr;
7634 1.1 fvdl sg = scb->sg_list;
7635 1.1 fvdl sc = (struct scsipi_sense *)hscb->shared_data.idata.cdb;
7636 1.1 fvdl /*
7637 1.1 fvdl * Save off the residual if there is one.
7638 1.1 fvdl */
7639 1.1 fvdl ahd_update_residual(ahd, scb);
7640 1.1 fvdl #ifdef AHD_DEBUG
7641 1.1 fvdl if (ahd_debug & AHD_SHOW_SENSE) {
7642 1.1 fvdl ahd_print_path(ahd, scb);
7643 1.1 fvdl printf("Sending Sense\n");
7644 1.1 fvdl }
7645 1.1 fvdl #endif
7646 1.1 fvdl scb->sg_count = 0;
7647 1.1 fvdl sg = ahd_sg_setup(ahd, scb, sg, ahd_get_sense_bufaddr(ahd, scb),
7648 1.1 fvdl ahd_get_sense_bufsize(ahd, scb),
7649 1.1 fvdl /*last*/TRUE);
7650 1.1 fvdl sc->opcode = REQUEST_SENSE;
7651 1.1 fvdl sc->byte2 = 0;
7652 1.1 fvdl sc->unused[0] = 0;
7653 1.1 fvdl sc->unused[1] = 0;
7654 1.1 fvdl sc->length = ahd_get_sense_bufsize(ahd, scb);
7655 1.1 fvdl sc->control = 0;
7656 1.1 fvdl
7657 1.1 fvdl /*
7658 1.1 fvdl * We can't allow the target to disconnect.
7659 1.1 fvdl * This will be an untagged transaction and
7660 1.1 fvdl * having the target disconnect will make this
7661 1.1 fvdl * transaction indestinguishable from outstanding
7662 1.1 fvdl * tagged transactions.
7663 1.1 fvdl */
7664 1.1 fvdl hscb->control = 0;
7665 1.1 fvdl
7666 1.1 fvdl /*
7667 1.1 fvdl * This request sense could be because the
7668 1.1 fvdl * the device lost power or in some other
7669 1.1 fvdl * way has lost our transfer negotiations.
7670 1.1 fvdl * Renegotiate if appropriate. Unit attention
7671 1.1 fvdl * errors will be reported before any data
7672 1.1 fvdl * phases occur.
7673 1.1 fvdl */
7674 1.1 fvdl if (ahd_get_residual(scb) == ahd_get_transfer_length(scb)) {
7675 1.1 fvdl ahd_update_neg_request(ahd, &devinfo,
7676 1.1 fvdl tstate, targ_info,
7677 1.1 fvdl AHD_NEG_IF_NON_ASYNC);
7678 1.1 fvdl }
7679 1.1 fvdl if (tstate->auto_negotiate & devinfo.target_mask) {
7680 1.1 fvdl hscb->control |= MK_MESSAGE;
7681 1.1 fvdl scb->flags &=
7682 1.1 fvdl ~(SCB_NEGOTIATE|SCB_ABORT|SCB_DEVICE_RESET);
7683 1.1 fvdl scb->flags |= SCB_AUTO_NEGOTIATE;
7684 1.1 fvdl }
7685 1.1 fvdl hscb->cdb_len = sizeof(*sc);
7686 1.1 fvdl ahd_setup_data_scb(ahd, scb);
7687 1.1 fvdl scb->flags |= SCB_SENSE;
7688 1.1 fvdl ahd_queue_scb(ahd, scb);
7689 1.1 fvdl /*
7690 1.1 fvdl * Ensure we have enough time to actually
7691 1.1 fvdl * retrieve the sense.
7692 1.1 fvdl */
7693 1.1 fvdl ahd_scb_timer_reset(scb, 5 * 1000000);
7694 1.1 fvdl break;
7695 1.1 fvdl }
7696 1.1 fvdl case SCSI_STATUS_OK:
7697 1.2 fvdl printf("%s: Interrupted for status of 0? (SCB 0x%x)\n",
7698 1.1 fvdl ahd_name(ahd), SCB_GET_TAG(scb));
7699 1.1 fvdl /* FALLTHROUGH */
7700 1.1 fvdl default:
7701 1.1 fvdl ahd_done(ahd, scb);
7702 1.1 fvdl break;
7703 1.1 fvdl }
7704 1.1 fvdl }
7705 1.1 fvdl
7706 1.1 fvdl /*
7707 1.1 fvdl * Calculate the residual for a just completed SCB.
7708 1.1 fvdl */
7709 1.1 fvdl void
7710 1.1 fvdl ahd_calc_residual(struct ahd_softc *ahd, struct scb *scb)
7711 1.1 fvdl {
7712 1.1 fvdl struct hardware_scb *hscb;
7713 1.1 fvdl struct initiator_status *spkt;
7714 1.1 fvdl uint32_t sgptr;
7715 1.1 fvdl uint32_t resid_sgptr;
7716 1.1 fvdl uint32_t resid;
7717 1.1 fvdl
7718 1.1 fvdl /*
7719 1.1 fvdl * 5 cases.
7720 1.1 fvdl * 1) No residual.
7721 1.1 fvdl * SG_STATUS_VALID clear in sgptr.
7722 1.1 fvdl * 2) Transferless command
7723 1.1 fvdl * 3) Never performed any transfers.
7724 1.1 fvdl * sgptr has SG_FULL_RESID set.
7725 1.1 fvdl * 4) No residual but target did not
7726 1.1 fvdl * save data pointers after the
7727 1.1 fvdl * last transfer, so sgptr was
7728 1.1 fvdl * never updated.
7729 1.1 fvdl * 5) We have a partial residual.
7730 1.1 fvdl * Use residual_sgptr to determine
7731 1.1 fvdl * where we are.
7732 1.1 fvdl */
7733 1.1 fvdl
7734 1.1 fvdl hscb = scb->hscb;
7735 1.1 fvdl sgptr = ahd_le32toh(hscb->sgptr);
7736 1.1 fvdl if ((sgptr & SG_STATUS_VALID) == 0)
7737 1.1 fvdl /* Case 1 */
7738 1.1 fvdl return;
7739 1.1 fvdl sgptr &= ~SG_STATUS_VALID;
7740 1.1 fvdl
7741 1.1 fvdl if ((sgptr & SG_LIST_NULL) != 0)
7742 1.1 fvdl /* Case 2 */
7743 1.1 fvdl return;
7744 1.1 fvdl
7745 1.1 fvdl /*
7746 1.1 fvdl * Residual fields are the same in both
7747 1.1 fvdl * target and initiator status packets,
7748 1.1 fvdl * so we can always use the initiator fields
7749 1.1 fvdl * regardless of the role for this SCB.
7750 1.1 fvdl */
7751 1.1 fvdl spkt = &hscb->shared_data.istatus;
7752 1.1 fvdl resid_sgptr = ahd_le32toh(spkt->residual_sgptr);
7753 1.1 fvdl if ((sgptr & SG_FULL_RESID) != 0) {
7754 1.1 fvdl /* Case 3 */
7755 1.1 fvdl resid = ahd_get_transfer_length(scb);
7756 1.1 fvdl } else if ((resid_sgptr & SG_LIST_NULL) != 0) {
7757 1.1 fvdl /* Case 4 */
7758 1.1 fvdl return;
7759 1.1 fvdl } else if ((resid_sgptr & SG_OVERRUN_RESID) != 0) {
7760 1.1 fvdl ahd_print_path(ahd, scb);
7761 1.1 fvdl printf("data overrun detected Tag == 0x%x.\n",
7762 1.1 fvdl SCB_GET_TAG(scb));
7763 1.1 fvdl ahd_freeze_devq(ahd, scb);
7764 1.1 fvdl ahd_set_transaction_status(scb, CAM_DATA_RUN_ERR);
7765 1.1 fvdl ahd_freeze_scb(scb);
7766 1.1 fvdl return;
7767 1.1 fvdl } else if ((resid_sgptr & ~SG_PTR_MASK) != 0) {
7768 1.1 fvdl panic("Bogus resid sgptr value 0x%x\n", resid_sgptr);
7769 1.1 fvdl /* NOTREACHED */
7770 1.1 fvdl } else {
7771 1.1 fvdl struct ahd_dma_seg *sg;
7772 1.1 fvdl
7773 1.1 fvdl /*
7774 1.1 fvdl * Remainder of the SG where the transfer
7775 1.1 fvdl * stopped.
7776 1.1 fvdl */
7777 1.1 fvdl resid = ahd_le32toh(spkt->residual_datacnt) & AHD_SG_LEN_MASK;
7778 1.1 fvdl sg = ahd_sg_bus_to_virt(ahd, scb, resid_sgptr & SG_PTR_MASK);
7779 1.1 fvdl
7780 1.1 fvdl /* The residual sg_ptr always points to the next sg */
7781 1.1 fvdl sg--;
7782 1.1 fvdl
7783 1.1 fvdl /*
7784 1.1 fvdl * Add up the contents of all residual
7785 1.1 fvdl * SG segments that are after the SG where
7786 1.1 fvdl * the transfer stopped.
7787 1.1 fvdl */
7788 1.1 fvdl while ((ahd_le32toh(sg->len) & AHD_DMA_LAST_SEG) == 0) {
7789 1.1 fvdl sg++;
7790 1.1 fvdl resid += ahd_le32toh(sg->len) & AHD_SG_LEN_MASK;
7791 1.1 fvdl }
7792 1.1 fvdl }
7793 1.1 fvdl
7794 1.1 fvdl if ((scb->flags & SCB_SENSE) == 0)
7795 1.1 fvdl ahd_set_residual(scb, resid);
7796 1.1 fvdl /*else
7797 1.1 fvdl ahd_set_sense_residual(scb, resid);*/
7798 1.1 fvdl
7799 1.1 fvdl #ifdef AHD_DEBUG
7800 1.1 fvdl if ((ahd_debug & AHD_SHOW_MISC) != 0) {
7801 1.1 fvdl ahd_print_path(ahd, scb);
7802 1.1 fvdl printf("Handled %sResidual of %d bytes\n",
7803 1.1 fvdl (scb->flags & SCB_SENSE) ? "Sense " : "", resid);
7804 1.1 fvdl }
7805 1.1 fvdl #endif
7806 1.1 fvdl }
7807 1.1 fvdl
7808 1.1 fvdl /******************************* Target Mode **********************************/
7809 1.1 fvdl #ifdef AHD_TARGET_MODE
7810 1.1 fvdl /*
7811 1.1 fvdl * Add a target mode event to this lun's queue
7812 1.1 fvdl */
7813 1.1 fvdl static void
7814 1.1 fvdl ahd_queue_lstate_event(struct ahd_softc *ahd, struct ahd_tmode_lstate *lstate,
7815 1.1 fvdl u_int initiator_id, u_int event_type, u_int event_arg)
7816 1.1 fvdl {
7817 1.1 fvdl struct ahd_tmode_event *event;
7818 1.1 fvdl int pending;
7819 1.1 fvdl
7820 1.1 fvdl xpt_freeze_devq(lstate->path, /*count*/1);
7821 1.1 fvdl if (lstate->event_w_idx >= lstate->event_r_idx)
7822 1.1 fvdl pending = lstate->event_w_idx - lstate->event_r_idx;
7823 1.1 fvdl else
7824 1.1 fvdl pending = AHD_TMODE_EVENT_BUFFER_SIZE + 1
7825 1.1 fvdl - (lstate->event_r_idx - lstate->event_w_idx);
7826 1.1 fvdl
7827 1.1 fvdl if (event_type == EVENT_TYPE_BUS_RESET
7828 1.1 fvdl || event_type == MSG_BUS_DEV_RESET) {
7829 1.1 fvdl /*
7830 1.1 fvdl * Any earlier events are irrelevant, so reset our buffer.
7831 1.1 fvdl * This has the effect of allowing us to deal with reset
7832 1.1 fvdl * floods (an external device holding down the reset line)
7833 1.1 fvdl * without losing the event that is really interesting.
7834 1.1 fvdl */
7835 1.1 fvdl lstate->event_r_idx = 0;
7836 1.1 fvdl lstate->event_w_idx = 0;
7837 1.1 fvdl xpt_release_devq(lstate->path, pending, /*runqueue*/FALSE);
7838 1.1 fvdl }
7839 1.1 fvdl
7840 1.1 fvdl if (pending == AHD_TMODE_EVENT_BUFFER_SIZE) {
7841 1.1 fvdl xpt_print_path(lstate->path);
7842 1.1 fvdl printf("immediate event %x:%x lost\n",
7843 1.1 fvdl lstate->event_buffer[lstate->event_r_idx].event_type,
7844 1.1 fvdl lstate->event_buffer[lstate->event_r_idx].event_arg);
7845 1.1 fvdl lstate->event_r_idx++;
7846 1.1 fvdl if (lstate->event_r_idx == AHD_TMODE_EVENT_BUFFER_SIZE)
7847 1.1 fvdl lstate->event_r_idx = 0;
7848 1.1 fvdl xpt_release_devq(lstate->path, /*count*/1, /*runqueue*/FALSE);
7849 1.1 fvdl }
7850 1.1 fvdl
7851 1.1 fvdl event = &lstate->event_buffer[lstate->event_w_idx];
7852 1.1 fvdl event->initiator_id = initiator_id;
7853 1.1 fvdl event->event_type = event_type;
7854 1.1 fvdl event->event_arg = event_arg;
7855 1.1 fvdl lstate->event_w_idx++;
7856 1.1 fvdl if (lstate->event_w_idx == AHD_TMODE_EVENT_BUFFER_SIZE)
7857 1.1 fvdl lstate->event_w_idx = 0;
7858 1.1 fvdl }
7859 1.1 fvdl
7860 1.1 fvdl /*
7861 1.1 fvdl * Send any target mode events queued up waiting
7862 1.1 fvdl * for immediate notify resources.
7863 1.1 fvdl */
7864 1.1 fvdl void
7865 1.1 fvdl ahd_send_lstate_events(struct ahd_softc *ahd, struct ahd_tmode_lstate *lstate)
7866 1.1 fvdl {
7867 1.1 fvdl struct ccb_hdr *ccbh;
7868 1.1 fvdl struct ccb_immed_notify *inot;
7869 1.1 fvdl
7870 1.1 fvdl while (lstate->event_r_idx != lstate->event_w_idx
7871 1.1 fvdl && (ccbh = SLIST_FIRST(&lstate->immed_notifies)) != NULL) {
7872 1.1 fvdl struct ahd_tmode_event *event;
7873 1.1 fvdl
7874 1.1 fvdl event = &lstate->event_buffer[lstate->event_r_idx];
7875 1.1 fvdl SLIST_REMOVE_HEAD(&lstate->immed_notifies, sim_links.sle);
7876 1.1 fvdl inot = (struct ccb_immed_notify *)ccbh;
7877 1.1 fvdl switch (event->event_type) {
7878 1.1 fvdl case EVENT_TYPE_BUS_RESET:
7879 1.1 fvdl ccbh->status = CAM_SCSI_BUS_RESET|CAM_DEV_QFRZN;
7880 1.1 fvdl break;
7881 1.1 fvdl default:
7882 1.1 fvdl ccbh->status = CAM_MESSAGE_RECV|CAM_DEV_QFRZN;
7883 1.1 fvdl inot->message_args[0] = event->event_type;
7884 1.1 fvdl inot->message_args[1] = event->event_arg;
7885 1.1 fvdl break;
7886 1.1 fvdl }
7887 1.1 fvdl inot->initiator_id = event->initiator_id;
7888 1.1 fvdl inot->sense_len = 0;
7889 1.1 fvdl xpt_done((union ccb *)inot);
7890 1.1 fvdl lstate->event_r_idx++;
7891 1.1 fvdl if (lstate->event_r_idx == AHD_TMODE_EVENT_BUFFER_SIZE)
7892 1.1 fvdl lstate->event_r_idx = 0;
7893 1.1 fvdl }
7894 1.1 fvdl }
7895 1.1 fvdl #endif
7896 1.1 fvdl
7897 1.1 fvdl /******************** Sequencer Program Patching/Download *********************/
7898 1.1 fvdl
7899 1.1 fvdl #ifdef AHD_DUMP_SEQ
7900 1.1 fvdl void
7901 1.1 fvdl ahd_dumpseq(struct ahd_softc* ahd)
7902 1.1 fvdl {
7903 1.1 fvdl int i;
7904 1.1 fvdl int max_prog;
7905 1.1 fvdl
7906 1.1 fvdl max_prog = 2048;
7907 1.1 fvdl
7908 1.1 fvdl ahd_outb(ahd, SEQCTL0, PERRORDIS|FAILDIS|FASTMODE|LOADRAM);
7909 1.1 fvdl ahd_outb(ahd, PRGMCNT, 0);
7910 1.1 fvdl ahd_outb(ahd, PRGMCNT+1, 0);
7911 1.1 fvdl for (i = 0; i < max_prog; i++) {
7912 1.1 fvdl uint8_t ins_bytes[4];
7913 1.1 fvdl
7914 1.1 fvdl ahd_insb(ahd, SEQRAM, ins_bytes, 4);
7915 1.1 fvdl printf("0x%08x\n", ins_bytes[0] << 24
7916 1.1 fvdl | ins_bytes[1] << 16
7917 1.1 fvdl | ins_bytes[2] << 8
7918 1.1 fvdl | ins_bytes[3]);
7919 1.1 fvdl }
7920 1.1 fvdl }
7921 1.1 fvdl #endif
7922 1.1 fvdl
7923 1.1 fvdl static void
7924 1.1 fvdl ahd_loadseq(struct ahd_softc *ahd)
7925 1.1 fvdl {
7926 1.1 fvdl struct cs cs_table[num_critical_sections];
7927 1.1 fvdl u_int begin_set[num_critical_sections];
7928 1.1 fvdl u_int end_set[num_critical_sections];
7929 1.1 fvdl struct patch *cur_patch;
7930 1.1 fvdl u_int cs_count;
7931 1.1 fvdl u_int cur_cs;
7932 1.1 fvdl u_int i;
7933 1.1 fvdl int downloaded;
7934 1.1 fvdl u_int skip_addr;
7935 1.1 fvdl u_int sg_prefetch_cnt;
7936 1.1 fvdl u_int sg_prefetch_cnt_limit;
7937 1.1 fvdl u_int sg_prefetch_align;
7938 1.1 fvdl u_int sg_size;
7939 1.1 fvdl uint8_t download_consts[DOWNLOAD_CONST_COUNT];
7940 1.1 fvdl
7941 1.1 fvdl if (bootverbose)
7942 1.1 fvdl printf("%s: Downloading Sequencer Program...",
7943 1.1 fvdl ahd_name(ahd));
7944 1.1 fvdl
7945 1.1 fvdl #if DOWNLOAD_CONST_COUNT != 7
7946 1.1 fvdl #error "Download Const Mismatch"
7947 1.1 fvdl #endif
7948 1.1 fvdl /*
7949 1.1 fvdl * Start out with 0 critical sections
7950 1.1 fvdl * that apply to this firmware load.
7951 1.1 fvdl */
7952 1.1 fvdl cs_count = 0;
7953 1.1 fvdl cur_cs = 0;
7954 1.1 fvdl memset(begin_set, 0, sizeof(begin_set));
7955 1.1 fvdl memset(end_set, 0, sizeof(end_set));
7956 1.1 fvdl
7957 1.1 fvdl /*
7958 1.1 fvdl * Setup downloadable constant table.
7959 1.1 fvdl *
7960 1.1 fvdl * The computation for the S/G prefetch variables is
7961 1.1 fvdl * a bit complicated. We would like to always fetch
7962 1.1 fvdl * in terms of cachelined sized increments. However,
7963 1.1 fvdl * if the cacheline is not an even multiple of the
7964 1.1 fvdl * SG element size or is larger than our SG RAM, using
7965 1.1 fvdl * just the cache size might leave us with only a portion
7966 1.1 fvdl * of an SG element at the tail of a prefetch. If the
7967 1.1 fvdl * cacheline is larger than our S/G prefetch buffer less
7968 1.1 fvdl * the size of an SG element, we may round down to a cacheline
7969 1.1 fvdl * that doesn't contain any or all of the S/G of interest
7970 1.1 fvdl * within the bounds of our S/G ram. Provide variables to
7971 1.1 fvdl * the sequencer that will allow it to handle these edge
7972 1.1 fvdl * cases.
7973 1.1 fvdl */
7974 1.1 fvdl /* Start by aligning to the nearest cacheline. */
7975 1.1 fvdl sg_prefetch_align = ahd->pci_cachesize;
7976 1.1 fvdl if (sg_prefetch_align == 0)
7977 1.1 fvdl sg_prefetch_align = 8;
7978 1.1 fvdl /* Round down to the nearest power of 2. */
7979 1.1 fvdl while (powerof2(sg_prefetch_align) == 0)
7980 1.1 fvdl sg_prefetch_align--;
7981 1.1 fvdl /*
7982 1.1 fvdl * If the cacheline boundary is greater than half our prefetch RAM
7983 1.1 fvdl * we risk not being able to fetch even a single complete S/G
7984 1.1 fvdl * segment if we align to that boundary.
7985 1.1 fvdl */
7986 1.1 fvdl if (sg_prefetch_align > CCSGADDR_MAX/2)
7987 1.1 fvdl sg_prefetch_align = CCSGADDR_MAX/2;
7988 1.1 fvdl /* Start by fetching a single cacheline. */
7989 1.1 fvdl sg_prefetch_cnt = sg_prefetch_align;
7990 1.1 fvdl /*
7991 1.1 fvdl * Increment the prefetch count by cachelines until
7992 1.1 fvdl * at least one S/G element will fit.
7993 1.1 fvdl */
7994 1.1 fvdl sg_size = sizeof(struct ahd_dma_seg);
7995 1.1 fvdl if ((ahd->flags & AHD_64BIT_ADDRESSING) != 0)
7996 1.1 fvdl sg_size = sizeof(struct ahd_dma64_seg);
7997 1.1 fvdl while (sg_prefetch_cnt < sg_size)
7998 1.1 fvdl sg_prefetch_cnt += sg_prefetch_align;
7999 1.1 fvdl /*
8000 1.1 fvdl * If the cacheline is not an even multiple of
8001 1.1 fvdl * the S/G size, we may only get a partial S/G when
8002 1.1 fvdl * we align. Add a cacheline if this is the case.
8003 1.1 fvdl */
8004 1.1 fvdl if ((sg_prefetch_align % sg_size) != 0
8005 1.1 fvdl && (sg_prefetch_cnt < CCSGADDR_MAX))
8006 1.1 fvdl sg_prefetch_cnt += sg_prefetch_align;
8007 1.1 fvdl /*
8008 1.1 fvdl * Lastly, compute a value that the sequencer can use
8009 1.1 fvdl * to determine if the remainder of the CCSGRAM buffer
8010 1.1 fvdl * has a full S/G element in it.
8011 1.1 fvdl */
8012 1.1 fvdl sg_prefetch_cnt_limit = -(sg_prefetch_cnt - sg_size + 1);
8013 1.1 fvdl download_consts[SG_PREFETCH_CNT] = sg_prefetch_cnt;
8014 1.1 fvdl download_consts[SG_PREFETCH_CNT_LIMIT] = sg_prefetch_cnt_limit;
8015 1.1 fvdl download_consts[SG_PREFETCH_ALIGN_MASK] = ~(sg_prefetch_align - 1);
8016 1.1 fvdl download_consts[SG_PREFETCH_ADDR_MASK] = (sg_prefetch_align - 1);
8017 1.1 fvdl download_consts[SG_SIZEOF] = sg_size;
8018 1.1 fvdl download_consts[PKT_OVERRUN_BUFOFFSET] =
8019 1.1 fvdl (ahd->overrun_buf - (uint8_t *)ahd->qoutfifo) / 256;
8020 1.1 fvdl download_consts[SCB_TRANSFER_SIZE] = SCB_TRANSFER_SIZE_1BYTE_LUN;
8021 1.1 fvdl cur_patch = patches;
8022 1.1 fvdl downloaded = 0;
8023 1.1 fvdl skip_addr = 0;
8024 1.1 fvdl ahd_outb(ahd, SEQCTL0, PERRORDIS|FAILDIS|FASTMODE|LOADRAM);
8025 1.1 fvdl ahd_outb(ahd, PRGMCNT, 0);
8026 1.1 fvdl ahd_outb(ahd, PRGMCNT+1, 0);
8027 1.1 fvdl
8028 1.1 fvdl for (i = 0; i < sizeof(seqprog)/4; i++) {
8029 1.1 fvdl if (ahd_check_patch(ahd, &cur_patch, i, &skip_addr) == 0) {
8030 1.1 fvdl /*
8031 1.1 fvdl * Don't download this instruction as it
8032 1.1 fvdl * is in a patch that was removed.
8033 1.1 fvdl */
8034 1.1 fvdl continue;
8035 1.1 fvdl }
8036 1.1 fvdl /*
8037 1.1 fvdl * Move through the CS table until we find a CS
8038 1.1 fvdl * that might apply to this instruction.
8039 1.1 fvdl */
8040 1.1 fvdl for (; cur_cs < num_critical_sections; cur_cs++) {
8041 1.1 fvdl if (critical_sections[cur_cs].end <= i) {
8042 1.1 fvdl if (begin_set[cs_count] == TRUE
8043 1.1 fvdl && end_set[cs_count] == FALSE) {
8044 1.1 fvdl cs_table[cs_count].end = downloaded;
8045 1.1 fvdl end_set[cs_count] = TRUE;
8046 1.1 fvdl cs_count++;
8047 1.1 fvdl }
8048 1.1 fvdl continue;
8049 1.1 fvdl }
8050 1.1 fvdl if (critical_sections[cur_cs].begin <= i
8051 1.1 fvdl && begin_set[cs_count] == FALSE) {
8052 1.1 fvdl cs_table[cs_count].begin = downloaded;
8053 1.1 fvdl begin_set[cs_count] = TRUE;
8054 1.1 fvdl }
8055 1.1 fvdl break;
8056 1.1 fvdl }
8057 1.1 fvdl ahd_download_instr(ahd, i, download_consts);
8058 1.1 fvdl downloaded++;
8059 1.1 fvdl }
8060 1.1 fvdl
8061 1.1 fvdl ahd->num_critical_sections = cs_count;
8062 1.1 fvdl if (cs_count != 0) {
8063 1.1 fvdl
8064 1.1 fvdl cs_count *= sizeof(struct cs);
8065 1.1 fvdl ahd->critical_sections = malloc(cs_count, M_DEVBUF, M_NOWAIT);
8066 1.1 fvdl if (ahd->critical_sections == NULL)
8067 1.1 fvdl panic("ahd_loadseq: Could not malloc");
8068 1.1 fvdl memcpy(ahd->critical_sections, cs_table, cs_count);
8069 1.1 fvdl }
8070 1.1 fvdl ahd_outb(ahd, SEQCTL0, PERRORDIS|FAILDIS|FASTMODE);
8071 1.1 fvdl
8072 1.1 fvdl if (bootverbose) {
8073 1.1 fvdl printf(" %d instructions downloaded\n", downloaded);
8074 1.1 fvdl printf("%s: Features 0x%x, Bugs 0x%x, Flags 0x%x\n",
8075 1.1 fvdl ahd_name(ahd), ahd->features, ahd->bugs, ahd->flags);
8076 1.1 fvdl }
8077 1.1 fvdl }
8078 1.1 fvdl
8079 1.1 fvdl static int
8080 1.1 fvdl ahd_check_patch(struct ahd_softc *ahd, struct patch **start_patch,
8081 1.1 fvdl u_int start_instr, u_int *skip_addr)
8082 1.1 fvdl {
8083 1.1 fvdl struct patch *cur_patch;
8084 1.1 fvdl struct patch *last_patch;
8085 1.1 fvdl u_int num_patches;
8086 1.1 fvdl
8087 1.1 fvdl num_patches = sizeof(patches)/sizeof(struct patch);
8088 1.1 fvdl last_patch = &patches[num_patches];
8089 1.1 fvdl cur_patch = *start_patch;
8090 1.1 fvdl
8091 1.1 fvdl while (cur_patch < last_patch && start_instr == cur_patch->begin) {
8092 1.1 fvdl
8093 1.1 fvdl if (cur_patch->patch_func(ahd) == 0) {
8094 1.1 fvdl
8095 1.1 fvdl /* Start rejecting code */
8096 1.1 fvdl *skip_addr = start_instr + cur_patch->skip_instr;
8097 1.1 fvdl cur_patch += cur_patch->skip_patch;
8098 1.1 fvdl } else {
8099 1.1 fvdl /* Accepted this patch. Advance to the next
8100 1.1 fvdl * one and wait for our intruction pointer to
8101 1.1 fvdl * hit this point.
8102 1.1 fvdl */
8103 1.1 fvdl cur_patch++;
8104 1.1 fvdl }
8105 1.1 fvdl }
8106 1.1 fvdl
8107 1.1 fvdl *start_patch = cur_patch;
8108 1.1 fvdl if (start_instr < *skip_addr)
8109 1.1 fvdl /* Still skipping */
8110 1.1 fvdl return (0);
8111 1.1 fvdl
8112 1.1 fvdl return (1);
8113 1.1 fvdl }
8114 1.1 fvdl
8115 1.1 fvdl static u_int
8116 1.1 fvdl ahd_resolve_seqaddr(struct ahd_softc *ahd, u_int address)
8117 1.1 fvdl {
8118 1.1 fvdl struct patch *cur_patch;
8119 1.1 fvdl int address_offset;
8120 1.1 fvdl u_int skip_addr;
8121 1.1 fvdl u_int i;
8122 1.1 fvdl
8123 1.1 fvdl address_offset = 0;
8124 1.1 fvdl cur_patch = patches;
8125 1.1 fvdl skip_addr = 0;
8126 1.1 fvdl
8127 1.1 fvdl for (i = 0; i < address;) {
8128 1.1 fvdl
8129 1.1 fvdl ahd_check_patch(ahd, &cur_patch, i, &skip_addr);
8130 1.1 fvdl
8131 1.1 fvdl if (skip_addr > i) {
8132 1.1 fvdl int end_addr;
8133 1.1 fvdl
8134 1.1 fvdl end_addr = MIN(address, skip_addr);
8135 1.1 fvdl address_offset += end_addr - i;
8136 1.1 fvdl i = skip_addr;
8137 1.1 fvdl } else {
8138 1.1 fvdl i++;
8139 1.1 fvdl }
8140 1.1 fvdl }
8141 1.1 fvdl return (address - address_offset);
8142 1.1 fvdl }
8143 1.1 fvdl
8144 1.1 fvdl static void
8145 1.1 fvdl ahd_download_instr(struct ahd_softc *ahd, u_int instrptr, uint8_t *dconsts)
8146 1.1 fvdl {
8147 1.1 fvdl union ins_formats instr;
8148 1.1 fvdl struct ins_format1 *fmt1_ins;
8149 1.1 fvdl struct ins_format3 *fmt3_ins;
8150 1.1 fvdl u_int opcode;
8151 1.1 fvdl
8152 1.1 fvdl /*
8153 1.1 fvdl * The firmware is always compiled into a little endian format.
8154 1.1 fvdl */
8155 1.1 fvdl instr.integer = ahd_le32toh(*(uint32_t*)&seqprog[instrptr * 4]);
8156 1.1 fvdl
8157 1.1 fvdl fmt1_ins = &instr.format1;
8158 1.1 fvdl fmt3_ins = NULL;
8159 1.1 fvdl
8160 1.1 fvdl /* Pull the opcode */
8161 1.1 fvdl opcode = instr.format1.opcode;
8162 1.1 fvdl switch (opcode) {
8163 1.1 fvdl case AIC_OP_JMP:
8164 1.1 fvdl case AIC_OP_JC:
8165 1.1 fvdl case AIC_OP_JNC:
8166 1.1 fvdl case AIC_OP_CALL:
8167 1.1 fvdl case AIC_OP_JNE:
8168 1.1 fvdl case AIC_OP_JNZ:
8169 1.1 fvdl case AIC_OP_JE:
8170 1.1 fvdl case AIC_OP_JZ:
8171 1.1 fvdl {
8172 1.1 fvdl fmt3_ins = &instr.format3;
8173 1.1 fvdl fmt3_ins->address = ahd_resolve_seqaddr(ahd, fmt3_ins->address);
8174 1.1 fvdl /* FALLTHROUGH */
8175 1.1 fvdl }
8176 1.1 fvdl case AIC_OP_OR:
8177 1.1 fvdl case AIC_OP_AND:
8178 1.1 fvdl case AIC_OP_XOR:
8179 1.1 fvdl case AIC_OP_ADD:
8180 1.1 fvdl case AIC_OP_ADC:
8181 1.1 fvdl case AIC_OP_BMOV:
8182 1.1 fvdl if (fmt1_ins->parity != 0) {
8183 1.1 fvdl fmt1_ins->immediate = dconsts[fmt1_ins->immediate];
8184 1.1 fvdl }
8185 1.1 fvdl fmt1_ins->parity = 0;
8186 1.1 fvdl /* FALLTHROUGH */
8187 1.1 fvdl case AIC_OP_ROL:
8188 1.1 fvdl {
8189 1.1 fvdl int i, count;
8190 1.1 fvdl
8191 1.1 fvdl /* Calculate odd parity for the instruction */
8192 1.1 fvdl for (i = 0, count = 0; i < 31; i++) {
8193 1.1 fvdl uint32_t mask;
8194 1.1 fvdl
8195 1.1 fvdl mask = 0x01 << i;
8196 1.1 fvdl if ((instr.integer & mask) != 0)
8197 1.1 fvdl count++;
8198 1.1 fvdl }
8199 1.1 fvdl if ((count & 0x01) == 0)
8200 1.1 fvdl instr.format1.parity = 1;
8201 1.1 fvdl
8202 1.1 fvdl /* The sequencer is a little endian cpu */
8203 1.1 fvdl instr.integer = ahd_htole32(instr.integer);
8204 1.1 fvdl ahd_outsb(ahd, SEQRAM, instr.bytes, 4);
8205 1.1 fvdl break;
8206 1.1 fvdl }
8207 1.1 fvdl default:
8208 1.1 fvdl panic("Unknown opcode encountered in seq program");
8209 1.1 fvdl break;
8210 1.1 fvdl }
8211 1.1 fvdl }
8212 1.1 fvdl
8213 1.1 fvdl static int
8214 1.1 fvdl ahd_probe_stack_size(struct ahd_softc *ahd)
8215 1.1 fvdl {
8216 1.1 fvdl int last_probe;
8217 1.1 fvdl
8218 1.1 fvdl last_probe = 0;
8219 1.1 fvdl while (1) {
8220 1.1 fvdl int i;
8221 1.1 fvdl
8222 1.1 fvdl /*
8223 1.1 fvdl * We avoid using 0 as a pattern to avoid
8224 1.1 fvdl * confusion if the stack implementation
8225 1.1 fvdl * "back-fills" with zeros when "poping'
8226 1.1 fvdl * entries.
8227 1.1 fvdl */
8228 1.1 fvdl for (i = 1; i <= last_probe+1; i++) {
8229 1.1 fvdl ahd_outb(ahd, STACK, i & 0xFF);
8230 1.1 fvdl ahd_outb(ahd, STACK, (i >> 8) & 0xFF);
8231 1.1 fvdl }
8232 1.1 fvdl
8233 1.1 fvdl /* Verify */
8234 1.1 fvdl for (i = last_probe+1; i > 0; i--) {
8235 1.1 fvdl u_int stack_entry;
8236 1.1 fvdl
8237 1.1 fvdl stack_entry = ahd_inb(ahd, STACK)
8238 1.1 fvdl |(ahd_inb(ahd, STACK) << 8);
8239 1.1 fvdl if (stack_entry != i)
8240 1.1 fvdl goto sized;
8241 1.1 fvdl }
8242 1.1 fvdl last_probe++;
8243 1.1 fvdl }
8244 1.1 fvdl sized:
8245 1.1 fvdl return (last_probe);
8246 1.1 fvdl }
8247 1.1 fvdl
8248 1.1 fvdl void
8249 1.12 thorpej ahd_dump_all_cards_state(void)
8250 1.1 fvdl {
8251 1.1 fvdl struct ahd_softc *list_ahd;
8252 1.1 fvdl
8253 1.1 fvdl TAILQ_FOREACH(list_ahd, &ahd_tailq, links) {
8254 1.1 fvdl ahd_dump_card_state(list_ahd);
8255 1.1 fvdl }
8256 1.1 fvdl }
8257 1.1 fvdl
8258 1.1 fvdl int
8259 1.1 fvdl ahd_print_register(ahd_reg_parse_entry_t *table, u_int num_entries,
8260 1.1 fvdl const char *name, u_int address, u_int value,
8261 1.1 fvdl u_int *cur_column, u_int wrap_point)
8262 1.1 fvdl {
8263 1.1 fvdl int printed;
8264 1.1 fvdl u_int printed_mask;
8265 1.1 fvdl char line[1024];
8266 1.1 fvdl
8267 1.1 fvdl line[0] = 0;
8268 1.1 fvdl
8269 1.1 fvdl if (cur_column != NULL && *cur_column >= wrap_point) {
8270 1.1 fvdl printf("\n");
8271 1.1 fvdl *cur_column = 0;
8272 1.1 fvdl }
8273 1.1 fvdl printed = snprintf(line, sizeof(line), "%s[0x%x]", name, value);
8274 1.1 fvdl if (table == NULL) {
8275 1.1 fvdl printed += snprintf(&line[printed], (sizeof line) - printed,
8276 1.1 fvdl " ");
8277 1.1 fvdl printf("%s", line);
8278 1.1 fvdl if (cur_column != NULL)
8279 1.1 fvdl *cur_column += printed;
8280 1.1 fvdl return (printed);
8281 1.1 fvdl }
8282 1.1 fvdl printed_mask = 0;
8283 1.1 fvdl while (printed_mask != 0xFF) {
8284 1.1 fvdl int entry;
8285 1.1 fvdl
8286 1.1 fvdl for (entry = 0; entry < num_entries; entry++) {
8287 1.1 fvdl if (((value & table[entry].mask)
8288 1.1 fvdl != table[entry].value)
8289 1.1 fvdl || ((printed_mask & table[entry].mask)
8290 1.1 fvdl == table[entry].mask))
8291 1.1 fvdl continue;
8292 1.1 fvdl printed += snprintf(&line[printed],
8293 1.1 fvdl (sizeof line) - printed, "%s%s",
8294 1.1 fvdl printed_mask == 0 ? ":(" : "|",
8295 1.1 fvdl table[entry].name);
8296 1.1 fvdl printed_mask |= table[entry].mask;
8297 1.1 fvdl
8298 1.1 fvdl break;
8299 1.1 fvdl }
8300 1.1 fvdl if (entry >= num_entries)
8301 1.1 fvdl break;
8302 1.1 fvdl }
8303 1.1 fvdl if (printed_mask != 0)
8304 1.1 fvdl printed += snprintf(&line[printed],
8305 1.1 fvdl (sizeof line) - printed, ") ");
8306 1.1 fvdl else
8307 1.1 fvdl printed += snprintf(&line[printed],
8308 1.1 fvdl (sizeof line) - printed, " ");
8309 1.1 fvdl if (cur_column != NULL)
8310 1.1 fvdl *cur_column += printed;
8311 1.1 fvdl printf("%s", line);
8312 1.1 fvdl
8313 1.1 fvdl return (printed);
8314 1.1 fvdl }
8315 1.1 fvdl
8316 1.1 fvdl void
8317 1.1 fvdl ahd_dump_card_state(struct ahd_softc *ahd)
8318 1.1 fvdl {
8319 1.1 fvdl struct scb *scb;
8320 1.1 fvdl ahd_mode_state saved_modes;
8321 1.1 fvdl u_int dffstat;
8322 1.1 fvdl int paused;
8323 1.1 fvdl u_int scb_index;
8324 1.1 fvdl u_int saved_scb_index;
8325 1.1 fvdl u_int cur_col;
8326 1.1 fvdl int i;
8327 1.1 fvdl
8328 1.1 fvdl if (ahd_is_paused(ahd)) {
8329 1.1 fvdl paused = 1;
8330 1.1 fvdl } else {
8331 1.1 fvdl paused = 0;
8332 1.1 fvdl ahd_pause(ahd);
8333 1.1 fvdl }
8334 1.1 fvdl saved_modes = ahd_save_modes(ahd);
8335 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
8336 1.1 fvdl printf(">>>>>>>>>>>>>>>>>> Dump Card State Begins <<<<<<<<<<<<<<<<<\n"
8337 1.1 fvdl "%s: Dumping Card State at program address 0x%x Mode 0x%x\n",
8338 1.1 fvdl ahd_name(ahd),
8339 1.1 fvdl ahd_inb(ahd, CURADDR) | (ahd_inb(ahd, CURADDR+1) << 8),
8340 1.1 fvdl ahd_build_mode_state(ahd, ahd->saved_src_mode,
8341 1.1 fvdl ahd->saved_dst_mode));
8342 1.1 fvdl if (paused)
8343 1.1 fvdl printf("Card was paused\n");
8344 1.1 fvdl /*
8345 1.1 fvdl * Mode independent registers.
8346 1.1 fvdl */
8347 1.1 fvdl cur_col = 0;
8348 1.1 fvdl ahd_hs_mailbox_print(ahd_inb(ahd, LOCAL_HS_MAILBOX), &cur_col, 50);
8349 1.1 fvdl ahd_intctl_print(ahd_inb(ahd, INTCTL), &cur_col, 50);
8350 1.1 fvdl ahd_seqintstat_print(ahd_inb(ahd, SEQINTSTAT), &cur_col, 50);
8351 1.1 fvdl ahd_saved_mode_print(ahd_inb(ahd, SAVED_MODE), &cur_col, 50);
8352 1.1 fvdl ahd_dffstat_print(ahd_inb(ahd, DFFSTAT), &cur_col, 50);
8353 1.1 fvdl ahd_scsisigi_print(ahd_inb(ahd, SCSISIGI), &cur_col, 50);
8354 1.1 fvdl ahd_scsiphase_print(ahd_inb(ahd, SCSIPHASE), &cur_col, 50);
8355 1.1 fvdl ahd_scsibus_print(ahd_inb(ahd, SCSIBUS), &cur_col, 50);
8356 1.1 fvdl ahd_lastphase_print(ahd_inb(ahd, LASTPHASE), &cur_col, 50);
8357 1.1 fvdl ahd_scsiseq0_print(ahd_inb(ahd, SCSISEQ0), &cur_col, 50);
8358 1.1 fvdl ahd_scsiseq1_print(ahd_inb(ahd, SCSISEQ1), &cur_col, 50);
8359 1.1 fvdl ahd_seqctl0_print(ahd_inb(ahd, SEQCTL0), &cur_col, 50);
8360 1.1 fvdl ahd_seqintctl_print(ahd_inb(ahd, SEQINTCTL), &cur_col, 50);
8361 1.1 fvdl ahd_seq_flags_print(ahd_inb(ahd, SEQ_FLAGS), &cur_col, 50);
8362 1.1 fvdl ahd_seq_flags2_print(ahd_inb(ahd, SEQ_FLAGS2), &cur_col, 50);
8363 1.1 fvdl ahd_sstat0_print(ahd_inb(ahd, SSTAT0), &cur_col, 50);
8364 1.1 fvdl ahd_sstat1_print(ahd_inb(ahd, SSTAT1), &cur_col, 50);
8365 1.1 fvdl ahd_sstat2_print(ahd_inb(ahd, SSTAT2), &cur_col, 50);
8366 1.1 fvdl ahd_sstat3_print(ahd_inb(ahd, SSTAT3), &cur_col, 50);
8367 1.1 fvdl ahd_perrdiag_print(ahd_inb(ahd, PERRDIAG), &cur_col, 50);
8368 1.1 fvdl ahd_simode1_print(ahd_inb(ahd, SIMODE1), &cur_col, 50);
8369 1.1 fvdl ahd_lqistat0_print(ahd_inb(ahd, LQISTAT0), &cur_col, 50);
8370 1.1 fvdl ahd_lqistat1_print(ahd_inb(ahd, LQISTAT1), &cur_col, 50);
8371 1.1 fvdl ahd_lqistat2_print(ahd_inb(ahd, LQISTAT2), &cur_col, 50);
8372 1.1 fvdl ahd_lqostat0_print(ahd_inb(ahd, LQOSTAT0), &cur_col, 50);
8373 1.1 fvdl ahd_lqostat1_print(ahd_inb(ahd, LQOSTAT1), &cur_col, 50);
8374 1.1 fvdl ahd_lqostat2_print(ahd_inb(ahd, LQOSTAT2), &cur_col, 50);
8375 1.1 fvdl printf("\n");
8376 1.1 fvdl printf("\nSCB Count = %d CMDS_PENDING = %d LASTSCB 0x%x "
8377 1.1 fvdl "CURRSCB 0x%x NEXTSCB 0x%x\n",
8378 1.1 fvdl ahd->scb_data.numscbs, ahd_inw(ahd, CMDS_PENDING),
8379 1.1 fvdl ahd_inw(ahd, LASTSCB), ahd_inw(ahd, CURRSCB),
8380 1.1 fvdl ahd_inw(ahd, NEXTSCB));
8381 1.1 fvdl cur_col = 0;
8382 1.1 fvdl /* QINFIFO */
8383 1.1 fvdl ahd_search_qinfifo(ahd, CAM_TARGET_WILDCARD, ALL_CHANNELS,
8384 1.1 fvdl CAM_LUN_WILDCARD, SCB_LIST_NULL,
8385 1.1 fvdl ROLE_UNKNOWN, /*status*/0, SEARCH_PRINT);
8386 1.1 fvdl saved_scb_index = ahd_get_scbptr(ahd);
8387 1.1 fvdl printf("Pending list:");
8388 1.1 fvdl i = 0;
8389 1.1 fvdl LIST_FOREACH(scb, &ahd->pending_scbs, pending_links) {
8390 1.1 fvdl if (i++ > AHD_SCB_MAX)
8391 1.1 fvdl break;
8392 1.9 thorpej /*cur_col =*/ printf("\n%3d FIFO_USE[0x%x] ", SCB_GET_TAG(scb),
8393 1.9 thorpej ahd_inb(ahd, SCB_FIFO_USE_COUNT));
8394 1.1 fvdl ahd_set_scbptr(ahd, SCB_GET_TAG(scb));
8395 1.1 fvdl ahd_scb_control_print(ahd_inb(ahd, SCB_CONTROL), &cur_col, 60);
8396 1.1 fvdl ahd_scb_scsiid_print(ahd_inb(ahd, SCB_SCSIID), &cur_col, 60);
8397 1.1 fvdl }
8398 1.1 fvdl printf("\nTotal %d\n", i);
8399 1.1 fvdl
8400 1.1 fvdl printf("Kernel Free SCB list: ");
8401 1.1 fvdl i = 0;
8402 1.1 fvdl TAILQ_FOREACH(scb, &ahd->scb_data.free_scbs, links.tqe) {
8403 1.1 fvdl struct scb *list_scb;
8404 1.1 fvdl
8405 1.1 fvdl list_scb = scb;
8406 1.1 fvdl do {
8407 1.1 fvdl printf("%d ", SCB_GET_TAG(list_scb));
8408 1.1 fvdl list_scb = LIST_NEXT(list_scb, collision_links);
8409 1.1 fvdl } while (list_scb && i++ < AHD_SCB_MAX);
8410 1.1 fvdl }
8411 1.1 fvdl
8412 1.1 fvdl LIST_FOREACH(scb, &ahd->scb_data.any_dev_free_scb_list, links.le) {
8413 1.1 fvdl if (i++ > AHD_SCB_MAX)
8414 1.1 fvdl break;
8415 1.1 fvdl printf("%d ", SCB_GET_TAG(scb));
8416 1.1 fvdl }
8417 1.1 fvdl printf("\n");
8418 1.1 fvdl
8419 1.1 fvdl printf("Sequencer Complete DMA-inprog list: ");
8420 1.1 fvdl scb_index = ahd_inw(ahd, COMPLETE_SCB_DMAINPROG_HEAD);
8421 1.1 fvdl i = 0;
8422 1.1 fvdl while (!SCBID_IS_NULL(scb_index) && i++ < AHD_SCB_MAX) {
8423 1.1 fvdl ahd_set_scbptr(ahd, scb_index);
8424 1.1 fvdl printf("%d ", scb_index);
8425 1.1 fvdl scb_index = ahd_inw(ahd, SCB_NEXT_COMPLETE);
8426 1.1 fvdl }
8427 1.1 fvdl printf("\n");
8428 1.1 fvdl
8429 1.1 fvdl printf("Sequencer Complete list: ");
8430 1.1 fvdl scb_index = ahd_inw(ahd, COMPLETE_SCB_HEAD);
8431 1.1 fvdl i = 0;
8432 1.1 fvdl while (!SCBID_IS_NULL(scb_index) && i++ < AHD_SCB_MAX) {
8433 1.1 fvdl ahd_set_scbptr(ahd, scb_index);
8434 1.1 fvdl printf("%d ", scb_index);
8435 1.1 fvdl scb_index = ahd_inw(ahd, SCB_NEXT_COMPLETE);
8436 1.1 fvdl }
8437 1.1 fvdl printf("\n");
8438 1.1 fvdl
8439 1.1 fvdl
8440 1.1 fvdl printf("Sequencer DMA-Up and Complete list: ");
8441 1.1 fvdl scb_index = ahd_inw(ahd, COMPLETE_DMA_SCB_HEAD);
8442 1.1 fvdl i = 0;
8443 1.1 fvdl while (!SCBID_IS_NULL(scb_index) && i++ < AHD_SCB_MAX) {
8444 1.1 fvdl ahd_set_scbptr(ahd, scb_index);
8445 1.1 fvdl printf("%d ", scb_index);
8446 1.1 fvdl scb_index = ahd_inw(ahd, SCB_NEXT_COMPLETE);
8447 1.1 fvdl }
8448 1.1 fvdl printf("\n");
8449 1.1 fvdl ahd_set_scbptr(ahd, saved_scb_index);
8450 1.1 fvdl dffstat = ahd_inb(ahd, DFFSTAT);
8451 1.1 fvdl for (i = 0; i < 2; i++) {
8452 1.1 fvdl #ifdef AHD_DEBUG
8453 1.1 fvdl struct scb *fifo_scb;
8454 1.1 fvdl #endif
8455 1.1 fvdl u_int fifo_scbptr;
8456 1.1 fvdl
8457 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_DFF0 + i, AHD_MODE_DFF0 + i);
8458 1.1 fvdl fifo_scbptr = ahd_get_scbptr(ahd);
8459 1.9 thorpej printf("\n%s: FIFO%d %s, LONGJMP == 0x%x, SCB 0x%x\n",
8460 1.1 fvdl ahd_name(ahd), i,
8461 1.1 fvdl (dffstat & (FIFO0FREE << i)) ? "Free" : "Active",
8462 1.9 thorpej ahd_inw(ahd, LONGJMP_ADDR), fifo_scbptr);
8463 1.1 fvdl cur_col = 0;
8464 1.1 fvdl ahd_seqimode_print(ahd_inb(ahd, SEQIMODE), &cur_col, 50);
8465 1.1 fvdl ahd_seqintsrc_print(ahd_inb(ahd, SEQINTSRC), &cur_col, 50);
8466 1.1 fvdl ahd_dfcntrl_print(ahd_inb(ahd, DFCNTRL), &cur_col, 50);
8467 1.1 fvdl ahd_dfstatus_print(ahd_inb(ahd, DFSTATUS), &cur_col, 50);
8468 1.1 fvdl ahd_sg_cache_shadow_print(ahd_inb(ahd, SG_CACHE_SHADOW),
8469 1.1 fvdl &cur_col, 50);
8470 1.1 fvdl ahd_sg_state_print(ahd_inb(ahd, SG_STATE), &cur_col, 50);
8471 1.1 fvdl ahd_dffsxfrctl_print(ahd_inb(ahd, DFFSXFRCTL), &cur_col, 50);
8472 1.1 fvdl ahd_soffcnt_print(ahd_inb(ahd, SOFFCNT), &cur_col, 50);
8473 1.1 fvdl ahd_mdffstat_print(ahd_inb(ahd, MDFFSTAT), &cur_col, 50);
8474 1.1 fvdl if (cur_col > 50) {
8475 1.1 fvdl printf("\n");
8476 1.1 fvdl cur_col = 0;
8477 1.1 fvdl }
8478 1.1 fvdl printf("\nSHADDR = 0x%x%x, SHCNT = 0x%x ",
8479 1.1 fvdl ahd_inl(ahd, SHADDR+4),
8480 1.1 fvdl ahd_inl(ahd, SHADDR),
8481 1.1 fvdl (ahd_inb(ahd, SHCNT)
8482 1.1 fvdl | (ahd_inb(ahd, SHCNT + 1) << 8)
8483 1.1 fvdl | (ahd_inb(ahd, SHCNT + 2) << 16)));
8484 1.1 fvdl printf("HADDR = 0x%x%x, HCNT = 0x%x \n",
8485 1.1 fvdl ahd_inl(ahd, HADDR+4),
8486 1.1 fvdl ahd_inl(ahd, HADDR),
8487 1.1 fvdl (ahd_inb(ahd, HCNT)
8488 1.1 fvdl | (ahd_inb(ahd, HCNT + 1) << 8)
8489 1.1 fvdl | (ahd_inb(ahd, HCNT + 2) << 16)));
8490 1.1 fvdl ahd_ccsgctl_print(ahd_inb(ahd, CCSGCTL), &cur_col, 50);
8491 1.1 fvdl #ifdef AHD_DEBUG
8492 1.1 fvdl if ((ahd_debug & AHD_SHOW_SG) != 0) {
8493 1.1 fvdl fifo_scb = ahd_lookup_scb(ahd, fifo_scbptr);
8494 1.1 fvdl if (fifo_scb != NULL)
8495 1.1 fvdl ahd_dump_sglist(fifo_scb);
8496 1.1 fvdl }
8497 1.1 fvdl #endif
8498 1.1 fvdl }
8499 1.1 fvdl printf("\nLQIN: ");
8500 1.1 fvdl for (i = 0; i < 20; i++)
8501 1.1 fvdl printf("0x%x ", ahd_inb(ahd, LQIN + i));
8502 1.1 fvdl printf("\n");
8503 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
8504 1.1 fvdl printf("%s: LQISTATE = 0x%x, LQOSTATE = 0x%x, OPTIONMODE = 0x%x\n",
8505 1.1 fvdl ahd_name(ahd), ahd_inb(ahd, LQISTATE), ahd_inb(ahd, LQOSTATE),
8506 1.1 fvdl ahd_inb(ahd, OPTIONMODE));
8507 1.1 fvdl printf("%s: OS_SPACE_CNT = 0x%x MAXCMDCNT = 0x%x\n",
8508 1.1 fvdl ahd_name(ahd), ahd_inb(ahd, OS_SPACE_CNT),
8509 1.1 fvdl ahd_inb(ahd, MAXCMDCNT));
8510 1.1 fvdl ahd_simode0_print(ahd_inb(ahd, SIMODE0), &cur_col, 50);
8511 1.1 fvdl printf("\n");
8512 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_CCHAN, AHD_MODE_CCHAN);
8513 1.1 fvdl cur_col = 0;
8514 1.1 fvdl ahd_set_modes(ahd, ahd->saved_src_mode, ahd->saved_dst_mode);
8515 1.1 fvdl printf("%s: REG0 == 0x%x, SINDEX = 0x%x, DINDEX = 0x%x\n",
8516 1.1 fvdl ahd_name(ahd), ahd_inw(ahd, REG0), ahd_inw(ahd, SINDEX),
8517 1.1 fvdl ahd_inw(ahd, DINDEX));
8518 1.1 fvdl printf("%s: SCBPTR == 0x%x, SCB_NEXT == 0x%x, SCB_NEXT2 == 0x%x\n",
8519 1.1 fvdl ahd_name(ahd), ahd_get_scbptr(ahd), ahd_inw(ahd, SCB_NEXT),
8520 1.1 fvdl ahd_inw(ahd, SCB_NEXT2));
8521 1.1 fvdl printf("CDB %x %x %x %x %x %x\n",
8522 1.1 fvdl ahd_inb(ahd, SCB_CDB_STORE),
8523 1.1 fvdl ahd_inb(ahd, SCB_CDB_STORE+1),
8524 1.1 fvdl ahd_inb(ahd, SCB_CDB_STORE+2),
8525 1.1 fvdl ahd_inb(ahd, SCB_CDB_STORE+3),
8526 1.1 fvdl ahd_inb(ahd, SCB_CDB_STORE+4),
8527 1.1 fvdl ahd_inb(ahd, SCB_CDB_STORE+5));
8528 1.1 fvdl printf("STACK:");
8529 1.1 fvdl for (i = 0; i < ahd->stack_size; i++) {
8530 1.1 fvdl ahd->saved_stack[i] =
8531 1.1 fvdl ahd_inb(ahd, STACK)|(ahd_inb(ahd, STACK) << 8);
8532 1.1 fvdl printf(" 0x%x", ahd->saved_stack[i]);
8533 1.1 fvdl }
8534 1.1 fvdl for (i = ahd->stack_size-1; i >= 0; i--) {
8535 1.1 fvdl ahd_outb(ahd, STACK, ahd->saved_stack[i] & 0xFF);
8536 1.1 fvdl ahd_outb(ahd, STACK, (ahd->saved_stack[i] >> 8) & 0xFF);
8537 1.1 fvdl }
8538 1.1 fvdl printf("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n");
8539 1.1 fvdl ahd_platform_dump_card_state(ahd);
8540 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
8541 1.1 fvdl if (paused == 0)
8542 1.1 fvdl ahd_unpause(ahd);
8543 1.1 fvdl }
8544 1.1 fvdl
8545 1.1 fvdl void
8546 1.1 fvdl ahd_dump_scbs(struct ahd_softc *ahd)
8547 1.1 fvdl {
8548 1.1 fvdl ahd_mode_state saved_modes;
8549 1.1 fvdl u_int saved_scb_index;
8550 1.1 fvdl int i;
8551 1.1 fvdl
8552 1.1 fvdl saved_modes = ahd_save_modes(ahd);
8553 1.1 fvdl ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
8554 1.1 fvdl saved_scb_index = ahd_get_scbptr(ahd);
8555 1.1 fvdl for (i = 0; i < AHD_SCB_MAX; i++) {
8556 1.1 fvdl ahd_set_scbptr(ahd, i);
8557 1.1 fvdl printf("%3d", i);
8558 1.1 fvdl printf("(CTRL 0x%x ID 0x%x N 0x%x N2 0x%x SG 0x%x, RSG 0x%x)\n",
8559 1.1 fvdl ahd_inb(ahd, SCB_CONTROL),
8560 1.1 fvdl ahd_inb(ahd, SCB_SCSIID), ahd_inw(ahd, SCB_NEXT),
8561 1.1 fvdl ahd_inw(ahd, SCB_NEXT2), ahd_inl(ahd, SCB_SGPTR),
8562 1.1 fvdl ahd_inl(ahd, SCB_RESIDUAL_SGPTR));
8563 1.1 fvdl }
8564 1.1 fvdl printf("\n");
8565 1.1 fvdl ahd_set_scbptr(ahd, saved_scb_index);
8566 1.1 fvdl ahd_restore_modes(ahd, saved_modes);
8567 1.1 fvdl }
8568 1.1 fvdl
8569 1.1 fvdl /**************************** Flexport Logic **********************************/
8570 1.1 fvdl /*
8571 1.1 fvdl * Read count 16bit words from 16bit word address start_addr from the
8572 1.1 fvdl * SEEPROM attached to the controller, into buf, using the controller's
8573 1.9 thorpej * SEEPROM reading state machine. Optionally treat the data as a byte
8574 1.9 thorpej * stream in terms of byte order.
8575 1.1 fvdl */
8576 1.1 fvdl int
8577 1.1 fvdl ahd_read_seeprom(struct ahd_softc *ahd, uint16_t *buf,
8578 1.9 thorpej u_int start_addr, u_int count, int bytestream)
8579 1.1 fvdl {
8580 1.1 fvdl u_int cur_addr;
8581 1.1 fvdl u_int end_addr;
8582 1.1 fvdl int error;
8583 1.1 fvdl
8584 1.1 fvdl /*
8585 1.1 fvdl * If we never make it through the loop even once,
8586 1.1 fvdl * we were passed invalid arguments.
8587 1.1 fvdl */
8588 1.1 fvdl error = EINVAL;
8589 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
8590 1.1 fvdl end_addr = start_addr + count;
8591 1.1 fvdl for (cur_addr = start_addr; cur_addr < end_addr; cur_addr++) {
8592 1.9 thorpej
8593 1.1 fvdl ahd_outb(ahd, SEEADR, cur_addr);
8594 1.1 fvdl ahd_outb(ahd, SEECTL, SEEOP_READ | SEESTART);
8595 1.1 fvdl
8596 1.1 fvdl error = ahd_wait_seeprom(ahd);
8597 1.1 fvdl if (error) {
8598 1.1 fvdl printf("%s: ahd_wait_seeprom timed out\n", ahd_name(ahd));
8599 1.1 fvdl break;
8600 1.1 fvdl }
8601 1.9 thorpej if (bytestream != 0) {
8602 1.9 thorpej uint8_t *bytestream_ptr;
8603 1.9 thorpej
8604 1.9 thorpej bytestream_ptr = (uint8_t *)buf;
8605 1.9 thorpej *bytestream_ptr++ = ahd_inb(ahd, SEEDAT);
8606 1.9 thorpej *bytestream_ptr = ahd_inb(ahd, SEEDAT+1);
8607 1.9 thorpej } else {
8608 1.9 thorpej /*
8609 1.9 thorpej * ahd_inw() already handles machine byte order.
8610 1.9 thorpej */
8611 1.9 thorpej *buf = ahd_inw(ahd, SEEDAT);
8612 1.9 thorpej }
8613 1.9 thorpej buf++;
8614 1.1 fvdl }
8615 1.1 fvdl return (error);
8616 1.1 fvdl }
8617 1.1 fvdl
8618 1.1 fvdl /*
8619 1.1 fvdl * Write count 16bit words from buf, into SEEPROM attache to the
8620 1.1 fvdl * controller starting at 16bit word address start_addr, using the
8621 1.1 fvdl * controller's SEEPROM writing state machine.
8622 1.1 fvdl */
8623 1.1 fvdl int
8624 1.1 fvdl ahd_write_seeprom(struct ahd_softc *ahd, uint16_t *buf,
8625 1.1 fvdl u_int start_addr, u_int count)
8626 1.1 fvdl {
8627 1.1 fvdl u_int cur_addr;
8628 1.1 fvdl u_int end_addr;
8629 1.1 fvdl int error;
8630 1.1 fvdl int retval;
8631 1.1 fvdl
8632 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
8633 1.1 fvdl error = ENOENT;
8634 1.1 fvdl
8635 1.1 fvdl /* Place the chip into write-enable mode */
8636 1.1 fvdl ahd_outb(ahd, SEEADR, SEEOP_EWEN_ADDR);
8637 1.1 fvdl ahd_outb(ahd, SEECTL, SEEOP_EWEN | SEESTART);
8638 1.1 fvdl error = ahd_wait_seeprom(ahd);
8639 1.1 fvdl if (error)
8640 1.1 fvdl return (error);
8641 1.1 fvdl
8642 1.1 fvdl /*
8643 1.1 fvdl * Write the data. If we don't get throught the loop at
8644 1.1 fvdl * least once, the arguments were invalid.
8645 1.1 fvdl */
8646 1.1 fvdl retval = EINVAL;
8647 1.1 fvdl end_addr = start_addr + count;
8648 1.1 fvdl for (cur_addr = start_addr; cur_addr < end_addr; cur_addr++) {
8649 1.1 fvdl ahd_outw(ahd, SEEDAT, *buf++);
8650 1.1 fvdl ahd_outb(ahd, SEEADR, cur_addr);
8651 1.1 fvdl ahd_outb(ahd, SEECTL, SEEOP_WRITE | SEESTART);
8652 1.1 fvdl
8653 1.1 fvdl retval = ahd_wait_seeprom(ahd);
8654 1.1 fvdl if (retval)
8655 1.1 fvdl break;
8656 1.1 fvdl }
8657 1.1 fvdl
8658 1.1 fvdl /*
8659 1.1 fvdl * Disable writes.
8660 1.1 fvdl */
8661 1.1 fvdl ahd_outb(ahd, SEEADR, SEEOP_EWDS_ADDR);
8662 1.1 fvdl ahd_outb(ahd, SEECTL, SEEOP_EWDS | SEESTART);
8663 1.1 fvdl error = ahd_wait_seeprom(ahd);
8664 1.1 fvdl if (error)
8665 1.1 fvdl return (error);
8666 1.1 fvdl return (retval);
8667 1.1 fvdl }
8668 1.1 fvdl
8669 1.1 fvdl /*
8670 1.1 fvdl * Wait ~100us for the serial eeprom to satisfy our request.
8671 1.1 fvdl */
8672 1.1 fvdl int
8673 1.1 fvdl ahd_wait_seeprom(struct ahd_softc *ahd)
8674 1.1 fvdl {
8675 1.1 fvdl int cnt;
8676 1.1 fvdl
8677 1.1 fvdl cnt = 2000;
8678 1.1 fvdl while ((ahd_inb(ahd, SEESTAT) & (SEEARBACK|SEEBUSY)) != 0 && --cnt)
8679 1.1 fvdl ahd_delay(5);
8680 1.1 fvdl
8681 1.1 fvdl if (cnt == 0)
8682 1.1 fvdl return (ETIMEDOUT);
8683 1.1 fvdl return (0);
8684 1.9 thorpej }
8685 1.9 thorpej
8686 1.9 thorpej /*
8687 1.9 thorpej * Validate the two checksums in the per_channel
8688 1.9 thorpej * vital product data struct.
8689 1.9 thorpej */
8690 1.9 thorpej int
8691 1.9 thorpej ahd_verify_vpd_cksum(struct vpd_config *vpd)
8692 1.9 thorpej {
8693 1.9 thorpej int i;
8694 1.9 thorpej int maxaddr;
8695 1.9 thorpej uint32_t checksum;
8696 1.9 thorpej uint8_t *vpdarray;
8697 1.9 thorpej
8698 1.9 thorpej vpdarray = (uint8_t *)vpd;
8699 1.9 thorpej maxaddr = offsetof(struct vpd_config, vpd_checksum);
8700 1.9 thorpej checksum = 0;
8701 1.9 thorpej for (i = offsetof(struct vpd_config, resource_type); i < maxaddr; i++)
8702 1.9 thorpej checksum = checksum + vpdarray[i];
8703 1.9 thorpej if (checksum == 0
8704 1.9 thorpej || (-checksum & 0xFF) != vpd->vpd_checksum)
8705 1.9 thorpej return (0);
8706 1.9 thorpej
8707 1.9 thorpej checksum = 0;
8708 1.9 thorpej maxaddr = offsetof(struct vpd_config, checksum);
8709 1.9 thorpej for (i = offsetof(struct vpd_config, default_target_flags);
8710 1.9 thorpej i < maxaddr; i++)
8711 1.9 thorpej checksum = checksum + vpdarray[i];
8712 1.9 thorpej if (checksum == 0
8713 1.9 thorpej || (-checksum & 0xFF) != vpd->checksum)
8714 1.9 thorpej return (0);
8715 1.9 thorpej return (1);
8716 1.1 fvdl }
8717 1.1 fvdl
8718 1.1 fvdl int
8719 1.1 fvdl ahd_verify_cksum(struct seeprom_config *sc)
8720 1.1 fvdl {
8721 1.1 fvdl int i;
8722 1.1 fvdl int maxaddr;
8723 1.1 fvdl uint32_t checksum;
8724 1.1 fvdl uint16_t *scarray;
8725 1.1 fvdl
8726 1.1 fvdl maxaddr = (sizeof(*sc)/2) - 1;
8727 1.1 fvdl checksum = 0;
8728 1.1 fvdl scarray = (uint16_t *)sc;
8729 1.1 fvdl
8730 1.1 fvdl for (i = 0; i < maxaddr; i++)
8731 1.1 fvdl checksum = checksum + scarray[i];
8732 1.1 fvdl if (checksum == 0
8733 1.1 fvdl || (checksum & 0xFFFF) != sc->checksum) {
8734 1.1 fvdl return (0);
8735 1.1 fvdl } else {
8736 1.1 fvdl return (1);
8737 1.1 fvdl }
8738 1.1 fvdl }
8739 1.1 fvdl
8740 1.1 fvdl int
8741 1.1 fvdl ahd_acquire_seeprom(struct ahd_softc *ahd)
8742 1.1 fvdl {
8743 1.1 fvdl /*
8744 1.1 fvdl * We should be able to determine the SEEPROM type
8745 1.1 fvdl * from the flexport logic, but unfortunately not
8746 1.1 fvdl * all implementations have this logic and there is
8747 1.1 fvdl * no programatic method for determining if the logic
8748 1.1 fvdl * is present.
8749 1.1 fvdl */
8750 1.1 fvdl
8751 1.1 fvdl return (1);
8752 1.1 fvdl #if 0
8753 1.1 fvdl uint8_t seetype;
8754 1.1 fvdl int error;
8755 1.1 fvdl
8756 1.1 fvdl error = ahd_read_flexport(ahd, FLXADDR_ROMSTAT_CURSENSECTL, &seetype);
8757 1.1 fvdl if (error != 0
8758 1.1 fvdl || ((seetype & FLX_ROMSTAT_SEECFG) == FLX_ROMSTAT_SEE_NONE))
8759 1.1 fvdl return (0);
8760 1.1 fvdl return (1);
8761 1.1 fvdl #endif
8762 1.1 fvdl }
8763 1.1 fvdl
8764 1.1 fvdl void
8765 1.1 fvdl ahd_release_seeprom(struct ahd_softc *ahd)
8766 1.1 fvdl {
8767 1.1 fvdl /* Currently a no-op */
8768 1.1 fvdl }
8769 1.1 fvdl
8770 1.1 fvdl int
8771 1.1 fvdl ahd_write_flexport(struct ahd_softc *ahd, u_int addr, u_int value)
8772 1.1 fvdl {
8773 1.1 fvdl int error;
8774 1.1 fvdl
8775 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
8776 1.1 fvdl if (addr > 7)
8777 1.1 fvdl panic("ahd_write_flexport: address out of range");
8778 1.1 fvdl ahd_outb(ahd, BRDCTL, BRDEN|(addr << 3));
8779 1.1 fvdl error = ahd_wait_flexport(ahd);
8780 1.1 fvdl if (error != 0)
8781 1.1 fvdl return (error);
8782 1.1 fvdl ahd_outb(ahd, BRDDAT, value);
8783 1.1 fvdl ahd_flush_device_writes(ahd);
8784 1.1 fvdl ahd_outb(ahd, BRDCTL, BRDSTB|BRDEN|(addr << 3));
8785 1.1 fvdl ahd_flush_device_writes(ahd);
8786 1.1 fvdl ahd_outb(ahd, BRDCTL, BRDEN|(addr << 3));
8787 1.1 fvdl ahd_flush_device_writes(ahd);
8788 1.1 fvdl ahd_outb(ahd, BRDCTL, 0);
8789 1.1 fvdl ahd_flush_device_writes(ahd);
8790 1.1 fvdl return (0);
8791 1.1 fvdl }
8792 1.1 fvdl
8793 1.1 fvdl int
8794 1.1 fvdl ahd_read_flexport(struct ahd_softc *ahd, u_int addr, uint8_t *value)
8795 1.1 fvdl {
8796 1.1 fvdl int error;
8797 1.1 fvdl
8798 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
8799 1.1 fvdl if (addr > 7)
8800 1.1 fvdl panic("ahd_read_flexport: address out of range");
8801 1.1 fvdl ahd_outb(ahd, BRDCTL, BRDRW|BRDEN|(addr << 3));
8802 1.1 fvdl error = ahd_wait_flexport(ahd);
8803 1.1 fvdl if (error != 0)
8804 1.1 fvdl return (error);
8805 1.1 fvdl *value = ahd_inb(ahd, BRDDAT);
8806 1.1 fvdl ahd_outb(ahd, BRDCTL, 0);
8807 1.1 fvdl ahd_flush_device_writes(ahd);
8808 1.1 fvdl return (0);
8809 1.1 fvdl }
8810 1.1 fvdl
8811 1.1 fvdl /*
8812 1.1 fvdl * Wait at most 2 seconds for flexport arbitration to succeed.
8813 1.1 fvdl */
8814 1.1 fvdl int
8815 1.1 fvdl ahd_wait_flexport(struct ahd_softc *ahd)
8816 1.1 fvdl {
8817 1.1 fvdl int cnt;
8818 1.1 fvdl
8819 1.1 fvdl AHD_ASSERT_MODES(ahd, AHD_MODE_SCSI_MSK, AHD_MODE_SCSI_MSK);
8820 1.1 fvdl cnt = 1000000 * 2 / 5;
8821 1.1 fvdl while ((ahd_inb(ahd, BRDCTL) & FLXARBACK) == 0 && --cnt)
8822 1.1 fvdl ahd_delay(5);
8823 1.1 fvdl
8824 1.1 fvdl if (cnt == 0)
8825 1.1 fvdl return (ETIMEDOUT);
8826 1.1 fvdl return (0);
8827 1.1 fvdl }
8828 1.1 fvdl
8829 1.1 fvdl /************************* Target Mode ****************************************/
8830 1.1 fvdl #ifdef AHD_TARGET_MODE
8831 1.1 fvdl cam_status
8832 1.1 fvdl ahd_find_tmode_devs(struct ahd_softc *ahd, struct cam_sim *sim, union ccb *ccb,
8833 1.1 fvdl struct ahd_tmode_tstate **tstate,
8834 1.1 fvdl struct ahd_tmode_lstate **lstate,
8835 1.1 fvdl int notfound_failure)
8836 1.1 fvdl {
8837 1.1 fvdl
8838 1.1 fvdl if ((ahd->features & AHD_TARGETMODE) == 0)
8839 1.1 fvdl return (CAM_REQ_INVALID);
8840 1.1 fvdl
8841 1.1 fvdl /*
8842 1.1 fvdl * Handle the 'black hole' device that sucks up
8843 1.1 fvdl * requests to unattached luns on enabled targets.
8844 1.1 fvdl */
8845 1.1 fvdl if (ccb->ccb_h.target_id == CAM_TARGET_WILDCARD
8846 1.1 fvdl && ccb->ccb_h.target_lun == CAM_LUN_WILDCARD) {
8847 1.1 fvdl *tstate = NULL;
8848 1.1 fvdl *lstate = ahd->black_hole;
8849 1.1 fvdl } else {
8850 1.1 fvdl u_int max_id;
8851 1.1 fvdl
8852 1.1 fvdl max_id = (ahd->features & AHD_WIDE) ? 15 : 7;
8853 1.1 fvdl if (ccb->ccb_h.target_id > max_id)
8854 1.1 fvdl return (CAM_TID_INVALID);
8855 1.1 fvdl
8856 1.1 fvdl if (ccb->ccb_h.target_lun >= AHD_NUM_LUNS)
8857 1.1 fvdl return (CAM_LUN_INVALID);
8858 1.1 fvdl
8859 1.1 fvdl *tstate = ahd->enabled_targets[ccb->ccb_h.target_id];
8860 1.1 fvdl *lstate = NULL;
8861 1.1 fvdl if (*tstate != NULL)
8862 1.1 fvdl *lstate =
8863 1.1 fvdl (*tstate)->enabled_luns[ccb->ccb_h.target_lun];
8864 1.1 fvdl }
8865 1.1 fvdl
8866 1.1 fvdl if (notfound_failure != 0 && *lstate == NULL)
8867 1.1 fvdl return (CAM_PATH_INVALID);
8868 1.1 fvdl
8869 1.1 fvdl return (CAM_REQ_CMP);
8870 1.1 fvdl }
8871 1.1 fvdl
8872 1.1 fvdl void
8873 1.1 fvdl ahd_handle_en_lun(struct ahd_softc *ahd, struct cam_sim *sim, union ccb *ccb)
8874 1.1 fvdl {
8875 1.1 fvdl #if NOT_YET
8876 1.1 fvdl struct ahd_tmode_tstate *tstate;
8877 1.1 fvdl struct ahd_tmode_lstate *lstate;
8878 1.1 fvdl struct ccb_en_lun *cel;
8879 1.1 fvdl cam_status status;
8880 1.1 fvdl u_int target;
8881 1.1 fvdl u_int lun;
8882 1.1 fvdl u_int target_mask;
8883 1.1 fvdl u_long s;
8884 1.1 fvdl char channel;
8885 1.1 fvdl
8886 1.1 fvdl status = ahd_find_tmode_devs(ahd, sim, ccb, &tstate, &lstate,
8887 1.1 fvdl /*notfound_failure*/FALSE);
8888 1.1 fvdl
8889 1.1 fvdl if (status != CAM_REQ_CMP) {
8890 1.1 fvdl ccb->ccb_h.status = status;
8891 1.1 fvdl return;
8892 1.1 fvdl }
8893 1.1 fvdl
8894 1.1 fvdl if ((ahd->features & AHD_MULTIROLE) != 0) {
8895 1.1 fvdl u_int our_id;
8896 1.1 fvdl
8897 1.1 fvdl our_id = ahd->our_id;
8898 1.1 fvdl if (ccb->ccb_h.target_id != our_id) {
8899 1.1 fvdl if ((ahd->features & AHD_MULTI_TID) != 0
8900 1.1 fvdl && (ahd->flags & AHD_INITIATORROLE) != 0) {
8901 1.1 fvdl /*
8902 1.1 fvdl * Only allow additional targets if
8903 1.1 fvdl * the initiator role is disabled.
8904 1.1 fvdl * The hardware cannot handle a re-select-in
8905 1.1 fvdl * on the initiator id during a re-select-out
8906 1.1 fvdl * on a different target id.
8907 1.1 fvdl */
8908 1.1 fvdl status = CAM_TID_INVALID;
8909 1.1 fvdl } else if ((ahd->flags & AHD_INITIATORROLE) != 0
8910 1.1 fvdl || ahd->enabled_luns > 0) {
8911 1.1 fvdl /*
8912 1.1 fvdl * Only allow our target id to change
8913 1.1 fvdl * if the initiator role is not configured
8914 1.1 fvdl * and there are no enabled luns which
8915 1.1 fvdl * are attached to the currently registered
8916 1.1 fvdl * scsi id.
8917 1.1 fvdl */
8918 1.1 fvdl status = CAM_TID_INVALID;
8919 1.1 fvdl }
8920 1.1 fvdl }
8921 1.1 fvdl }
8922 1.1 fvdl
8923 1.1 fvdl if (status != CAM_REQ_CMP) {
8924 1.1 fvdl ccb->ccb_h.status = status;
8925 1.1 fvdl return;
8926 1.1 fvdl }
8927 1.1 fvdl
8928 1.1 fvdl /*
8929 1.1 fvdl * We now have an id that is valid.
8930 1.1 fvdl * If we aren't in target mode, switch modes.
8931 1.1 fvdl */
8932 1.1 fvdl if ((ahd->flags & AHD_TARGETROLE) == 0
8933 1.1 fvdl && ccb->ccb_h.target_id != CAM_TARGET_WILDCARD) {
8934 1.1 fvdl u_long s;
8935 1.1 fvdl
8936 1.1 fvdl printf("Configuring Target Mode\n");
8937 1.1 fvdl ahd_lock(ahd, &s);
8938 1.1 fvdl if (LIST_FIRST(&ahd->pending_scbs) != NULL) {
8939 1.1 fvdl ccb->ccb_h.status = CAM_BUSY;
8940 1.1 fvdl ahd_unlock(ahd, &s);
8941 1.1 fvdl return;
8942 1.1 fvdl }
8943 1.1 fvdl ahd->flags |= AHD_TARGETROLE;
8944 1.1 fvdl if ((ahd->features & AHD_MULTIROLE) == 0)
8945 1.1 fvdl ahd->flags &= ~AHD_INITIATORROLE;
8946 1.1 fvdl ahd_pause(ahd);
8947 1.1 fvdl ahd_loadseq(ahd);
8948 1.15 thorpej ahd_restart(ahd);
8949 1.1 fvdl ahd_unlock(ahd, &s);
8950 1.1 fvdl }
8951 1.1 fvdl cel = &ccb->cel;
8952 1.1 fvdl target = ccb->ccb_h.target_id;
8953 1.1 fvdl lun = ccb->ccb_h.target_lun;
8954 1.1 fvdl channel = SIM_CHANNEL(ahd, sim);
8955 1.1 fvdl target_mask = 0x01 << target;
8956 1.1 fvdl if (channel == 'B')
8957 1.1 fvdl target_mask <<= 8;
8958 1.1 fvdl
8959 1.1 fvdl if (cel->enable != 0) {
8960 1.1 fvdl u_int scsiseq1;
8961 1.1 fvdl
8962 1.1 fvdl /* Are we already enabled?? */
8963 1.1 fvdl if (lstate != NULL) {
8964 1.1 fvdl xpt_print_path(ccb->ccb_h.path);
8965 1.1 fvdl printf("Lun already enabled\n");
8966 1.1 fvdl ccb->ccb_h.status = CAM_LUN_ALRDY_ENA;
8967 1.1 fvdl return;
8968 1.1 fvdl }
8969 1.1 fvdl
8970 1.1 fvdl if (cel->grp6_len != 0
8971 1.1 fvdl || cel->grp7_len != 0) {
8972 1.1 fvdl /*
8973 1.1 fvdl * Don't (yet?) support vendor
8974 1.1 fvdl * specific commands.
8975 1.1 fvdl */
8976 1.1 fvdl ccb->ccb_h.status = CAM_REQ_INVALID;
8977 1.1 fvdl printf("Non-zero Group Codes\n");
8978 1.1 fvdl return;
8979 1.1 fvdl }
8980 1.1 fvdl
8981 1.1 fvdl /*
8982 1.1 fvdl * Seems to be okay.
8983 1.1 fvdl * Setup our data structures.
8984 1.1 fvdl */
8985 1.1 fvdl if (target != CAM_TARGET_WILDCARD && tstate == NULL) {
8986 1.1 fvdl tstate = ahd_alloc_tstate(ahd, target, channel);
8987 1.1 fvdl if (tstate == NULL) {
8988 1.1 fvdl xpt_print_path(ccb->ccb_h.path);
8989 1.1 fvdl printf("Couldn't allocate tstate\n");
8990 1.1 fvdl ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
8991 1.1 fvdl return;
8992 1.1 fvdl }
8993 1.1 fvdl }
8994 1.1 fvdl lstate = malloc(sizeof(*lstate), M_DEVBUF, M_NOWAIT);
8995 1.1 fvdl if (lstate == NULL) {
8996 1.1 fvdl xpt_print_path(ccb->ccb_h.path);
8997 1.1 fvdl printf("Couldn't allocate lstate\n");
8998 1.1 fvdl ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
8999 1.1 fvdl return;
9000 1.1 fvdl }
9001 1.1 fvdl memset(lstate, 0, sizeof(*lstate));
9002 1.1 fvdl status = xpt_create_path(&lstate->path, /*periph*/NULL,
9003 1.1 fvdl xpt_path_path_id(ccb->ccb_h.path),
9004 1.1 fvdl xpt_path_target_id(ccb->ccb_h.path),
9005 1.1 fvdl xpt_path_lun_id(ccb->ccb_h.path));
9006 1.1 fvdl if (status != CAM_REQ_CMP) {
9007 1.1 fvdl free(lstate, M_DEVBUF);
9008 1.1 fvdl xpt_print_path(ccb->ccb_h.path);
9009 1.1 fvdl printf("Couldn't allocate path\n");
9010 1.1 fvdl ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
9011 1.1 fvdl return;
9012 1.1 fvdl }
9013 1.1 fvdl SLIST_INIT(&lstate->accept_tios);
9014 1.1 fvdl SLIST_INIT(&lstate->immed_notifies);
9015 1.1 fvdl ahd_lock(ahd, &s);
9016 1.1 fvdl ahd_pause(ahd);
9017 1.1 fvdl if (target != CAM_TARGET_WILDCARD) {
9018 1.1 fvdl tstate->enabled_luns[lun] = lstate;
9019 1.1 fvdl ahd->enabled_luns++;
9020 1.1 fvdl
9021 1.1 fvdl if ((ahd->features & AHD_MULTI_TID) != 0) {
9022 1.1 fvdl u_int targid_mask;
9023 1.1 fvdl
9024 1.1 fvdl targid_mask = ahd_inb(ahd, TARGID)
9025 1.1 fvdl | (ahd_inb(ahd, TARGID + 1) << 8);
9026 1.1 fvdl
9027 1.1 fvdl targid_mask |= target_mask;
9028 1.1 fvdl ahd_outb(ahd, TARGID, targid_mask);
9029 1.1 fvdl ahd_outb(ahd, TARGID+1, (targid_mask >> 8));
9030 1.1 fvdl
9031 1.1 fvdl ahd_update_scsiid(ahd, targid_mask);
9032 1.1 fvdl } else {
9033 1.1 fvdl u_int our_id;
9034 1.1 fvdl char channel;
9035 1.1 fvdl
9036 1.1 fvdl channel = SIM_CHANNEL(ahd, sim);
9037 1.1 fvdl our_id = SIM_SCSI_ID(ahd, sim);
9038 1.1 fvdl
9039 1.1 fvdl /*
9040 1.1 fvdl * This can only happen if selections
9041 1.1 fvdl * are not enabled
9042 1.1 fvdl */
9043 1.1 fvdl if (target != our_id) {
9044 1.1 fvdl u_int sblkctl;
9045 1.1 fvdl char cur_channel;
9046 1.1 fvdl int swap;
9047 1.1 fvdl
9048 1.1 fvdl sblkctl = ahd_inb(ahd, SBLKCTL);
9049 1.1 fvdl cur_channel = (sblkctl & SELBUSB)
9050 1.1 fvdl ? 'B' : 'A';
9051 1.1 fvdl if ((ahd->features & AHD_TWIN) == 0)
9052 1.1 fvdl cur_channel = 'A';
9053 1.1 fvdl swap = cur_channel != channel;
9054 1.1 fvdl ahd->our_id = target;
9055 1.1 fvdl
9056 1.1 fvdl if (swap)
9057 1.1 fvdl ahd_outb(ahd, SBLKCTL,
9058 1.1 fvdl sblkctl ^ SELBUSB);
9059 1.1 fvdl
9060 1.1 fvdl ahd_outb(ahd, SCSIID, target);
9061 1.1 fvdl
9062 1.1 fvdl if (swap)
9063 1.1 fvdl ahd_outb(ahd, SBLKCTL, sblkctl);
9064 1.1 fvdl }
9065 1.1 fvdl }
9066 1.1 fvdl } else
9067 1.1 fvdl ahd->black_hole = lstate;
9068 1.1 fvdl /* Allow select-in operations */
9069 1.1 fvdl if (ahd->black_hole != NULL && ahd->enabled_luns > 0) {
9070 1.1 fvdl scsiseq1 = ahd_inb(ahd, SCSISEQ_TEMPLATE);
9071 1.1 fvdl scsiseq1 |= ENSELI;
9072 1.1 fvdl ahd_outb(ahd, SCSISEQ_TEMPLATE, scsiseq1);
9073 1.1 fvdl scsiseq1 = ahd_inb(ahd, SCSISEQ1);
9074 1.1 fvdl scsiseq1 |= ENSELI;
9075 1.1 fvdl ahd_outb(ahd, SCSISEQ1, scsiseq1);
9076 1.1 fvdl }
9077 1.1 fvdl ahd_unpause(ahd);
9078 1.1 fvdl ahd_unlock(ahd, &s);
9079 1.1 fvdl ccb->ccb_h.status = CAM_REQ_CMP;
9080 1.1 fvdl xpt_print_path(ccb->ccb_h.path);
9081 1.1 fvdl printf("Lun now enabled for target mode\n");
9082 1.1 fvdl } else {
9083 1.1 fvdl struct scb *scb;
9084 1.1 fvdl int i, empty;
9085 1.1 fvdl
9086 1.1 fvdl if (lstate == NULL) {
9087 1.1 fvdl ccb->ccb_h.status = CAM_LUN_INVALID;
9088 1.1 fvdl return;
9089 1.1 fvdl }
9090 1.1 fvdl
9091 1.1 fvdl ahd_lock(ahd, &s);
9092 1.1 fvdl
9093 1.1 fvdl ccb->ccb_h.status = CAM_REQ_CMP;
9094 1.1 fvdl LIST_FOREACH(scb, &ahd->pending_scbs, pending_links) {
9095 1.1 fvdl struct ccb_hdr *ccbh;
9096 1.1 fvdl
9097 1.1 fvdl ccbh = &scb->io_ctx->ccb_h;
9098 1.1 fvdl if (ccbh->func_code == XPT_CONT_TARGET_IO
9099 1.1 fvdl && !xpt_path_comp(ccbh->path, ccb->ccb_h.path)){
9100 1.1 fvdl printf("CTIO pending\n");
9101 1.1 fvdl ccb->ccb_h.status = CAM_REQ_INVALID;
9102 1.1 fvdl ahd_unlock(ahd, &s);
9103 1.1 fvdl return;
9104 1.1 fvdl }
9105 1.1 fvdl }
9106 1.1 fvdl
9107 1.1 fvdl if (SLIST_FIRST(&lstate->accept_tios) != NULL) {
9108 1.1 fvdl printf("ATIOs pending\n");
9109 1.1 fvdl ccb->ccb_h.status = CAM_REQ_INVALID;
9110 1.1 fvdl }
9111 1.1 fvdl
9112 1.1 fvdl if (SLIST_FIRST(&lstate->immed_notifies) != NULL) {
9113 1.1 fvdl printf("INOTs pending\n");
9114 1.1 fvdl ccb->ccb_h.status = CAM_REQ_INVALID;
9115 1.1 fvdl }
9116 1.1 fvdl
9117 1.1 fvdl if (ccb->ccb_h.status != CAM_REQ_CMP) {
9118 1.1 fvdl ahd_unlock(ahd, &s);
9119 1.1 fvdl return;
9120 1.1 fvdl }
9121 1.1 fvdl
9122 1.1 fvdl xpt_print_path(ccb->ccb_h.path);
9123 1.1 fvdl printf("Target mode disabled\n");
9124 1.1 fvdl xpt_free_path(lstate->path);
9125 1.1 fvdl free(lstate, M_DEVBUF);
9126 1.1 fvdl
9127 1.1 fvdl ahd_pause(ahd);
9128 1.1 fvdl /* Can we clean up the target too? */
9129 1.1 fvdl if (target != CAM_TARGET_WILDCARD) {
9130 1.1 fvdl tstate->enabled_luns[lun] = NULL;
9131 1.1 fvdl ahd->enabled_luns--;
9132 1.1 fvdl for (empty = 1, i = 0; i < 8; i++)
9133 1.1 fvdl if (tstate->enabled_luns[i] != NULL) {
9134 1.1 fvdl empty = 0;
9135 1.1 fvdl break;
9136 1.1 fvdl }
9137 1.1 fvdl
9138 1.1 fvdl if (empty) {
9139 1.1 fvdl ahd_free_tstate(ahd, target, channel,
9140 1.1 fvdl /*force*/FALSE);
9141 1.1 fvdl if (ahd->features & AHD_MULTI_TID) {
9142 1.1 fvdl u_int targid_mask;
9143 1.1 fvdl
9144 1.1 fvdl targid_mask = ahd_inb(ahd, TARGID)
9145 1.1 fvdl | (ahd_inb(ahd, TARGID + 1)
9146 1.1 fvdl << 8);
9147 1.1 fvdl
9148 1.1 fvdl targid_mask &= ~target_mask;
9149 1.1 fvdl ahd_outb(ahd, TARGID, targid_mask);
9150 1.1 fvdl ahd_outb(ahd, TARGID+1,
9151 1.1 fvdl (targid_mask >> 8));
9152 1.1 fvdl ahd_update_scsiid(ahd, targid_mask);
9153 1.1 fvdl }
9154 1.1 fvdl }
9155 1.1 fvdl } else {
9156 1.1 fvdl
9157 1.1 fvdl ahd->black_hole = NULL;
9158 1.1 fvdl
9159 1.1 fvdl /*
9160 1.1 fvdl * We can't allow selections without
9161 1.1 fvdl * our black hole device.
9162 1.1 fvdl */
9163 1.1 fvdl empty = TRUE;
9164 1.1 fvdl }
9165 1.1 fvdl if (ahd->enabled_luns == 0) {
9166 1.1 fvdl /* Disallow select-in */
9167 1.1 fvdl u_int scsiseq1;
9168 1.1 fvdl
9169 1.1 fvdl scsiseq1 = ahd_inb(ahd, SCSISEQ_TEMPLATE);
9170 1.1 fvdl scsiseq1 &= ~ENSELI;
9171 1.1 fvdl ahd_outb(ahd, SCSISEQ_TEMPLATE, scsiseq1);
9172 1.1 fvdl scsiseq1 = ahd_inb(ahd, SCSISEQ1);
9173 1.1 fvdl scsiseq1 &= ~ENSELI;
9174 1.1 fvdl ahd_outb(ahd, SCSISEQ1, scsiseq1);
9175 1.1 fvdl
9176 1.1 fvdl if ((ahd->features & AHD_MULTIROLE) == 0) {
9177 1.1 fvdl printf("Configuring Initiator Mode\n");
9178 1.1 fvdl ahd->flags &= ~AHD_TARGETROLE;
9179 1.1 fvdl ahd->flags |= AHD_INITIATORROLE;
9180 1.1 fvdl ahd_pause(ahd);
9181 1.1 fvdl ahd_loadseq(ahd);
9182 1.15 thorpej ahd_restart(ahd);
9183 1.15 thorpej /*
9184 1.15 thorpej * Unpaused. The extra unpause
9185 1.15 thorpej * that follows is harmless.
9186 1.15 thorpej */
9187 1.1 fvdl }
9188 1.1 fvdl }
9189 1.1 fvdl ahd_unpause(ahd);
9190 1.1 fvdl ahd_unlock(ahd, &s);
9191 1.1 fvdl }
9192 1.1 fvdl #endif
9193 1.1 fvdl }
9194 1.1 fvdl
9195 1.1 fvdl static void
9196 1.1 fvdl ahd_update_scsiid(struct ahd_softc *ahd, u_int targid_mask)
9197 1.1 fvdl {
9198 1.1 fvdl #if NOT_YET
9199 1.1 fvdl u_int scsiid_mask;
9200 1.1 fvdl u_int scsiid;
9201 1.1 fvdl
9202 1.1 fvdl if ((ahd->features & AHD_MULTI_TID) == 0)
9203 1.1 fvdl panic("ahd_update_scsiid called on non-multitid unit\n");
9204 1.1 fvdl
9205 1.1 fvdl /*
9206 1.1 fvdl * Since we will rely on the TARGID mask
9207 1.1 fvdl * for selection enables, ensure that OID
9208 1.1 fvdl * in SCSIID is not set to some other ID
9209 1.1 fvdl * that we don't want to allow selections on.
9210 1.1 fvdl */
9211 1.1 fvdl if ((ahd->features & AHD_ULTRA2) != 0)
9212 1.1 fvdl scsiid = ahd_inb(ahd, SCSIID_ULTRA2);
9213 1.1 fvdl else
9214 1.1 fvdl scsiid = ahd_inb(ahd, SCSIID);
9215 1.1 fvdl scsiid_mask = 0x1 << (scsiid & OID);
9216 1.1 fvdl if ((targid_mask & scsiid_mask) == 0) {
9217 1.1 fvdl u_int our_id;
9218 1.1 fvdl
9219 1.1 fvdl /* ffs counts from 1 */
9220 1.1 fvdl our_id = ffs(targid_mask);
9221 1.1 fvdl if (our_id == 0)
9222 1.1 fvdl our_id = ahd->our_id;
9223 1.1 fvdl else
9224 1.1 fvdl our_id--;
9225 1.1 fvdl scsiid &= TID;
9226 1.1 fvdl scsiid |= our_id;
9227 1.1 fvdl }
9228 1.1 fvdl if ((ahd->features & AHD_ULTRA2) != 0)
9229 1.1 fvdl ahd_outb(ahd, SCSIID_ULTRA2, scsiid);
9230 1.1 fvdl else
9231 1.1 fvdl ahd_outb(ahd, SCSIID, scsiid);
9232 1.1 fvdl #endif
9233 1.1 fvdl }
9234 1.1 fvdl
9235 1.1 fvdl #ifdef AHD_TARGET_MODE
9236 1.1 fvdl void
9237 1.1 fvdl ahd_run_tqinfifo(struct ahd_softc *ahd, int paused)
9238 1.1 fvdl {
9239 1.1 fvdl struct target_cmd *cmd;
9240 1.1 fvdl
9241 1.1 fvdl ahd_sync_tqinfifo(ahd, BUS_DMASYNC_POSTREAD);
9242 1.1 fvdl while ((cmd = &ahd->targetcmds[ahd->tqinfifonext])->cmd_valid != 0) {
9243 1.1 fvdl
9244 1.1 fvdl /*
9245 1.1 fvdl * Only advance through the queue if we
9246 1.1 fvdl * have the resources to process the command.
9247 1.1 fvdl */
9248 1.1 fvdl if (ahd_handle_target_cmd(ahd, cmd) != 0)
9249 1.1 fvdl break;
9250 1.1 fvdl
9251 1.1 fvdl cmd->cmd_valid = 0;
9252 1.1 fvdl ahd_dmamap_sync(ahd, ahd->parent_dmat /*shared_data_dmat*/,
9253 1.7 thorpej ahd->shared_data_map.dmamap,
9254 1.1 fvdl ahd_targetcmd_offset(ahd, ahd->tqinfifonext),
9255 1.1 fvdl sizeof(struct target_cmd),
9256 1.1 fvdl BUS_DMASYNC_PREREAD);
9257 1.1 fvdl ahd->tqinfifonext++;
9258 1.1 fvdl
9259 1.1 fvdl /*
9260 1.1 fvdl * Lazily update our position in the target mode incoming
9261 1.1 fvdl * command queue as seen by the sequencer.
9262 1.1 fvdl */
9263 1.1 fvdl if ((ahd->tqinfifonext & (HOST_TQINPOS - 1)) == 1) {
9264 1.1 fvdl u_int hs_mailbox;
9265 1.1 fvdl
9266 1.1 fvdl hs_mailbox = ahd_inb(ahd, HS_MAILBOX);
9267 1.1 fvdl hs_mailbox &= ~HOST_TQINPOS;
9268 1.1 fvdl hs_mailbox |= ahd->tqinfifonext & HOST_TQINPOS;
9269 1.1 fvdl ahd_outb(ahd, HS_MAILBOX, hs_mailbox);
9270 1.1 fvdl }
9271 1.1 fvdl }
9272 1.1 fvdl }
9273 1.1 fvdl #endif
9274 1.1 fvdl
9275 1.1 fvdl static int
9276 1.1 fvdl ahd_handle_target_cmd(struct ahd_softc *ahd, struct target_cmd *cmd)
9277 1.1 fvdl {
9278 1.1 fvdl struct ahd_tmode_tstate *tstate;
9279 1.1 fvdl struct ahd_tmode_lstate *lstate;
9280 1.1 fvdl struct ccb_accept_tio *atio;
9281 1.1 fvdl uint8_t *byte;
9282 1.1 fvdl int initiator;
9283 1.1 fvdl int target;
9284 1.1 fvdl int lun;
9285 1.1 fvdl
9286 1.1 fvdl initiator = SCSIID_TARGET(ahd, cmd->scsiid);
9287 1.1 fvdl target = SCSIID_OUR_ID(cmd->scsiid);
9288 1.1 fvdl lun = (cmd->identify & MSG_IDENTIFY_LUNMASK);
9289 1.1 fvdl
9290 1.1 fvdl byte = cmd->bytes;
9291 1.1 fvdl tstate = ahd->enabled_targets[target];
9292 1.1 fvdl lstate = NULL;
9293 1.1 fvdl if (tstate != NULL)
9294 1.1 fvdl lstate = tstate->enabled_luns[lun];
9295 1.1 fvdl
9296 1.1 fvdl /*
9297 1.1 fvdl * Commands for disabled luns go to the black hole driver.
9298 1.1 fvdl */
9299 1.1 fvdl if (lstate == NULL)
9300 1.1 fvdl lstate = ahd->black_hole;
9301 1.1 fvdl
9302 1.1 fvdl atio = (struct ccb_accept_tio*)SLIST_FIRST(&lstate->accept_tios);
9303 1.1 fvdl if (atio == NULL) {
9304 1.1 fvdl ahd->flags |= AHD_TQINFIFO_BLOCKED;
9305 1.1 fvdl /*
9306 1.1 fvdl * Wait for more ATIOs from the peripheral driver for this lun.
9307 1.1 fvdl */
9308 1.1 fvdl return (1);
9309 1.1 fvdl } else
9310 1.1 fvdl ahd->flags &= ~AHD_TQINFIFO_BLOCKED;
9311 1.1 fvdl #ifdef AHD_DEBUG
9312 1.1 fvdl if ((ahd_debug & AHD_SHOW_TQIN) != 0)
9313 1.1 fvdl printf("%s: incoming command from %d for %d:%d%s\n",
9314 1.1 fvdl ahd_name(ahd),
9315 1.1 fvdl initiator, target, lun,
9316 1.1 fvdl lstate == ahd->black_hole ? "(Black Holed)" : "");
9317 1.1 fvdl #endif
9318 1.1 fvdl SLIST_REMOVE_HEAD(&lstate->accept_tios, sim_links.sle);
9319 1.1 fvdl
9320 1.1 fvdl if (lstate == ahd->black_hole) {
9321 1.1 fvdl /* Fill in the wildcards */
9322 1.1 fvdl atio->ccb_h.target_id = target;
9323 1.1 fvdl atio->ccb_h.target_lun = lun;
9324 1.1 fvdl }
9325 1.1 fvdl
9326 1.1 fvdl /*
9327 1.1 fvdl * Package it up and send it off to
9328 1.1 fvdl * whomever has this lun enabled.
9329 1.1 fvdl */
9330 1.1 fvdl atio->sense_len = 0;
9331 1.1 fvdl atio->init_id = initiator;
9332 1.1 fvdl if (byte[0] != 0xFF) {
9333 1.1 fvdl /* Tag was included */
9334 1.1 fvdl atio->tag_action = *byte++;
9335 1.1 fvdl atio->tag_id = *byte++;
9336 1.1 fvdl atio->ccb_h.flags = CAM_TAG_ACTION_VALID;
9337 1.1 fvdl } else {
9338 1.1 fvdl atio->ccb_h.flags = 0;
9339 1.1 fvdl }
9340 1.1 fvdl byte++;
9341 1.1 fvdl
9342 1.1 fvdl /* Okay. Now determine the cdb size based on the command code */
9343 1.1 fvdl switch (*byte >> CMD_GROUP_CODE_SHIFT) {
9344 1.1 fvdl case 0:
9345 1.1 fvdl atio->cdb_len = 6;
9346 1.1 fvdl break;
9347 1.1 fvdl case 1:
9348 1.1 fvdl case 2:
9349 1.1 fvdl atio->cdb_len = 10;
9350 1.1 fvdl break;
9351 1.1 fvdl case 4:
9352 1.1 fvdl atio->cdb_len = 16;
9353 1.1 fvdl break;
9354 1.1 fvdl case 5:
9355 1.1 fvdl atio->cdb_len = 12;
9356 1.1 fvdl break;
9357 1.1 fvdl case 3:
9358 1.1 fvdl default:
9359 1.1 fvdl /* Only copy the opcode. */
9360 1.1 fvdl atio->cdb_len = 1;
9361 1.1 fvdl printf("Reserved or VU command code type encountered\n");
9362 1.1 fvdl break;
9363 1.1 fvdl }
9364 1.1 fvdl
9365 1.1 fvdl memcpy(atio->cdb_io.cdb_bytes, byte, atio->cdb_len);
9366 1.1 fvdl
9367 1.1 fvdl atio->ccb_h.status |= CAM_CDB_RECVD;
9368 1.1 fvdl
9369 1.1 fvdl if ((cmd->identify & MSG_IDENTIFY_DISCFLAG) == 0) {
9370 1.1 fvdl /*
9371 1.1 fvdl * We weren't allowed to disconnect.
9372 1.1 fvdl * We're hanging on the bus until a
9373 1.1 fvdl * continue target I/O comes in response
9374 1.1 fvdl * to this accept tio.
9375 1.1 fvdl */
9376 1.1 fvdl #ifdef AHD_DEBUG
9377 1.1 fvdl if ((ahd_debug & AHD_SHOW_TQIN) != 0)
9378 1.1 fvdl printf("Received Immediate Command %d:%d:%d - %p\n",
9379 1.1 fvdl initiator, target, lun, ahd->pending_device);
9380 1.1 fvdl #endif
9381 1.1 fvdl ahd->pending_device = lstate;
9382 1.1 fvdl ahd_freeze_ccb((union ccb *)atio);
9383 1.1 fvdl atio->ccb_h.flags |= CAM_DIS_DISCONNECT;
9384 1.1 fvdl }
9385 1.1 fvdl xpt_done((union ccb*)atio);
9386 1.1 fvdl return (0);
9387 1.1 fvdl }
9388 1.1 fvdl
9389 1.1 fvdl #endif
9390 1.1 fvdl
9391 1.1 fvdl static int
9392 1.1 fvdl ahd_createdmamem(tag, size, flags, mapp, vaddr, baddr, seg, nseg, myname, what)
9393 1.1 fvdl bus_dma_tag_t tag;
9394 1.1 fvdl int size;
9395 1.1 fvdl int flags;
9396 1.1 fvdl bus_dmamap_t *mapp;
9397 1.1 fvdl caddr_t *vaddr;
9398 1.1 fvdl bus_addr_t *baddr;
9399 1.1 fvdl bus_dma_segment_t *seg;
9400 1.1 fvdl int *nseg;
9401 1.1 fvdl const char *myname, *what;
9402 1.1 fvdl {
9403 1.1 fvdl int error, level = 0;
9404 1.1 fvdl
9405 1.1 fvdl if ((error = bus_dmamem_alloc(tag, size, PAGE_SIZE, 0,
9406 1.1 fvdl seg, 1, nseg, BUS_DMA_NOWAIT)) != 0) {
9407 1.1 fvdl printf("%s: failed to allocate DMA mem for %s, error = %d\n",
9408 1.1 fvdl myname, what, error);
9409 1.1 fvdl goto out;
9410 1.1 fvdl }
9411 1.1 fvdl level++;
9412 1.1 fvdl
9413 1.1 fvdl if ((error = bus_dmamem_map(tag, seg, *nseg, size, vaddr,
9414 1.1 fvdl BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
9415 1.1 fvdl printf("%s: failed to map DMA mem for %s, error = %d\n",
9416 1.1 fvdl myname, what, error);
9417 1.1 fvdl goto out;
9418 1.1 fvdl }
9419 1.1 fvdl level++;
9420 1.1 fvdl
9421 1.1 fvdl if ((error = bus_dmamap_create(tag, size, 1, size, 0,
9422 1.1 fvdl BUS_DMA_NOWAIT | flags, mapp)) != 0) {
9423 1.1 fvdl printf("%s: failed to create DMA map for %s, error = %d\n",
9424 1.1 fvdl myname, what, error);
9425 1.1 fvdl goto out;
9426 1.1 fvdl }
9427 1.1 fvdl level++;
9428 1.1 fvdl
9429 1.1 fvdl
9430 1.1 fvdl if ((error = bus_dmamap_load(tag, *mapp, *vaddr, size, NULL,
9431 1.1 fvdl BUS_DMA_NOWAIT)) != 0) {
9432 1.1 fvdl printf("%s: failed to load DMA map for %s, error = %d\n",
9433 1.1 fvdl myname, what, error);
9434 1.1 fvdl goto out;
9435 1.1 fvdl }
9436 1.1 fvdl
9437 1.1 fvdl *baddr = (*mapp)->dm_segs[0].ds_addr;
9438 1.1 fvdl
9439 1.1 fvdl return 0;
9440 1.1 fvdl out:
9441 1.1 fvdl printf("ahd_createdmamem error (%d)\n", level);
9442 1.1 fvdl switch (level) {
9443 1.1 fvdl case 3:
9444 1.1 fvdl bus_dmamap_destroy(tag, *mapp);
9445 1.1 fvdl /* FALLTHROUGH */
9446 1.1 fvdl case 2:
9447 1.1 fvdl bus_dmamem_unmap(tag, *vaddr, size);
9448 1.1 fvdl /* FALLTHROUGH */
9449 1.1 fvdl case 1:
9450 1.1 fvdl bus_dmamem_free(tag, seg, *nseg);
9451 1.1 fvdl break;
9452 1.1 fvdl default:
9453 1.1 fvdl break;
9454 1.1 fvdl }
9455 1.1 fvdl
9456 1.1 fvdl return error;
9457 1.1 fvdl }
9458 1.1 fvdl
9459 1.1 fvdl static void
9460 1.1 fvdl ahd_freedmamem(tag, size, map, vaddr, seg, nseg)
9461 1.1 fvdl bus_dma_tag_t tag;
9462 1.1 fvdl int size;
9463 1.1 fvdl bus_dmamap_t map;
9464 1.1 fvdl caddr_t vaddr;
9465 1.1 fvdl bus_dma_segment_t *seg;
9466 1.1 fvdl int nseg;
9467 1.1 fvdl {
9468 1.1 fvdl
9469 1.1 fvdl bus_dmamap_unload(tag, map);
9470 1.1 fvdl bus_dmamap_destroy(tag, map);
9471 1.1 fvdl bus_dmamem_unmap(tag, vaddr, size);
9472 1.1 fvdl bus_dmamem_free(tag, seg, nseg);
9473 1.1 fvdl }
9474 1.1 fvdl
9475 1.1 fvdl static void
9476 1.1 fvdl ahd_update_xfer_mode(struct ahd_softc *ahd, struct ahd_devinfo *devinfo)
9477 1.1 fvdl {
9478 1.1 fvdl struct scsipi_xfer_mode xm;
9479 1.1 fvdl struct ahd_initiator_tinfo *tinfo;
9480 1.1 fvdl struct ahd_tmode_tstate *tstate;
9481 1.1 fvdl
9482 1.1 fvdl tinfo = ahd_fetch_transinfo(ahd, devinfo->channel, devinfo->our_scsiid,
9483 1.1 fvdl devinfo->target, &tstate);
9484 1.1 fvdl
9485 1.1 fvdl xm.xm_target = devinfo->target;
9486 1.1 fvdl xm.xm_mode = 0;
9487 1.1 fvdl xm.xm_period = tinfo->curr.period;
9488 1.1 fvdl xm.xm_offset = tinfo->curr.offset;
9489 1.1 fvdl if (tinfo->curr.width == 1)
9490 1.1 fvdl xm.xm_mode |= PERIPH_CAP_WIDE16;
9491 1.1 fvdl if (tinfo->curr.period)
9492 1.1 fvdl xm.xm_mode |= PERIPH_CAP_SYNC;
9493 1.8 thorpej if (tinfo->curr.ppr_options & MSG_EXT_PPR_DT_REQ)
9494 1.8 thorpej xm.xm_mode |= PERIPH_CAP_DT;
9495 1.1 fvdl if (tstate->tagenable & devinfo->target_mask)
9496 1.1 fvdl xm.xm_mode |= PERIPH_CAP_TQING;
9497 1.1 fvdl
9498 1.1 fvdl tinfo->goal.width = tinfo->curr.width;
9499 1.1 fvdl tinfo->goal.period = tinfo->curr.period;
9500 1.1 fvdl tinfo->goal.offset = tinfo->curr.offset;
9501 1.1 fvdl tinfo->goal.ppr_options = tinfo->curr.ppr_options;
9502 1.1 fvdl
9503 1.1 fvdl ahd_update_neg_request(ahd, devinfo, tstate,
9504 1.1 fvdl tinfo, AHD_NEG_TO_GOAL);
9505 1.1 fvdl
9506 1.1 fvdl scsipi_async_event(&ahd->sc_channel, ASYNC_EVENT_XFER_MODE, &xm);
9507 1.1 fvdl }
9508