esiop.c revision 1.39 1 1.39 christos /* $NetBSD: esiop.c,v 1.39 2007/03/04 06:01:55 christos Exp $ */
2 1.1 bouyer
3 1.1 bouyer /*
4 1.1 bouyer * Copyright (c) 2002 Manuel Bouyer.
5 1.1 bouyer *
6 1.1 bouyer * Redistribution and use in source and binary forms, with or without
7 1.1 bouyer * modification, are permitted provided that the following conditions
8 1.1 bouyer * are met:
9 1.1 bouyer * 1. Redistributions of source code must retain the above copyright
10 1.1 bouyer * notice, this list of conditions and the following disclaimer.
11 1.1 bouyer * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 bouyer * notice, this list of conditions and the following disclaimer in the
13 1.1 bouyer * documentation and/or other materials provided with the distribution.
14 1.1 bouyer * 3. All advertising materials mentioning features or use of this software
15 1.1 bouyer * must display the following acknowledgement:
16 1.7 bouyer * This product includes software developed by Manuel Bouyer.
17 1.1 bouyer * 4. The name of the author may not be used to endorse or promote products
18 1.1 bouyer * derived from this software without specific prior written permission.
19 1.1 bouyer *
20 1.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.1 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.1 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.11 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.1 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.1 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.1 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.1 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.1 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.1 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.1 bouyer *
31 1.1 bouyer */
32 1.1 bouyer
33 1.1 bouyer /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
34 1.1 bouyer
35 1.1 bouyer #include <sys/cdefs.h>
36 1.39 christos __KERNEL_RCSID(0, "$NetBSD: esiop.c,v 1.39 2007/03/04 06:01:55 christos Exp $");
37 1.1 bouyer
38 1.1 bouyer #include <sys/param.h>
39 1.1 bouyer #include <sys/systm.h>
40 1.1 bouyer #include <sys/device.h>
41 1.1 bouyer #include <sys/malloc.h>
42 1.1 bouyer #include <sys/buf.h>
43 1.1 bouyer #include <sys/kernel.h>
44 1.1 bouyer
45 1.1 bouyer #include <uvm/uvm_extern.h>
46 1.1 bouyer
47 1.1 bouyer #include <machine/endian.h>
48 1.1 bouyer #include <machine/bus.h>
49 1.1 bouyer
50 1.1 bouyer #include <dev/microcode/siop/esiop.out>
51 1.1 bouyer
52 1.1 bouyer #include <dev/scsipi/scsi_all.h>
53 1.1 bouyer #include <dev/scsipi/scsi_message.h>
54 1.1 bouyer #include <dev/scsipi/scsipi_all.h>
55 1.1 bouyer
56 1.1 bouyer #include <dev/scsipi/scsiconf.h>
57 1.1 bouyer
58 1.1 bouyer #include <dev/ic/siopreg.h>
59 1.1 bouyer #include <dev/ic/siopvar_common.h>
60 1.1 bouyer #include <dev/ic/esiopvar.h>
61 1.1 bouyer
62 1.1 bouyer #include "opt_siop.h"
63 1.1 bouyer
64 1.1 bouyer #ifndef DEBUG
65 1.6 bouyer #undef DEBUG
66 1.1 bouyer #endif
67 1.38 garbled /*
68 1.38 garbled #define SIOP_DEBUG
69 1.38 garbled #define SIOP_DEBUG_DR
70 1.38 garbled #define SIOP_DEBUG_INTR
71 1.38 garbled #define SIOP_DEBUG_SCHED
72 1.38 garbled #define DUMP_SCRIPT
73 1.38 garbled */
74 1.1 bouyer
75 1.1 bouyer #define SIOP_STATS
76 1.1 bouyer
77 1.1 bouyer #ifndef SIOP_DEFAULT_TARGET
78 1.1 bouyer #define SIOP_DEFAULT_TARGET 7
79 1.1 bouyer #endif
80 1.1 bouyer
81 1.1 bouyer /* number of cmd descriptors per block */
82 1.1 bouyer #define SIOP_NCMDPB (PAGE_SIZE / sizeof(struct esiop_xfer))
83 1.1 bouyer
84 1.32 perry void esiop_reset(struct esiop_softc *);
85 1.32 perry void esiop_checkdone(struct esiop_softc *);
86 1.32 perry void esiop_handle_reset(struct esiop_softc *);
87 1.32 perry void esiop_scsicmd_end(struct esiop_cmd *, int);
88 1.32 perry void esiop_unqueue(struct esiop_softc *, int, int);
89 1.32 perry int esiop_handle_qtag_reject(struct esiop_cmd *);
90 1.32 perry static void esiop_start(struct esiop_softc *, struct esiop_cmd *);
91 1.32 perry void esiop_timeout(void *);
92 1.32 perry void esiop_scsipi_request(struct scsipi_channel *,
93 1.32 perry scsipi_adapter_req_t, void *);
94 1.32 perry void esiop_dump_script(struct esiop_softc *);
95 1.32 perry void esiop_morecbd(struct esiop_softc *);
96 1.32 perry void esiop_moretagtbl(struct esiop_softc *);
97 1.32 perry void siop_add_reselsw(struct esiop_softc *, int);
98 1.32 perry void esiop_target_register(struct esiop_softc *, u_int32_t);
99 1.1 bouyer
100 1.32 perry void esiop_update_scntl3(struct esiop_softc *, struct siop_common_target *);
101 1.1 bouyer
102 1.1 bouyer #ifdef SIOP_STATS
103 1.1 bouyer static int esiop_stat_intr = 0;
104 1.1 bouyer static int esiop_stat_intr_shortxfer = 0;
105 1.1 bouyer static int esiop_stat_intr_sdp = 0;
106 1.1 bouyer static int esiop_stat_intr_done = 0;
107 1.1 bouyer static int esiop_stat_intr_xferdisc = 0;
108 1.1 bouyer static int esiop_stat_intr_lunresel = 0;
109 1.1 bouyer static int esiop_stat_intr_qfull = 0;
110 1.32 perry void esiop_printstats(void);
111 1.1 bouyer #define INCSTAT(x) x++
112 1.1 bouyer #else
113 1.11 bouyer #define INCSTAT(x)
114 1.1 bouyer #endif
115 1.1 bouyer
116 1.35 perry static inline void esiop_script_sync(struct esiop_softc *, int);
117 1.35 perry static inline void
118 1.1 bouyer esiop_script_sync(sc, ops)
119 1.1 bouyer struct esiop_softc *sc;
120 1.1 bouyer int ops;
121 1.1 bouyer {
122 1.1 bouyer if ((sc->sc_c.features & SF_CHIP_RAM) == 0)
123 1.1 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, sc->sc_c.sc_scriptdma, 0,
124 1.1 bouyer PAGE_SIZE, ops);
125 1.1 bouyer }
126 1.1 bouyer
127 1.35 perry static inline u_int32_t esiop_script_read(struct esiop_softc *, u_int);
128 1.35 perry static inline u_int32_t
129 1.1 bouyer esiop_script_read(sc, offset)
130 1.1 bouyer struct esiop_softc *sc;
131 1.1 bouyer u_int offset;
132 1.1 bouyer {
133 1.1 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
134 1.1 bouyer return bus_space_read_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
135 1.1 bouyer offset * 4);
136 1.1 bouyer } else {
137 1.1 bouyer return le32toh(sc->sc_c.sc_script[offset]);
138 1.1 bouyer }
139 1.1 bouyer }
140 1.1 bouyer
141 1.35 perry static inline void esiop_script_write(struct esiop_softc *, u_int,
142 1.32 perry u_int32_t);
143 1.35 perry static inline void
144 1.1 bouyer esiop_script_write(sc, offset, val)
145 1.1 bouyer struct esiop_softc *sc;
146 1.1 bouyer u_int offset;
147 1.1 bouyer u_int32_t val;
148 1.1 bouyer {
149 1.1 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
150 1.1 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
151 1.1 bouyer offset * 4, val);
152 1.1 bouyer } else {
153 1.1 bouyer sc->sc_c.sc_script[offset] = htole32(val);
154 1.1 bouyer }
155 1.1 bouyer }
156 1.1 bouyer
157 1.1 bouyer void
158 1.1 bouyer esiop_attach(sc)
159 1.1 bouyer struct esiop_softc *sc;
160 1.1 bouyer {
161 1.11 bouyer struct esiop_dsatbl *tagtbl_donering;
162 1.11 bouyer
163 1.6 bouyer if (siop_common_attach(&sc->sc_c) != 0 )
164 1.6 bouyer return;
165 1.1 bouyer
166 1.1 bouyer TAILQ_INIT(&sc->free_list);
167 1.1 bouyer TAILQ_INIT(&sc->cmds);
168 1.2 bouyer TAILQ_INIT(&sc->free_tagtbl);
169 1.2 bouyer TAILQ_INIT(&sc->tag_tblblk);
170 1.1 bouyer sc->sc_currschedslot = 0;
171 1.1 bouyer #ifdef SIOP_DEBUG
172 1.18 thorpej aprint_debug("%s: script size = %d, PHY addr=0x%x, VIRT=%p\n",
173 1.1 bouyer sc->sc_c.sc_dev.dv_xname, (int)sizeof(esiop_script),
174 1.1 bouyer (u_int32_t)sc->sc_c.sc_scriptaddr, sc->sc_c.sc_script);
175 1.1 bouyer #endif
176 1.1 bouyer
177 1.6 bouyer sc->sc_c.sc_adapt.adapt_max_periph = ESIOP_NTAG;
178 1.1 bouyer sc->sc_c.sc_adapt.adapt_request = esiop_scsipi_request;
179 1.1 bouyer
180 1.11 bouyer /*
181 1.11 bouyer * get space for the CMD done slot. For this we use a tag table entry.
182 1.11 bouyer * It's the same size and allows us to not waste 3/4 of a page
183 1.11 bouyer */
184 1.11 bouyer #ifdef DIAGNOSTIC
185 1.11 bouyer if (ESIOP_NTAG != A_ndone_slots) {
186 1.18 thorpej aprint_error("%s: size of tag DSA table different from the done"
187 1.18 thorpej " ring\n", sc->sc_c.sc_dev.dv_xname);
188 1.11 bouyer return;
189 1.11 bouyer }
190 1.11 bouyer #endif
191 1.11 bouyer esiop_moretagtbl(sc);
192 1.11 bouyer tagtbl_donering = TAILQ_FIRST(&sc->free_tagtbl);
193 1.11 bouyer if (tagtbl_donering == NULL) {
194 1.18 thorpej aprint_error("%s: no memory for command done ring\n",
195 1.18 thorpej sc->sc_c.sc_dev.dv_xname);
196 1.11 bouyer return;
197 1.11 bouyer }
198 1.11 bouyer TAILQ_REMOVE(&sc->free_tagtbl, tagtbl_donering, next);
199 1.11 bouyer sc->sc_done_map = tagtbl_donering->tblblk->blkmap;
200 1.11 bouyer sc->sc_done_offset = tagtbl_donering->tbl_offset;
201 1.11 bouyer sc->sc_done_slot = &tagtbl_donering->tbl[0];
202 1.11 bouyer
203 1.1 bouyer /* Do a bus reset, so that devices fall back to narrow/async */
204 1.1 bouyer siop_resetbus(&sc->sc_c);
205 1.1 bouyer /*
206 1.1 bouyer * siop_reset() will reset the chip, thus clearing pending interrupts
207 1.1 bouyer */
208 1.1 bouyer esiop_reset(sc);
209 1.1 bouyer #ifdef DUMP_SCRIPT
210 1.1 bouyer esiop_dump_script(sc);
211 1.1 bouyer #endif
212 1.1 bouyer
213 1.1 bouyer config_found((struct device*)sc, &sc->sc_c.sc_chan, scsiprint);
214 1.1 bouyer }
215 1.1 bouyer
216 1.1 bouyer void
217 1.1 bouyer esiop_reset(sc)
218 1.1 bouyer struct esiop_softc *sc;
219 1.1 bouyer {
220 1.1 bouyer int i, j;
221 1.1 bouyer u_int32_t addr;
222 1.12 bouyer u_int32_t msgin_addr, sem_addr;
223 1.1 bouyer
224 1.1 bouyer siop_common_reset(&sc->sc_c);
225 1.1 bouyer
226 1.1 bouyer /*
227 1.12 bouyer * we copy the script at the beggining of RAM. Then there is 4 bytes
228 1.12 bouyer * for messages in, and 4 bytes for semaphore
229 1.1 bouyer */
230 1.1 bouyer sc->sc_free_offset = sizeof(esiop_script) / sizeof(esiop_script[0]);
231 1.1 bouyer msgin_addr =
232 1.1 bouyer sc->sc_free_offset * sizeof(u_int32_t) + sc->sc_c.sc_scriptaddr;
233 1.12 bouyer sc->sc_free_offset += 1;
234 1.12 bouyer sc->sc_semoffset = sc->sc_free_offset;
235 1.12 bouyer sem_addr =
236 1.12 bouyer sc->sc_semoffset * sizeof(u_int32_t) + sc->sc_c.sc_scriptaddr;
237 1.12 bouyer sc->sc_free_offset += 1;
238 1.1 bouyer /* then we have the scheduler ring */
239 1.1 bouyer sc->sc_shedoffset = sc->sc_free_offset;
240 1.8 bouyer sc->sc_free_offset += A_ncmd_slots * CMD_SLOTSIZE;
241 1.1 bouyer /* then the targets DSA table */
242 1.1 bouyer sc->sc_target_table_offset = sc->sc_free_offset;
243 1.1 bouyer sc->sc_free_offset += sc->sc_c.sc_chan.chan_ntargets;
244 1.1 bouyer /* copy and patch the script */
245 1.1 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
246 1.1 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh, 0,
247 1.1 bouyer esiop_script,
248 1.1 bouyer sizeof(esiop_script) / sizeof(esiop_script[0]));
249 1.11 bouyer for (j = 0; j <
250 1.1 bouyer (sizeof(E_tlq_offset_Used) / sizeof(E_tlq_offset_Used[0]));
251 1.1 bouyer j++) {
252 1.1 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
253 1.1 bouyer E_tlq_offset_Used[j] * 4,
254 1.1 bouyer sizeof(struct siop_common_xfer));
255 1.1 bouyer }
256 1.11 bouyer for (j = 0; j <
257 1.34 bouyer (sizeof(E_saved_offset_offset_Used) /
258 1.34 bouyer sizeof(E_saved_offset_offset_Used[0]));
259 1.34 bouyer j++) {
260 1.34 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
261 1.34 bouyer E_saved_offset_offset_Used[j] * 4,
262 1.34 bouyer sizeof(struct siop_common_xfer) + 4);
263 1.34 bouyer }
264 1.34 bouyer for (j = 0; j <
265 1.1 bouyer (sizeof(E_abs_msgin2_Used) / sizeof(E_abs_msgin2_Used[0]));
266 1.1 bouyer j++) {
267 1.1 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
268 1.1 bouyer E_abs_msgin2_Used[j] * 4, msgin_addr);
269 1.1 bouyer }
270 1.12 bouyer for (j = 0; j <
271 1.12 bouyer (sizeof(E_abs_sem_Used) / sizeof(E_abs_sem_Used[0]));
272 1.12 bouyer j++) {
273 1.12 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
274 1.12 bouyer E_abs_sem_Used[j] * 4, sem_addr);
275 1.12 bouyer }
276 1.1 bouyer
277 1.4 bouyer if (sc->sc_c.features & SF_CHIP_LED0) {
278 1.4 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt,
279 1.4 bouyer sc->sc_c.sc_ramh,
280 1.4 bouyer Ent_led_on1, esiop_led_on,
281 1.4 bouyer sizeof(esiop_led_on) / sizeof(esiop_led_on[0]));
282 1.4 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt,
283 1.4 bouyer sc->sc_c.sc_ramh,
284 1.4 bouyer Ent_led_on2, esiop_led_on,
285 1.4 bouyer sizeof(esiop_led_on) / sizeof(esiop_led_on[0]));
286 1.4 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt,
287 1.4 bouyer sc->sc_c.sc_ramh,
288 1.4 bouyer Ent_led_off, esiop_led_off,
289 1.4 bouyer sizeof(esiop_led_off) / sizeof(esiop_led_off[0]));
290 1.4 bouyer }
291 1.1 bouyer } else {
292 1.1 bouyer for (j = 0;
293 1.1 bouyer j < (sizeof(esiop_script) / sizeof(esiop_script[0])); j++) {
294 1.1 bouyer sc->sc_c.sc_script[j] = htole32(esiop_script[j]);
295 1.1 bouyer }
296 1.1 bouyer for (j = 0; j <
297 1.1 bouyer (sizeof(E_tlq_offset_Used) / sizeof(E_tlq_offset_Used[0]));
298 1.1 bouyer j++) {
299 1.1 bouyer sc->sc_c.sc_script[E_tlq_offset_Used[j]] =
300 1.1 bouyer htole32(sizeof(struct siop_common_xfer));
301 1.1 bouyer }
302 1.1 bouyer for (j = 0; j <
303 1.34 bouyer (sizeof(E_saved_offset_offset_Used) /
304 1.34 bouyer sizeof(E_saved_offset_offset_Used[0]));
305 1.34 bouyer j++) {
306 1.34 bouyer sc->sc_c.sc_script[E_saved_offset_offset_Used[j]] =
307 1.34 bouyer htole32(sizeof(struct siop_common_xfer) + 4);
308 1.34 bouyer }
309 1.34 bouyer for (j = 0; j <
310 1.1 bouyer (sizeof(E_abs_msgin2_Used) / sizeof(E_abs_msgin2_Used[0]));
311 1.1 bouyer j++) {
312 1.1 bouyer sc->sc_c.sc_script[E_abs_msgin2_Used[j]] =
313 1.1 bouyer htole32(msgin_addr);
314 1.1 bouyer }
315 1.12 bouyer for (j = 0; j <
316 1.12 bouyer (sizeof(E_abs_sem_Used) / sizeof(E_abs_sem_Used[0]));
317 1.12 bouyer j++) {
318 1.12 bouyer sc->sc_c.sc_script[E_abs_sem_Used[j]] =
319 1.12 bouyer htole32(sem_addr);
320 1.12 bouyer }
321 1.1 bouyer
322 1.4 bouyer if (sc->sc_c.features & SF_CHIP_LED0) {
323 1.4 bouyer for (j = 0; j < (sizeof(esiop_led_on) /
324 1.4 bouyer sizeof(esiop_led_on[0])); j++)
325 1.4 bouyer sc->sc_c.sc_script[
326 1.4 bouyer Ent_led_on1 / sizeof(esiop_led_on[0]) + j
327 1.4 bouyer ] = htole32(esiop_led_on[j]);
328 1.4 bouyer for (j = 0; j < (sizeof(esiop_led_on) /
329 1.4 bouyer sizeof(esiop_led_on[0])); j++)
330 1.4 bouyer sc->sc_c.sc_script[
331 1.4 bouyer Ent_led_on2 / sizeof(esiop_led_on[0]) + j
332 1.4 bouyer ] = htole32(esiop_led_on[j]);
333 1.4 bouyer for (j = 0; j < (sizeof(esiop_led_off) /
334 1.4 bouyer sizeof(esiop_led_off[0])); j++)
335 1.4 bouyer sc->sc_c.sc_script[
336 1.4 bouyer Ent_led_off / sizeof(esiop_led_off[0]) + j
337 1.4 bouyer ] = htole32(esiop_led_off[j]);
338 1.4 bouyer }
339 1.1 bouyer }
340 1.1 bouyer /* get base of scheduler ring */
341 1.1 bouyer addr = sc->sc_c.sc_scriptaddr + sc->sc_shedoffset * sizeof(u_int32_t);
342 1.1 bouyer /* init scheduler */
343 1.1 bouyer for (i = 0; i < A_ncmd_slots; i++) {
344 1.8 bouyer esiop_script_write(sc,
345 1.8 bouyer sc->sc_shedoffset + i * CMD_SLOTSIZE, A_f_cmd_free);
346 1.1 bouyer }
347 1.1 bouyer sc->sc_currschedslot = 0;
348 1.1 bouyer bus_space_write_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCRATCHE, 0);
349 1.1 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCRATCHD, addr);
350 1.1 bouyer /*
351 1.1 bouyer * 0x78000000 is a 'move data8 to reg'. data8 is the second
352 1.1 bouyer * octet, reg offset is the third.
353 1.1 bouyer */
354 1.1 bouyer esiop_script_write(sc, Ent_cmdr0 / 4,
355 1.1 bouyer 0x78640000 | ((addr & 0x000000ff) << 8));
356 1.1 bouyer esiop_script_write(sc, Ent_cmdr1 / 4,
357 1.1 bouyer 0x78650000 | ((addr & 0x0000ff00) ));
358 1.1 bouyer esiop_script_write(sc, Ent_cmdr2 / 4,
359 1.1 bouyer 0x78660000 | ((addr & 0x00ff0000) >> 8));
360 1.1 bouyer esiop_script_write(sc, Ent_cmdr3 / 4,
361 1.1 bouyer 0x78670000 | ((addr & 0xff000000) >> 16));
362 1.11 bouyer /* done ring */
363 1.11 bouyer for (i = 0; i < A_ndone_slots; i++)
364 1.11 bouyer sc->sc_done_slot[i] = 0;
365 1.11 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, sc->sc_done_map,
366 1.11 bouyer sc->sc_done_offset, A_ndone_slots * sizeof(u_int32_t),
367 1.11 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
368 1.11 bouyer addr = sc->sc_done_map->dm_segs[0].ds_addr + sc->sc_done_offset;
369 1.11 bouyer sc->sc_currdoneslot = 0;
370 1.11 bouyer bus_space_write_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCRATCHE + 2, 0);
371 1.11 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCRATCHF, addr);
372 1.11 bouyer esiop_script_write(sc, Ent_doner0 / 4,
373 1.11 bouyer 0x786c0000 | ((addr & 0x000000ff) << 8));
374 1.11 bouyer esiop_script_write(sc, Ent_doner1 / 4,
375 1.11 bouyer 0x786d0000 | ((addr & 0x0000ff00) ));
376 1.11 bouyer esiop_script_write(sc, Ent_doner2 / 4,
377 1.11 bouyer 0x786e0000 | ((addr & 0x00ff0000) >> 8));
378 1.11 bouyer esiop_script_write(sc, Ent_doner3 / 4,
379 1.11 bouyer 0x786f0000 | ((addr & 0xff000000) >> 16));
380 1.11 bouyer
381 1.1 bouyer /* set flags */
382 1.1 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCRATCHC, 0);
383 1.1 bouyer /* write pointer of base of target DSA table */
384 1.1 bouyer addr = (sc->sc_target_table_offset * sizeof(u_int32_t)) +
385 1.1 bouyer sc->sc_c.sc_scriptaddr;
386 1.1 bouyer esiop_script_write(sc, (Ent_load_targtable / 4) + 0,
387 1.1 bouyer esiop_script_read(sc,(Ent_load_targtable / 4) + 0) |
388 1.1 bouyer ((addr & 0x000000ff) << 8));
389 1.1 bouyer esiop_script_write(sc, (Ent_load_targtable / 4) + 2,
390 1.1 bouyer esiop_script_read(sc,(Ent_load_targtable / 4) + 2) |
391 1.1 bouyer ((addr & 0x0000ff00) ));
392 1.1 bouyer esiop_script_write(sc, (Ent_load_targtable / 4) + 4,
393 1.1 bouyer esiop_script_read(sc,(Ent_load_targtable / 4) + 4) |
394 1.1 bouyer ((addr & 0x00ff0000) >> 8));
395 1.1 bouyer esiop_script_write(sc, (Ent_load_targtable / 4) + 6,
396 1.1 bouyer esiop_script_read(sc,(Ent_load_targtable / 4) + 6) |
397 1.1 bouyer ((addr & 0xff000000) >> 16));
398 1.1 bouyer #ifdef SIOP_DEBUG
399 1.1 bouyer printf("%s: target table offset %d free offset %d\n",
400 1.1 bouyer sc->sc_c.sc_dev.dv_xname, sc->sc_target_table_offset,
401 1.1 bouyer sc->sc_free_offset);
402 1.1 bouyer #endif
403 1.1 bouyer
404 1.1 bouyer /* register existing targets */
405 1.1 bouyer for (i = 0; i < sc->sc_c.sc_chan.chan_ntargets; i++) {
406 1.1 bouyer if (sc->sc_c.targets[i])
407 1.1 bouyer esiop_target_register(sc, i);
408 1.1 bouyer }
409 1.1 bouyer /* start script */
410 1.1 bouyer if ((sc->sc_c.features & SF_CHIP_RAM) == 0) {
411 1.1 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, sc->sc_c.sc_scriptdma, 0,
412 1.1 bouyer PAGE_SIZE, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
413 1.1 bouyer }
414 1.1 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSP,
415 1.1 bouyer sc->sc_c.sc_scriptaddr + Ent_reselect);
416 1.1 bouyer }
417 1.1 bouyer
418 1.1 bouyer #if 0
419 1.1 bouyer #define CALL_SCRIPT(ent) do {\
420 1.1 bouyer printf ("start script DSA 0x%lx DSP 0x%lx\n", \
421 1.1 bouyer esiop_cmd->cmd_c.dsa, \
422 1.1 bouyer sc->sc_c.sc_scriptaddr + ent); \
423 1.1 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSP, sc->sc_c.sc_scriptaddr + ent); \
424 1.1 bouyer } while (0)
425 1.1 bouyer #else
426 1.1 bouyer #define CALL_SCRIPT(ent) do {\
427 1.1 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSP, sc->sc_c.sc_scriptaddr + ent); \
428 1.1 bouyer } while (0)
429 1.1 bouyer #endif
430 1.1 bouyer
431 1.1 bouyer int
432 1.1 bouyer esiop_intr(v)
433 1.1 bouyer void *v;
434 1.1 bouyer {
435 1.1 bouyer struct esiop_softc *sc = v;
436 1.1 bouyer struct esiop_target *esiop_target;
437 1.1 bouyer struct esiop_cmd *esiop_cmd;
438 1.1 bouyer struct esiop_lun *esiop_lun;
439 1.1 bouyer struct scsipi_xfer *xs;
440 1.23 mycroft int istat, sist, sstat1, dstat = 0; /* XXX: gcc */
441 1.1 bouyer u_int32_t irqcode;
442 1.1 bouyer int need_reset = 0;
443 1.1 bouyer int offset, target, lun, tag;
444 1.1 bouyer u_int32_t tflags;
445 1.3 bouyer u_int32_t addr;
446 1.1 bouyer int freetarget = 0;
447 1.1 bouyer int slot;
448 1.1 bouyer int retval = 0;
449 1.1 bouyer
450 1.1 bouyer again:
451 1.1 bouyer istat = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_ISTAT);
452 1.1 bouyer if ((istat & (ISTAT_INTF | ISTAT_DIP | ISTAT_SIP)) == 0) {
453 1.1 bouyer return retval;
454 1.1 bouyer }
455 1.1 bouyer retval = 1;
456 1.1 bouyer INCSTAT(esiop_stat_intr);
457 1.12 bouyer esiop_checkdone(sc);
458 1.1 bouyer if (istat & ISTAT_INTF) {
459 1.1 bouyer bus_space_write_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
460 1.1 bouyer SIOP_ISTAT, ISTAT_INTF);
461 1.1 bouyer goto again;
462 1.1 bouyer }
463 1.9 bouyer
464 1.11 bouyer if ((istat &(ISTAT_DIP | ISTAT_SIP | ISTAT_ABRT)) ==
465 1.9 bouyer (ISTAT_DIP | ISTAT_ABRT)) {
466 1.10 bouyer /* clear abort */
467 1.9 bouyer bus_space_write_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
468 1.9 bouyer SIOP_ISTAT, 0);
469 1.9 bouyer }
470 1.11 bouyer
471 1.1 bouyer /* get CMD from T/L/Q */
472 1.1 bouyer tflags = bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
473 1.1 bouyer SIOP_SCRATCHC);
474 1.1 bouyer #ifdef SIOP_DEBUG_INTR
475 1.1 bouyer printf("interrupt, istat=0x%x tflags=0x%x "
476 1.1 bouyer "DSA=0x%x DSP=0x%lx\n", istat, tflags,
477 1.1 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA),
478 1.1 bouyer (u_long)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
479 1.1 bouyer SIOP_DSP) -
480 1.1 bouyer sc->sc_c.sc_scriptaddr));
481 1.1 bouyer #endif
482 1.1 bouyer target = (tflags & A_f_c_target) ? ((tflags >> 8) & 0xff) : -1;
483 1.1 bouyer if (target > sc->sc_c.sc_chan.chan_ntargets) target = -1;
484 1.1 bouyer lun = (tflags & A_f_c_lun) ? ((tflags >> 16) & 0xff) : -1;
485 1.1 bouyer if (lun > sc->sc_c.sc_chan.chan_nluns) lun = -1;
486 1.1 bouyer tag = (tflags & A_f_c_tag) ? ((tflags >> 24) & 0xff) : -1;
487 1.1 bouyer
488 1.1 bouyer if (target >= 0 && lun >= 0) {
489 1.1 bouyer esiop_target = (struct esiop_target *)sc->sc_c.targets[target];
490 1.1 bouyer if (esiop_target == NULL) {
491 1.1 bouyer printf("esiop_target (target %d) not valid\n", target);
492 1.1 bouyer goto none;
493 1.1 bouyer }
494 1.1 bouyer esiop_lun = esiop_target->esiop_lun[lun];
495 1.1 bouyer if (esiop_lun == NULL) {
496 1.1 bouyer printf("esiop_lun (target %d lun %d) not valid\n",
497 1.1 bouyer target, lun);
498 1.1 bouyer goto none;
499 1.1 bouyer }
500 1.2 bouyer esiop_cmd =
501 1.2 bouyer (tag >= 0) ? esiop_lun->tactive[tag] : esiop_lun->active;
502 1.1 bouyer if (esiop_cmd == NULL) {
503 1.2 bouyer printf("esiop_cmd (target %d lun %d tag %d) not valid\n",
504 1.2 bouyer target, lun, tag);
505 1.1 bouyer goto none;
506 1.1 bouyer }
507 1.1 bouyer xs = esiop_cmd->cmd_c.xs;
508 1.1 bouyer #ifdef DIAGNOSTIC
509 1.1 bouyer if (esiop_cmd->cmd_c.status != CMDST_ACTIVE) {
510 1.1 bouyer printf("esiop_cmd (target %d lun %d) "
511 1.1 bouyer "not active (%d)\n", target, lun,
512 1.1 bouyer esiop_cmd->cmd_c.status);
513 1.1 bouyer goto none;
514 1.1 bouyer }
515 1.1 bouyer #endif
516 1.3 bouyer esiop_table_sync(esiop_cmd,
517 1.3 bouyer BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
518 1.1 bouyer } else {
519 1.1 bouyer none:
520 1.1 bouyer xs = NULL;
521 1.1 bouyer esiop_target = NULL;
522 1.1 bouyer esiop_lun = NULL;
523 1.1 bouyer esiop_cmd = NULL;
524 1.1 bouyer }
525 1.1 bouyer if (istat & ISTAT_DIP) {
526 1.1 bouyer dstat = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
527 1.1 bouyer SIOP_DSTAT);
528 1.10 bouyer if (dstat & DSTAT_ABRT) {
529 1.10 bouyer /* was probably generated by a bus reset IOCTL */
530 1.10 bouyer if ((dstat & DSTAT_DFE) == 0)
531 1.10 bouyer siop_clearfifo(&sc->sc_c);
532 1.10 bouyer goto reset;
533 1.10 bouyer }
534 1.1 bouyer if (dstat & DSTAT_SSI) {
535 1.1 bouyer printf("single step dsp 0x%08x dsa 0x08%x\n",
536 1.1 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt,
537 1.1 bouyer sc->sc_c.sc_rh, SIOP_DSP) -
538 1.1 bouyer sc->sc_c.sc_scriptaddr),
539 1.1 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
540 1.1 bouyer SIOP_DSA));
541 1.1 bouyer if ((dstat & ~(DSTAT_DFE | DSTAT_SSI)) == 0 &&
542 1.1 bouyer (istat & ISTAT_SIP) == 0) {
543 1.1 bouyer bus_space_write_1(sc->sc_c.sc_rt,
544 1.1 bouyer sc->sc_c.sc_rh, SIOP_DCNTL,
545 1.1 bouyer bus_space_read_1(sc->sc_c.sc_rt,
546 1.1 bouyer sc->sc_c.sc_rh, SIOP_DCNTL) | DCNTL_STD);
547 1.1 bouyer }
548 1.1 bouyer return 1;
549 1.1 bouyer }
550 1.10 bouyer
551 1.1 bouyer if (dstat & ~(DSTAT_SIR | DSTAT_DFE | DSTAT_SSI)) {
552 1.1 bouyer printf("%s: DMA IRQ:", sc->sc_c.sc_dev.dv_xname);
553 1.1 bouyer if (dstat & DSTAT_IID)
554 1.1 bouyer printf(" Illegal instruction");
555 1.1 bouyer if (dstat & DSTAT_BF)
556 1.1 bouyer printf(" bus fault");
557 1.1 bouyer if (dstat & DSTAT_MDPE)
558 1.1 bouyer printf(" parity");
559 1.1 bouyer if (dstat & DSTAT_DFE)
560 1.19 wiz printf(" DMA fifo empty");
561 1.9 bouyer else
562 1.9 bouyer siop_clearfifo(&sc->sc_c);
563 1.1 bouyer printf(", DSP=0x%x DSA=0x%x: ",
564 1.1 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
565 1.1 bouyer SIOP_DSP) - sc->sc_c.sc_scriptaddr),
566 1.1 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA));
567 1.1 bouyer if (esiop_cmd)
568 1.9 bouyer printf("T/L/Q=%d/%d/%d last msg_in=0x%x status=0x%x\n",
569 1.9 bouyer target, lun, tag, esiop_cmd->cmd_tables->msg_in[0],
570 1.1 bouyer le32toh(esiop_cmd->cmd_tables->status));
571 1.11 bouyer else
572 1.1 bouyer printf(" current T/L/Q invalid\n");
573 1.1 bouyer need_reset = 1;
574 1.1 bouyer }
575 1.1 bouyer }
576 1.1 bouyer if (istat & ISTAT_SIP) {
577 1.1 bouyer if (istat & ISTAT_DIP)
578 1.1 bouyer delay(10);
579 1.1 bouyer /*
580 1.24 wiz * Can't read sist0 & sist1 independently, or we have to
581 1.1 bouyer * insert delay
582 1.1 bouyer */
583 1.1 bouyer sist = bus_space_read_2(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
584 1.1 bouyer SIOP_SIST0);
585 1.1 bouyer sstat1 = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
586 1.1 bouyer SIOP_SSTAT1);
587 1.1 bouyer #ifdef SIOP_DEBUG_INTR
588 1.1 bouyer printf("scsi interrupt, sist=0x%x sstat1=0x%x "
589 1.1 bouyer "DSA=0x%x DSP=0x%lx\n", sist, sstat1,
590 1.1 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA),
591 1.1 bouyer (u_long)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
592 1.1 bouyer SIOP_DSP) -
593 1.1 bouyer sc->sc_c.sc_scriptaddr));
594 1.1 bouyer #endif
595 1.1 bouyer if (sist & SIST0_RST) {
596 1.1 bouyer esiop_handle_reset(sc);
597 1.1 bouyer /* no table to flush here */
598 1.1 bouyer return 1;
599 1.1 bouyer }
600 1.1 bouyer if (sist & SIST0_SGE) {
601 1.1 bouyer if (esiop_cmd)
602 1.1 bouyer scsipi_printaddr(xs->xs_periph);
603 1.1 bouyer else
604 1.1 bouyer printf("%s:", sc->sc_c.sc_dev.dv_xname);
605 1.1 bouyer printf("scsi gross error\n");
606 1.6 bouyer if (esiop_target)
607 1.6 bouyer esiop_target->target_c.flags &= ~TARF_DT;
608 1.13 bouyer #ifdef DEBUG
609 1.13 bouyer printf("DSA=0x%x DSP=0x%lx\n",
610 1.13 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA),
611 1.13 bouyer (u_long)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
612 1.13 bouyer SIOP_DSP) -
613 1.13 bouyer sc->sc_c.sc_scriptaddr));
614 1.14 bouyer printf("SDID 0x%x SCNTL3 0x%x SXFER 0x%x SCNTL4 0x%x\n",
615 1.14 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SDID),
616 1.14 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCNTL3),
617 1.14 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SXFER),
618 1.14 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCNTL4));
619 1.14 bouyer
620 1.13 bouyer #endif
621 1.1 bouyer goto reset;
622 1.1 bouyer }
623 1.1 bouyer if ((sist & SIST0_MA) && need_reset == 0) {
624 1.11 bouyer if (esiop_cmd) {
625 1.1 bouyer int scratchc0;
626 1.1 bouyer dstat = bus_space_read_1(sc->sc_c.sc_rt,
627 1.1 bouyer sc->sc_c.sc_rh, SIOP_DSTAT);
628 1.1 bouyer /*
629 1.1 bouyer * first restore DSA, in case we were in a S/G
630 1.1 bouyer * operation.
631 1.1 bouyer */
632 1.1 bouyer bus_space_write_4(sc->sc_c.sc_rt,
633 1.1 bouyer sc->sc_c.sc_rh,
634 1.1 bouyer SIOP_DSA, esiop_cmd->cmd_c.dsa);
635 1.1 bouyer scratchc0 = bus_space_read_1(sc->sc_c.sc_rt,
636 1.1 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHC);
637 1.1 bouyer switch (sstat1 & SSTAT1_PHASE_MASK) {
638 1.1 bouyer case SSTAT1_PHASE_STATUS:
639 1.1 bouyer /*
640 1.1 bouyer * previous phase may be aborted for any reason
641 1.1 bouyer * ( for example, the target has less data to
642 1.29 bouyer * transfer than requested). Compute resid and
643 1.29 bouyer * just go to status, the command should
644 1.29 bouyer * terminate.
645 1.1 bouyer */
646 1.1 bouyer INCSTAT(esiop_stat_intr_shortxfer);
647 1.28 bouyer if (scratchc0 & A_f_c_data)
648 1.29 bouyer siop_ma(&esiop_cmd->cmd_c);
649 1.28 bouyer else if ((dstat & DSTAT_DFE) == 0)
650 1.1 bouyer siop_clearfifo(&sc->sc_c);
651 1.1 bouyer CALL_SCRIPT(Ent_status);
652 1.1 bouyer return 1;
653 1.1 bouyer case SSTAT1_PHASE_MSGIN:
654 1.29 bouyer /*
655 1.29 bouyer * target may be ready to disconnect
656 1.29 bouyer * Compute resid which would be used later
657 1.29 bouyer * if a save data pointer is needed.
658 1.29 bouyer */
659 1.1 bouyer INCSTAT(esiop_stat_intr_xferdisc);
660 1.1 bouyer if (scratchc0 & A_f_c_data)
661 1.29 bouyer siop_ma(&esiop_cmd->cmd_c);
662 1.1 bouyer else if ((dstat & DSTAT_DFE) == 0)
663 1.1 bouyer siop_clearfifo(&sc->sc_c);
664 1.1 bouyer bus_space_write_1(sc->sc_c.sc_rt,
665 1.1 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHC,
666 1.1 bouyer scratchc0 & ~A_f_c_data);
667 1.1 bouyer CALL_SCRIPT(Ent_msgin);
668 1.1 bouyer return 1;
669 1.1 bouyer }
670 1.1 bouyer printf("%s: unexpected phase mismatch %d\n",
671 1.1 bouyer sc->sc_c.sc_dev.dv_xname,
672 1.1 bouyer sstat1 & SSTAT1_PHASE_MASK);
673 1.1 bouyer } else {
674 1.1 bouyer printf("%s: phase mismatch without command\n",
675 1.1 bouyer sc->sc_c.sc_dev.dv_xname);
676 1.1 bouyer }
677 1.1 bouyer need_reset = 1;
678 1.1 bouyer }
679 1.1 bouyer if (sist & SIST0_PAR) {
680 1.1 bouyer /* parity error, reset */
681 1.1 bouyer if (esiop_cmd)
682 1.1 bouyer scsipi_printaddr(xs->xs_periph);
683 1.1 bouyer else
684 1.1 bouyer printf("%s:", sc->sc_c.sc_dev.dv_xname);
685 1.1 bouyer printf("parity error\n");
686 1.6 bouyer if (esiop_target)
687 1.6 bouyer esiop_target->target_c.flags &= ~TARF_DT;
688 1.1 bouyer goto reset;
689 1.1 bouyer }
690 1.1 bouyer if ((sist & (SIST1_STO << 8)) && need_reset == 0) {
691 1.1 bouyer /*
692 1.9 bouyer * selection time out, assume there's no device here
693 1.9 bouyer * We also have to update the ring pointer ourselve
694 1.1 bouyer */
695 1.1 bouyer slot = bus_space_read_1(sc->sc_c.sc_rt,
696 1.1 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHE);
697 1.1 bouyer esiop_script_sync(sc,
698 1.1 bouyer BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
699 1.9 bouyer #ifdef SIOP_DEBUG_SCHED
700 1.9 bouyer printf("sel timeout target %d, slot %d\n", target, slot);
701 1.9 bouyer #endif
702 1.3 bouyer /*
703 1.3 bouyer * mark this slot as free, and advance to next slot
704 1.3 bouyer */
705 1.8 bouyer esiop_script_write(sc,
706 1.8 bouyer sc->sc_shedoffset + slot * CMD_SLOTSIZE,
707 1.3 bouyer A_f_cmd_free);
708 1.3 bouyer addr = bus_space_read_4(sc->sc_c.sc_rt,
709 1.3 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHD);
710 1.3 bouyer if (slot < (A_ncmd_slots - 1)) {
711 1.3 bouyer bus_space_write_1(sc->sc_c.sc_rt,
712 1.3 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHE, slot + 1);
713 1.8 bouyer addr = addr + sizeof(struct esiop_slot);
714 1.3 bouyer } else {
715 1.3 bouyer bus_space_write_1(sc->sc_c.sc_rt,
716 1.3 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHE, 0);
717 1.3 bouyer addr = sc->sc_c.sc_scriptaddr +
718 1.3 bouyer sc->sc_shedoffset * sizeof(u_int32_t);
719 1.3 bouyer }
720 1.3 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
721 1.3 bouyer SIOP_SCRATCHD, addr);
722 1.3 bouyer esiop_script_sync(sc,
723 1.3 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
724 1.1 bouyer if (esiop_cmd) {
725 1.1 bouyer esiop_cmd->cmd_c.status = CMDST_DONE;
726 1.1 bouyer xs->error = XS_SELTIMEOUT;
727 1.1 bouyer freetarget = 1;
728 1.29 bouyer goto end;
729 1.1 bouyer } else {
730 1.1 bouyer printf("%s: selection timeout without "
731 1.3 bouyer "command, target %d (sdid 0x%x), "
732 1.3 bouyer "slot %d\n",
733 1.3 bouyer sc->sc_c.sc_dev.dv_xname, target,
734 1.3 bouyer bus_space_read_1(sc->sc_c.sc_rt,
735 1.3 bouyer sc->sc_c.sc_rh, SIOP_SDID), slot);
736 1.1 bouyer need_reset = 1;
737 1.1 bouyer }
738 1.1 bouyer }
739 1.1 bouyer if (sist & SIST0_UDC) {
740 1.1 bouyer /*
741 1.1 bouyer * unexpected disconnect. Usually the target signals
742 1.1 bouyer * a fatal condition this way. Attempt to get sense.
743 1.1 bouyer */
744 1.1 bouyer if (esiop_cmd) {
745 1.1 bouyer esiop_cmd->cmd_tables->status =
746 1.1 bouyer htole32(SCSI_CHECK);
747 1.29 bouyer goto end;
748 1.1 bouyer }
749 1.1 bouyer printf("%s: unexpected disconnect without "
750 1.1 bouyer "command\n", sc->sc_c.sc_dev.dv_xname);
751 1.1 bouyer goto reset;
752 1.1 bouyer }
753 1.1 bouyer if (sist & (SIST1_SBMC << 8)) {
754 1.1 bouyer /* SCSI bus mode change */
755 1.1 bouyer if (siop_modechange(&sc->sc_c) == 0 || need_reset == 1)
756 1.1 bouyer goto reset;
757 1.1 bouyer if ((istat & ISTAT_DIP) && (dstat & DSTAT_SIR)) {
758 1.1 bouyer /*
759 1.1 bouyer * we have a script interrupt, it will
760 1.1 bouyer * restart the script.
761 1.1 bouyer */
762 1.1 bouyer goto scintr;
763 1.1 bouyer }
764 1.1 bouyer /*
765 1.1 bouyer * else we have to restart it ourselve, at the
766 1.1 bouyer * interrupted instruction.
767 1.1 bouyer */
768 1.1 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
769 1.1 bouyer SIOP_DSP,
770 1.1 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
771 1.1 bouyer SIOP_DSP) - 8);
772 1.1 bouyer return 1;
773 1.1 bouyer }
774 1.24 wiz /* Else it's an unhandled exception (for now). */
775 1.1 bouyer printf("%s: unhandled scsi interrupt, sist=0x%x sstat1=0x%x "
776 1.1 bouyer "DSA=0x%x DSP=0x%x\n", sc->sc_c.sc_dev.dv_xname, sist,
777 1.1 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
778 1.1 bouyer SIOP_SSTAT1),
779 1.1 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA),
780 1.1 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
781 1.1 bouyer SIOP_DSP) - sc->sc_c.sc_scriptaddr));
782 1.1 bouyer if (esiop_cmd) {
783 1.1 bouyer esiop_cmd->cmd_c.status = CMDST_DONE;
784 1.1 bouyer xs->error = XS_SELTIMEOUT;
785 1.29 bouyer goto end;
786 1.1 bouyer }
787 1.1 bouyer need_reset = 1;
788 1.1 bouyer }
789 1.1 bouyer if (need_reset) {
790 1.1 bouyer reset:
791 1.1 bouyer /* fatal error, reset the bus */
792 1.1 bouyer siop_resetbus(&sc->sc_c);
793 1.1 bouyer /* no table to flush here */
794 1.1 bouyer return 1;
795 1.1 bouyer }
796 1.1 bouyer
797 1.1 bouyer scintr:
798 1.1 bouyer if ((istat & ISTAT_DIP) && (dstat & DSTAT_SIR)) { /* script interrupt */
799 1.1 bouyer irqcode = bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
800 1.1 bouyer SIOP_DSPS);
801 1.1 bouyer #ifdef SIOP_DEBUG_INTR
802 1.1 bouyer printf("script interrupt 0x%x\n", irqcode);
803 1.1 bouyer #endif
804 1.1 bouyer /*
805 1.1 bouyer * no command, or an inactive command is only valid for a
806 1.1 bouyer * reselect interrupt
807 1.1 bouyer */
808 1.1 bouyer if ((irqcode & 0x80) == 0) {
809 1.1 bouyer if (esiop_cmd == NULL) {
810 1.1 bouyer printf(
811 1.1 bouyer "%s: script interrupt (0x%x) with invalid DSA !!!\n",
812 1.1 bouyer sc->sc_c.sc_dev.dv_xname, irqcode);
813 1.1 bouyer goto reset;
814 1.1 bouyer }
815 1.1 bouyer if (esiop_cmd->cmd_c.status != CMDST_ACTIVE) {
816 1.1 bouyer printf("%s: command with invalid status "
817 1.1 bouyer "(IRQ code 0x%x current status %d) !\n",
818 1.1 bouyer sc->sc_c.sc_dev.dv_xname,
819 1.1 bouyer irqcode, esiop_cmd->cmd_c.status);
820 1.1 bouyer xs = NULL;
821 1.1 bouyer }
822 1.1 bouyer }
823 1.1 bouyer switch(irqcode) {
824 1.1 bouyer case A_int_err:
825 1.1 bouyer printf("error, DSP=0x%x\n",
826 1.1 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt,
827 1.1 bouyer sc->sc_c.sc_rh, SIOP_DSP) - sc->sc_c.sc_scriptaddr));
828 1.1 bouyer if (xs) {
829 1.1 bouyer xs->error = XS_SELTIMEOUT;
830 1.29 bouyer goto end;
831 1.1 bouyer } else {
832 1.1 bouyer goto reset;
833 1.1 bouyer }
834 1.1 bouyer case A_int_msgin:
835 1.1 bouyer {
836 1.1 bouyer int msgin = bus_space_read_1(sc->sc_c.sc_rt,
837 1.1 bouyer sc->sc_c.sc_rh, SIOP_SFBR);
838 1.1 bouyer if (msgin == MSG_MESSAGE_REJECT) {
839 1.1 bouyer int msg, extmsg;
840 1.1 bouyer if (esiop_cmd->cmd_tables->msg_out[0] & 0x80) {
841 1.1 bouyer /*
842 1.1 bouyer * message was part of a identify +
843 1.17 wiz * something else. Identify shouldn't
844 1.1 bouyer * have been rejected.
845 1.1 bouyer */
846 1.1 bouyer msg =
847 1.1 bouyer esiop_cmd->cmd_tables->msg_out[1];
848 1.1 bouyer extmsg =
849 1.1 bouyer esiop_cmd->cmd_tables->msg_out[3];
850 1.1 bouyer } else {
851 1.1 bouyer msg =
852 1.1 bouyer esiop_cmd->cmd_tables->msg_out[0];
853 1.1 bouyer extmsg =
854 1.1 bouyer esiop_cmd->cmd_tables->msg_out[2];
855 1.1 bouyer }
856 1.1 bouyer if (msg == MSG_MESSAGE_REJECT) {
857 1.1 bouyer /* MSG_REJECT for a MSG_REJECT !*/
858 1.1 bouyer if (xs)
859 1.1 bouyer scsipi_printaddr(xs->xs_periph);
860 1.1 bouyer else
861 1.1 bouyer printf("%s: ",
862 1.1 bouyer sc->sc_c.sc_dev.dv_xname);
863 1.1 bouyer printf("our reject message was "
864 1.1 bouyer "rejected\n");
865 1.1 bouyer goto reset;
866 1.1 bouyer }
867 1.1 bouyer if (msg == MSG_EXTENDED &&
868 1.1 bouyer extmsg == MSG_EXT_WDTR) {
869 1.1 bouyer /* WDTR rejected, initiate sync */
870 1.1 bouyer if ((esiop_target->target_c.flags &
871 1.1 bouyer TARF_SYNC) == 0) {
872 1.1 bouyer esiop_target->target_c.status =
873 1.1 bouyer TARST_OK;
874 1.1 bouyer siop_update_xfer_mode(&sc->sc_c,
875 1.1 bouyer target);
876 1.1 bouyer /* no table to flush here */
877 1.1 bouyer CALL_SCRIPT(Ent_msgin_ack);
878 1.1 bouyer return 1;
879 1.1 bouyer }
880 1.1 bouyer esiop_target->target_c.status =
881 1.1 bouyer TARST_SYNC_NEG;
882 1.1 bouyer siop_sdtr_msg(&esiop_cmd->cmd_c, 0,
883 1.6 bouyer sc->sc_c.st_minsync,
884 1.6 bouyer sc->sc_c.maxoff);
885 1.1 bouyer esiop_table_sync(esiop_cmd,
886 1.1 bouyer BUS_DMASYNC_PREREAD |
887 1.1 bouyer BUS_DMASYNC_PREWRITE);
888 1.1 bouyer CALL_SCRIPT(Ent_send_msgout);
889 1.1 bouyer return 1;
890 1.1 bouyer } else if (msg == MSG_EXTENDED &&
891 1.1 bouyer extmsg == MSG_EXT_SDTR) {
892 1.1 bouyer /* sync rejected */
893 1.1 bouyer esiop_target->target_c.offset = 0;
894 1.1 bouyer esiop_target->target_c.period = 0;
895 1.1 bouyer esiop_target->target_c.status =
896 1.1 bouyer TARST_OK;
897 1.1 bouyer siop_update_xfer_mode(&sc->sc_c,
898 1.1 bouyer target);
899 1.1 bouyer /* no table to flush here */
900 1.1 bouyer CALL_SCRIPT(Ent_msgin_ack);
901 1.1 bouyer return 1;
902 1.6 bouyer } else if (msg == MSG_EXTENDED &&
903 1.6 bouyer extmsg == MSG_EXT_PPR) {
904 1.6 bouyer /* PPR rejected */
905 1.6 bouyer esiop_target->target_c.offset = 0;
906 1.6 bouyer esiop_target->target_c.period = 0;
907 1.6 bouyer esiop_target->target_c.status =
908 1.6 bouyer TARST_OK;
909 1.6 bouyer siop_update_xfer_mode(&sc->sc_c,
910 1.6 bouyer target);
911 1.6 bouyer /* no table to flush here */
912 1.6 bouyer CALL_SCRIPT(Ent_msgin_ack);
913 1.6 bouyer return 1;
914 1.11 bouyer } else if (msg == MSG_SIMPLE_Q_TAG ||
915 1.1 bouyer msg == MSG_HEAD_OF_Q_TAG ||
916 1.1 bouyer msg == MSG_ORDERED_Q_TAG) {
917 1.2 bouyer if (esiop_handle_qtag_reject(
918 1.1 bouyer esiop_cmd) == -1)
919 1.1 bouyer goto reset;
920 1.1 bouyer CALL_SCRIPT(Ent_msgin_ack);
921 1.1 bouyer return 1;
922 1.1 bouyer }
923 1.1 bouyer if (xs)
924 1.1 bouyer scsipi_printaddr(xs->xs_periph);
925 1.1 bouyer else
926 1.1 bouyer printf("%s: ",
927 1.1 bouyer sc->sc_c.sc_dev.dv_xname);
928 1.1 bouyer if (msg == MSG_EXTENDED) {
929 1.1 bouyer printf("scsi message reject, extended "
930 1.1 bouyer "message sent was 0x%x\n", extmsg);
931 1.1 bouyer } else {
932 1.1 bouyer printf("scsi message reject, message "
933 1.1 bouyer "sent was 0x%x\n", msg);
934 1.1 bouyer }
935 1.1 bouyer /* no table to flush here */
936 1.1 bouyer CALL_SCRIPT(Ent_msgin_ack);
937 1.1 bouyer return 1;
938 1.1 bouyer }
939 1.30 bouyer if (msgin == MSG_IGN_WIDE_RESIDUE) {
940 1.30 bouyer /* use the extmsgdata table to get the second byte */
941 1.30 bouyer esiop_cmd->cmd_tables->t_extmsgdata.count =
942 1.30 bouyer htole32(1);
943 1.30 bouyer esiop_table_sync(esiop_cmd,
944 1.30 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
945 1.30 bouyer CALL_SCRIPT(Ent_get_extmsgdata);
946 1.30 bouyer return 1;
947 1.30 bouyer }
948 1.1 bouyer if (xs)
949 1.1 bouyer scsipi_printaddr(xs->xs_periph);
950 1.1 bouyer else
951 1.1 bouyer printf("%s: ", sc->sc_c.sc_dev.dv_xname);
952 1.25 bouyer printf("unhandled message 0x%x\n", msgin);
953 1.1 bouyer esiop_cmd->cmd_tables->msg_out[0] = MSG_MESSAGE_REJECT;
954 1.1 bouyer esiop_cmd->cmd_tables->t_msgout.count= htole32(1);
955 1.1 bouyer esiop_table_sync(esiop_cmd,
956 1.1 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
957 1.1 bouyer CALL_SCRIPT(Ent_send_msgout);
958 1.1 bouyer return 1;
959 1.1 bouyer }
960 1.1 bouyer case A_int_extmsgin:
961 1.1 bouyer #ifdef SIOP_DEBUG_INTR
962 1.1 bouyer printf("extended message: msg 0x%x len %d\n",
963 1.11 bouyer esiop_cmd->cmd_tables->msg_in[2],
964 1.1 bouyer esiop_cmd->cmd_tables->msg_in[1]);
965 1.1 bouyer #endif
966 1.5 bouyer if (esiop_cmd->cmd_tables->msg_in[1] >
967 1.5 bouyer sizeof(esiop_cmd->cmd_tables->msg_in) - 2)
968 1.1 bouyer printf("%s: extended message too big (%d)\n",
969 1.1 bouyer sc->sc_c.sc_dev.dv_xname,
970 1.1 bouyer esiop_cmd->cmd_tables->msg_in[1]);
971 1.1 bouyer esiop_cmd->cmd_tables->t_extmsgdata.count =
972 1.1 bouyer htole32(esiop_cmd->cmd_tables->msg_in[1] - 1);
973 1.1 bouyer esiop_table_sync(esiop_cmd,
974 1.1 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
975 1.1 bouyer CALL_SCRIPT(Ent_get_extmsgdata);
976 1.1 bouyer return 1;
977 1.1 bouyer case A_int_extmsgdata:
978 1.1 bouyer #ifdef SIOP_DEBUG_INTR
979 1.1 bouyer {
980 1.1 bouyer int i;
981 1.1 bouyer printf("extended message: 0x%x, data:",
982 1.1 bouyer esiop_cmd->cmd_tables->msg_in[2]);
983 1.1 bouyer for (i = 3; i < 2 + esiop_cmd->cmd_tables->msg_in[1];
984 1.1 bouyer i++)
985 1.1 bouyer printf(" 0x%x",
986 1.1 bouyer esiop_cmd->cmd_tables->msg_in[i]);
987 1.1 bouyer printf("\n");
988 1.1 bouyer }
989 1.1 bouyer #endif
990 1.30 bouyer if (esiop_cmd->cmd_tables->msg_in[0] ==
991 1.30 bouyer MSG_IGN_WIDE_RESIDUE) {
992 1.30 bouyer /* we got the second byte of MSG_IGN_WIDE_RESIDUE */
993 1.30 bouyer if (esiop_cmd->cmd_tables->msg_in[3] != 1)
994 1.30 bouyer printf("MSG_IGN_WIDE_RESIDUE: "
995 1.30 bouyer "bad len %d\n",
996 1.30 bouyer esiop_cmd->cmd_tables->msg_in[3]);
997 1.30 bouyer switch (siop_iwr(&esiop_cmd->cmd_c)) {
998 1.30 bouyer case SIOP_NEG_MSGOUT:
999 1.30 bouyer esiop_table_sync(esiop_cmd,
1000 1.30 bouyer BUS_DMASYNC_PREREAD |
1001 1.30 bouyer BUS_DMASYNC_PREWRITE);
1002 1.30 bouyer CALL_SCRIPT(Ent_send_msgout);
1003 1.30 bouyer return 1;
1004 1.30 bouyer case SIOP_NEG_ACK:
1005 1.30 bouyer CALL_SCRIPT(Ent_msgin_ack);
1006 1.30 bouyer return 1;
1007 1.30 bouyer default:
1008 1.30 bouyer panic("invalid retval from "
1009 1.30 bouyer "siop_iwr()");
1010 1.30 bouyer }
1011 1.30 bouyer return 1;
1012 1.30 bouyer }
1013 1.6 bouyer if (esiop_cmd->cmd_tables->msg_in[2] == MSG_EXT_PPR) {
1014 1.6 bouyer switch (siop_ppr_neg(&esiop_cmd->cmd_c)) {
1015 1.6 bouyer case SIOP_NEG_MSGOUT:
1016 1.9 bouyer esiop_update_scntl3(sc,
1017 1.9 bouyer esiop_cmd->cmd_c.siop_target);
1018 1.6 bouyer esiop_table_sync(esiop_cmd,
1019 1.6 bouyer BUS_DMASYNC_PREREAD |
1020 1.6 bouyer BUS_DMASYNC_PREWRITE);
1021 1.6 bouyer CALL_SCRIPT(Ent_send_msgout);
1022 1.9 bouyer return 1;
1023 1.6 bouyer case SIOP_NEG_ACK:
1024 1.9 bouyer esiop_update_scntl3(sc,
1025 1.9 bouyer esiop_cmd->cmd_c.siop_target);
1026 1.6 bouyer CALL_SCRIPT(Ent_msgin_ack);
1027 1.9 bouyer return 1;
1028 1.6 bouyer default:
1029 1.6 bouyer panic("invalid retval from "
1030 1.6 bouyer "siop_wdtr_neg()");
1031 1.6 bouyer }
1032 1.9 bouyer return 1;
1033 1.6 bouyer }
1034 1.1 bouyer if (esiop_cmd->cmd_tables->msg_in[2] == MSG_EXT_WDTR) {
1035 1.1 bouyer switch (siop_wdtr_neg(&esiop_cmd->cmd_c)) {
1036 1.1 bouyer case SIOP_NEG_MSGOUT:
1037 1.9 bouyer esiop_update_scntl3(sc,
1038 1.9 bouyer esiop_cmd->cmd_c.siop_target);
1039 1.1 bouyer esiop_table_sync(esiop_cmd,
1040 1.1 bouyer BUS_DMASYNC_PREREAD |
1041 1.1 bouyer BUS_DMASYNC_PREWRITE);
1042 1.1 bouyer CALL_SCRIPT(Ent_send_msgout);
1043 1.9 bouyer return 1;
1044 1.1 bouyer case SIOP_NEG_ACK:
1045 1.9 bouyer esiop_update_scntl3(sc,
1046 1.9 bouyer esiop_cmd->cmd_c.siop_target);
1047 1.1 bouyer CALL_SCRIPT(Ent_msgin_ack);
1048 1.9 bouyer return 1;
1049 1.1 bouyer default:
1050 1.1 bouyer panic("invalid retval from "
1051 1.1 bouyer "siop_wdtr_neg()");
1052 1.1 bouyer }
1053 1.9 bouyer return 1;
1054 1.1 bouyer }
1055 1.1 bouyer if (esiop_cmd->cmd_tables->msg_in[2] == MSG_EXT_SDTR) {
1056 1.1 bouyer switch (siop_sdtr_neg(&esiop_cmd->cmd_c)) {
1057 1.1 bouyer case SIOP_NEG_MSGOUT:
1058 1.9 bouyer esiop_update_scntl3(sc,
1059 1.9 bouyer esiop_cmd->cmd_c.siop_target);
1060 1.1 bouyer esiop_table_sync(esiop_cmd,
1061 1.1 bouyer BUS_DMASYNC_PREREAD |
1062 1.1 bouyer BUS_DMASYNC_PREWRITE);
1063 1.1 bouyer CALL_SCRIPT(Ent_send_msgout);
1064 1.9 bouyer return 1;
1065 1.1 bouyer case SIOP_NEG_ACK:
1066 1.9 bouyer esiop_update_scntl3(sc,
1067 1.9 bouyer esiop_cmd->cmd_c.siop_target);
1068 1.1 bouyer CALL_SCRIPT(Ent_msgin_ack);
1069 1.9 bouyer return 1;
1070 1.1 bouyer default:
1071 1.1 bouyer panic("invalid retval from "
1072 1.1 bouyer "siop_wdtr_neg()");
1073 1.1 bouyer }
1074 1.9 bouyer return 1;
1075 1.1 bouyer }
1076 1.1 bouyer /* send a message reject */
1077 1.1 bouyer esiop_cmd->cmd_tables->msg_out[0] = MSG_MESSAGE_REJECT;
1078 1.1 bouyer esiop_cmd->cmd_tables->t_msgout.count = htole32(1);
1079 1.1 bouyer esiop_table_sync(esiop_cmd,
1080 1.1 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1081 1.1 bouyer CALL_SCRIPT(Ent_send_msgout);
1082 1.1 bouyer return 1;
1083 1.1 bouyer case A_int_disc:
1084 1.1 bouyer INCSTAT(esiop_stat_intr_sdp);
1085 1.1 bouyer offset = bus_space_read_1(sc->sc_c.sc_rt,
1086 1.1 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHA + 1);
1087 1.1 bouyer #ifdef SIOP_DEBUG_DR
1088 1.1 bouyer printf("disconnect offset %d\n", offset);
1089 1.1 bouyer #endif
1090 1.29 bouyer siop_sdp(&esiop_cmd->cmd_c, offset);
1091 1.34 bouyer /* we start again with no offset */
1092 1.34 bouyer ESIOP_XFER(esiop_cmd, saved_offset) =
1093 1.34 bouyer htole32(SIOP_NOOFFSET);
1094 1.29 bouyer esiop_table_sync(esiop_cmd,
1095 1.29 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1096 1.1 bouyer CALL_SCRIPT(Ent_script_sched);
1097 1.1 bouyer return 1;
1098 1.1 bouyer case A_int_resfail:
1099 1.1 bouyer printf("reselect failed\n");
1100 1.1 bouyer CALL_SCRIPT(Ent_script_sched);
1101 1.9 bouyer return 1;
1102 1.1 bouyer case A_int_done:
1103 1.1 bouyer if (xs == NULL) {
1104 1.1 bouyer printf("%s: done without command\n",
1105 1.1 bouyer sc->sc_c.sc_dev.dv_xname);
1106 1.1 bouyer CALL_SCRIPT(Ent_script_sched);
1107 1.1 bouyer return 1;
1108 1.1 bouyer }
1109 1.1 bouyer #ifdef SIOP_DEBUG_INTR
1110 1.1 bouyer printf("done, DSA=0x%lx target id 0x%x last msg "
1111 1.1 bouyer "in=0x%x status=0x%x\n", (u_long)esiop_cmd->cmd_c.dsa,
1112 1.1 bouyer le32toh(esiop_cmd->cmd_tables->id),
1113 1.1 bouyer esiop_cmd->cmd_tables->msg_in[0],
1114 1.1 bouyer le32toh(esiop_cmd->cmd_tables->status));
1115 1.1 bouyer #endif
1116 1.1 bouyer INCSTAT(esiop_stat_intr_done);
1117 1.1 bouyer esiop_cmd->cmd_c.status = CMDST_DONE;
1118 1.1 bouyer goto end;
1119 1.1 bouyer default:
1120 1.1 bouyer printf("unknown irqcode %x\n", irqcode);
1121 1.1 bouyer if (xs) {
1122 1.1 bouyer xs->error = XS_SELTIMEOUT;
1123 1.29 bouyer goto end;
1124 1.1 bouyer }
1125 1.1 bouyer goto reset;
1126 1.1 bouyer }
1127 1.1 bouyer return 1;
1128 1.1 bouyer }
1129 1.1 bouyer /* We just should't get there */
1130 1.1 bouyer panic("siop_intr: I shouldn't be there !");
1131 1.1 bouyer
1132 1.1 bouyer end:
1133 1.1 bouyer /*
1134 1.1 bouyer * restart the script now if command completed properly
1135 1.1 bouyer * Otherwise wait for siop_scsicmd_end(), we may need to cleanup the
1136 1.1 bouyer * queue
1137 1.1 bouyer */
1138 1.1 bouyer xs->status = le32toh(esiop_cmd->cmd_tables->status);
1139 1.1 bouyer #ifdef SIOP_DEBUG_INTR
1140 1.1 bouyer printf("esiop_intr end: status %d\n", xs->status);
1141 1.1 bouyer #endif
1142 1.2 bouyer if (tag >= 0)
1143 1.2 bouyer esiop_lun->tactive[tag] = NULL;
1144 1.2 bouyer else
1145 1.2 bouyer esiop_lun->active = NULL;
1146 1.29 bouyer offset = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
1147 1.29 bouyer SIOP_SCRATCHA + 1);
1148 1.34 bouyer /*
1149 1.34 bouyer * if we got a disconnect between the last data phase
1150 1.34 bouyer * and the status phase, offset will be 0. In this
1151 1.34 bouyer * case, cmd_tables->saved_offset will have the proper value
1152 1.34 bouyer * if it got updated by the controller
1153 1.34 bouyer */
1154 1.34 bouyer if (offset == 0 &&
1155 1.34 bouyer ESIOP_XFER(esiop_cmd, saved_offset) != htole32(SIOP_NOOFFSET))
1156 1.34 bouyer offset =
1157 1.34 bouyer (le32toh(ESIOP_XFER(esiop_cmd, saved_offset)) >> 8) & 0xff;
1158 1.34 bouyer
1159 1.29 bouyer esiop_scsicmd_end(esiop_cmd, offset);
1160 1.1 bouyer if (freetarget && esiop_target->target_c.status == TARST_PROBING)
1161 1.1 bouyer esiop_del_dev(sc, target, lun);
1162 1.9 bouyer CALL_SCRIPT(Ent_script_sched);
1163 1.9 bouyer return 1;
1164 1.1 bouyer }
1165 1.1 bouyer
1166 1.1 bouyer void
1167 1.29 bouyer esiop_scsicmd_end(esiop_cmd, offset)
1168 1.1 bouyer struct esiop_cmd *esiop_cmd;
1169 1.29 bouyer int offset;
1170 1.1 bouyer {
1171 1.1 bouyer struct scsipi_xfer *xs = esiop_cmd->cmd_c.xs;
1172 1.1 bouyer struct esiop_softc *sc = (struct esiop_softc *)esiop_cmd->cmd_c.siop_sc;
1173 1.28 bouyer
1174 1.29 bouyer siop_update_resid(&esiop_cmd->cmd_c, offset);
1175 1.1 bouyer
1176 1.1 bouyer switch(xs->status) {
1177 1.1 bouyer case SCSI_OK:
1178 1.1 bouyer xs->error = XS_NOERROR;
1179 1.1 bouyer break;
1180 1.1 bouyer case SCSI_BUSY:
1181 1.1 bouyer xs->error = XS_BUSY;
1182 1.1 bouyer break;
1183 1.1 bouyer case SCSI_CHECK:
1184 1.1 bouyer xs->error = XS_BUSY;
1185 1.1 bouyer /* remove commands in the queue and scheduler */
1186 1.1 bouyer esiop_unqueue(sc, xs->xs_periph->periph_target,
1187 1.1 bouyer xs->xs_periph->periph_lun);
1188 1.1 bouyer break;
1189 1.1 bouyer case SCSI_QUEUE_FULL:
1190 1.1 bouyer INCSTAT(esiop_stat_intr_qfull);
1191 1.1 bouyer #ifdef SIOP_DEBUG
1192 1.1 bouyer printf("%s:%d:%d: queue full (tag %d)\n",
1193 1.1 bouyer sc->sc_c.sc_dev.dv_xname,
1194 1.1 bouyer xs->xs_periph->periph_target,
1195 1.1 bouyer xs->xs_periph->periph_lun, esiop_cmd->cmd_c.tag);
1196 1.1 bouyer #endif
1197 1.1 bouyer xs->error = XS_BUSY;
1198 1.1 bouyer break;
1199 1.1 bouyer case SCSI_SIOP_NOCHECK:
1200 1.1 bouyer /*
1201 1.1 bouyer * don't check status, xs->error is already valid
1202 1.1 bouyer */
1203 1.1 bouyer break;
1204 1.1 bouyer case SCSI_SIOP_NOSTATUS:
1205 1.1 bouyer /*
1206 1.1 bouyer * the status byte was not updated, cmd was
1207 1.1 bouyer * aborted
1208 1.1 bouyer */
1209 1.1 bouyer xs->error = XS_SELTIMEOUT;
1210 1.1 bouyer break;
1211 1.1 bouyer default:
1212 1.16 bouyer scsipi_printaddr(xs->xs_periph);
1213 1.16 bouyer printf("invalid status code %d\n", xs->status);
1214 1.1 bouyer xs->error = XS_DRIVER_STUFFUP;
1215 1.1 bouyer }
1216 1.1 bouyer if (xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) {
1217 1.1 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat,
1218 1.1 bouyer esiop_cmd->cmd_c.dmamap_data, 0,
1219 1.1 bouyer esiop_cmd->cmd_c.dmamap_data->dm_mapsize,
1220 1.1 bouyer (xs->xs_control & XS_CTL_DATA_IN) ?
1221 1.1 bouyer BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
1222 1.1 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat,
1223 1.1 bouyer esiop_cmd->cmd_c.dmamap_data);
1224 1.1 bouyer }
1225 1.1 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat, esiop_cmd->cmd_c.dmamap_cmd);
1226 1.1 bouyer callout_stop(&esiop_cmd->cmd_c.xs->xs_callout);
1227 1.1 bouyer esiop_cmd->cmd_c.status = CMDST_FREE;
1228 1.1 bouyer TAILQ_INSERT_TAIL(&sc->free_list, esiop_cmd, next);
1229 1.29 bouyer #if 0
1230 1.29 bouyer if (xs->resid != 0)
1231 1.29 bouyer printf("resid %d datalen %d\n", xs->resid, xs->datalen);
1232 1.29 bouyer #endif
1233 1.1 bouyer scsipi_done (xs);
1234 1.1 bouyer }
1235 1.1 bouyer
1236 1.1 bouyer void
1237 1.1 bouyer esiop_checkdone(sc)
1238 1.1 bouyer struct esiop_softc *sc;
1239 1.1 bouyer {
1240 1.2 bouyer int target, lun, tag;
1241 1.1 bouyer struct esiop_target *esiop_target;
1242 1.1 bouyer struct esiop_lun *esiop_lun;
1243 1.1 bouyer struct esiop_cmd *esiop_cmd;
1244 1.11 bouyer u_int32_t slot;
1245 1.11 bouyer int needsync = 0;
1246 1.1 bouyer int status;
1247 1.34 bouyer u_int32_t sem, offset;
1248 1.12 bouyer
1249 1.12 bouyer esiop_script_sync(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1250 1.12 bouyer sem = esiop_script_read(sc, sc->sc_semoffset);
1251 1.12 bouyer esiop_script_write(sc, sc->sc_semoffset, sem & ~A_sem_done);
1252 1.12 bouyer if ((sc->sc_flags & SCF_CHAN_NOSLOT) && (sem & A_sem_start)) {
1253 1.12 bouyer /*
1254 1.12 bouyer * at last one command have been started,
1255 1.12 bouyer * so we should have free slots now
1256 1.12 bouyer */
1257 1.12 bouyer sc->sc_flags &= ~SCF_CHAN_NOSLOT;
1258 1.12 bouyer scsipi_channel_thaw(&sc->sc_c.sc_chan, 1);
1259 1.12 bouyer }
1260 1.12 bouyer esiop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1261 1.12 bouyer
1262 1.12 bouyer if ((sem & A_sem_done) == 0) {
1263 1.12 bouyer /* no pending done command */
1264 1.12 bouyer return;
1265 1.12 bouyer }
1266 1.1 bouyer
1267 1.11 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, sc->sc_done_map,
1268 1.11 bouyer sc->sc_done_offset, A_ndone_slots * sizeof(u_int32_t),
1269 1.11 bouyer BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1270 1.11 bouyer next:
1271 1.11 bouyer if (sc->sc_done_slot[sc->sc_currdoneslot] == 0) {
1272 1.11 bouyer if (needsync)
1273 1.11 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, sc->sc_done_map,
1274 1.11 bouyer sc->sc_done_offset,
1275 1.11 bouyer A_ndone_slots * sizeof(u_int32_t),
1276 1.11 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1277 1.11 bouyer return;
1278 1.11 bouyer }
1279 1.11 bouyer
1280 1.11 bouyer needsync = 1;
1281 1.11 bouyer
1282 1.11 bouyer slot = htole32(sc->sc_done_slot[sc->sc_currdoneslot]);
1283 1.11 bouyer sc->sc_done_slot[sc->sc_currdoneslot] = 0;
1284 1.11 bouyer sc->sc_currdoneslot += 1;
1285 1.11 bouyer if (sc->sc_currdoneslot == A_ndone_slots)
1286 1.11 bouyer sc->sc_currdoneslot = 0;
1287 1.11 bouyer
1288 1.11 bouyer target = (slot & A_f_c_target) ? (slot >> 8) & 0xff : -1;
1289 1.11 bouyer lun = (slot & A_f_c_lun) ? (slot >> 16) & 0xff : -1;
1290 1.11 bouyer tag = (slot & A_f_c_tag) ? (slot >> 24) & 0xff : -1;
1291 1.11 bouyer
1292 1.11 bouyer esiop_target = (target >= 0) ?
1293 1.11 bouyer (struct esiop_target *)sc->sc_c.targets[target] : NULL;
1294 1.11 bouyer if (esiop_target == NULL) {
1295 1.11 bouyer printf("esiop_target (target %d) not valid\n", target);
1296 1.11 bouyer goto next;
1297 1.11 bouyer }
1298 1.11 bouyer esiop_lun = (lun >= 0) ? esiop_target->esiop_lun[lun] : NULL;
1299 1.11 bouyer if (esiop_lun == NULL) {
1300 1.11 bouyer printf("esiop_lun (target %d lun %d) not valid\n",
1301 1.11 bouyer target, lun);
1302 1.11 bouyer goto next;
1303 1.11 bouyer }
1304 1.11 bouyer esiop_cmd = (tag >= 0) ? esiop_lun->tactive[tag] : esiop_lun->active;
1305 1.11 bouyer if (esiop_cmd == NULL) {
1306 1.11 bouyer printf("esiop_cmd (target %d lun %d tag %d) not valid\n",
1307 1.11 bouyer target, lun, tag);
1308 1.11 bouyer goto next;
1309 1.11 bouyer }
1310 1.11 bouyer
1311 1.11 bouyer esiop_table_sync(esiop_cmd,
1312 1.11 bouyer BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1313 1.11 bouyer status = le32toh(esiop_cmd->cmd_tables->status);
1314 1.11 bouyer #ifdef DIAGNOSTIC
1315 1.11 bouyer if (status != SCSI_OK) {
1316 1.11 bouyer printf("command for T/L/Q %d/%d/%d status %d\n",
1317 1.11 bouyer target, lun, tag, status);
1318 1.11 bouyer goto next;
1319 1.1 bouyer }
1320 1.11 bouyer
1321 1.11 bouyer #endif
1322 1.11 bouyer /* Ok, this command has been handled */
1323 1.11 bouyer esiop_cmd->cmd_c.xs->status = status;
1324 1.11 bouyer if (tag >= 0)
1325 1.11 bouyer esiop_lun->tactive[tag] = NULL;
1326 1.11 bouyer else
1327 1.11 bouyer esiop_lun->active = NULL;
1328 1.34 bouyer /*
1329 1.34 bouyer * scratcha was eventually saved in saved_offset by script.
1330 1.34 bouyer * fetch offset from it
1331 1.34 bouyer */
1332 1.34 bouyer offset = 0;
1333 1.34 bouyer if (ESIOP_XFER(esiop_cmd, saved_offset) != htole32(SIOP_NOOFFSET))
1334 1.34 bouyer offset =
1335 1.34 bouyer (le32toh(ESIOP_XFER(esiop_cmd, saved_offset)) >> 8) & 0xff;
1336 1.34 bouyer esiop_scsicmd_end(esiop_cmd, offset);
1337 1.11 bouyer goto next;
1338 1.1 bouyer }
1339 1.1 bouyer
1340 1.1 bouyer void
1341 1.1 bouyer esiop_unqueue(sc, target, lun)
1342 1.1 bouyer struct esiop_softc *sc;
1343 1.1 bouyer int target;
1344 1.1 bouyer int lun;
1345 1.1 bouyer {
1346 1.1 bouyer int slot, tag;
1347 1.2 bouyer u_int32_t slotdsa;
1348 1.1 bouyer struct esiop_cmd *esiop_cmd;
1349 1.1 bouyer struct esiop_lun *esiop_lun =
1350 1.1 bouyer ((struct esiop_target *)sc->sc_c.targets[target])->esiop_lun[lun];
1351 1.1 bouyer
1352 1.1 bouyer /* first make sure to read valid data */
1353 1.1 bouyer esiop_script_sync(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1354 1.1 bouyer
1355 1.2 bouyer for (tag = 0; tag < ESIOP_NTAG; tag++) {
1356 1.1 bouyer /* look for commands in the scheduler, not yet started */
1357 1.11 bouyer if (esiop_lun->tactive[tag] == NULL)
1358 1.1 bouyer continue;
1359 1.2 bouyer esiop_cmd = esiop_lun->tactive[tag];
1360 1.3 bouyer for (slot = 0; slot < A_ncmd_slots; slot++) {
1361 1.2 bouyer slotdsa = esiop_script_read(sc,
1362 1.8 bouyer sc->sc_shedoffset + slot * CMD_SLOTSIZE);
1363 1.9 bouyer /* if the slot has any flag, it won't match the DSA */
1364 1.9 bouyer if (slotdsa == esiop_cmd->cmd_c.dsa) { /* found it */
1365 1.9 bouyer /* Mark this slot as ignore */
1366 1.9 bouyer esiop_script_write(sc,
1367 1.9 bouyer sc->sc_shedoffset + slot * CMD_SLOTSIZE,
1368 1.9 bouyer esiop_cmd->cmd_c.dsa | A_f_cmd_ignore);
1369 1.9 bouyer /* ask to requeue */
1370 1.9 bouyer esiop_cmd->cmd_c.xs->error = XS_REQUEUE;
1371 1.9 bouyer esiop_cmd->cmd_c.xs->status = SCSI_SIOP_NOCHECK;
1372 1.9 bouyer esiop_lun->tactive[tag] = NULL;
1373 1.29 bouyer esiop_scsicmd_end(esiop_cmd, 0);
1374 1.1 bouyer break;
1375 1.9 bouyer }
1376 1.1 bouyer }
1377 1.1 bouyer }
1378 1.9 bouyer esiop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1379 1.1 bouyer }
1380 1.1 bouyer
1381 1.1 bouyer /*
1382 1.1 bouyer * handle a rejected queue tag message: the command will run untagged,
1383 1.1 bouyer * has to adjust the reselect script.
1384 1.1 bouyer */
1385 1.1 bouyer
1386 1.2 bouyer
1387 1.1 bouyer int
1388 1.1 bouyer esiop_handle_qtag_reject(esiop_cmd)
1389 1.1 bouyer struct esiop_cmd *esiop_cmd;
1390 1.1 bouyer {
1391 1.2 bouyer struct esiop_softc *sc = (struct esiop_softc *)esiop_cmd->cmd_c.siop_sc;
1392 1.1 bouyer int target = esiop_cmd->cmd_c.xs->xs_periph->periph_target;
1393 1.1 bouyer int lun = esiop_cmd->cmd_c.xs->xs_periph->periph_lun;
1394 1.1 bouyer int tag = esiop_cmd->cmd_tables->msg_out[2];
1395 1.2 bouyer struct esiop_target *esiop_target =
1396 1.2 bouyer (struct esiop_target*)sc->sc_c.targets[target];
1397 1.2 bouyer struct esiop_lun *esiop_lun = esiop_target->esiop_lun[lun];
1398 1.1 bouyer
1399 1.1 bouyer #ifdef SIOP_DEBUG
1400 1.1 bouyer printf("%s:%d:%d: tag message %d (%d) rejected (status %d)\n",
1401 1.1 bouyer sc->sc_c.sc_dev.dv_xname, target, lun, tag, esiop_cmd->cmd_c.tag,
1402 1.1 bouyer esiop_cmd->cmd_c.status);
1403 1.1 bouyer #endif
1404 1.1 bouyer
1405 1.2 bouyer if (esiop_lun->active != NULL) {
1406 1.1 bouyer printf("%s: untagged command already running for target %d "
1407 1.1 bouyer "lun %d (status %d)\n", sc->sc_c.sc_dev.dv_xname,
1408 1.2 bouyer target, lun, esiop_lun->active->cmd_c.status);
1409 1.1 bouyer return -1;
1410 1.1 bouyer }
1411 1.1 bouyer /* clear tag slot */
1412 1.2 bouyer esiop_lun->tactive[tag] = NULL;
1413 1.1 bouyer /* add command to non-tagged slot */
1414 1.2 bouyer esiop_lun->active = esiop_cmd;
1415 1.2 bouyer esiop_cmd->cmd_c.flags &= ~CMDFL_TAG;
1416 1.2 bouyer esiop_cmd->cmd_c.tag = -1;
1417 1.2 bouyer /* update DSA table */
1418 1.9 bouyer esiop_script_write(sc, esiop_target->lun_table_offset +
1419 1.9 bouyer lun * 2 + A_target_luntbl / sizeof(u_int32_t),
1420 1.2 bouyer esiop_cmd->cmd_c.dsa);
1421 1.2 bouyer esiop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1422 1.1 bouyer return 0;
1423 1.1 bouyer }
1424 1.1 bouyer
1425 1.1 bouyer /*
1426 1.1 bouyer * handle a bus reset: reset chip, unqueue all active commands, free all
1427 1.24 wiz * target struct and report lossage to upper layer.
1428 1.1 bouyer * As the upper layer may requeue immediatly we have to first store
1429 1.1 bouyer * all active commands in a temporary queue.
1430 1.1 bouyer */
1431 1.1 bouyer void
1432 1.1 bouyer esiop_handle_reset(sc)
1433 1.1 bouyer struct esiop_softc *sc;
1434 1.1 bouyer {
1435 1.1 bouyer struct esiop_cmd *esiop_cmd;
1436 1.1 bouyer struct esiop_lun *esiop_lun;
1437 1.1 bouyer int target, lun, tag;
1438 1.1 bouyer /*
1439 1.1 bouyer * scsi bus reset. reset the chip and restart
1440 1.1 bouyer * the queue. Need to clean up all active commands
1441 1.1 bouyer */
1442 1.1 bouyer printf("%s: scsi bus reset\n", sc->sc_c.sc_dev.dv_xname);
1443 1.1 bouyer /* stop, reset and restart the chip */
1444 1.1 bouyer esiop_reset(sc);
1445 1.9 bouyer
1446 1.1 bouyer if (sc->sc_flags & SCF_CHAN_NOSLOT) {
1447 1.1 bouyer /* chip has been reset, all slots are free now */
1448 1.1 bouyer sc->sc_flags &= ~SCF_CHAN_NOSLOT;
1449 1.1 bouyer scsipi_channel_thaw(&sc->sc_c.sc_chan, 1);
1450 1.1 bouyer }
1451 1.1 bouyer /*
1452 1.24 wiz * Process all commands: first commands completes, then commands
1453 1.1 bouyer * being executed
1454 1.1 bouyer */
1455 1.1 bouyer esiop_checkdone(sc);
1456 1.1 bouyer for (target = 0; target < sc->sc_c.sc_chan.chan_ntargets;
1457 1.1 bouyer target++) {
1458 1.11 bouyer struct esiop_target *esiop_target =
1459 1.1 bouyer (struct esiop_target *)sc->sc_c.targets[target];
1460 1.1 bouyer if (esiop_target == NULL)
1461 1.1 bouyer continue;
1462 1.1 bouyer for (lun = 0; lun < 8; lun++) {
1463 1.1 bouyer esiop_lun = esiop_target->esiop_lun[lun];
1464 1.1 bouyer if (esiop_lun == NULL)
1465 1.1 bouyer continue;
1466 1.2 bouyer for (tag = -1; tag <
1467 1.1 bouyer ((sc->sc_c.targets[target]->flags & TARF_TAG) ?
1468 1.2 bouyer ESIOP_NTAG : 0);
1469 1.1 bouyer tag++) {
1470 1.2 bouyer if (tag >= 0)
1471 1.2 bouyer esiop_cmd = esiop_lun->tactive[tag];
1472 1.2 bouyer else
1473 1.2 bouyer esiop_cmd = esiop_lun->active;
1474 1.1 bouyer if (esiop_cmd == NULL)
1475 1.1 bouyer continue;
1476 1.1 bouyer scsipi_printaddr(esiop_cmd->cmd_c.xs->xs_periph);
1477 1.1 bouyer printf("command with tag id %d reset\n", tag);
1478 1.1 bouyer esiop_cmd->cmd_c.xs->error =
1479 1.1 bouyer (esiop_cmd->cmd_c.flags & CMDFL_TIMEOUT) ?
1480 1.1 bouyer XS_TIMEOUT : XS_RESET;
1481 1.1 bouyer esiop_cmd->cmd_c.xs->status = SCSI_SIOP_NOCHECK;
1482 1.2 bouyer if (tag >= 0)
1483 1.2 bouyer esiop_lun->tactive[tag] = NULL;
1484 1.2 bouyer else
1485 1.2 bouyer esiop_lun->active = NULL;
1486 1.1 bouyer esiop_cmd->cmd_c.status = CMDST_DONE;
1487 1.29 bouyer esiop_scsicmd_end(esiop_cmd, 0);
1488 1.1 bouyer }
1489 1.1 bouyer }
1490 1.1 bouyer sc->sc_c.targets[target]->status = TARST_ASYNC;
1491 1.6 bouyer sc->sc_c.targets[target]->flags &= ~(TARF_ISWIDE | TARF_ISDT);
1492 1.1 bouyer sc->sc_c.targets[target]->period =
1493 1.1 bouyer sc->sc_c.targets[target]->offset = 0;
1494 1.1 bouyer siop_update_xfer_mode(&sc->sc_c, target);
1495 1.1 bouyer }
1496 1.1 bouyer
1497 1.1 bouyer scsipi_async_event(&sc->sc_c.sc_chan, ASYNC_EVENT_RESET, NULL);
1498 1.1 bouyer }
1499 1.1 bouyer
1500 1.1 bouyer void
1501 1.1 bouyer esiop_scsipi_request(chan, req, arg)
1502 1.1 bouyer struct scsipi_channel *chan;
1503 1.1 bouyer scsipi_adapter_req_t req;
1504 1.1 bouyer void *arg;
1505 1.1 bouyer {
1506 1.1 bouyer struct scsipi_xfer *xs;
1507 1.1 bouyer struct scsipi_periph *periph;
1508 1.1 bouyer struct esiop_softc *sc = (void *)chan->chan_adapter->adapt_dev;
1509 1.1 bouyer struct esiop_cmd *esiop_cmd;
1510 1.1 bouyer struct esiop_target *esiop_target;
1511 1.1 bouyer int s, error, i;
1512 1.1 bouyer int target;
1513 1.1 bouyer int lun;
1514 1.1 bouyer
1515 1.1 bouyer switch (req) {
1516 1.1 bouyer case ADAPTER_REQ_RUN_XFER:
1517 1.1 bouyer xs = arg;
1518 1.1 bouyer periph = xs->xs_periph;
1519 1.1 bouyer target = periph->periph_target;
1520 1.1 bouyer lun = periph->periph_lun;
1521 1.1 bouyer
1522 1.1 bouyer s = splbio();
1523 1.12 bouyer /*
1524 1.12 bouyer * first check if there are pending complete commands.
1525 1.12 bouyer * this can free us some resources (in the rings for example).
1526 1.12 bouyer * we have to lock it to avoid recursion.
1527 1.12 bouyer */
1528 1.12 bouyer if ((sc->sc_flags & SCF_CHAN_ADAPTREQ) == 0) {
1529 1.12 bouyer sc->sc_flags |= SCF_CHAN_ADAPTREQ;
1530 1.12 bouyer esiop_checkdone(sc);
1531 1.12 bouyer sc->sc_flags &= ~SCF_CHAN_ADAPTREQ;
1532 1.12 bouyer }
1533 1.1 bouyer #ifdef SIOP_DEBUG_SCHED
1534 1.9 bouyer printf("starting cmd for %d:%d tag %d(%d)\n", target, lun,
1535 1.9 bouyer xs->xs_tag_type, xs->xs_tag_id);
1536 1.1 bouyer #endif
1537 1.1 bouyer esiop_cmd = TAILQ_FIRST(&sc->free_list);
1538 1.1 bouyer if (esiop_cmd == NULL) {
1539 1.1 bouyer xs->error = XS_RESOURCE_SHORTAGE;
1540 1.1 bouyer scsipi_done(xs);
1541 1.1 bouyer splx(s);
1542 1.1 bouyer return;
1543 1.1 bouyer }
1544 1.1 bouyer TAILQ_REMOVE(&sc->free_list, esiop_cmd, next);
1545 1.1 bouyer #ifdef DIAGNOSTIC
1546 1.1 bouyer if (esiop_cmd->cmd_c.status != CMDST_FREE)
1547 1.1 bouyer panic("siop_scsicmd: new cmd not free");
1548 1.1 bouyer #endif
1549 1.1 bouyer esiop_target = (struct esiop_target*)sc->sc_c.targets[target];
1550 1.1 bouyer if (esiop_target == NULL) {
1551 1.1 bouyer #ifdef SIOP_DEBUG
1552 1.1 bouyer printf("%s: alloc siop_target for target %d\n",
1553 1.1 bouyer sc->sc_c.sc_dev.dv_xname, target);
1554 1.1 bouyer #endif
1555 1.1 bouyer sc->sc_c.targets[target] =
1556 1.1 bouyer malloc(sizeof(struct esiop_target),
1557 1.1 bouyer M_DEVBUF, M_NOWAIT | M_ZERO);
1558 1.1 bouyer if (sc->sc_c.targets[target] == NULL) {
1559 1.1 bouyer printf("%s: can't malloc memory for "
1560 1.1 bouyer "target %d\n", sc->sc_c.sc_dev.dv_xname,
1561 1.1 bouyer target);
1562 1.1 bouyer xs->error = XS_RESOURCE_SHORTAGE;
1563 1.1 bouyer scsipi_done(xs);
1564 1.1 bouyer splx(s);
1565 1.1 bouyer return;
1566 1.1 bouyer }
1567 1.1 bouyer esiop_target =
1568 1.1 bouyer (struct esiop_target*)sc->sc_c.targets[target];
1569 1.1 bouyer esiop_target->target_c.status = TARST_PROBING;
1570 1.1 bouyer esiop_target->target_c.flags = 0;
1571 1.1 bouyer esiop_target->target_c.id =
1572 1.1 bouyer sc->sc_c.clock_div << 24; /* scntl3 */
1573 1.1 bouyer esiop_target->target_c.id |= target << 16; /* id */
1574 1.1 bouyer /* esiop_target->target_c.id |= 0x0 << 8; scxfer is 0 */
1575 1.1 bouyer
1576 1.1 bouyer for (i=0; i < 8; i++)
1577 1.1 bouyer esiop_target->esiop_lun[i] = NULL;
1578 1.1 bouyer esiop_target_register(sc, target);
1579 1.1 bouyer }
1580 1.1 bouyer if (esiop_target->esiop_lun[lun] == NULL) {
1581 1.1 bouyer esiop_target->esiop_lun[lun] =
1582 1.1 bouyer malloc(sizeof(struct esiop_lun), M_DEVBUF,
1583 1.1 bouyer M_NOWAIT|M_ZERO);
1584 1.1 bouyer if (esiop_target->esiop_lun[lun] == NULL) {
1585 1.1 bouyer printf("%s: can't alloc esiop_lun for "
1586 1.1 bouyer "target %d lun %d\n",
1587 1.1 bouyer sc->sc_c.sc_dev.dv_xname, target, lun);
1588 1.1 bouyer xs->error = XS_RESOURCE_SHORTAGE;
1589 1.1 bouyer scsipi_done(xs);
1590 1.1 bouyer splx(s);
1591 1.1 bouyer return;
1592 1.1 bouyer }
1593 1.1 bouyer }
1594 1.1 bouyer esiop_cmd->cmd_c.siop_target = sc->sc_c.targets[target];
1595 1.1 bouyer esiop_cmd->cmd_c.xs = xs;
1596 1.1 bouyer esiop_cmd->cmd_c.flags = 0;
1597 1.1 bouyer esiop_cmd->cmd_c.status = CMDST_READY;
1598 1.1 bouyer
1599 1.1 bouyer /* load the DMA maps */
1600 1.1 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat,
1601 1.1 bouyer esiop_cmd->cmd_c.dmamap_cmd,
1602 1.1 bouyer xs->cmd, xs->cmdlen, NULL, BUS_DMA_NOWAIT);
1603 1.1 bouyer if (error) {
1604 1.1 bouyer printf("%s: unable to load cmd DMA map: %d\n",
1605 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1606 1.1 bouyer xs->error = XS_DRIVER_STUFFUP;
1607 1.1 bouyer scsipi_done(xs);
1608 1.1 bouyer splx(s);
1609 1.1 bouyer return;
1610 1.1 bouyer }
1611 1.1 bouyer if (xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) {
1612 1.1 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat,
1613 1.1 bouyer esiop_cmd->cmd_c.dmamap_data, xs->data, xs->datalen,
1614 1.1 bouyer NULL, BUS_DMA_NOWAIT | BUS_DMA_STREAMING |
1615 1.1 bouyer ((xs->xs_control & XS_CTL_DATA_IN) ?
1616 1.1 bouyer BUS_DMA_READ : BUS_DMA_WRITE));
1617 1.1 bouyer if (error) {
1618 1.1 bouyer printf("%s: unable to load cmd DMA map: %d",
1619 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1620 1.1 bouyer xs->error = XS_DRIVER_STUFFUP;
1621 1.1 bouyer scsipi_done(xs);
1622 1.1 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat,
1623 1.1 bouyer esiop_cmd->cmd_c.dmamap_cmd);
1624 1.1 bouyer splx(s);
1625 1.1 bouyer return;
1626 1.1 bouyer }
1627 1.1 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat,
1628 1.1 bouyer esiop_cmd->cmd_c.dmamap_data, 0,
1629 1.1 bouyer esiop_cmd->cmd_c.dmamap_data->dm_mapsize,
1630 1.1 bouyer (xs->xs_control & XS_CTL_DATA_IN) ?
1631 1.1 bouyer BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
1632 1.1 bouyer }
1633 1.1 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, esiop_cmd->cmd_c.dmamap_cmd,
1634 1.1 bouyer 0, esiop_cmd->cmd_c.dmamap_cmd->dm_mapsize,
1635 1.1 bouyer BUS_DMASYNC_PREWRITE);
1636 1.1 bouyer
1637 1.2 bouyer if (xs->xs_tag_type)
1638 1.2 bouyer esiop_cmd->cmd_c.tag = xs->xs_tag_id;
1639 1.2 bouyer else
1640 1.2 bouyer esiop_cmd->cmd_c.tag = -1;
1641 1.1 bouyer siop_setuptables(&esiop_cmd->cmd_c);
1642 1.34 bouyer ESIOP_XFER(esiop_cmd, saved_offset) = htole32(SIOP_NOOFFSET);
1643 1.34 bouyer ESIOP_XFER(esiop_cmd, tlq) = htole32(A_f_c_target | A_f_c_lun);
1644 1.34 bouyer ESIOP_XFER(esiop_cmd, tlq) |=
1645 1.2 bouyer htole32((target << 8) | (lun << 16));
1646 1.2 bouyer if (esiop_cmd->cmd_c.flags & CMDFL_TAG) {
1647 1.34 bouyer ESIOP_XFER(esiop_cmd, tlq) |= htole32(A_f_c_tag);
1648 1.34 bouyer ESIOP_XFER(esiop_cmd, tlq) |=
1649 1.2 bouyer htole32(esiop_cmd->cmd_c.tag << 24);
1650 1.2 bouyer }
1651 1.1 bouyer
1652 1.1 bouyer esiop_table_sync(esiop_cmd,
1653 1.1 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1654 1.1 bouyer esiop_start(sc, esiop_cmd);
1655 1.1 bouyer if (xs->xs_control & XS_CTL_POLL) {
1656 1.1 bouyer /* poll for command completion */
1657 1.1 bouyer while ((xs->xs_status & XS_STS_DONE) == 0) {
1658 1.1 bouyer delay(1000);
1659 1.1 bouyer esiop_intr(sc);
1660 1.1 bouyer }
1661 1.1 bouyer }
1662 1.1 bouyer splx(s);
1663 1.1 bouyer return;
1664 1.1 bouyer
1665 1.1 bouyer case ADAPTER_REQ_GROW_RESOURCES:
1666 1.1 bouyer #ifdef SIOP_DEBUG
1667 1.1 bouyer printf("%s grow resources (%d)\n", sc->sc_c.sc_dev.dv_xname,
1668 1.1 bouyer sc->sc_c.sc_adapt.adapt_openings);
1669 1.1 bouyer #endif
1670 1.1 bouyer esiop_morecbd(sc);
1671 1.1 bouyer return;
1672 1.1 bouyer
1673 1.1 bouyer case ADAPTER_REQ_SET_XFER_MODE:
1674 1.1 bouyer {
1675 1.1 bouyer struct scsipi_xfer_mode *xm = arg;
1676 1.1 bouyer if (sc->sc_c.targets[xm->xm_target] == NULL)
1677 1.1 bouyer return;
1678 1.1 bouyer s = splbio();
1679 1.33 bouyer if (xm->xm_mode & PERIPH_CAP_TQING) {
1680 1.1 bouyer sc->sc_c.targets[xm->xm_target]->flags |= TARF_TAG;
1681 1.9 bouyer /* allocate tag tables for this device */
1682 1.9 bouyer for (lun = 0;
1683 1.9 bouyer lun < sc->sc_c.sc_chan.chan_nluns; lun++) {
1684 1.15 thorpej if (scsipi_lookup_periph(chan,
1685 1.15 thorpej xm->xm_target, lun) != NULL)
1686 1.9 bouyer esiop_add_dev(sc, xm->xm_target, lun);
1687 1.9 bouyer }
1688 1.9 bouyer }
1689 1.1 bouyer if ((xm->xm_mode & PERIPH_CAP_WIDE16) &&
1690 1.1 bouyer (sc->sc_c.features & SF_BUS_WIDE))
1691 1.1 bouyer sc->sc_c.targets[xm->xm_target]->flags |= TARF_WIDE;
1692 1.1 bouyer if (xm->xm_mode & PERIPH_CAP_SYNC)
1693 1.1 bouyer sc->sc_c.targets[xm->xm_target]->flags |= TARF_SYNC;
1694 1.6 bouyer if ((xm->xm_mode & PERIPH_CAP_DT) &&
1695 1.6 bouyer (sc->sc_c.features & SF_CHIP_DT))
1696 1.6 bouyer sc->sc_c.targets[xm->xm_target]->flags |= TARF_DT;
1697 1.6 bouyer if ((xm->xm_mode &
1698 1.6 bouyer (PERIPH_CAP_SYNC | PERIPH_CAP_WIDE16 | PERIPH_CAP_DT)) ||
1699 1.1 bouyer sc->sc_c.targets[xm->xm_target]->status == TARST_PROBING)
1700 1.6 bouyer sc->sc_c.targets[xm->xm_target]->status = TARST_ASYNC;
1701 1.1 bouyer
1702 1.1 bouyer splx(s);
1703 1.1 bouyer }
1704 1.1 bouyer }
1705 1.1 bouyer }
1706 1.1 bouyer
1707 1.1 bouyer static void
1708 1.1 bouyer esiop_start(sc, esiop_cmd)
1709 1.1 bouyer struct esiop_softc *sc;
1710 1.1 bouyer struct esiop_cmd *esiop_cmd;
1711 1.1 bouyer {
1712 1.1 bouyer struct esiop_lun *esiop_lun;
1713 1.1 bouyer struct esiop_target *esiop_target;
1714 1.1 bouyer int timeout;
1715 1.1 bouyer int target, lun, slot;
1716 1.1 bouyer
1717 1.1 bouyer /*
1718 1.1 bouyer * first make sure to read valid data
1719 1.1 bouyer */
1720 1.1 bouyer esiop_script_sync(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1721 1.1 bouyer
1722 1.1 bouyer /*
1723 1.1 bouyer * We use a circular queue here. sc->sc_currschedslot points to a
1724 1.1 bouyer * free slot, unless we have filled the queue. Check this.
1725 1.1 bouyer */
1726 1.1 bouyer slot = sc->sc_currschedslot;
1727 1.8 bouyer if ((esiop_script_read(sc, sc->sc_shedoffset + slot * CMD_SLOTSIZE) &
1728 1.1 bouyer A_f_cmd_free) == 0) {
1729 1.1 bouyer /*
1730 1.1 bouyer * no more free slot, no need to continue. freeze the queue
1731 1.1 bouyer * and requeue this command.
1732 1.1 bouyer */
1733 1.1 bouyer scsipi_channel_freeze(&sc->sc_c.sc_chan, 1);
1734 1.1 bouyer sc->sc_flags |= SCF_CHAN_NOSLOT;
1735 1.12 bouyer esiop_script_write(sc, sc->sc_semoffset,
1736 1.12 bouyer esiop_script_read(sc, sc->sc_semoffset) & ~A_sem_start);
1737 1.12 bouyer esiop_script_sync(sc,
1738 1.31 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1739 1.1 bouyer esiop_cmd->cmd_c.xs->error = XS_REQUEUE;
1740 1.1 bouyer esiop_cmd->cmd_c.xs->status = SCSI_SIOP_NOCHECK;
1741 1.29 bouyer esiop_scsicmd_end(esiop_cmd, 0);
1742 1.1 bouyer return;
1743 1.1 bouyer }
1744 1.1 bouyer /* OK, we can use this slot */
1745 1.1 bouyer
1746 1.1 bouyer target = esiop_cmd->cmd_c.xs->xs_periph->periph_target;
1747 1.1 bouyer lun = esiop_cmd->cmd_c.xs->xs_periph->periph_lun;
1748 1.1 bouyer esiop_target = (struct esiop_target*)sc->sc_c.targets[target];
1749 1.1 bouyer esiop_lun = esiop_target->esiop_lun[lun];
1750 1.1 bouyer /* if non-tagged command active, panic: this shouldn't happen */
1751 1.1 bouyer if (esiop_lun->active != NULL) {
1752 1.1 bouyer panic("esiop_start: tagged cmd while untagged running");
1753 1.1 bouyer }
1754 1.1 bouyer #ifdef DIAGNOSTIC
1755 1.1 bouyer /* sanity check the tag if needed */
1756 1.1 bouyer if (esiop_cmd->cmd_c.flags & CMDFL_TAG) {
1757 1.2 bouyer if (esiop_cmd->cmd_c.tag >= ESIOP_NTAG ||
1758 1.2 bouyer esiop_cmd->cmd_c.tag < 0) {
1759 1.1 bouyer scsipi_printaddr(esiop_cmd->cmd_c.xs->xs_periph);
1760 1.1 bouyer printf(": tag id %d\n", esiop_cmd->cmd_c.tag);
1761 1.1 bouyer panic("esiop_start: invalid tag id");
1762 1.1 bouyer }
1763 1.36 christos if (esiop_lun->tactive[esiop_cmd->cmd_c.tag] != NULL)
1764 1.36 christos panic("esiop_start: tag not free");
1765 1.1 bouyer }
1766 1.1 bouyer #endif
1767 1.1 bouyer #ifdef SIOP_DEBUG_SCHED
1768 1.1 bouyer printf("using slot %d for DSA 0x%lx\n", slot,
1769 1.1 bouyer (u_long)esiop_cmd->cmd_c.dsa);
1770 1.1 bouyer #endif
1771 1.1 bouyer /* mark command as active */
1772 1.1 bouyer if (esiop_cmd->cmd_c.status == CMDST_READY)
1773 1.1 bouyer esiop_cmd->cmd_c.status = CMDST_ACTIVE;
1774 1.1 bouyer else
1775 1.1 bouyer panic("esiop_start: bad status");
1776 1.9 bouyer /* DSA table for reselect */
1777 1.2 bouyer if (esiop_cmd->cmd_c.flags & CMDFL_TAG) {
1778 1.2 bouyer esiop_lun->tactive[esiop_cmd->cmd_c.tag] = esiop_cmd;
1779 1.2 bouyer /* DSA table for reselect */
1780 1.11 bouyer esiop_lun->lun_tagtbl->tbl[esiop_cmd->cmd_c.tag] =
1781 1.2 bouyer htole32(esiop_cmd->cmd_c.dsa);
1782 1.2 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat,
1783 1.2 bouyer esiop_lun->lun_tagtbl->tblblk->blkmap,
1784 1.2 bouyer esiop_lun->lun_tagtbl->tbl_offset,
1785 1.2 bouyer sizeof(u_int32_t) * ESIOP_NTAG, BUS_DMASYNC_PREWRITE);
1786 1.2 bouyer } else {
1787 1.2 bouyer esiop_lun->active = esiop_cmd;
1788 1.9 bouyer esiop_script_write(sc,
1789 1.9 bouyer esiop_target->lun_table_offset +
1790 1.9 bouyer lun * 2 + A_target_luntbl / sizeof(u_int32_t),
1791 1.2 bouyer esiop_cmd->cmd_c.dsa);
1792 1.2 bouyer }
1793 1.8 bouyer /* scheduler slot: DSA */
1794 1.8 bouyer esiop_script_write(sc, sc->sc_shedoffset + slot * CMD_SLOTSIZE,
1795 1.1 bouyer esiop_cmd->cmd_c.dsa);
1796 1.9 bouyer /* make sure SCRIPT processor will read valid data */
1797 1.9 bouyer esiop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1798 1.1 bouyer /* handle timeout */
1799 1.1 bouyer if ((esiop_cmd->cmd_c.xs->xs_control & XS_CTL_POLL) == 0) {
1800 1.1 bouyer /* start exire timer */
1801 1.1 bouyer timeout = mstohz(esiop_cmd->cmd_c.xs->timeout);
1802 1.1 bouyer if (timeout == 0)
1803 1.1 bouyer timeout = 1;
1804 1.1 bouyer callout_reset( &esiop_cmd->cmd_c.xs->xs_callout,
1805 1.1 bouyer timeout, esiop_timeout, esiop_cmd);
1806 1.1 bouyer }
1807 1.1 bouyer /* Signal script it has some work to do */
1808 1.1 bouyer bus_space_write_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
1809 1.1 bouyer SIOP_ISTAT, ISTAT_SIGP);
1810 1.1 bouyer /* update the current slot, and wait for IRQ */
1811 1.1 bouyer sc->sc_currschedslot++;
1812 1.1 bouyer if (sc->sc_currschedslot >= A_ncmd_slots)
1813 1.1 bouyer sc->sc_currschedslot = 0;
1814 1.1 bouyer return;
1815 1.1 bouyer }
1816 1.1 bouyer
1817 1.1 bouyer void
1818 1.1 bouyer esiop_timeout(v)
1819 1.1 bouyer void *v;
1820 1.1 bouyer {
1821 1.1 bouyer struct esiop_cmd *esiop_cmd = v;
1822 1.1 bouyer struct esiop_softc *sc =
1823 1.1 bouyer (struct esiop_softc *)esiop_cmd->cmd_c.siop_sc;
1824 1.1 bouyer int s;
1825 1.9 bouyer #ifdef SIOP_DEBUG
1826 1.9 bouyer int slot, slotdsa;
1827 1.9 bouyer #endif
1828 1.1 bouyer
1829 1.9 bouyer s = splbio();
1830 1.9 bouyer esiop_table_sync(esiop_cmd,
1831 1.9 bouyer BUS_DMASYNC_POSTREAD |
1832 1.9 bouyer BUS_DMASYNC_POSTWRITE);
1833 1.1 bouyer scsipi_printaddr(esiop_cmd->cmd_c.xs->xs_periph);
1834 1.9 bouyer #ifdef SIOP_DEBUG
1835 1.9 bouyer printf("command timeout (status %d)\n", le32toh(esiop_cmd->cmd_tables->status));
1836 1.9 bouyer
1837 1.9 bouyer esiop_script_sync(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1838 1.9 bouyer for (slot = 0; slot < A_ncmd_slots; slot++) {
1839 1.9 bouyer slotdsa = esiop_script_read(sc,
1840 1.9 bouyer sc->sc_shedoffset + slot * CMD_SLOTSIZE);
1841 1.9 bouyer if ((slotdsa & 0x01) == 0)
1842 1.9 bouyer printf("slot %d not free (0x%x)\n", slot, slotdsa);
1843 1.9 bouyer }
1844 1.9 bouyer printf("istat 0x%x ", bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_ISTAT));
1845 1.9 bouyer printf("DSP 0x%lx DSA 0x%x\n",
1846 1.9 bouyer (u_long)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSP) - sc->sc_c.sc_scriptaddr),
1847 1.9 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA));
1848 1.9 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_CTEST2);
1849 1.9 bouyer printf("istat 0x%x\n", bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_ISTAT));
1850 1.9 bouyer #else
1851 1.27 bouyer printf("command timeout, CDB: ");
1852 1.27 bouyer scsipi_print_cdb(esiop_cmd->cmd_c.xs->cmd);
1853 1.26 bouyer printf("\n");
1854 1.9 bouyer #endif
1855 1.1 bouyer /* reset the scsi bus */
1856 1.1 bouyer siop_resetbus(&sc->sc_c);
1857 1.1 bouyer
1858 1.1 bouyer /* deactivate callout */
1859 1.1 bouyer callout_stop(&esiop_cmd->cmd_c.xs->xs_callout);
1860 1.1 bouyer /*
1861 1.1 bouyer * mark command has being timed out and just return;
1862 1.1 bouyer * the bus reset will generate an interrupt,
1863 1.1 bouyer * it will be handled in siop_intr()
1864 1.1 bouyer */
1865 1.1 bouyer esiop_cmd->cmd_c.flags |= CMDFL_TIMEOUT;
1866 1.1 bouyer splx(s);
1867 1.1 bouyer return;
1868 1.1 bouyer
1869 1.1 bouyer }
1870 1.1 bouyer
1871 1.1 bouyer void
1872 1.1 bouyer esiop_dump_script(sc)
1873 1.1 bouyer struct esiop_softc *sc;
1874 1.1 bouyer {
1875 1.1 bouyer int i;
1876 1.1 bouyer for (i = 0; i < PAGE_SIZE / 4; i += 2) {
1877 1.1 bouyer printf("0x%04x: 0x%08x 0x%08x", i * 4,
1878 1.1 bouyer le32toh(sc->sc_c.sc_script[i]),
1879 1.1 bouyer le32toh(sc->sc_c.sc_script[i+1]));
1880 1.1 bouyer if ((le32toh(sc->sc_c.sc_script[i]) & 0xe0000000) ==
1881 1.1 bouyer 0xc0000000) {
1882 1.1 bouyer i++;
1883 1.1 bouyer printf(" 0x%08x", le32toh(sc->sc_c.sc_script[i+1]));
1884 1.1 bouyer }
1885 1.1 bouyer printf("\n");
1886 1.1 bouyer }
1887 1.1 bouyer }
1888 1.1 bouyer
1889 1.1 bouyer void
1890 1.1 bouyer esiop_morecbd(sc)
1891 1.1 bouyer struct esiop_softc *sc;
1892 1.1 bouyer {
1893 1.1 bouyer int error, i, s;
1894 1.1 bouyer bus_dma_segment_t seg;
1895 1.1 bouyer int rseg;
1896 1.1 bouyer struct esiop_cbd *newcbd;
1897 1.1 bouyer struct esiop_xfer *xfer;
1898 1.1 bouyer bus_addr_t dsa;
1899 1.1 bouyer
1900 1.1 bouyer /* allocate a new list head */
1901 1.1 bouyer newcbd = malloc(sizeof(struct esiop_cbd), M_DEVBUF, M_NOWAIT|M_ZERO);
1902 1.1 bouyer if (newcbd == NULL) {
1903 1.1 bouyer printf("%s: can't allocate memory for command descriptors "
1904 1.1 bouyer "head\n", sc->sc_c.sc_dev.dv_xname);
1905 1.1 bouyer return;
1906 1.1 bouyer }
1907 1.1 bouyer
1908 1.1 bouyer /* allocate cmd list */
1909 1.1 bouyer newcbd->cmds = malloc(sizeof(struct esiop_cmd) * SIOP_NCMDPB,
1910 1.1 bouyer M_DEVBUF, M_NOWAIT|M_ZERO);
1911 1.1 bouyer if (newcbd->cmds == NULL) {
1912 1.1 bouyer printf("%s: can't allocate memory for command descriptors\n",
1913 1.1 bouyer sc->sc_c.sc_dev.dv_xname);
1914 1.1 bouyer goto bad3;
1915 1.1 bouyer }
1916 1.1 bouyer error = bus_dmamem_alloc(sc->sc_c.sc_dmat, PAGE_SIZE, PAGE_SIZE, 0,
1917 1.1 bouyer &seg, 1, &rseg, BUS_DMA_NOWAIT);
1918 1.1 bouyer if (error) {
1919 1.1 bouyer printf("%s: unable to allocate cbd DMA memory, error = %d\n",
1920 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1921 1.1 bouyer goto bad2;
1922 1.1 bouyer }
1923 1.1 bouyer error = bus_dmamem_map(sc->sc_c.sc_dmat, &seg, rseg, PAGE_SIZE,
1924 1.39 christos (void **)&newcbd->xfers, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
1925 1.1 bouyer if (error) {
1926 1.1 bouyer printf("%s: unable to map cbd DMA memory, error = %d\n",
1927 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1928 1.1 bouyer goto bad2;
1929 1.1 bouyer }
1930 1.1 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat, PAGE_SIZE, 1, PAGE_SIZE, 0,
1931 1.1 bouyer BUS_DMA_NOWAIT, &newcbd->xferdma);
1932 1.1 bouyer if (error) {
1933 1.1 bouyer printf("%s: unable to create cbd DMA map, error = %d\n",
1934 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1935 1.1 bouyer goto bad1;
1936 1.1 bouyer }
1937 1.1 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat, newcbd->xferdma,
1938 1.1 bouyer newcbd->xfers, PAGE_SIZE, NULL, BUS_DMA_NOWAIT);
1939 1.1 bouyer if (error) {
1940 1.1 bouyer printf("%s: unable to load cbd DMA map, error = %d\n",
1941 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1942 1.1 bouyer goto bad0;
1943 1.1 bouyer }
1944 1.1 bouyer #ifdef DEBUG
1945 1.1 bouyer printf("%s: alloc newcdb at PHY addr 0x%lx\n", sc->sc_c.sc_dev.dv_xname,
1946 1.1 bouyer (unsigned long)newcbd->xferdma->dm_segs[0].ds_addr);
1947 1.1 bouyer #endif
1948 1.1 bouyer for (i = 0; i < SIOP_NCMDPB; i++) {
1949 1.1 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat, MAXPHYS, SIOP_NSG,
1950 1.1 bouyer MAXPHYS, 0, BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
1951 1.1 bouyer &newcbd->cmds[i].cmd_c.dmamap_data);
1952 1.1 bouyer if (error) {
1953 1.1 bouyer printf("%s: unable to create data DMA map for cbd: "
1954 1.1 bouyer "error %d\n",
1955 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1956 1.1 bouyer goto bad0;
1957 1.1 bouyer }
1958 1.1 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat,
1959 1.1 bouyer sizeof(struct scsipi_generic), 1,
1960 1.1 bouyer sizeof(struct scsipi_generic), 0,
1961 1.1 bouyer BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
1962 1.1 bouyer &newcbd->cmds[i].cmd_c.dmamap_cmd);
1963 1.1 bouyer if (error) {
1964 1.1 bouyer printf("%s: unable to create cmd DMA map for cbd %d\n",
1965 1.1 bouyer sc->sc_c.sc_dev.dv_xname, error);
1966 1.1 bouyer goto bad0;
1967 1.1 bouyer }
1968 1.1 bouyer newcbd->cmds[i].cmd_c.siop_sc = &sc->sc_c;
1969 1.1 bouyer newcbd->cmds[i].esiop_cbdp = newcbd;
1970 1.1 bouyer xfer = &newcbd->xfers[i];
1971 1.1 bouyer newcbd->cmds[i].cmd_tables = (struct siop_common_xfer *)xfer;
1972 1.1 bouyer memset(newcbd->cmds[i].cmd_tables, 0,
1973 1.1 bouyer sizeof(struct esiop_xfer));
1974 1.1 bouyer dsa = newcbd->xferdma->dm_segs[0].ds_addr +
1975 1.1 bouyer i * sizeof(struct esiop_xfer);
1976 1.1 bouyer newcbd->cmds[i].cmd_c.dsa = dsa;
1977 1.1 bouyer newcbd->cmds[i].cmd_c.status = CMDST_FREE;
1978 1.1 bouyer xfer->siop_tables.t_msgout.count= htole32(1);
1979 1.1 bouyer xfer->siop_tables.t_msgout.addr = htole32(dsa);
1980 1.1 bouyer xfer->siop_tables.t_msgin.count= htole32(1);
1981 1.11 bouyer xfer->siop_tables.t_msgin.addr = htole32(dsa +
1982 1.5 bouyer offsetof(struct siop_common_xfer, msg_in));
1983 1.1 bouyer xfer->siop_tables.t_extmsgin.count= htole32(2);
1984 1.5 bouyer xfer->siop_tables.t_extmsgin.addr = htole32(dsa +
1985 1.5 bouyer offsetof(struct siop_common_xfer, msg_in) + 1);
1986 1.5 bouyer xfer->siop_tables.t_extmsgdata.addr = htole32(dsa +
1987 1.5 bouyer offsetof(struct siop_common_xfer, msg_in) + 3);
1988 1.1 bouyer xfer->siop_tables.t_status.count= htole32(1);
1989 1.5 bouyer xfer->siop_tables.t_status.addr = htole32(dsa +
1990 1.5 bouyer offsetof(struct siop_common_xfer, status));
1991 1.1 bouyer
1992 1.1 bouyer s = splbio();
1993 1.1 bouyer TAILQ_INSERT_TAIL(&sc->free_list, &newcbd->cmds[i], next);
1994 1.1 bouyer splx(s);
1995 1.1 bouyer #ifdef SIOP_DEBUG
1996 1.39 christos printf("tables[%d]: in=0x%x out=0x%x status=0x%x\n", i,
1997 1.1 bouyer le32toh(newcbd->cmds[i].cmd_tables->t_msgin.addr),
1998 1.1 bouyer le32toh(newcbd->cmds[i].cmd_tables->t_msgout.addr),
1999 1.37 garbled le32toh(newcbd->cmds[i].cmd_tables->t_status.addr));
2000 1.1 bouyer #endif
2001 1.1 bouyer }
2002 1.1 bouyer s = splbio();
2003 1.1 bouyer TAILQ_INSERT_TAIL(&sc->cmds, newcbd, next);
2004 1.1 bouyer sc->sc_c.sc_adapt.adapt_openings += SIOP_NCMDPB;
2005 1.1 bouyer splx(s);
2006 1.1 bouyer return;
2007 1.1 bouyer bad0:
2008 1.1 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat, newcbd->xferdma);
2009 1.1 bouyer bus_dmamap_destroy(sc->sc_c.sc_dmat, newcbd->xferdma);
2010 1.1 bouyer bad1:
2011 1.1 bouyer bus_dmamem_free(sc->sc_c.sc_dmat, &seg, rseg);
2012 1.1 bouyer bad2:
2013 1.1 bouyer free(newcbd->cmds, M_DEVBUF);
2014 1.1 bouyer bad3:
2015 1.1 bouyer free(newcbd, M_DEVBUF);
2016 1.1 bouyer return;
2017 1.1 bouyer }
2018 1.1 bouyer
2019 1.1 bouyer void
2020 1.2 bouyer esiop_moretagtbl(sc)
2021 1.2 bouyer struct esiop_softc *sc;
2022 1.2 bouyer {
2023 1.2 bouyer int error, i, j, s;
2024 1.2 bouyer bus_dma_segment_t seg;
2025 1.2 bouyer int rseg;
2026 1.2 bouyer struct esiop_dsatblblk *newtblblk;
2027 1.2 bouyer struct esiop_dsatbl *newtbls;
2028 1.2 bouyer u_int32_t *tbls;
2029 1.2 bouyer
2030 1.2 bouyer /* allocate a new list head */
2031 1.2 bouyer newtblblk = malloc(sizeof(struct esiop_dsatblblk),
2032 1.2 bouyer M_DEVBUF, M_NOWAIT|M_ZERO);
2033 1.2 bouyer if (newtblblk == NULL) {
2034 1.2 bouyer printf("%s: can't allocate memory for tag DSA table block\n",
2035 1.2 bouyer sc->sc_c.sc_dev.dv_xname);
2036 1.2 bouyer return;
2037 1.2 bouyer }
2038 1.2 bouyer
2039 1.2 bouyer /* allocate tbl list */
2040 1.2 bouyer newtbls = malloc(sizeof(struct esiop_dsatbl) * ESIOP_NTPB,
2041 1.2 bouyer M_DEVBUF, M_NOWAIT|M_ZERO);
2042 1.2 bouyer if (newtbls == NULL) {
2043 1.2 bouyer printf("%s: can't allocate memory for command descriptors\n",
2044 1.2 bouyer sc->sc_c.sc_dev.dv_xname);
2045 1.2 bouyer goto bad3;
2046 1.2 bouyer }
2047 1.2 bouyer error = bus_dmamem_alloc(sc->sc_c.sc_dmat, PAGE_SIZE, PAGE_SIZE, 0,
2048 1.2 bouyer &seg, 1, &rseg, BUS_DMA_NOWAIT);
2049 1.2 bouyer if (error) {
2050 1.2 bouyer printf("%s: unable to allocate tbl DMA memory, error = %d\n",
2051 1.2 bouyer sc->sc_c.sc_dev.dv_xname, error);
2052 1.2 bouyer goto bad2;
2053 1.2 bouyer }
2054 1.2 bouyer error = bus_dmamem_map(sc->sc_c.sc_dmat, &seg, rseg, PAGE_SIZE,
2055 1.20 drochner (void *)&tbls, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
2056 1.2 bouyer if (error) {
2057 1.2 bouyer printf("%s: unable to map tbls DMA memory, error = %d\n",
2058 1.2 bouyer sc->sc_c.sc_dev.dv_xname, error);
2059 1.2 bouyer goto bad2;
2060 1.2 bouyer }
2061 1.2 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat, PAGE_SIZE, 1, PAGE_SIZE, 0,
2062 1.2 bouyer BUS_DMA_NOWAIT, &newtblblk->blkmap);
2063 1.2 bouyer if (error) {
2064 1.2 bouyer printf("%s: unable to create tbl DMA map, error = %d\n",
2065 1.2 bouyer sc->sc_c.sc_dev.dv_xname, error);
2066 1.2 bouyer goto bad1;
2067 1.2 bouyer }
2068 1.2 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat, newtblblk->blkmap,
2069 1.2 bouyer tbls, PAGE_SIZE, NULL, BUS_DMA_NOWAIT);
2070 1.2 bouyer if (error) {
2071 1.2 bouyer printf("%s: unable to load tbl DMA map, error = %d\n",
2072 1.2 bouyer sc->sc_c.sc_dev.dv_xname, error);
2073 1.2 bouyer goto bad0;
2074 1.2 bouyer }
2075 1.2 bouyer #ifdef DEBUG
2076 1.2 bouyer printf("%s: alloc new tag DSA table at PHY addr 0x%lx\n",
2077 1.2 bouyer sc->sc_c.sc_dev.dv_xname,
2078 1.2 bouyer (unsigned long)newtblblk->blkmap->dm_segs[0].ds_addr);
2079 1.2 bouyer #endif
2080 1.2 bouyer for (i = 0; i < ESIOP_NTPB; i++) {
2081 1.2 bouyer newtbls[i].tblblk = newtblblk;
2082 1.2 bouyer newtbls[i].tbl = &tbls[i * ESIOP_NTAG];
2083 1.2 bouyer newtbls[i].tbl_offset = i * ESIOP_NTAG * sizeof(u_int32_t);
2084 1.2 bouyer newtbls[i].tbl_dsa = newtblblk->blkmap->dm_segs[0].ds_addr +
2085 1.2 bouyer newtbls[i].tbl_offset;
2086 1.2 bouyer for (j = 0; j < ESIOP_NTAG; j++)
2087 1.2 bouyer newtbls[i].tbl[j] = j;
2088 1.2 bouyer s = splbio();
2089 1.2 bouyer TAILQ_INSERT_TAIL(&sc->free_tagtbl, &newtbls[i], next);
2090 1.2 bouyer splx(s);
2091 1.2 bouyer }
2092 1.2 bouyer s = splbio();
2093 1.2 bouyer TAILQ_INSERT_TAIL(&sc->tag_tblblk, newtblblk, next);
2094 1.2 bouyer splx(s);
2095 1.2 bouyer return;
2096 1.2 bouyer bad0:
2097 1.2 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat, newtblblk->blkmap);
2098 1.2 bouyer bus_dmamap_destroy(sc->sc_c.sc_dmat, newtblblk->blkmap);
2099 1.2 bouyer bad1:
2100 1.2 bouyer bus_dmamem_free(sc->sc_c.sc_dmat, &seg, rseg);
2101 1.2 bouyer bad2:
2102 1.2 bouyer free(newtbls, M_DEVBUF);
2103 1.2 bouyer bad3:
2104 1.2 bouyer free(newtblblk, M_DEVBUF);
2105 1.2 bouyer return;
2106 1.1 bouyer }
2107 1.1 bouyer
2108 1.1 bouyer void
2109 1.9 bouyer esiop_update_scntl3(sc, _siop_target)
2110 1.9 bouyer struct esiop_softc *sc;
2111 1.9 bouyer struct siop_common_target *_siop_target;
2112 1.9 bouyer {
2113 1.9 bouyer struct esiop_target *esiop_target = (struct esiop_target *)_siop_target;
2114 1.9 bouyer esiop_script_write(sc, esiop_target->lun_table_offset,
2115 1.9 bouyer esiop_target->target_c.id);
2116 1.13 bouyer esiop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2117 1.9 bouyer }
2118 1.9 bouyer
2119 1.9 bouyer void
2120 1.1 bouyer esiop_add_dev(sc, target, lun)
2121 1.1 bouyer struct esiop_softc *sc;
2122 1.1 bouyer int target;
2123 1.1 bouyer int lun;
2124 1.1 bouyer {
2125 1.1 bouyer struct esiop_target *esiop_target =
2126 1.1 bouyer (struct esiop_target *)sc->sc_c.targets[target];
2127 1.1 bouyer struct esiop_lun *esiop_lun = esiop_target->esiop_lun[lun];
2128 1.2 bouyer
2129 1.33 bouyer if (esiop_lun->lun_tagtbl != NULL)
2130 1.33 bouyer return; /* already allocated */
2131 1.33 bouyer
2132 1.9 bouyer /* we need a tag DSA table */
2133 1.9 bouyer esiop_lun->lun_tagtbl= TAILQ_FIRST(&sc->free_tagtbl);
2134 1.9 bouyer if (esiop_lun->lun_tagtbl == NULL) {
2135 1.9 bouyer esiop_moretagtbl(sc);
2136 1.2 bouyer esiop_lun->lun_tagtbl= TAILQ_FIRST(&sc->free_tagtbl);
2137 1.2 bouyer if (esiop_lun->lun_tagtbl == NULL) {
2138 1.9 bouyer /* no resources, run untagged */
2139 1.9 bouyer esiop_target->target_c.flags &= ~TARF_TAG;
2140 1.9 bouyer return;
2141 1.1 bouyer }
2142 1.1 bouyer }
2143 1.9 bouyer TAILQ_REMOVE(&sc->free_tagtbl, esiop_lun->lun_tagtbl, next);
2144 1.9 bouyer /* Update LUN DSA table */
2145 1.9 bouyer esiop_script_write(sc, esiop_target->lun_table_offset +
2146 1.9 bouyer lun * 2 + A_target_luntbl_tag / sizeof(u_int32_t),
2147 1.9 bouyer esiop_lun->lun_tagtbl->tbl_dsa);
2148 1.9 bouyer esiop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2149 1.1 bouyer }
2150 1.1 bouyer
2151 1.1 bouyer void
2152 1.1 bouyer esiop_del_dev(sc, target, lun)
2153 1.1 bouyer struct esiop_softc *sc;
2154 1.1 bouyer int target;
2155 1.1 bouyer int lun;
2156 1.1 bouyer {
2157 1.1 bouyer struct esiop_target *esiop_target;
2158 1.1 bouyer #ifdef SIOP_DEBUG
2159 1.1 bouyer printf("%s:%d:%d: free lun sw entry\n",
2160 1.1 bouyer sc->sc_c.sc_dev.dv_xname, target, lun);
2161 1.1 bouyer #endif
2162 1.1 bouyer if (sc->sc_c.targets[target] == NULL)
2163 1.1 bouyer return;
2164 1.1 bouyer esiop_target = (struct esiop_target *)sc->sc_c.targets[target];
2165 1.1 bouyer free(esiop_target->esiop_lun[lun], M_DEVBUF);
2166 1.1 bouyer esiop_target->esiop_lun[lun] = NULL;
2167 1.1 bouyer }
2168 1.1 bouyer
2169 1.1 bouyer void
2170 1.1 bouyer esiop_target_register(sc, target)
2171 1.1 bouyer struct esiop_softc *sc;
2172 1.1 bouyer u_int32_t target;
2173 1.1 bouyer {
2174 1.1 bouyer struct esiop_target *esiop_target =
2175 1.1 bouyer (struct esiop_target *)sc->sc_c.targets[target];
2176 1.9 bouyer struct esiop_lun *esiop_lun;
2177 1.9 bouyer int lun;
2178 1.1 bouyer
2179 1.1 bouyer /* get a DSA table for this target */
2180 1.1 bouyer esiop_target->lun_table_offset = sc->sc_free_offset;
2181 1.9 bouyer sc->sc_free_offset += sc->sc_c.sc_chan.chan_nluns * 2 + 2;
2182 1.1 bouyer #ifdef SIOP_DEBUG
2183 1.1 bouyer printf("%s: lun table for target %d offset %d free offset %d\n",
2184 1.1 bouyer sc->sc_c.sc_dev.dv_xname, target, esiop_target->lun_table_offset,
2185 1.1 bouyer sc->sc_free_offset);
2186 1.1 bouyer #endif
2187 1.1 bouyer /* first 32 bytes are ID (for select) */
2188 1.1 bouyer esiop_script_write(sc, esiop_target->lun_table_offset,
2189 1.1 bouyer esiop_target->target_c.id);
2190 1.1 bouyer /* Record this table in the target DSA table */
2191 1.1 bouyer esiop_script_write(sc,
2192 1.1 bouyer sc->sc_target_table_offset + target,
2193 1.1 bouyer (esiop_target->lun_table_offset * sizeof(u_int32_t)) +
2194 1.1 bouyer sc->sc_c.sc_scriptaddr);
2195 1.9 bouyer /* if we have a tag table, register it */
2196 1.9 bouyer for (lun = 0; lun < sc->sc_c.sc_chan.chan_nluns; lun++) {
2197 1.9 bouyer esiop_lun = esiop_target->esiop_lun[lun];
2198 1.9 bouyer if (esiop_lun == NULL)
2199 1.9 bouyer continue;
2200 1.9 bouyer if (esiop_lun->lun_tagtbl)
2201 1.9 bouyer esiop_script_write(sc, esiop_target->lun_table_offset +
2202 1.9 bouyer lun * 2 + A_target_luntbl_tag / sizeof(u_int32_t),
2203 1.9 bouyer esiop_lun->lun_tagtbl->tbl_dsa);
2204 1.9 bouyer }
2205 1.1 bouyer esiop_script_sync(sc,
2206 1.1 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
2207 1.1 bouyer }
2208 1.1 bouyer
2209 1.1 bouyer #ifdef SIOP_STATS
2210 1.1 bouyer void
2211 1.1 bouyer esiop_printstats()
2212 1.1 bouyer {
2213 1.1 bouyer printf("esiop_stat_intr %d\n", esiop_stat_intr);
2214 1.1 bouyer printf("esiop_stat_intr_shortxfer %d\n", esiop_stat_intr_shortxfer);
2215 1.1 bouyer printf("esiop_stat_intr_xferdisc %d\n", esiop_stat_intr_xferdisc);
2216 1.1 bouyer printf("esiop_stat_intr_sdp %d\n", esiop_stat_intr_sdp);
2217 1.1 bouyer printf("esiop_stat_intr_done %d\n", esiop_stat_intr_done);
2218 1.1 bouyer printf("esiop_stat_intr_lunresel %d\n", esiop_stat_intr_lunresel);
2219 1.1 bouyer printf("esiop_stat_intr_qfull %d\n", esiop_stat_intr_qfull);
2220 1.1 bouyer }
2221 1.1 bouyer #endif
2222