siop.c revision 1.57 1 1.57 bouyer /* $NetBSD: siop.c,v 1.57 2002/04/23 12:55:26 bouyer Exp $ */
2 1.1 bouyer
3 1.1 bouyer /*
4 1.1 bouyer * Copyright (c) 2000 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.5 bouyer * This product includes software developed by Manuel Bouyer
17 1.5 bouyer * 4. The name of the author may not be used to endorse or promote products
18 1.5 bouyer * derived from this software without specific prior written permission.
19 1.1 bouyer *
20 1.14 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.14 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.14 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.14 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.14 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.14 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.14 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.14 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.14 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.14 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.48 lukem
35 1.48 lukem #include <sys/cdefs.h>
36 1.57 bouyer __KERNEL_RCSID(0, "$NetBSD: siop.c,v 1.57 2002/04/23 12:55:26 bouyer 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.37 thorpej #include <uvm/uvm_extern.h>
46 1.37 thorpej
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/siop.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.53 bouyer #include <dev/ic/siopvar_common.h>
60 1.1 bouyer #include <dev/ic/siopvar.h>
61 1.1 bouyer
62 1.52 bouyer #include "opt_siop.h"
63 1.52 bouyer
64 1.35 bouyer #ifndef DEBUG
65 1.30 bouyer #undef DEBUG
66 1.35 bouyer #endif
67 1.35 bouyer #undef SIOP_DEBUG
68 1.35 bouyer #undef SIOP_DEBUG_DR
69 1.35 bouyer #undef SIOP_DEBUG_INTR
70 1.35 bouyer #undef SIOP_DEBUG_SCHED
71 1.2 bouyer #undef DUMP_SCRIPT
72 1.2 bouyer
73 1.2 bouyer #define SIOP_STATS
74 1.2 bouyer
75 1.1 bouyer #ifndef SIOP_DEFAULT_TARGET
76 1.1 bouyer #define SIOP_DEFAULT_TARGET 7
77 1.1 bouyer #endif
78 1.1 bouyer
79 1.16 bouyer /* number of cmd descriptors per block */
80 1.37 thorpej #define SIOP_NCMDPB (PAGE_SIZE / sizeof(struct siop_xfer))
81 1.1 bouyer
82 1.35 bouyer /* Number of scheduler slot (needs to match script) */
83 1.35 bouyer #define SIOP_NSLOTS 40
84 1.35 bouyer
85 1.1 bouyer void siop_reset __P((struct siop_softc *));
86 1.2 bouyer void siop_handle_reset __P((struct siop_softc *));
87 1.31 bouyer int siop_handle_qtag_reject __P((struct siop_cmd *));
88 1.2 bouyer void siop_scsicmd_end __P((struct siop_cmd *));
89 1.42 bouyer void siop_unqueue __P((struct siop_softc *, int, int));
90 1.42 bouyer static void siop_start __P((struct siop_softc *, struct siop_cmd *));
91 1.1 bouyer void siop_timeout __P((void *));
92 1.1 bouyer int siop_scsicmd __P((struct scsipi_xfer *));
93 1.42 bouyer void siop_scsipi_request __P((struct scsipi_channel *,
94 1.42 bouyer scsipi_adapter_req_t, void *));
95 1.2 bouyer void siop_dump_script __P((struct siop_softc *));
96 1.47 bouyer void siop_morecbd __P((struct siop_softc *));
97 1.31 bouyer struct siop_lunsw *siop_get_lunsw __P((struct siop_softc *));
98 1.31 bouyer void siop_add_reselsw __P((struct siop_softc *, int));
99 1.53 bouyer void siop_update_scntl3 __P((struct siop_softc *,
100 1.53 bouyer struct siop_common_target *));
101 1.1 bouyer
102 1.2 bouyer #ifdef SIOP_STATS
103 1.2 bouyer static int siop_stat_intr = 0;
104 1.2 bouyer static int siop_stat_intr_shortxfer = 0;
105 1.2 bouyer static int siop_stat_intr_sdp = 0;
106 1.2 bouyer static int siop_stat_intr_done = 0;
107 1.2 bouyer static int siop_stat_intr_xferdisc = 0;
108 1.35 bouyer static int siop_stat_intr_lunresel = 0;
109 1.36 bouyer static int siop_stat_intr_qfull = 0;
110 1.2 bouyer void siop_printstats __P((void));
111 1.2 bouyer #define INCSTAT(x) x++
112 1.2 bouyer #else
113 1.2 bouyer #define INCSTAT(x)
114 1.2 bouyer #endif
115 1.2 bouyer
116 1.32 bouyer static __inline__ void siop_script_sync __P((struct siop_softc *, int));
117 1.32 bouyer static __inline__ void
118 1.32 bouyer siop_script_sync(sc, ops)
119 1.32 bouyer struct siop_softc *sc;
120 1.32 bouyer int ops;
121 1.32 bouyer {
122 1.53 bouyer if ((sc->sc_c.features & SF_CHIP_RAM) == 0)
123 1.53 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, sc->sc_c.sc_scriptdma, 0,
124 1.37 thorpej PAGE_SIZE, ops);
125 1.32 bouyer }
126 1.32 bouyer
127 1.35 bouyer static __inline__ u_int32_t siop_script_read __P((struct siop_softc *, u_int));
128 1.31 bouyer static __inline__ u_int32_t
129 1.31 bouyer siop_script_read(sc, offset)
130 1.31 bouyer struct siop_softc *sc;
131 1.35 bouyer u_int offset;
132 1.31 bouyer {
133 1.53 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
134 1.53 bouyer return bus_space_read_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
135 1.53 bouyer offset * 4);
136 1.31 bouyer } else {
137 1.53 bouyer return le32toh(sc->sc_c.sc_script[offset]);
138 1.31 bouyer }
139 1.31 bouyer }
140 1.31 bouyer
141 1.35 bouyer static __inline__ void siop_script_write __P((struct siop_softc *, u_int,
142 1.31 bouyer u_int32_t));
143 1.28 bouyer static __inline__ void
144 1.31 bouyer siop_script_write(sc, offset, val)
145 1.28 bouyer struct siop_softc *sc;
146 1.35 bouyer u_int offset;
147 1.31 bouyer u_int32_t val;
148 1.28 bouyer {
149 1.53 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
150 1.53 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
151 1.53 bouyer offset * 4, val);
152 1.31 bouyer } else {
153 1.53 bouyer sc->sc_c.sc_script[offset] = htole32(val);
154 1.31 bouyer }
155 1.2 bouyer }
156 1.2 bouyer
157 1.1 bouyer void
158 1.1 bouyer siop_attach(sc)
159 1.1 bouyer struct siop_softc *sc;
160 1.1 bouyer {
161 1.1 bouyer int error, i;
162 1.1 bouyer bus_dma_segment_t seg;
163 1.1 bouyer int rseg;
164 1.1 bouyer
165 1.1 bouyer /*
166 1.35 bouyer * Allocate DMA-safe memory for the script and map it.
167 1.1 bouyer */
168 1.53 bouyer if ((sc->sc_c.features & SF_CHIP_RAM) == 0) {
169 1.53 bouyer error = bus_dmamem_alloc(sc->sc_c.sc_dmat, PAGE_SIZE,
170 1.37 thorpej PAGE_SIZE, 0, &seg, 1, &rseg, BUS_DMA_NOWAIT);
171 1.17 bouyer if (error) {
172 1.17 bouyer printf("%s: unable to allocate script DMA memory, "
173 1.53 bouyer "error = %d\n", sc->sc_c.sc_dev.dv_xname, error);
174 1.17 bouyer return;
175 1.17 bouyer }
176 1.53 bouyer error = bus_dmamem_map(sc->sc_c.sc_dmat, &seg, rseg, PAGE_SIZE,
177 1.53 bouyer (caddr_t *)&sc->sc_c.sc_script,
178 1.53 bouyer BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
179 1.17 bouyer if (error) {
180 1.17 bouyer printf("%s: unable to map script DMA memory, "
181 1.53 bouyer "error = %d\n", sc->sc_c.sc_dev.dv_xname, error);
182 1.17 bouyer return;
183 1.17 bouyer }
184 1.53 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat, PAGE_SIZE, 1,
185 1.53 bouyer PAGE_SIZE, 0, BUS_DMA_NOWAIT, &sc->sc_c.sc_scriptdma);
186 1.17 bouyer if (error) {
187 1.17 bouyer printf("%s: unable to create script DMA map, "
188 1.53 bouyer "error = %d\n", sc->sc_c.sc_dev.dv_xname, error);
189 1.17 bouyer return;
190 1.17 bouyer }
191 1.53 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat, sc->sc_c.sc_scriptdma,
192 1.53 bouyer sc->sc_c.sc_script, PAGE_SIZE, NULL, BUS_DMA_NOWAIT);
193 1.17 bouyer if (error) {
194 1.17 bouyer printf("%s: unable to load script DMA map, "
195 1.53 bouyer "error = %d\n", sc->sc_c.sc_dev.dv_xname, error);
196 1.17 bouyer return;
197 1.17 bouyer }
198 1.53 bouyer sc->sc_c.sc_scriptaddr =
199 1.53 bouyer sc->sc_c.sc_scriptdma->dm_segs[0].ds_addr;
200 1.53 bouyer sc->sc_c.ram_size = PAGE_SIZE;
201 1.1 bouyer }
202 1.1 bouyer TAILQ_INIT(&sc->free_list);
203 1.16 bouyer TAILQ_INIT(&sc->cmds);
204 1.31 bouyer TAILQ_INIT(&sc->lunsw_list);
205 1.29 bouyer sc->sc_currschedslot = 0;
206 1.35 bouyer #ifdef SIOP_DEBUG
207 1.35 bouyer printf("%s: script size = %d, PHY addr=0x%x, VIRT=%p\n",
208 1.53 bouyer sc->sc_c.sc_dev.dv_xname, (int)sizeof(siop_script),
209 1.53 bouyer (u_int32_t)sc->sc_c.sc_scriptaddr, sc->sc_c.sc_script);
210 1.1 bouyer #endif
211 1.1 bouyer
212 1.53 bouyer sc->sc_c.sc_adapt.adapt_dev = &sc->sc_c.sc_dev;
213 1.53 bouyer sc->sc_c.sc_adapt.adapt_nchannels = 1;
214 1.53 bouyer sc->sc_c.sc_adapt.adapt_openings = 0;
215 1.53 bouyer sc->sc_c.sc_adapt.adapt_max_periph = SIOP_NTAG - 1;
216 1.53 bouyer sc->sc_c.sc_adapt.adapt_ioctl = siop_ioctl;
217 1.53 bouyer sc->sc_c.sc_adapt.adapt_minphys = minphys;
218 1.53 bouyer sc->sc_c.sc_adapt.adapt_request = siop_scsipi_request;
219 1.53 bouyer
220 1.53 bouyer memset(&sc->sc_c.sc_chan, 0, sizeof(sc->sc_c.sc_chan));
221 1.53 bouyer sc->sc_c.sc_chan.chan_adapter = &sc->sc_c.sc_adapt;
222 1.53 bouyer sc->sc_c.sc_chan.chan_bustype = &scsi_bustype;
223 1.53 bouyer sc->sc_c.sc_chan.chan_channel = 0;
224 1.53 bouyer sc->sc_c.sc_chan.chan_flags = SCSIPI_CHAN_CANGROW;
225 1.53 bouyer sc->sc_c.sc_chan.chan_ntargets =
226 1.53 bouyer (sc->sc_c.features & SF_BUS_WIDE) ? 16 : 8;
227 1.53 bouyer sc->sc_c.sc_chan.chan_nluns = 8;
228 1.53 bouyer sc->sc_c.sc_chan.chan_id =
229 1.53 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_SCID);
230 1.53 bouyer if (sc->sc_c.sc_chan.chan_id == 0 ||
231 1.53 bouyer sc->sc_c.sc_chan.chan_id >= sc->sc_c.sc_chan.chan_ntargets)
232 1.53 bouyer sc->sc_c.sc_chan.chan_id = SIOP_DEFAULT_TARGET;
233 1.1 bouyer
234 1.7 bouyer for (i = 0; i < 16; i++)
235 1.53 bouyer sc->sc_c.targets[i] = NULL;
236 1.7 bouyer
237 1.7 bouyer /* find min/max sync period for this chip */
238 1.53 bouyer sc->sc_c.maxsync = 0;
239 1.53 bouyer sc->sc_c.minsync = 255;
240 1.7 bouyer for (i = 0; i < sizeof(scf_period) / sizeof(scf_period[0]); i++) {
241 1.53 bouyer if (sc->sc_c.clock_period != scf_period[i].clock)
242 1.7 bouyer continue;
243 1.53 bouyer if (sc->sc_c.maxsync < scf_period[i].period)
244 1.53 bouyer sc->sc_c.maxsync = scf_period[i].period;
245 1.53 bouyer if (sc->sc_c.minsync > scf_period[i].period)
246 1.53 bouyer sc->sc_c.minsync = scf_period[i].period;
247 1.7 bouyer }
248 1.53 bouyer if (sc->sc_c.maxsync == 255 || sc->sc_c.minsync == 0)
249 1.7 bouyer panic("siop: can't find my sync parameters\n");
250 1.26 bouyer /* Do a bus reset, so that devices fall back to narrow/async */
251 1.53 bouyer siop_resetbus(&sc->sc_c);
252 1.26 bouyer /*
253 1.26 bouyer * siop_reset() will reset the chip, thus clearing pending interrupts
254 1.26 bouyer */
255 1.1 bouyer siop_reset(sc);
256 1.2 bouyer #ifdef DUMP_SCRIPT
257 1.2 bouyer siop_dump_script(sc);
258 1.2 bouyer #endif
259 1.1 bouyer
260 1.53 bouyer config_found((struct device*)sc, &sc->sc_c.sc_chan, scsiprint);
261 1.1 bouyer }
262 1.1 bouyer
263 1.1 bouyer void
264 1.1 bouyer siop_reset(sc)
265 1.1 bouyer struct siop_softc *sc;
266 1.1 bouyer {
267 1.4 bouyer int i, j;
268 1.31 bouyer struct siop_lunsw *lunsw;
269 1.4 bouyer
270 1.53 bouyer siop_common_reset(&sc->sc_c);
271 1.1 bouyer
272 1.1 bouyer /* copy and patch the script */
273 1.53 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
274 1.53 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh, 0,
275 1.17 bouyer siop_script, sizeof(siop_script) / sizeof(siop_script[0]));
276 1.17 bouyer for (j = 0; j <
277 1.31 bouyer (sizeof(E_abs_msgin_Used) / sizeof(E_abs_msgin_Used[0]));
278 1.28 bouyer j++) {
279 1.53 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
280 1.31 bouyer E_abs_msgin_Used[j] * 4,
281 1.53 bouyer sc->sc_c.sc_scriptaddr + Ent_msgin_space);
282 1.28 bouyer }
283 1.56 bouyer if (sc->sc_c.features & SF_CHIP_LED0) {
284 1.56 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt,
285 1.56 bouyer sc->sc_c.sc_ramh,
286 1.56 bouyer Ent_led_on1, siop_led_on,
287 1.56 bouyer sizeof(siop_led_on) / sizeof(siop_led_on[0]));
288 1.56 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt,
289 1.56 bouyer sc->sc_c.sc_ramh,
290 1.56 bouyer Ent_led_on2, siop_led_on,
291 1.56 bouyer sizeof(siop_led_on) / sizeof(siop_led_on[0]));
292 1.56 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt,
293 1.56 bouyer sc->sc_c.sc_ramh,
294 1.56 bouyer Ent_led_off, siop_led_off,
295 1.56 bouyer sizeof(siop_led_off) / sizeof(siop_led_off[0]));
296 1.56 bouyer }
297 1.17 bouyer } else {
298 1.17 bouyer for (j = 0;
299 1.17 bouyer j < (sizeof(siop_script) / sizeof(siop_script[0])); j++) {
300 1.53 bouyer sc->sc_c.sc_script[j] = htole32(siop_script[j]);
301 1.17 bouyer }
302 1.17 bouyer for (j = 0; j <
303 1.31 bouyer (sizeof(E_abs_msgin_Used) / sizeof(E_abs_msgin_Used[0]));
304 1.28 bouyer j++) {
305 1.53 bouyer sc->sc_c.sc_script[E_abs_msgin_Used[j]] =
306 1.53 bouyer htole32(sc->sc_c.sc_scriptaddr + Ent_msgin_space);
307 1.17 bouyer }
308 1.56 bouyer if (sc->sc_c.features & SF_CHIP_LED0) {
309 1.56 bouyer for (j = 0; j < (sizeof(siop_led_on) /
310 1.56 bouyer sizeof(siop_led_on[0])); j++)
311 1.56 bouyer sc->sc_c.sc_script[
312 1.56 bouyer Ent_led_on1 / sizeof(siop_led_on[0]) + j
313 1.56 bouyer ] = htole32(siop_led_on[j]);
314 1.56 bouyer for (j = 0; j < (sizeof(siop_led_on) /
315 1.56 bouyer sizeof(siop_led_on[0])); j++)
316 1.56 bouyer sc->sc_c.sc_script[
317 1.56 bouyer Ent_led_on2 / sizeof(siop_led_on[0]) + j
318 1.56 bouyer ] = htole32(siop_led_on[j]);
319 1.56 bouyer for (j = 0; j < (sizeof(siop_led_off) /
320 1.56 bouyer sizeof(siop_led_off[0])); j++)
321 1.56 bouyer sc->sc_c.sc_script[
322 1.56 bouyer Ent_led_off / sizeof(siop_led_off[0]) + j
323 1.56 bouyer ] = htole32(siop_led_off[j]);
324 1.56 bouyer }
325 1.4 bouyer }
326 1.35 bouyer sc->script_free_lo = sizeof(siop_script) / sizeof(siop_script[0]);
327 1.53 bouyer sc->script_free_hi = sc->sc_c.ram_size / 4;
328 1.1 bouyer
329 1.31 bouyer /* free used and unused lun switches */
330 1.31 bouyer while((lunsw = TAILQ_FIRST(&sc->lunsw_list)) != NULL) {
331 1.35 bouyer #ifdef SIOP_DEBUG
332 1.31 bouyer printf("%s: free lunsw at offset %d\n",
333 1.53 bouyer sc->sc_c.sc_dev.dv_xname, lunsw->lunsw_off);
334 1.31 bouyer #endif
335 1.31 bouyer TAILQ_REMOVE(&sc->lunsw_list, lunsw, next);
336 1.31 bouyer free(lunsw, M_DEVBUF);
337 1.31 bouyer }
338 1.31 bouyer TAILQ_INIT(&sc->lunsw_list);
339 1.31 bouyer /* restore reselect switch */
340 1.53 bouyer for (i = 0; i < sc->sc_c.sc_chan.chan_ntargets; i++) {
341 1.53 bouyer struct siop_target *target;
342 1.53 bouyer if (sc->sc_c.targets[i] == NULL)
343 1.31 bouyer continue;
344 1.35 bouyer #ifdef SIOP_DEBUG
345 1.31 bouyer printf("%s: restore sw for target %d\n",
346 1.53 bouyer sc->sc_c.sc_dev.dv_xname, i);
347 1.31 bouyer #endif
348 1.53 bouyer target = (struct siop_target *)sc->sc_c.targets[i];
349 1.53 bouyer free(target->lunsw, M_DEVBUF);
350 1.53 bouyer target->lunsw = siop_get_lunsw(sc);
351 1.53 bouyer if (target->lunsw == NULL) {
352 1.31 bouyer printf("%s: can't alloc lunsw for target %d\n",
353 1.53 bouyer sc->sc_c.sc_dev.dv_xname, i);
354 1.31 bouyer break;
355 1.28 bouyer }
356 1.31 bouyer siop_add_reselsw(sc, i);
357 1.28 bouyer }
358 1.28 bouyer
359 1.2 bouyer /* start script */
360 1.53 bouyer if ((sc->sc_c.features & SF_CHIP_RAM) == 0) {
361 1.53 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, sc->sc_c.sc_scriptdma, 0,
362 1.53 bouyer PAGE_SIZE, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
363 1.22 bouyer }
364 1.53 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSP,
365 1.53 bouyer sc->sc_c.sc_scriptaddr + Ent_reselect);
366 1.1 bouyer }
367 1.1 bouyer
368 1.1 bouyer #if 0
369 1.1 bouyer #define CALL_SCRIPT(ent) do {\
370 1.1 bouyer printf ("start script DSA 0x%lx DSP 0x%lx\n", \
371 1.53 bouyer siop_cmd->cmd_c.dsa, \
372 1.53 bouyer sc->sc_c.sc_scriptaddr + ent); \
373 1.53 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSP, sc->sc_c.sc_scriptaddr + ent); \
374 1.1 bouyer } while (0)
375 1.1 bouyer #else
376 1.1 bouyer #define CALL_SCRIPT(ent) do {\
377 1.53 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSP, sc->sc_c.sc_scriptaddr + ent); \
378 1.1 bouyer } while (0)
379 1.1 bouyer #endif
380 1.1 bouyer
381 1.1 bouyer int
382 1.1 bouyer siop_intr(v)
383 1.1 bouyer void *v;
384 1.1 bouyer {
385 1.1 bouyer struct siop_softc *sc = v;
386 1.7 bouyer struct siop_target *siop_target;
387 1.1 bouyer struct siop_cmd *siop_cmd;
388 1.31 bouyer struct siop_lun *siop_lun;
389 1.1 bouyer struct scsipi_xfer *xs;
390 1.35 bouyer int istat, sist, sstat1, dstat;
391 1.1 bouyer u_int32_t irqcode;
392 1.1 bouyer int need_reset = 0;
393 1.35 bouyer int offset, target, lun, tag;
394 1.2 bouyer bus_addr_t dsa;
395 1.16 bouyer struct siop_cbd *cbdp;
396 1.35 bouyer int freetarget = 0;
397 1.39 bouyer int restart = 0;
398 1.1 bouyer
399 1.53 bouyer istat = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_ISTAT);
400 1.2 bouyer if ((istat & (ISTAT_INTF | ISTAT_DIP | ISTAT_SIP)) == 0)
401 1.2 bouyer return 0;
402 1.2 bouyer INCSTAT(siop_stat_intr);
403 1.1 bouyer if (istat & ISTAT_INTF) {
404 1.1 bouyer printf("INTRF\n");
405 1.53 bouyer bus_space_write_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
406 1.53 bouyer SIOP_ISTAT, ISTAT_INTF);
407 1.1 bouyer }
408 1.2 bouyer /* use DSA to find the current siop_cmd */
409 1.53 bouyer dsa = bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA);
410 1.16 bouyer for (cbdp = TAILQ_FIRST(&sc->cmds); cbdp != NULL;
411 1.16 bouyer cbdp = TAILQ_NEXT(cbdp, next)) {
412 1.16 bouyer if (dsa >= cbdp->xferdma->dm_segs[0].ds_addr &&
413 1.37 thorpej dsa < cbdp->xferdma->dm_segs[0].ds_addr + PAGE_SIZE) {
414 1.16 bouyer dsa -= cbdp->xferdma->dm_segs[0].ds_addr;
415 1.16 bouyer siop_cmd = &cbdp->cmds[dsa / sizeof(struct siop_xfer)];
416 1.16 bouyer siop_table_sync(siop_cmd,
417 1.16 bouyer BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
418 1.16 bouyer break;
419 1.16 bouyer }
420 1.16 bouyer }
421 1.16 bouyer if (cbdp == NULL) {
422 1.2 bouyer siop_cmd = NULL;
423 1.2 bouyer }
424 1.31 bouyer if (siop_cmd) {
425 1.53 bouyer xs = siop_cmd->cmd_c.xs;
426 1.53 bouyer siop_target = (struct siop_target *)siop_cmd->cmd_c.siop_target;
427 1.53 bouyer target = siop_cmd->cmd_c.xs->xs_periph->periph_target;
428 1.53 bouyer lun = siop_cmd->cmd_c.xs->xs_periph->periph_lun;
429 1.53 bouyer tag = siop_cmd->cmd_c.tag;
430 1.35 bouyer siop_lun = siop_target->siop_lun[lun];
431 1.31 bouyer #ifdef DIAGNOSTIC
432 1.53 bouyer if (siop_cmd->cmd_c.status != CMDST_ACTIVE) {
433 1.45 bouyer printf("siop_cmd (lun %d) for DSA 0x%x "
434 1.45 bouyer "not active (%d)\n", lun, (u_int)dsa,
435 1.53 bouyer siop_cmd->cmd_c.status);
436 1.31 bouyer xs = NULL;
437 1.31 bouyer siop_target = NULL;
438 1.35 bouyer target = -1;
439 1.31 bouyer lun = -1;
440 1.35 bouyer tag = -1;
441 1.31 bouyer siop_lun = NULL;
442 1.31 bouyer siop_cmd = NULL;
443 1.35 bouyer } else if (siop_lun->siop_tag[tag].active != siop_cmd) {
444 1.35 bouyer printf("siop_cmd (lun %d tag %d) not in siop_lun "
445 1.35 bouyer "active (%p != %p)\n", lun, tag, siop_cmd,
446 1.35 bouyer siop_lun->siop_tag[tag].active);
447 1.31 bouyer }
448 1.31 bouyer #endif
449 1.31 bouyer } else {
450 1.31 bouyer xs = NULL;
451 1.31 bouyer siop_target = NULL;
452 1.35 bouyer target = -1;
453 1.31 bouyer lun = -1;
454 1.35 bouyer tag = -1;
455 1.31 bouyer siop_lun = NULL;
456 1.31 bouyer }
457 1.1 bouyer if (istat & ISTAT_DIP) {
458 1.53 bouyer dstat = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
459 1.53 bouyer SIOP_DSTAT);
460 1.2 bouyer if (dstat & DSTAT_SSI) {
461 1.2 bouyer printf("single step dsp 0x%08x dsa 0x08%x\n",
462 1.53 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt,
463 1.53 bouyer sc->sc_c.sc_rh, SIOP_DSP) -
464 1.53 bouyer sc->sc_c.sc_scriptaddr),
465 1.53 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
466 1.53 bouyer SIOP_DSA));
467 1.2 bouyer if ((dstat & ~(DSTAT_DFE | DSTAT_SSI)) == 0 &&
468 1.2 bouyer (istat & ISTAT_SIP) == 0) {
469 1.53 bouyer bus_space_write_1(sc->sc_c.sc_rt,
470 1.53 bouyer sc->sc_c.sc_rh, SIOP_DCNTL,
471 1.53 bouyer bus_space_read_1(sc->sc_c.sc_rt,
472 1.53 bouyer sc->sc_c.sc_rh, SIOP_DCNTL) | DCNTL_STD);
473 1.2 bouyer }
474 1.2 bouyer return 1;
475 1.2 bouyer }
476 1.2 bouyer if (dstat & ~(DSTAT_SIR | DSTAT_DFE | DSTAT_SSI)) {
477 1.1 bouyer printf("DMA IRQ:");
478 1.1 bouyer if (dstat & DSTAT_IID)
479 1.1 bouyer printf(" Illegal instruction");
480 1.1 bouyer if (dstat & DSTAT_ABRT)
481 1.1 bouyer printf(" abort");
482 1.1 bouyer if (dstat & DSTAT_BF)
483 1.1 bouyer printf(" bus fault");
484 1.1 bouyer if (dstat & DSTAT_MDPE)
485 1.1 bouyer printf(" parity");
486 1.1 bouyer if (dstat & DSTAT_DFE)
487 1.1 bouyer printf(" dma fifo empty");
488 1.1 bouyer printf(", DSP=0x%x DSA=0x%x: ",
489 1.53 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
490 1.53 bouyer SIOP_DSP) - sc->sc_c.sc_scriptaddr),
491 1.53 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA));
492 1.2 bouyer if (siop_cmd)
493 1.1 bouyer printf("last msg_in=0x%x status=0x%x\n",
494 1.53 bouyer siop_cmd->cmd_tables->msg_in[0],
495 1.53 bouyer le32toh(siop_cmd->cmd_tables->status));
496 1.20 bouyer else
497 1.20 bouyer printf("%s: current DSA invalid\n",
498 1.53 bouyer sc->sc_c.sc_dev.dv_xname);
499 1.1 bouyer need_reset = 1;
500 1.1 bouyer }
501 1.1 bouyer }
502 1.1 bouyer if (istat & ISTAT_SIP) {
503 1.1 bouyer if (istat & ISTAT_DIP)
504 1.8 bouyer delay(10);
505 1.35 bouyer /*
506 1.35 bouyer * Can't read sist0 & sist1 independantly, or we have to
507 1.35 bouyer * insert delay
508 1.35 bouyer */
509 1.53 bouyer sist = bus_space_read_2(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
510 1.53 bouyer SIOP_SIST0);
511 1.53 bouyer sstat1 = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
512 1.53 bouyer SIOP_SSTAT1);
513 1.35 bouyer #ifdef SIOP_DEBUG_INTR
514 1.35 bouyer printf("scsi interrupt, sist=0x%x sstat1=0x%x "
515 1.35 bouyer "DSA=0x%x DSP=0x%lx\n", sist,
516 1.53 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
517 1.53 bouyer SIOP_SSTAT1),
518 1.53 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA),
519 1.53 bouyer (u_long)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
520 1.53 bouyer SIOP_DSP) -
521 1.53 bouyer sc->sc_c.sc_scriptaddr));
522 1.1 bouyer #endif
523 1.35 bouyer if (sist & SIST0_RST) {
524 1.2 bouyer siop_handle_reset(sc);
525 1.2 bouyer /* no table to flush here */
526 1.1 bouyer return 1;
527 1.1 bouyer }
528 1.35 bouyer if (sist & SIST0_SGE) {
529 1.1 bouyer if (siop_cmd)
530 1.42 bouyer scsipi_printaddr(xs->xs_periph);
531 1.1 bouyer else
532 1.53 bouyer printf("%s:", sc->sc_c.sc_dev.dv_xname);
533 1.1 bouyer printf("scsi gross error\n");
534 1.1 bouyer goto reset;
535 1.1 bouyer }
536 1.35 bouyer if ((sist & SIST0_MA) && need_reset == 0) {
537 1.1 bouyer if (siop_cmd) {
538 1.8 bouyer int scratcha0;
539 1.53 bouyer dstat = bus_space_read_1(sc->sc_c.sc_rt,
540 1.53 bouyer sc->sc_c.sc_rh, SIOP_DSTAT);
541 1.3 bouyer /*
542 1.3 bouyer * first restore DSA, in case we were in a S/G
543 1.3 bouyer * operation.
544 1.3 bouyer */
545 1.53 bouyer bus_space_write_4(sc->sc_c.sc_rt,
546 1.53 bouyer sc->sc_c.sc_rh,
547 1.53 bouyer SIOP_DSA, siop_cmd->cmd_c.dsa);
548 1.53 bouyer scratcha0 = bus_space_read_1(sc->sc_c.sc_rt,
549 1.53 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHA);
550 1.1 bouyer switch (sstat1 & SSTAT1_PHASE_MASK) {
551 1.1 bouyer case SSTAT1_PHASE_STATUS:
552 1.1 bouyer /*
553 1.1 bouyer * previous phase may be aborted for any reason
554 1.1 bouyer * ( for example, the target has less data to
555 1.1 bouyer * transfer than requested). Just go to status
556 1.1 bouyer * and the command should terminate.
557 1.1 bouyer */
558 1.2 bouyer INCSTAT(siop_stat_intr_shortxfer);
559 1.8 bouyer if ((dstat & DSTAT_DFE) == 0)
560 1.53 bouyer siop_clearfifo(&sc->sc_c);
561 1.2 bouyer /* no table to flush here */
562 1.31 bouyer CALL_SCRIPT(Ent_status);
563 1.1 bouyer return 1;
564 1.1 bouyer case SSTAT1_PHASE_MSGIN:
565 1.1 bouyer /*
566 1.1 bouyer * target may be ready to disconnect
567 1.1 bouyer * Save data pointers just in case.
568 1.1 bouyer */
569 1.2 bouyer INCSTAT(siop_stat_intr_xferdisc);
570 1.8 bouyer if (scratcha0 & A_flag_data)
571 1.53 bouyer siop_sdp(&siop_cmd->cmd_c);
572 1.8 bouyer else if ((dstat & DSTAT_DFE) == 0)
573 1.53 bouyer siop_clearfifo(&sc->sc_c);
574 1.53 bouyer bus_space_write_1(sc->sc_c.sc_rt,
575 1.53 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHA,
576 1.8 bouyer scratcha0 & ~A_flag_data);
577 1.2 bouyer siop_table_sync(siop_cmd,
578 1.2 bouyer BUS_DMASYNC_PREREAD |
579 1.2 bouyer BUS_DMASYNC_PREWRITE);
580 1.1 bouyer CALL_SCRIPT(Ent_msgin);
581 1.1 bouyer return 1;
582 1.1 bouyer }
583 1.1 bouyer printf("%s: unexpected phase mismatch %d\n",
584 1.53 bouyer sc->sc_c.sc_dev.dv_xname,
585 1.1 bouyer sstat1 & SSTAT1_PHASE_MASK);
586 1.1 bouyer } else {
587 1.1 bouyer printf("%s: phase mismatch without command\n",
588 1.53 bouyer sc->sc_c.sc_dev.dv_xname);
589 1.1 bouyer }
590 1.1 bouyer need_reset = 1;
591 1.1 bouyer }
592 1.35 bouyer if (sist & SIST0_PAR) {
593 1.1 bouyer /* parity error, reset */
594 1.1 bouyer if (siop_cmd)
595 1.42 bouyer scsipi_printaddr(xs->xs_periph);
596 1.1 bouyer else
597 1.53 bouyer printf("%s:", sc->sc_c.sc_dev.dv_xname);
598 1.1 bouyer printf("parity error\n");
599 1.11 bouyer goto reset;
600 1.1 bouyer }
601 1.35 bouyer if ((sist & (SIST1_STO << 8)) && need_reset == 0) {
602 1.1 bouyer /* selection time out, assume there's no device here */
603 1.1 bouyer if (siop_cmd) {
604 1.53 bouyer siop_cmd->cmd_c.status = CMDST_DONE;
605 1.1 bouyer xs->error = XS_SELTIMEOUT;
606 1.31 bouyer freetarget = 1;
607 1.1 bouyer goto end;
608 1.1 bouyer } else {
609 1.1 bouyer printf("%s: selection timeout without "
610 1.53 bouyer "command\n", sc->sc_c.sc_dev.dv_xname);
611 1.1 bouyer need_reset = 1;
612 1.1 bouyer }
613 1.1 bouyer }
614 1.35 bouyer if (sist & SIST0_UDC) {
615 1.1 bouyer /*
616 1.1 bouyer * unexpected disconnect. Usually the target signals
617 1.1 bouyer * a fatal condition this way. Attempt to get sense.
618 1.1 bouyer */
619 1.36 bouyer if (siop_cmd) {
620 1.53 bouyer siop_cmd->cmd_tables->status =
621 1.36 bouyer htole32(SCSI_CHECK);
622 1.36 bouyer goto end;
623 1.36 bouyer }
624 1.1 bouyer printf("%s: unexpected disconnect without "
625 1.53 bouyer "command\n", sc->sc_c.sc_dev.dv_xname);
626 1.2 bouyer goto reset;
627 1.1 bouyer }
628 1.35 bouyer if (sist & (SIST1_SBMC << 8)) {
629 1.20 bouyer /* SCSI bus mode change */
630 1.53 bouyer if (siop_modechange(&sc->sc_c) == 0 || need_reset == 1)
631 1.20 bouyer goto reset;
632 1.20 bouyer if ((istat & ISTAT_DIP) && (dstat & DSTAT_SIR)) {
633 1.20 bouyer /*
634 1.20 bouyer * we have a script interrupt, it will
635 1.20 bouyer * restart the script.
636 1.20 bouyer */
637 1.20 bouyer goto scintr;
638 1.20 bouyer }
639 1.20 bouyer /*
640 1.20 bouyer * else we have to restart it ourselve, at the
641 1.20 bouyer * interrupted instruction.
642 1.20 bouyer */
643 1.53 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
644 1.53 bouyer SIOP_DSP,
645 1.53 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
646 1.20 bouyer SIOP_DSP) - 8);
647 1.20 bouyer return 1;
648 1.20 bouyer }
649 1.1 bouyer /* Else it's an unhandled exeption (for now). */
650 1.35 bouyer printf("%s: unhandled scsi interrupt, sist=0x%x sstat1=0x%x "
651 1.53 bouyer "DSA=0x%x DSP=0x%x\n", sc->sc_c.sc_dev.dv_xname, sist,
652 1.53 bouyer bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
653 1.53 bouyer SIOP_SSTAT1),
654 1.53 bouyer bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA),
655 1.53 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
656 1.53 bouyer SIOP_DSP) - sc->sc_c.sc_scriptaddr));
657 1.1 bouyer if (siop_cmd) {
658 1.53 bouyer siop_cmd->cmd_c.status = CMDST_DONE;
659 1.1 bouyer xs->error = XS_SELTIMEOUT;
660 1.1 bouyer goto end;
661 1.1 bouyer }
662 1.1 bouyer need_reset = 1;
663 1.1 bouyer }
664 1.1 bouyer if (need_reset) {
665 1.1 bouyer reset:
666 1.1 bouyer /* fatal error, reset the bus */
667 1.53 bouyer siop_resetbus(&sc->sc_c);
668 1.2 bouyer /* no table to flush here */
669 1.1 bouyer return 1;
670 1.1 bouyer }
671 1.1 bouyer
672 1.20 bouyer scintr:
673 1.1 bouyer if ((istat & ISTAT_DIP) && (dstat & DSTAT_SIR)) { /* script interrupt */
674 1.53 bouyer irqcode = bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
675 1.1 bouyer SIOP_DSPS);
676 1.35 bouyer #ifdef SIOP_DEBUG_INTR
677 1.2 bouyer printf("script interrupt 0x%x\n", irqcode);
678 1.2 bouyer #endif
679 1.2 bouyer /*
680 1.31 bouyer * no command, or an inactive command is only valid for a
681 1.31 bouyer * reselect interrupt
682 1.2 bouyer */
683 1.31 bouyer if ((irqcode & 0x80) == 0) {
684 1.31 bouyer if (siop_cmd == NULL) {
685 1.43 lukem printf(
686 1.43 lukem "%s: script interrupt (0x%x) with invalid DSA !!!\n",
687 1.53 bouyer sc->sc_c.sc_dev.dv_xname, irqcode);
688 1.31 bouyer goto reset;
689 1.31 bouyer }
690 1.53 bouyer if (siop_cmd->cmd_c.status != CMDST_ACTIVE) {
691 1.31 bouyer printf("%s: command with invalid status "
692 1.31 bouyer "(IRQ code 0x%x current status %d) !\n",
693 1.53 bouyer sc->sc_c.sc_dev.dv_xname,
694 1.53 bouyer irqcode, siop_cmd->cmd_c.status);
695 1.31 bouyer xs = NULL;
696 1.31 bouyer }
697 1.7 bouyer }
698 1.1 bouyer switch(irqcode) {
699 1.1 bouyer case A_int_err:
700 1.2 bouyer printf("error, DSP=0x%x\n",
701 1.53 bouyer (int)(bus_space_read_4(sc->sc_c.sc_rt,
702 1.53 bouyer sc->sc_c.sc_rh, SIOP_DSP) - sc->sc_c.sc_scriptaddr));
703 1.2 bouyer if (xs) {
704 1.2 bouyer xs->error = XS_SELTIMEOUT;
705 1.2 bouyer goto end;
706 1.2 bouyer } else {
707 1.2 bouyer goto reset;
708 1.2 bouyer }
709 1.31 bouyer case A_int_reseltarg:
710 1.31 bouyer printf("%s: reselect with invalid target\n",
711 1.53 bouyer sc->sc_c.sc_dev.dv_xname);
712 1.31 bouyer goto reset;
713 1.35 bouyer case A_int_resellun:
714 1.35 bouyer INCSTAT(siop_stat_intr_lunresel);
715 1.53 bouyer target = bus_space_read_1(sc->sc_c.sc_rt,
716 1.53 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHA) & 0xf;
717 1.53 bouyer lun = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
718 1.35 bouyer SIOP_SCRATCHA + 1);
719 1.53 bouyer tag = bus_space_read_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
720 1.35 bouyer SIOP_SCRATCHA + 2);
721 1.53 bouyer siop_target =
722 1.53 bouyer (struct siop_target *)sc->sc_c.targets[target];
723 1.35 bouyer if (siop_target == NULL) {
724 1.53 bouyer printf("%s: reselect with invalid target %d\n",
725 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target);
726 1.35 bouyer goto reset;
727 1.35 bouyer }
728 1.35 bouyer siop_lun = siop_target->siop_lun[lun];
729 1.35 bouyer if (siop_lun == NULL) {
730 1.35 bouyer printf("%s: target %d reselect with invalid "
731 1.53 bouyer "lun %d\n", sc->sc_c.sc_dev.dv_xname,
732 1.35 bouyer target, lun);
733 1.35 bouyer goto reset;
734 1.35 bouyer }
735 1.35 bouyer if (siop_lun->siop_tag[tag].active == NULL) {
736 1.35 bouyer printf("%s: target %d lun %d tag %d reselect "
737 1.53 bouyer "without command\n",
738 1.53 bouyer sc->sc_c.sc_dev.dv_xname,
739 1.35 bouyer target, lun, tag);
740 1.35 bouyer goto reset;
741 1.35 bouyer }
742 1.35 bouyer siop_cmd = siop_lun->siop_tag[tag].active;
743 1.53 bouyer bus_space_write_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
744 1.53 bouyer SIOP_DSP, siop_cmd->cmd_c.dsa +
745 1.53 bouyer sizeof(struct siop_common_xfer) +
746 1.35 bouyer Ent_ldsa_reload_dsa);
747 1.38 bouyer siop_table_sync(siop_cmd, BUS_DMASYNC_PREWRITE);
748 1.35 bouyer return 1;
749 1.31 bouyer case A_int_reseltag:
750 1.31 bouyer printf("%s: reselect with invalid tag\n",
751 1.53 bouyer sc->sc_c.sc_dev.dv_xname);
752 1.31 bouyer goto reset;
753 1.1 bouyer case A_int_msgin:
754 1.31 bouyer {
755 1.53 bouyer int msgin = bus_space_read_1(sc->sc_c.sc_rt,
756 1.53 bouyer sc->sc_c.sc_rh, SIOP_SFBR);
757 1.31 bouyer if (msgin == MSG_MESSAGE_REJECT) {
758 1.8 bouyer int msg, extmsg;
759 1.53 bouyer if (siop_cmd->cmd_tables->msg_out[0] & 0x80) {
760 1.8 bouyer /*
761 1.8 bouyer * message was part of a identify +
762 1.8 bouyer * something else. Identify shoudl't
763 1.8 bouyer * have been rejected.
764 1.8 bouyer */
765 1.53 bouyer msg =
766 1.53 bouyer siop_cmd->cmd_tables->msg_out[1];
767 1.8 bouyer extmsg =
768 1.53 bouyer siop_cmd->cmd_tables->msg_out[3];
769 1.8 bouyer } else {
770 1.53 bouyer msg = siop_cmd->cmd_tables->msg_out[0];
771 1.8 bouyer extmsg =
772 1.53 bouyer siop_cmd->cmd_tables->msg_out[2];
773 1.8 bouyer }
774 1.8 bouyer if (msg == MSG_MESSAGE_REJECT) {
775 1.2 bouyer /* MSG_REJECT for a MSG_REJECT !*/
776 1.9 bouyer if (xs)
777 1.42 bouyer scsipi_printaddr(xs->xs_periph);
778 1.9 bouyer else
779 1.9 bouyer printf("%s: ",
780 1.53 bouyer sc->sc_c.sc_dev.dv_xname);
781 1.9 bouyer printf("our reject message was "
782 1.9 bouyer "rejected\n");
783 1.2 bouyer goto reset;
784 1.2 bouyer }
785 1.8 bouyer if (msg == MSG_EXTENDED &&
786 1.8 bouyer extmsg == MSG_EXT_WDTR) {
787 1.9 bouyer /* WDTR rejected, initiate sync */
788 1.53 bouyer if ((siop_target->target_c.flags &
789 1.53 bouyer TARF_SYNC) == 0) {
790 1.53 bouyer siop_target->target_c.status =
791 1.53 bouyer TARST_OK;
792 1.53 bouyer siop_update_xfer_mode(&sc->sc_c,
793 1.42 bouyer target);
794 1.26 bouyer /* no table to flush here */
795 1.26 bouyer CALL_SCRIPT(Ent_msgin_ack);
796 1.26 bouyer return 1;
797 1.26 bouyer }
798 1.53 bouyer siop_target->target_c.status =
799 1.53 bouyer TARST_SYNC_NEG;
800 1.53 bouyer siop_sdtr_msg(&siop_cmd->cmd_c, 0,
801 1.53 bouyer sc->sc_c.minsync, sc->sc_c.maxoff);
802 1.9 bouyer siop_table_sync(siop_cmd,
803 1.9 bouyer BUS_DMASYNC_PREREAD |
804 1.9 bouyer BUS_DMASYNC_PREWRITE);
805 1.9 bouyer CALL_SCRIPT(Ent_send_msgout);
806 1.9 bouyer return 1;
807 1.8 bouyer } else if (msg == MSG_EXTENDED &&
808 1.8 bouyer extmsg == MSG_EXT_SDTR) {
809 1.7 bouyer /* sync rejected */
810 1.53 bouyer siop_target->target_c.offset = 0;
811 1.53 bouyer siop_target->target_c.period = 0;
812 1.53 bouyer siop_target->target_c.status = TARST_OK;
813 1.53 bouyer siop_update_xfer_mode(&sc->sc_c,
814 1.53 bouyer target);
815 1.9 bouyer /* no table to flush here */
816 1.9 bouyer CALL_SCRIPT(Ent_msgin_ack);
817 1.9 bouyer return 1;
818 1.35 bouyer } else if (msg == MSG_SIMPLE_Q_TAG ||
819 1.35 bouyer msg == MSG_HEAD_OF_Q_TAG ||
820 1.35 bouyer msg == MSG_ORDERED_Q_TAG) {
821 1.35 bouyer if (siop_handle_qtag_reject(
822 1.35 bouyer siop_cmd) == -1)
823 1.35 bouyer goto reset;
824 1.35 bouyer CALL_SCRIPT(Ent_msgin_ack);
825 1.35 bouyer return 1;
826 1.9 bouyer }
827 1.9 bouyer if (xs)
828 1.42 bouyer scsipi_printaddr(xs->xs_periph);
829 1.9 bouyer else
830 1.53 bouyer printf("%s: ",
831 1.53 bouyer sc->sc_c.sc_dev.dv_xname);
832 1.9 bouyer if (msg == MSG_EXTENDED) {
833 1.9 bouyer printf("scsi message reject, extended "
834 1.9 bouyer "message sent was 0x%x\n", extmsg);
835 1.9 bouyer } else {
836 1.9 bouyer printf("scsi message reject, message "
837 1.9 bouyer "sent was 0x%x\n", msg);
838 1.7 bouyer }
839 1.2 bouyer /* no table to flush here */
840 1.2 bouyer CALL_SCRIPT(Ent_msgin_ack);
841 1.2 bouyer return 1;
842 1.2 bouyer }
843 1.9 bouyer if (xs)
844 1.42 bouyer scsipi_printaddr(xs->xs_periph);
845 1.9 bouyer else
846 1.53 bouyer printf("%s: ", sc->sc_c.sc_dev.dv_xname);
847 1.8 bouyer printf("unhandled message 0x%x\n",
848 1.53 bouyer siop_cmd->cmd_tables->msg_in[0]);
849 1.53 bouyer siop_cmd->cmd_tables->msg_out[0] = MSG_MESSAGE_REJECT;
850 1.53 bouyer siop_cmd->cmd_tables->t_msgout.count= htole32(1);
851 1.2 bouyer siop_table_sync(siop_cmd,
852 1.2 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
853 1.2 bouyer CALL_SCRIPT(Ent_send_msgout);
854 1.2 bouyer return 1;
855 1.31 bouyer }
856 1.2 bouyer case A_int_extmsgin:
857 1.35 bouyer #ifdef SIOP_DEBUG_INTR
858 1.2 bouyer printf("extended message: msg 0x%x len %d\n",
859 1.53 bouyer siop_cmd->cmd_tables->msg_in[2],
860 1.53 bouyer siop_cmd->cmd_tables->msg_in[1]);
861 1.2 bouyer #endif
862 1.57 bouyer if (siop_cmd->cmd_tables->msg_in[1] >
863 1.57 bouyer sizeof(siop_cmd->cmd_tables->msg_in) - 2)
864 1.8 bouyer printf("%s: extended message too big (%d)\n",
865 1.53 bouyer sc->sc_c.sc_dev.dv_xname,
866 1.53 bouyer siop_cmd->cmd_tables->msg_in[1]);
867 1.53 bouyer siop_cmd->cmd_tables->t_extmsgdata.count =
868 1.53 bouyer htole32(siop_cmd->cmd_tables->msg_in[1] - 1);
869 1.2 bouyer siop_table_sync(siop_cmd,
870 1.2 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
871 1.2 bouyer CALL_SCRIPT(Ent_get_extmsgdata);
872 1.2 bouyer return 1;
873 1.2 bouyer case A_int_extmsgdata:
874 1.35 bouyer #ifdef SIOP_DEBUG_INTR
875 1.2 bouyer {
876 1.2 bouyer int i;
877 1.2 bouyer printf("extended message: 0x%x, data:",
878 1.53 bouyer siop_cmd->cmd_tables->msg_in[2]);
879 1.53 bouyer for (i = 3; i < 2 + siop_cmd->cmd_tables->msg_in[1];
880 1.2 bouyer i++)
881 1.2 bouyer printf(" 0x%x",
882 1.53 bouyer siop_cmd->cmd_tables->msg_in[i]);
883 1.2 bouyer printf("\n");
884 1.2 bouyer }
885 1.2 bouyer #endif
886 1.53 bouyer if (siop_cmd->cmd_tables->msg_in[2] == MSG_EXT_WDTR) {
887 1.53 bouyer switch (siop_wdtr_neg(&siop_cmd->cmd_c)) {
888 1.14 bouyer case SIOP_NEG_MSGOUT:
889 1.31 bouyer siop_update_scntl3(sc,
890 1.53 bouyer siop_cmd->cmd_c.siop_target);
891 1.14 bouyer siop_table_sync(siop_cmd,
892 1.14 bouyer BUS_DMASYNC_PREREAD |
893 1.14 bouyer BUS_DMASYNC_PREWRITE);
894 1.14 bouyer CALL_SCRIPT(Ent_send_msgout);
895 1.31 bouyer return(1);
896 1.26 bouyer case SIOP_NEG_ACK:
897 1.31 bouyer siop_update_scntl3(sc,
898 1.53 bouyer siop_cmd->cmd_c.siop_target);
899 1.26 bouyer CALL_SCRIPT(Ent_msgin_ack);
900 1.31 bouyer return(1);
901 1.14 bouyer default:
902 1.14 bouyer panic("invalid retval from "
903 1.14 bouyer "siop_wdtr_neg()");
904 1.14 bouyer }
905 1.7 bouyer return(1);
906 1.7 bouyer }
907 1.53 bouyer if (siop_cmd->cmd_tables->msg_in[2] == MSG_EXT_SDTR) {
908 1.53 bouyer switch (siop_sdtr_neg(&siop_cmd->cmd_c)) {
909 1.14 bouyer case SIOP_NEG_MSGOUT:
910 1.31 bouyer siop_update_scntl3(sc,
911 1.53 bouyer siop_cmd->cmd_c.siop_target);
912 1.14 bouyer siop_table_sync(siop_cmd,
913 1.14 bouyer BUS_DMASYNC_PREREAD |
914 1.14 bouyer BUS_DMASYNC_PREWRITE);
915 1.14 bouyer CALL_SCRIPT(Ent_send_msgout);
916 1.31 bouyer return(1);
917 1.14 bouyer case SIOP_NEG_ACK:
918 1.31 bouyer siop_update_scntl3(sc,
919 1.53 bouyer siop_cmd->cmd_c.siop_target);
920 1.14 bouyer CALL_SCRIPT(Ent_msgin_ack);
921 1.31 bouyer return(1);
922 1.14 bouyer default:
923 1.14 bouyer panic("invalid retval from "
924 1.14 bouyer "siop_wdtr_neg()");
925 1.14 bouyer }
926 1.7 bouyer return(1);
927 1.2 bouyer }
928 1.7 bouyer /* send a message reject */
929 1.53 bouyer siop_cmd->cmd_tables->msg_out[0] = MSG_MESSAGE_REJECT;
930 1.53 bouyer siop_cmd->cmd_tables->t_msgout.count = htole32(1);
931 1.2 bouyer siop_table_sync(siop_cmd,
932 1.2 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
933 1.2 bouyer CALL_SCRIPT(Ent_send_msgout);
934 1.2 bouyer return 1;
935 1.1 bouyer case A_int_disc:
936 1.2 bouyer INCSTAT(siop_stat_intr_sdp);
937 1.53 bouyer offset = bus_space_read_1(sc->sc_c.sc_rt,
938 1.53 bouyer sc->sc_c.sc_rh, SIOP_SCRATCHA + 1);
939 1.35 bouyer #ifdef SIOP_DEBUG_DR
940 1.1 bouyer printf("disconnect offset %d\n", offset);
941 1.1 bouyer #endif
942 1.1 bouyer if (offset > SIOP_NSG) {
943 1.1 bouyer printf("%s: bad offset for disconnect (%d)\n",
944 1.53 bouyer sc->sc_c.sc_dev.dv_xname, offset);
945 1.1 bouyer goto reset;
946 1.1 bouyer }
947 1.1 bouyer /*
948 1.1 bouyer * offset == SIOP_NSG may be a valid condition if
949 1.1 bouyer * we get a sdp when the xfer is done.
950 1.1 bouyer * Don't call memmove in this case.
951 1.1 bouyer */
952 1.1 bouyer if (offset < SIOP_NSG) {
953 1.53 bouyer memmove(&siop_cmd->cmd_tables->data[0],
954 1.53 bouyer &siop_cmd->cmd_tables->data[offset],
955 1.1 bouyer (SIOP_NSG - offset) * sizeof(scr_table_t));
956 1.2 bouyer siop_table_sync(siop_cmd,
957 1.2 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
958 1.1 bouyer }
959 1.31 bouyer CALL_SCRIPT(Ent_script_sched);
960 1.1 bouyer return 1;
961 1.1 bouyer case A_int_resfail:
962 1.1 bouyer printf("reselect failed\n");
963 1.31 bouyer CALL_SCRIPT(Ent_script_sched);
964 1.1 bouyer return 1;
965 1.1 bouyer case A_int_done:
966 1.2 bouyer if (xs == NULL) {
967 1.8 bouyer printf("%s: done without command, DSA=0x%lx\n",
968 1.53 bouyer sc->sc_c.sc_dev.dv_xname,
969 1.53 bouyer (u_long)siop_cmd->cmd_c.dsa);
970 1.53 bouyer siop_cmd->cmd_c.status = CMDST_FREE;
971 1.31 bouyer CALL_SCRIPT(Ent_script_sched);
972 1.2 bouyer return 1;
973 1.2 bouyer }
974 1.35 bouyer #ifdef SIOP_DEBUG_INTR
975 1.8 bouyer printf("done, DSA=0x%lx target id 0x%x last msg "
976 1.53 bouyer "in=0x%x status=0x%x\n", (u_long)siop_cmd->cmd_c.dsa,
977 1.53 bouyer le32toh(siop_cmd->cmd_tables->id),
978 1.53 bouyer siop_cmd->cmd_tables->msg_in[0],
979 1.53 bouyer le32toh(siop_cmd->cmd_tables->status));
980 1.1 bouyer #endif
981 1.2 bouyer INCSTAT(siop_stat_intr_done);
982 1.53 bouyer siop_cmd->cmd_c.status = CMDST_DONE;
983 1.1 bouyer goto end;
984 1.1 bouyer default:
985 1.1 bouyer printf("unknown irqcode %x\n", irqcode);
986 1.35 bouyer if (xs) {
987 1.35 bouyer xs->error = XS_SELTIMEOUT;
988 1.35 bouyer goto end;
989 1.35 bouyer }
990 1.35 bouyer goto reset;
991 1.1 bouyer }
992 1.1 bouyer return 1;
993 1.1 bouyer }
994 1.2 bouyer /* We just should't get there */
995 1.2 bouyer panic("siop_intr: I shouldn't be there !");
996 1.2 bouyer return 1;
997 1.1 bouyer end:
998 1.39 bouyer /*
999 1.39 bouyer * restart the script now if command completed properly
1000 1.42 bouyer * Otherwise wait for siop_scsicmd_end(), we may need to cleanup the
1001 1.42 bouyer * queue
1002 1.39 bouyer */
1003 1.53 bouyer xs->status = le32toh(siop_cmd->cmd_tables->status);
1004 1.42 bouyer if (xs->status == SCSI_OK)
1005 1.39 bouyer CALL_SCRIPT(Ent_script_sched);
1006 1.39 bouyer else
1007 1.39 bouyer restart = 1;
1008 1.35 bouyer siop_lun->siop_tag[tag].active = NULL;
1009 1.44 bouyer siop_scsicmd_end(siop_cmd);
1010 1.53 bouyer if (freetarget && siop_target->target_c.status == TARST_PROBING)
1011 1.44 bouyer siop_del_dev(sc, target, lun);
1012 1.44 bouyer if (restart)
1013 1.44 bouyer CALL_SCRIPT(Ent_script_sched);
1014 1.42 bouyer if (sc->sc_flags & SCF_CHAN_NOSLOT) {
1015 1.42 bouyer /* a command terminated, so we have free slots now */
1016 1.42 bouyer sc->sc_flags &= ~SCF_CHAN_NOSLOT;
1017 1.53 bouyer scsipi_channel_thaw(&sc->sc_c.sc_chan, 1);
1018 1.2 bouyer }
1019 1.42 bouyer
1020 1.2 bouyer return 1;
1021 1.2 bouyer }
1022 1.2 bouyer
1023 1.2 bouyer void
1024 1.2 bouyer siop_scsicmd_end(siop_cmd)
1025 1.2 bouyer struct siop_cmd *siop_cmd;
1026 1.2 bouyer {
1027 1.53 bouyer struct scsipi_xfer *xs = siop_cmd->cmd_c.xs;
1028 1.53 bouyer struct siop_softc *sc = (struct siop_softc *)siop_cmd->cmd_c.siop_sc;
1029 1.2 bouyer
1030 1.42 bouyer switch(xs->status) {
1031 1.36 bouyer case SCSI_OK:
1032 1.42 bouyer xs->error = XS_NOERROR;
1033 1.36 bouyer break;
1034 1.36 bouyer case SCSI_BUSY:
1035 1.36 bouyer xs->error = XS_BUSY;
1036 1.36 bouyer break;
1037 1.36 bouyer case SCSI_CHECK:
1038 1.42 bouyer xs->error = XS_BUSY;
1039 1.42 bouyer /* remove commands in the queue and scheduler */
1040 1.42 bouyer siop_unqueue(sc, xs->xs_periph->periph_target,
1041 1.42 bouyer xs->xs_periph->periph_lun);
1042 1.36 bouyer break;
1043 1.36 bouyer case SCSI_QUEUE_FULL:
1044 1.36 bouyer INCSTAT(siop_stat_intr_qfull);
1045 1.36 bouyer #ifdef SIOP_DEBUG
1046 1.53 bouyer printf("%s:%d:%d: queue full (tag %d)\n",
1047 1.53 bouyer sc->sc_c.sc_dev.dv_xname,
1048 1.42 bouyer xs->xs_periph->periph_target,
1049 1.53 bouyer xs->xs_periph->periph_lun, siop_cmd->cmd_c.tag);
1050 1.36 bouyer #endif
1051 1.42 bouyer xs->error = XS_BUSY;
1052 1.42 bouyer break;
1053 1.36 bouyer case SCSI_SIOP_NOCHECK:
1054 1.36 bouyer /*
1055 1.36 bouyer * don't check status, xs->error is already valid
1056 1.36 bouyer */
1057 1.36 bouyer break;
1058 1.36 bouyer case SCSI_SIOP_NOSTATUS:
1059 1.36 bouyer /*
1060 1.36 bouyer * the status byte was not updated, cmd was
1061 1.36 bouyer * aborted
1062 1.36 bouyer */
1063 1.36 bouyer xs->error = XS_SELTIMEOUT;
1064 1.36 bouyer break;
1065 1.36 bouyer default:
1066 1.36 bouyer xs->error = XS_DRIVER_STUFFUP;
1067 1.36 bouyer }
1068 1.42 bouyer if (xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) {
1069 1.53 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, siop_cmd->cmd_c.dmamap_data, 0,
1070 1.53 bouyer siop_cmd->cmd_c.dmamap_data->dm_mapsize,
1071 1.1 bouyer (xs->xs_control & XS_CTL_DATA_IN) ?
1072 1.1 bouyer BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
1073 1.53 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat, siop_cmd->cmd_c.dmamap_data);
1074 1.1 bouyer }
1075 1.53 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat, siop_cmd->cmd_c.dmamap_cmd);
1076 1.53 bouyer callout_stop(&siop_cmd->cmd_c.xs->xs_callout);
1077 1.53 bouyer siop_cmd->cmd_c.status = CMDST_FREE;
1078 1.42 bouyer TAILQ_INSERT_TAIL(&sc->free_list, siop_cmd, next);
1079 1.1 bouyer xs->resid = 0;
1080 1.42 bouyer scsipi_done (xs);
1081 1.42 bouyer }
1082 1.42 bouyer
1083 1.42 bouyer void
1084 1.42 bouyer siop_unqueue(sc, target, lun)
1085 1.42 bouyer struct siop_softc *sc;
1086 1.42 bouyer int target;
1087 1.42 bouyer int lun;
1088 1.42 bouyer {
1089 1.42 bouyer int slot, tag;
1090 1.42 bouyer struct siop_cmd *siop_cmd;
1091 1.53 bouyer struct siop_lun *siop_lun =
1092 1.53 bouyer ((struct siop_target *)sc->sc_c.targets[target])->siop_lun[lun];
1093 1.42 bouyer
1094 1.42 bouyer /* first make sure to read valid data */
1095 1.42 bouyer siop_script_sync(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1096 1.42 bouyer
1097 1.42 bouyer for (tag = 1; tag < SIOP_NTAG; tag++) {
1098 1.42 bouyer /* look for commands in the scheduler, not yet started */
1099 1.42 bouyer if (siop_lun->siop_tag[tag].active == NULL)
1100 1.42 bouyer continue;
1101 1.42 bouyer siop_cmd = siop_lun->siop_tag[tag].active;
1102 1.42 bouyer for (slot = 0; slot <= sc->sc_currschedslot; slot++) {
1103 1.42 bouyer if (siop_script_read(sc,
1104 1.42 bouyer (Ent_script_sched_slot0 / 4) + slot * 2 + 1) ==
1105 1.53 bouyer siop_cmd->cmd_c.dsa +
1106 1.53 bouyer sizeof(struct siop_common_xfer) +
1107 1.42 bouyer Ent_ldsa_select)
1108 1.42 bouyer break;
1109 1.42 bouyer }
1110 1.42 bouyer if (slot > sc->sc_currschedslot)
1111 1.42 bouyer continue; /* didn't find it */
1112 1.42 bouyer if (siop_script_read(sc,
1113 1.42 bouyer (Ent_script_sched_slot0 / 4) + slot * 2) == 0x80000000)
1114 1.42 bouyer continue; /* already started */
1115 1.42 bouyer /* clear the slot */
1116 1.42 bouyer siop_script_write(sc, (Ent_script_sched_slot0 / 4) + slot * 2,
1117 1.42 bouyer 0x80000000);
1118 1.42 bouyer /* ask to requeue */
1119 1.53 bouyer siop_cmd->cmd_c.xs->error = XS_REQUEUE;
1120 1.53 bouyer siop_cmd->cmd_c.xs->status = SCSI_SIOP_NOCHECK;
1121 1.42 bouyer siop_lun->siop_tag[tag].active = NULL;
1122 1.42 bouyer siop_scsicmd_end(siop_cmd);
1123 1.42 bouyer }
1124 1.42 bouyer /* update sc_currschedslot */
1125 1.42 bouyer sc->sc_currschedslot = 0;
1126 1.42 bouyer for (slot = SIOP_NSLOTS - 1; slot >= 0; slot--) {
1127 1.42 bouyer if (siop_script_read(sc,
1128 1.42 bouyer (Ent_script_sched_slot0 / 4) + slot * 2) != 0x80000000)
1129 1.42 bouyer sc->sc_currschedslot = slot;
1130 1.42 bouyer }
1131 1.7 bouyer }
1132 1.7 bouyer
1133 1.2 bouyer /*
1134 1.31 bouyer * handle a rejected queue tag message: the command will run untagged,
1135 1.31 bouyer * has to adjust the reselect script.
1136 1.31 bouyer */
1137 1.31 bouyer int
1138 1.31 bouyer siop_handle_qtag_reject(siop_cmd)
1139 1.31 bouyer struct siop_cmd *siop_cmd;
1140 1.31 bouyer {
1141 1.53 bouyer struct siop_softc *sc = (struct siop_softc *)siop_cmd->cmd_c.siop_sc;
1142 1.53 bouyer int target = siop_cmd->cmd_c.xs->xs_periph->periph_target;
1143 1.53 bouyer int lun = siop_cmd->cmd_c.xs->xs_periph->periph_lun;
1144 1.53 bouyer int tag = siop_cmd->cmd_tables->msg_out[2];
1145 1.53 bouyer struct siop_lun *siop_lun =
1146 1.53 bouyer ((struct siop_target*)sc->sc_c.targets[target])->siop_lun[lun];
1147 1.31 bouyer
1148 1.36 bouyer #ifdef SIOP_DEBUG
1149 1.36 bouyer printf("%s:%d:%d: tag message %d (%d) rejected (status %d)\n",
1150 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target, lun, tag, siop_cmd->cmd_c.tag,
1151 1.53 bouyer siop_cmd->cmd_c.status);
1152 1.36 bouyer #endif
1153 1.36 bouyer
1154 1.35 bouyer if (siop_lun->siop_tag[0].active != NULL) {
1155 1.36 bouyer printf("%s: untagged command already running for target %d "
1156 1.53 bouyer "lun %d (status %d)\n", sc->sc_c.sc_dev.dv_xname,
1157 1.53 bouyer target, lun, siop_lun->siop_tag[0].active->cmd_c.status);
1158 1.35 bouyer return -1;
1159 1.35 bouyer }
1160 1.35 bouyer /* clear tag slot */
1161 1.35 bouyer siop_lun->siop_tag[tag].active = NULL;
1162 1.35 bouyer /* add command to non-tagged slot */
1163 1.35 bouyer siop_lun->siop_tag[0].active = siop_cmd;
1164 1.53 bouyer siop_cmd->cmd_c.tag = 0;
1165 1.35 bouyer /* adjust reselect script if there is one */
1166 1.35 bouyer if (siop_lun->siop_tag[0].reseloff > 0) {
1167 1.35 bouyer siop_script_write(sc,
1168 1.35 bouyer siop_lun->siop_tag[0].reseloff + 1,
1169 1.53 bouyer siop_cmd->cmd_c.dsa + sizeof(struct siop_common_xfer) +
1170 1.35 bouyer Ent_ldsa_reload_dsa);
1171 1.38 bouyer siop_table_sync(siop_cmd, BUS_DMASYNC_PREWRITE);
1172 1.35 bouyer }
1173 1.31 bouyer return 0;
1174 1.31 bouyer }
1175 1.31 bouyer
1176 1.31 bouyer /*
1177 1.31 bouyer * handle a bus reset: reset chip, unqueue all active commands, free all
1178 1.31 bouyer * target struct and report loosage to upper layer.
1179 1.2 bouyer * As the upper layer may requeue immediatly we have to first store
1180 1.2 bouyer * all active commands in a temporary queue.
1181 1.2 bouyer */
1182 1.2 bouyer void
1183 1.2 bouyer siop_handle_reset(sc)
1184 1.2 bouyer struct siop_softc *sc;
1185 1.2 bouyer {
1186 1.42 bouyer struct siop_cmd *siop_cmd;
1187 1.31 bouyer struct siop_lun *siop_lun;
1188 1.35 bouyer int target, lun, tag;
1189 1.2 bouyer /*
1190 1.2 bouyer * scsi bus reset. reset the chip and restart
1191 1.2 bouyer * the queue. Need to clean up all active commands
1192 1.2 bouyer */
1193 1.53 bouyer printf("%s: scsi bus reset\n", sc->sc_c.sc_dev.dv_xname);
1194 1.2 bouyer /* stop, reset and restart the chip */
1195 1.2 bouyer siop_reset(sc);
1196 1.42 bouyer if (sc->sc_flags & SCF_CHAN_NOSLOT) {
1197 1.42 bouyer /* chip has been reset, all slots are free now */
1198 1.42 bouyer sc->sc_flags &= ~SCF_CHAN_NOSLOT;
1199 1.53 bouyer scsipi_channel_thaw(&sc->sc_c.sc_chan, 1);
1200 1.42 bouyer }
1201 1.36 bouyer /*
1202 1.36 bouyer * Process all commands: first commmands being executed
1203 1.36 bouyer */
1204 1.53 bouyer for (target = 0; target < sc->sc_c.sc_chan.chan_ntargets;
1205 1.7 bouyer target++) {
1206 1.53 bouyer if (sc->sc_c.targets[target] == NULL)
1207 1.7 bouyer continue;
1208 1.7 bouyer for (lun = 0; lun < 8; lun++) {
1209 1.53 bouyer struct siop_target *siop_target =
1210 1.53 bouyer (struct siop_target *)sc->sc_c.targets[target];
1211 1.53 bouyer siop_lun = siop_target->siop_lun[lun];
1212 1.31 bouyer if (siop_lun == NULL)
1213 1.31 bouyer continue;
1214 1.35 bouyer for (tag = 0; tag <
1215 1.53 bouyer ((sc->sc_c.targets[target]->flags & TARF_TAG) ?
1216 1.36 bouyer SIOP_NTAG : 1);
1217 1.35 bouyer tag++) {
1218 1.35 bouyer siop_cmd = siop_lun->siop_tag[tag].active;
1219 1.35 bouyer if (siop_cmd == NULL)
1220 1.35 bouyer continue;
1221 1.53 bouyer scsipi_printaddr(siop_cmd->cmd_c.xs->xs_periph);
1222 1.42 bouyer printf("command with tag id %d reset\n", tag);
1223 1.53 bouyer siop_cmd->cmd_c.xs->error =
1224 1.53 bouyer (siop_cmd->cmd_c.flags & CMDFL_TIMEOUT) ?
1225 1.42 bouyer XS_TIMEOUT : XS_RESET;
1226 1.53 bouyer siop_cmd->cmd_c.xs->status = SCSI_SIOP_NOCHECK;
1227 1.35 bouyer siop_lun->siop_tag[tag].active = NULL;
1228 1.53 bouyer siop_cmd->cmd_c.status = CMDST_DONE;
1229 1.42 bouyer siop_scsicmd_end(siop_cmd);
1230 1.35 bouyer }
1231 1.2 bouyer }
1232 1.53 bouyer sc->sc_c.targets[target]->status = TARST_ASYNC;
1233 1.53 bouyer sc->sc_c.targets[target]->flags &= ~TARF_ISWIDE;
1234 1.53 bouyer sc->sc_c.targets[target]->period =
1235 1.53 bouyer sc->sc_c.targets[target]->offset = 0;
1236 1.53 bouyer siop_update_xfer_mode(&sc->sc_c, target);
1237 1.31 bouyer }
1238 1.42 bouyer
1239 1.53 bouyer scsipi_async_event(&sc->sc_c.sc_chan, ASYNC_EVENT_RESET, NULL);
1240 1.1 bouyer }
1241 1.1 bouyer
1242 1.42 bouyer void
1243 1.42 bouyer siop_scsipi_request(chan, req, arg)
1244 1.42 bouyer struct scsipi_channel *chan;
1245 1.42 bouyer scsipi_adapter_req_t req;
1246 1.42 bouyer void *arg;
1247 1.42 bouyer {
1248 1.1 bouyer struct scsipi_xfer *xs;
1249 1.42 bouyer struct scsipi_periph *periph;
1250 1.42 bouyer struct siop_softc *sc = (void *)chan->chan_adapter->adapt_dev;
1251 1.1 bouyer struct siop_cmd *siop_cmd;
1252 1.53 bouyer struct siop_target *siop_target;
1253 1.1 bouyer int s, error, i;
1254 1.42 bouyer int target;
1255 1.42 bouyer int lun;
1256 1.42 bouyer
1257 1.42 bouyer switch (req) {
1258 1.42 bouyer case ADAPTER_REQ_RUN_XFER:
1259 1.42 bouyer xs = arg;
1260 1.42 bouyer periph = xs->xs_periph;
1261 1.42 bouyer target = periph->periph_target;
1262 1.42 bouyer lun = periph->periph_lun;
1263 1.1 bouyer
1264 1.42 bouyer s = splbio();
1265 1.35 bouyer #ifdef SIOP_DEBUG_SCHED
1266 1.42 bouyer printf("starting cmd for %d:%d\n", target, lun);
1267 1.1 bouyer #endif
1268 1.42 bouyer siop_cmd = TAILQ_FIRST(&sc->free_list);
1269 1.42 bouyer if (siop_cmd == NULL) {
1270 1.42 bouyer xs->error = XS_RESOURCE_SHORTAGE;
1271 1.42 bouyer scsipi_done(xs);
1272 1.42 bouyer splx(s);
1273 1.42 bouyer return;
1274 1.16 bouyer }
1275 1.47 bouyer TAILQ_REMOVE(&sc->free_list, siop_cmd, next);
1276 1.1 bouyer #ifdef DIAGNOSTIC
1277 1.53 bouyer if (siop_cmd->cmd_c.status != CMDST_FREE)
1278 1.42 bouyer panic("siop_scsicmd: new cmd not free");
1279 1.1 bouyer #endif
1280 1.53 bouyer siop_target = (struct siop_target*)sc->sc_c.targets[target];
1281 1.53 bouyer if (siop_target == NULL) {
1282 1.35 bouyer #ifdef SIOP_DEBUG
1283 1.42 bouyer printf("%s: alloc siop_target for target %d\n",
1284 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target);
1285 1.31 bouyer #endif
1286 1.53 bouyer sc->sc_c.targets[target] =
1287 1.42 bouyer malloc(sizeof(struct siop_target),
1288 1.42 bouyer M_DEVBUF, M_NOWAIT);
1289 1.53 bouyer if (sc->sc_c.targets[target] == NULL) {
1290 1.42 bouyer printf("%s: can't malloc memory for "
1291 1.53 bouyer "target %d\n", sc->sc_c.sc_dev.dv_xname,
1292 1.53 bouyer target);
1293 1.42 bouyer xs->error = XS_RESOURCE_SHORTAGE;
1294 1.42 bouyer scsipi_done(xs);
1295 1.42 bouyer splx(s);
1296 1.42 bouyer return;
1297 1.42 bouyer }
1298 1.53 bouyer siop_target =
1299 1.53 bouyer (struct siop_target*)sc->sc_c.targets[target];
1300 1.53 bouyer siop_target->target_c.status = TARST_PROBING;
1301 1.53 bouyer siop_target->target_c.flags = 0;
1302 1.53 bouyer siop_target->target_c.id =
1303 1.53 bouyer sc->sc_c.clock_div << 24; /* scntl3 */
1304 1.53 bouyer siop_target->target_c.id |= target << 16; /* id */
1305 1.53 bouyer /* siop_target->target_c.id |= 0x0 << 8; scxfer is 0 */
1306 1.42 bouyer
1307 1.42 bouyer /* get a lun switch script */
1308 1.53 bouyer siop_target->lunsw = siop_get_lunsw(sc);
1309 1.53 bouyer if (siop_target->lunsw == NULL) {
1310 1.42 bouyer printf("%s: can't alloc lunsw for target %d\n",
1311 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target);
1312 1.42 bouyer xs->error = XS_RESOURCE_SHORTAGE;
1313 1.42 bouyer scsipi_done(xs);
1314 1.42 bouyer splx(s);
1315 1.42 bouyer return;
1316 1.42 bouyer }
1317 1.42 bouyer for (i=0; i < 8; i++)
1318 1.53 bouyer siop_target->siop_lun[i] = NULL;
1319 1.42 bouyer siop_add_reselsw(sc, target);
1320 1.7 bouyer }
1321 1.53 bouyer if (siop_target->siop_lun[lun] == NULL) {
1322 1.53 bouyer siop_target->siop_lun[lun] =
1323 1.49 tsutsui malloc(sizeof(struct siop_lun), M_DEVBUF,
1324 1.49 tsutsui M_NOWAIT|M_ZERO);
1325 1.53 bouyer if (siop_target->siop_lun[lun] == NULL) {
1326 1.42 bouyer printf("%s: can't alloc siop_lun for "
1327 1.42 bouyer "target %d lun %d\n",
1328 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target, lun);
1329 1.42 bouyer xs->error = XS_RESOURCE_SHORTAGE;
1330 1.42 bouyer scsipi_done(xs);
1331 1.42 bouyer splx(s);
1332 1.42 bouyer return;
1333 1.42 bouyer }
1334 1.42 bouyer }
1335 1.53 bouyer siop_cmd->cmd_c.siop_target = sc->sc_c.targets[target];
1336 1.53 bouyer siop_cmd->cmd_c.xs = xs;
1337 1.53 bouyer siop_cmd->cmd_c.flags = 0;
1338 1.53 bouyer siop_cmd->cmd_c.status = CMDST_READY;
1339 1.42 bouyer
1340 1.42 bouyer /* load the DMA maps */
1341 1.53 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat,
1342 1.53 bouyer siop_cmd->cmd_c.dmamap_cmd,
1343 1.42 bouyer xs->cmd, xs->cmdlen, NULL, BUS_DMA_NOWAIT);
1344 1.1 bouyer if (error) {
1345 1.42 bouyer printf("%s: unable to load cmd DMA map: %d\n",
1346 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1347 1.1 bouyer xs->error = XS_DRIVER_STUFFUP;
1348 1.42 bouyer scsipi_done(xs);
1349 1.31 bouyer splx(s);
1350 1.42 bouyer return;
1351 1.42 bouyer }
1352 1.42 bouyer if (xs->xs_control & (XS_CTL_DATA_IN | XS_CTL_DATA_OUT)) {
1353 1.53 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat,
1354 1.53 bouyer siop_cmd->cmd_c.dmamap_data, xs->data, xs->datalen,
1355 1.46 thorpej NULL, BUS_DMA_NOWAIT | BUS_DMA_STREAMING |
1356 1.46 thorpej ((xs->xs_control & XS_CTL_DATA_IN) ?
1357 1.46 thorpej BUS_DMA_READ : BUS_DMA_WRITE));
1358 1.42 bouyer if (error) {
1359 1.42 bouyer printf("%s: unable to load cmd DMA map: %d",
1360 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1361 1.42 bouyer xs->error = XS_DRIVER_STUFFUP;
1362 1.42 bouyer scsipi_done(xs);
1363 1.53 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat,
1364 1.53 bouyer siop_cmd->cmd_c.dmamap_cmd);
1365 1.42 bouyer splx(s);
1366 1.42 bouyer return;
1367 1.42 bouyer }
1368 1.53 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat,
1369 1.53 bouyer siop_cmd->cmd_c.dmamap_data, 0,
1370 1.53 bouyer siop_cmd->cmd_c.dmamap_data->dm_mapsize,
1371 1.42 bouyer (xs->xs_control & XS_CTL_DATA_IN) ?
1372 1.42 bouyer BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
1373 1.42 bouyer }
1374 1.53 bouyer bus_dmamap_sync(sc->sc_c.sc_dmat, siop_cmd->cmd_c.dmamap_cmd, 0,
1375 1.53 bouyer siop_cmd->cmd_c.dmamap_cmd->dm_mapsize,
1376 1.53 bouyer BUS_DMASYNC_PREWRITE);
1377 1.42 bouyer
1378 1.55 bouyer if (xs->xs_tag_type) {
1379 1.55 bouyer /* use tag_id + 1, tag 0 is reserved for untagged cmds*/
1380 1.55 bouyer siop_cmd->cmd_c.tag = xs->xs_tag_id + 1;
1381 1.55 bouyer } else {
1382 1.55 bouyer siop_cmd->cmd_c.tag = 0;
1383 1.55 bouyer }
1384 1.53 bouyer siop_setuptables(&siop_cmd->cmd_c);
1385 1.53 bouyer siop_table_sync(siop_cmd,
1386 1.53 bouyer BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1387 1.42 bouyer siop_start(sc, siop_cmd);
1388 1.42 bouyer if (xs->xs_control & XS_CTL_POLL) {
1389 1.42 bouyer /* poll for command completion */
1390 1.42 bouyer while ((xs->xs_status & XS_STS_DONE) == 0) {
1391 1.42 bouyer delay(1000);
1392 1.42 bouyer siop_intr(sc);
1393 1.42 bouyer }
1394 1.1 bouyer }
1395 1.42 bouyer splx(s);
1396 1.42 bouyer return;
1397 1.1 bouyer
1398 1.42 bouyer case ADAPTER_REQ_GROW_RESOURCES:
1399 1.47 bouyer #ifdef SIOP_DEBUG
1400 1.53 bouyer printf("%s grow resources (%d)\n", sc->sc_c.sc_dev.dv_xname,
1401 1.53 bouyer sc->sc_c.sc_adapt.adapt_openings);
1402 1.47 bouyer #endif
1403 1.47 bouyer siop_morecbd(sc);
1404 1.42 bouyer return;
1405 1.35 bouyer
1406 1.42 bouyer case ADAPTER_REQ_SET_XFER_MODE:
1407 1.42 bouyer {
1408 1.42 bouyer struct scsipi_xfer_mode *xm = arg;
1409 1.53 bouyer if (sc->sc_c.targets[xm->xm_target] == NULL)
1410 1.42 bouyer return;
1411 1.42 bouyer s = splbio();
1412 1.42 bouyer if (xm->xm_mode & PERIPH_CAP_TQING)
1413 1.53 bouyer sc->sc_c.targets[xm->xm_target]->flags |= TARF_TAG;
1414 1.42 bouyer if ((xm->xm_mode & PERIPH_CAP_WIDE16) &&
1415 1.53 bouyer (sc->sc_c.features & SF_BUS_WIDE))
1416 1.53 bouyer sc->sc_c.targets[xm->xm_target]->flags |= TARF_WIDE;
1417 1.42 bouyer if (xm->xm_mode & PERIPH_CAP_SYNC)
1418 1.53 bouyer sc->sc_c.targets[xm->xm_target]->flags |= TARF_SYNC;
1419 1.42 bouyer if ((xm->xm_mode & (PERIPH_CAP_SYNC | PERIPH_CAP_WIDE16)) ||
1420 1.53 bouyer sc->sc_c.targets[xm->xm_target]->status == TARST_PROBING)
1421 1.53 bouyer sc->sc_c.targets[xm->xm_target]->status =
1422 1.42 bouyer TARST_ASYNC;
1423 1.42 bouyer
1424 1.53 bouyer for (lun = 0; lun < sc->sc_c.sc_chan.chan_nluns; lun++) {
1425 1.53 bouyer if (sc->sc_c.sc_chan.chan_periphs[xm->xm_target][lun])
1426 1.42 bouyer /* allocate a lun sw entry for this device */
1427 1.42 bouyer siop_add_dev(sc, xm->xm_target, lun);
1428 1.31 bouyer }
1429 1.42 bouyer
1430 1.14 bouyer splx(s);
1431 1.14 bouyer }
1432 1.42 bouyer }
1433 1.1 bouyer }
1434 1.1 bouyer
1435 1.42 bouyer static void
1436 1.42 bouyer siop_start(sc, siop_cmd)
1437 1.1 bouyer struct siop_softc *sc;
1438 1.42 bouyer struct siop_cmd *siop_cmd;
1439 1.1 bouyer {
1440 1.31 bouyer struct siop_lun *siop_lun;
1441 1.53 bouyer struct siop_xfer *siop_xfer;
1442 1.2 bouyer u_int32_t dsa;
1443 1.1 bouyer int timeout;
1444 1.42 bouyer int target, lun, slot;
1445 1.2 bouyer
1446 1.2 bouyer /*
1447 1.2 bouyer * first make sure to read valid data
1448 1.2 bouyer */
1449 1.35 bouyer siop_script_sync(sc, BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE);
1450 1.1 bouyer
1451 1.2 bouyer /*
1452 1.10 bouyer * The queue management here is a bit tricky: the script always looks
1453 1.10 bouyer * at the slot from first to last, so if we always use the first
1454 1.10 bouyer * free slot commands can stay at the tail of the queue ~forever.
1455 1.10 bouyer * The algorithm used here is to restart from the head when we know
1456 1.10 bouyer * that the queue is empty, and only add commands after the last one.
1457 1.10 bouyer * When we're at the end of the queue wait for the script to clear it.
1458 1.10 bouyer * The best thing to do here would be to implement a circular queue,
1459 1.10 bouyer * but using only 53c720 features this can be "interesting".
1460 1.10 bouyer * A mid-way solution could be to implement 2 queues and swap orders.
1461 1.2 bouyer */
1462 1.29 bouyer slot = sc->sc_currschedslot;
1463 1.10 bouyer /*
1464 1.35 bouyer * If the instruction is 0x80000000 (JUMP foo, IF FALSE) the slot is
1465 1.35 bouyer * free. As this is the last used slot, all previous slots are free,
1466 1.42 bouyer * we can restart from 0.
1467 1.10 bouyer */
1468 1.35 bouyer if (siop_script_read(sc, (Ent_script_sched_slot0 / 4) + slot * 2) ==
1469 1.35 bouyer 0x80000000) {
1470 1.42 bouyer slot = sc->sc_currschedslot = 0;
1471 1.10 bouyer } else {
1472 1.10 bouyer slot++;
1473 1.10 bouyer }
1474 1.53 bouyer target = siop_cmd->cmd_c.xs->xs_periph->periph_target;
1475 1.53 bouyer lun = siop_cmd->cmd_c.xs->xs_periph->periph_lun;
1476 1.53 bouyer siop_lun =
1477 1.53 bouyer ((struct siop_target*)sc->sc_c.targets[target])->siop_lun[lun];
1478 1.42 bouyer /* if non-tagged command active, panic: this shouldn't happen */
1479 1.42 bouyer if (siop_lun->siop_tag[0].active != NULL) {
1480 1.42 bouyer panic("siop_start: tagged cmd while untagged running");
1481 1.42 bouyer }
1482 1.31 bouyer #ifdef DIAGNOSTIC
1483 1.42 bouyer /* sanity check the tag if needed */
1484 1.53 bouyer if (siop_cmd->cmd_c.flags & CMDFL_TAG) {
1485 1.53 bouyer if (siop_lun->siop_tag[siop_cmd->cmd_c.tag].active != NULL)
1486 1.42 bouyer panic("siop_start: tag not free");
1487 1.53 bouyer if (siop_cmd->cmd_c.tag >= SIOP_NTAG) {
1488 1.53 bouyer scsipi_printaddr(siop_cmd->cmd_c.xs->xs_periph);
1489 1.53 bouyer printf(": tag id %d\n", siop_cmd->cmd_c.tag);
1490 1.42 bouyer panic("siop_start: invalid tag id");
1491 1.42 bouyer }
1492 1.42 bouyer }
1493 1.42 bouyer #endif
1494 1.42 bouyer /*
1495 1.42 bouyer * find a free scheduler slot and load it.
1496 1.42 bouyer */
1497 1.42 bouyer for (; slot < SIOP_NSLOTS; slot++) {
1498 1.35 bouyer /*
1499 1.42 bouyer * If cmd if 0x80000000 the slot is free
1500 1.35 bouyer */
1501 1.42 bouyer if (siop_script_read(sc,
1502 1.42 bouyer (Ent_script_sched_slot0 / 4) + slot * 2) ==
1503 1.42 bouyer 0x80000000)
1504 1.42 bouyer break;
1505 1.42 bouyer }
1506 1.42 bouyer if (slot == SIOP_NSLOTS) {
1507 1.39 bouyer /*
1508 1.42 bouyer * no more free slot, no need to continue. freeze the queue
1509 1.42 bouyer * and requeue this command.
1510 1.39 bouyer */
1511 1.53 bouyer scsipi_channel_freeze(&sc->sc_c.sc_chan, 1);
1512 1.42 bouyer sc->sc_flags |= SCF_CHAN_NOSLOT;
1513 1.53 bouyer siop_cmd->cmd_c.xs->error = XS_REQUEUE;
1514 1.53 bouyer siop_cmd->cmd_c.xs->status = SCSI_SIOP_NOCHECK;
1515 1.42 bouyer siop_scsicmd_end(siop_cmd);
1516 1.42 bouyer return;
1517 1.42 bouyer }
1518 1.35 bouyer #ifdef SIOP_DEBUG_SCHED
1519 1.42 bouyer printf("using slot %d for DSA 0x%lx\n", slot,
1520 1.53 bouyer (u_long)siop_cmd->cmd_c.dsa);
1521 1.31 bouyer #endif
1522 1.42 bouyer /* mark command as active */
1523 1.53 bouyer if (siop_cmd->cmd_c.status == CMDST_READY)
1524 1.53 bouyer siop_cmd->cmd_c.status = CMDST_ACTIVE;
1525 1.42 bouyer else
1526 1.42 bouyer panic("siop_start: bad status");
1527 1.53 bouyer siop_lun->siop_tag[siop_cmd->cmd_c.tag].active = siop_cmd;
1528 1.42 bouyer /* patch scripts with DSA addr */
1529 1.53 bouyer dsa = siop_cmd->cmd_c.dsa;
1530 1.42 bouyer /* first reselect switch, if we have an entry */
1531 1.53 bouyer if (siop_lun->siop_tag[siop_cmd->cmd_c.tag].reseloff > 0)
1532 1.42 bouyer siop_script_write(sc,
1533 1.53 bouyer siop_lun->siop_tag[siop_cmd->cmd_c.tag].reseloff + 1,
1534 1.53 bouyer dsa + sizeof(struct siop_common_xfer) +
1535 1.42 bouyer Ent_ldsa_reload_dsa);
1536 1.42 bouyer /* CMD script: MOVE MEMORY addr */
1537 1.53 bouyer siop_xfer = (struct siop_xfer*)siop_cmd->cmd_tables;
1538 1.53 bouyer siop_xfer->resel[E_ldsa_abs_slot_Used[0]] =
1539 1.53 bouyer htole32(sc->sc_c.sc_scriptaddr + Ent_script_sched_slot0 + slot * 8);
1540 1.38 bouyer siop_table_sync(siop_cmd, BUS_DMASYNC_PREWRITE);
1541 1.42 bouyer /* scheduler slot: JUMP ldsa_select */
1542 1.42 bouyer siop_script_write(sc,
1543 1.42 bouyer (Ent_script_sched_slot0 / 4) + slot * 2 + 1,
1544 1.53 bouyer dsa + sizeof(struct siop_common_xfer) + Ent_ldsa_select);
1545 1.42 bouyer /* handle timeout */
1546 1.53 bouyer if ((siop_cmd->cmd_c.xs->xs_control & XS_CTL_POLL) == 0) {
1547 1.42 bouyer /* start exire timer */
1548 1.53 bouyer timeout = mstohz(siop_cmd->cmd_c.xs->timeout);
1549 1.42 bouyer if (timeout == 0)
1550 1.42 bouyer timeout = 1;
1551 1.53 bouyer callout_reset( &siop_cmd->cmd_c.xs->xs_callout,
1552 1.42 bouyer timeout, siop_timeout, siop_cmd);
1553 1.36 bouyer }
1554 1.42 bouyer /*
1555 1.42 bouyer * Change JUMP cmd so that this slot will be handled
1556 1.42 bouyer */
1557 1.42 bouyer siop_script_write(sc, (Ent_script_sched_slot0 / 4) + slot * 2,
1558 1.42 bouyer 0x80080000);
1559 1.42 bouyer sc->sc_currschedslot = slot;
1560 1.36 bouyer
1561 1.2 bouyer /* make sure SCRIPT processor will read valid data */
1562 1.35 bouyer siop_script_sync(sc,BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1563 1.2 bouyer /* Signal script it has some work to do */
1564 1.53 bouyer bus_space_write_1(sc->sc_c.sc_rt, sc->sc_c.sc_rh,
1565 1.53 bouyer SIOP_ISTAT, ISTAT_SIGP);
1566 1.2 bouyer /* and wait for IRQ */
1567 1.2 bouyer return;
1568 1.1 bouyer }
1569 1.1 bouyer
1570 1.1 bouyer void
1571 1.1 bouyer siop_timeout(v)
1572 1.1 bouyer void *v;
1573 1.1 bouyer {
1574 1.1 bouyer struct siop_cmd *siop_cmd = v;
1575 1.53 bouyer struct siop_softc *sc = (struct siop_softc *)siop_cmd->cmd_c.siop_sc;
1576 1.1 bouyer int s;
1577 1.1 bouyer
1578 1.53 bouyer scsipi_printaddr(siop_cmd->cmd_c.xs->xs_periph);
1579 1.1 bouyer printf("command timeout\n");
1580 1.1 bouyer
1581 1.1 bouyer s = splbio();
1582 1.1 bouyer /* reset the scsi bus */
1583 1.53 bouyer siop_resetbus(&sc->sc_c);
1584 1.1 bouyer
1585 1.12 soren /* deactivate callout */
1586 1.53 bouyer callout_stop(&siop_cmd->cmd_c.xs->xs_callout);
1587 1.31 bouyer /* mark command as being timed out; siop_intr will handle it */
1588 1.1 bouyer /*
1589 1.1 bouyer * mark command has being timed out and just return;
1590 1.1 bouyer * the bus reset will generate an interrupt,
1591 1.1 bouyer * it will be handled in siop_intr()
1592 1.1 bouyer */
1593 1.53 bouyer siop_cmd->cmd_c.flags |= CMDFL_TIMEOUT;
1594 1.1 bouyer splx(s);
1595 1.1 bouyer return;
1596 1.1 bouyer
1597 1.1 bouyer }
1598 1.2 bouyer
1599 1.2 bouyer void
1600 1.2 bouyer siop_dump_script(sc)
1601 1.2 bouyer struct siop_softc *sc;
1602 1.2 bouyer {
1603 1.2 bouyer int i;
1604 1.37 thorpej for (i = 0; i < PAGE_SIZE / 4; i += 2) {
1605 1.4 bouyer printf("0x%04x: 0x%08x 0x%08x", i * 4,
1606 1.53 bouyer le32toh(sc->sc_c.sc_script[i]),
1607 1.53 bouyer le32toh(sc->sc_c.sc_script[i+1]));
1608 1.53 bouyer if ((le32toh(sc->sc_c.sc_script[i]) & 0xe0000000) ==
1609 1.53 bouyer 0xc0000000) {
1610 1.2 bouyer i++;
1611 1.53 bouyer printf(" 0x%08x", le32toh(sc->sc_c.sc_script[i+1]));
1612 1.2 bouyer }
1613 1.2 bouyer printf("\n");
1614 1.2 bouyer }
1615 1.16 bouyer }
1616 1.16 bouyer
1617 1.47 bouyer void
1618 1.16 bouyer siop_morecbd(sc)
1619 1.16 bouyer struct siop_softc *sc;
1620 1.16 bouyer {
1621 1.50 bouyer int error, i, j, s;
1622 1.16 bouyer bus_dma_segment_t seg;
1623 1.16 bouyer int rseg;
1624 1.16 bouyer struct siop_cbd *newcbd;
1625 1.53 bouyer struct siop_xfer *xfer;
1626 1.31 bouyer bus_addr_t dsa;
1627 1.31 bouyer u_int32_t *scr;
1628 1.16 bouyer
1629 1.16 bouyer /* allocate a new list head */
1630 1.49 tsutsui newcbd = malloc(sizeof(struct siop_cbd), M_DEVBUF, M_NOWAIT|M_ZERO);
1631 1.16 bouyer if (newcbd == NULL) {
1632 1.16 bouyer printf("%s: can't allocate memory for command descriptors "
1633 1.53 bouyer "head\n", sc->sc_c.sc_dev.dv_xname);
1634 1.47 bouyer return;
1635 1.16 bouyer }
1636 1.16 bouyer
1637 1.16 bouyer /* allocate cmd list */
1638 1.49 tsutsui newcbd->cmds = malloc(sizeof(struct siop_cmd) * SIOP_NCMDPB,
1639 1.49 tsutsui M_DEVBUF, M_NOWAIT|M_ZERO);
1640 1.16 bouyer if (newcbd->cmds == NULL) {
1641 1.16 bouyer printf("%s: can't allocate memory for command descriptors\n",
1642 1.53 bouyer sc->sc_c.sc_dev.dv_xname);
1643 1.16 bouyer goto bad3;
1644 1.16 bouyer }
1645 1.53 bouyer error = bus_dmamem_alloc(sc->sc_c.sc_dmat, PAGE_SIZE, PAGE_SIZE, 0, &seg,
1646 1.37 thorpej 1, &rseg, BUS_DMA_NOWAIT);
1647 1.16 bouyer if (error) {
1648 1.16 bouyer printf("%s: unable to allocate cbd DMA memory, error = %d\n",
1649 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1650 1.16 bouyer goto bad2;
1651 1.16 bouyer }
1652 1.53 bouyer error = bus_dmamem_map(sc->sc_c.sc_dmat, &seg, rseg, PAGE_SIZE,
1653 1.16 bouyer (caddr_t *)&newcbd->xfers, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
1654 1.16 bouyer if (error) {
1655 1.16 bouyer printf("%s: unable to map cbd DMA memory, error = %d\n",
1656 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1657 1.16 bouyer goto bad2;
1658 1.16 bouyer }
1659 1.53 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat, PAGE_SIZE, 1, PAGE_SIZE, 0,
1660 1.16 bouyer BUS_DMA_NOWAIT, &newcbd->xferdma);
1661 1.16 bouyer if (error) {
1662 1.16 bouyer printf("%s: unable to create cbd DMA map, error = %d\n",
1663 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1664 1.16 bouyer goto bad1;
1665 1.16 bouyer }
1666 1.53 bouyer error = bus_dmamap_load(sc->sc_c.sc_dmat, newcbd->xferdma, newcbd->xfers,
1667 1.37 thorpej PAGE_SIZE, NULL, BUS_DMA_NOWAIT);
1668 1.16 bouyer if (error) {
1669 1.17 bouyer printf("%s: unable to load cbd DMA map, error = %d\n",
1670 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1671 1.16 bouyer goto bad0;
1672 1.16 bouyer }
1673 1.31 bouyer #ifdef DEBUG
1674 1.53 bouyer printf("%s: alloc newcdb at PHY addr 0x%lx\n", sc->sc_c.sc_dev.dv_xname,
1675 1.31 bouyer (unsigned long)newcbd->xferdma->dm_segs[0].ds_addr);
1676 1.31 bouyer #endif
1677 1.16 bouyer for (i = 0; i < SIOP_NCMDPB; i++) {
1678 1.53 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat, MAXPHYS, SIOP_NSG,
1679 1.16 bouyer MAXPHYS, 0, BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
1680 1.53 bouyer &newcbd->cmds[i].cmd_c.dmamap_data);
1681 1.16 bouyer if (error) {
1682 1.16 bouyer printf("%s: unable to create data DMA map for cbd: "
1683 1.16 bouyer "error %d\n",
1684 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1685 1.16 bouyer goto bad0;
1686 1.16 bouyer }
1687 1.53 bouyer error = bus_dmamap_create(sc->sc_c.sc_dmat,
1688 1.16 bouyer sizeof(struct scsipi_generic), 1,
1689 1.16 bouyer sizeof(struct scsipi_generic), 0,
1690 1.16 bouyer BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
1691 1.53 bouyer &newcbd->cmds[i].cmd_c.dmamap_cmd);
1692 1.16 bouyer if (error) {
1693 1.16 bouyer printf("%s: unable to create cmd DMA map for cbd %d\n",
1694 1.53 bouyer sc->sc_c.sc_dev.dv_xname, error);
1695 1.16 bouyer goto bad0;
1696 1.16 bouyer }
1697 1.53 bouyer newcbd->cmds[i].cmd_c.siop_sc = &sc->sc_c;
1698 1.16 bouyer newcbd->cmds[i].siop_cbdp = newcbd;
1699 1.53 bouyer xfer = &newcbd->xfers[i];
1700 1.53 bouyer newcbd->cmds[i].cmd_tables = (struct siop_common_xfer *)xfer;
1701 1.53 bouyer memset(newcbd->cmds[i].cmd_tables, 0, sizeof(struct siop_xfer));
1702 1.53 bouyer dsa = newcbd->xferdma->dm_segs[0].ds_addr +
1703 1.16 bouyer i * sizeof(struct siop_xfer);
1704 1.53 bouyer newcbd->cmds[i].cmd_c.dsa = dsa;
1705 1.53 bouyer newcbd->cmds[i].cmd_c.status = CMDST_FREE;
1706 1.53 bouyer xfer->siop_tables.t_msgout.count= htole32(1);
1707 1.53 bouyer xfer->siop_tables.t_msgout.addr = htole32(dsa);
1708 1.53 bouyer xfer->siop_tables.t_msgin.count= htole32(1);
1709 1.57 bouyer xfer->siop_tables.t_msgin.addr = htole32(dsa +
1710 1.57 bouyer offsetof(struct siop_common_xfer, msg_in));
1711 1.53 bouyer xfer->siop_tables.t_extmsgin.count= htole32(2);
1712 1.57 bouyer xfer->siop_tables.t_extmsgin.addr = htole32(dsa +
1713 1.57 bouyer offsetof(struct siop_common_xfer, msg_in) + 1);
1714 1.57 bouyer xfer->siop_tables.t_extmsgdata.addr = htole32(dsa +
1715 1.57 bouyer offsetof(struct siop_common_xfer, msg_in) + 3);
1716 1.53 bouyer xfer->siop_tables.t_status.count= htole32(1);
1717 1.57 bouyer xfer->siop_tables.t_status.addr = htole32(dsa +
1718 1.57 bouyer offsetof(struct siop_common_xfer, status));
1719 1.35 bouyer /* The select/reselect script */
1720 1.53 bouyer scr = &xfer->resel[0];
1721 1.31 bouyer for (j = 0; j < sizeof(load_dsa) / sizeof(load_dsa[0]); j++)
1722 1.31 bouyer scr[j] = htole32(load_dsa[j]);
1723 1.31 bouyer /*
1724 1.31 bouyer * 0x78000000 is a 'move data8 to reg'. data8 is the second
1725 1.31 bouyer * octet, reg offset is the third.
1726 1.31 bouyer */
1727 1.31 bouyer scr[Ent_rdsa0 / 4] =
1728 1.31 bouyer htole32(0x78100000 | ((dsa & 0x000000ff) << 8));
1729 1.31 bouyer scr[Ent_rdsa1 / 4] =
1730 1.31 bouyer htole32(0x78110000 | ( dsa & 0x0000ff00 ));
1731 1.31 bouyer scr[Ent_rdsa2 / 4] =
1732 1.31 bouyer htole32(0x78120000 | ((dsa & 0x00ff0000) >> 8));
1733 1.31 bouyer scr[Ent_rdsa3 / 4] =
1734 1.31 bouyer htole32(0x78130000 | ((dsa & 0xff000000) >> 16));
1735 1.35 bouyer scr[E_ldsa_abs_reselected_Used[0]] =
1736 1.53 bouyer htole32(sc->sc_c.sc_scriptaddr + Ent_reselected);
1737 1.35 bouyer scr[E_ldsa_abs_reselect_Used[0]] =
1738 1.53 bouyer htole32(sc->sc_c.sc_scriptaddr + Ent_reselect);
1739 1.35 bouyer scr[E_ldsa_abs_selected_Used[0]] =
1740 1.53 bouyer htole32(sc->sc_c.sc_scriptaddr + Ent_selected);
1741 1.35 bouyer scr[E_ldsa_abs_data_Used[0]] =
1742 1.53 bouyer htole32(dsa + sizeof(struct siop_common_xfer) +
1743 1.35 bouyer Ent_ldsa_data);
1744 1.35 bouyer /* JUMP foo, IF FALSE - used by MOVE MEMORY to clear the slot */
1745 1.35 bouyer scr[Ent_ldsa_data / 4] = htole32(0x80000000);
1746 1.50 bouyer s = splbio();
1747 1.16 bouyer TAILQ_INSERT_TAIL(&sc->free_list, &newcbd->cmds[i], next);
1748 1.50 bouyer splx(s);
1749 1.35 bouyer #ifdef SIOP_DEBUG
1750 1.31 bouyer printf("tables[%d]: in=0x%x out=0x%x status=0x%x\n", i,
1751 1.53 bouyer le32toh(newcbd->cmds[i].cmd_tables->t_msgin.addr),
1752 1.53 bouyer le32toh(newcbd->cmds[i].cmd_tables->t_msgout.addr),
1753 1.53 bouyer le32toh(newcbd->cmds[i].cmd_tables->t_status.addr));
1754 1.16 bouyer #endif
1755 1.16 bouyer }
1756 1.50 bouyer s = splbio();
1757 1.16 bouyer TAILQ_INSERT_TAIL(&sc->cmds, newcbd, next);
1758 1.53 bouyer sc->sc_c.sc_adapt.adapt_openings += SIOP_NCMDPB;
1759 1.50 bouyer splx(s);
1760 1.47 bouyer return;
1761 1.16 bouyer bad0:
1762 1.53 bouyer bus_dmamap_unload(sc->sc_c.sc_dmat, newcbd->xferdma);
1763 1.53 bouyer bus_dmamap_destroy(sc->sc_c.sc_dmat, newcbd->xferdma);
1764 1.16 bouyer bad1:
1765 1.53 bouyer bus_dmamem_free(sc->sc_c.sc_dmat, &seg, rseg);
1766 1.16 bouyer bad2:
1767 1.16 bouyer free(newcbd->cmds, M_DEVBUF);
1768 1.16 bouyer bad3:
1769 1.16 bouyer free(newcbd, M_DEVBUF);
1770 1.47 bouyer return;
1771 1.2 bouyer }
1772 1.2 bouyer
1773 1.31 bouyer struct siop_lunsw *
1774 1.31 bouyer siop_get_lunsw(sc)
1775 1.31 bouyer struct siop_softc *sc;
1776 1.31 bouyer {
1777 1.31 bouyer struct siop_lunsw *lunsw;
1778 1.31 bouyer int i;
1779 1.31 bouyer
1780 1.35 bouyer if (sc->script_free_lo + (sizeof(lun_switch) / sizeof(lun_switch[0])) >=
1781 1.35 bouyer sc->script_free_hi)
1782 1.35 bouyer return NULL;
1783 1.31 bouyer lunsw = TAILQ_FIRST(&sc->lunsw_list);
1784 1.31 bouyer if (lunsw != NULL) {
1785 1.35 bouyer #ifdef SIOP_DEBUG
1786 1.31 bouyer printf("siop_get_lunsw got lunsw at offset %d\n",
1787 1.31 bouyer lunsw->lunsw_off);
1788 1.31 bouyer #endif
1789 1.31 bouyer TAILQ_REMOVE(&sc->lunsw_list, lunsw, next);
1790 1.31 bouyer return lunsw;
1791 1.31 bouyer }
1792 1.49 tsutsui lunsw = malloc(sizeof(struct siop_lunsw), M_DEVBUF, M_NOWAIT|M_ZERO);
1793 1.31 bouyer if (lunsw == NULL)
1794 1.31 bouyer return NULL;
1795 1.35 bouyer #ifdef SIOP_DEBUG
1796 1.35 bouyer printf("allocating lunsw at offset %d\n", sc->script_free_lo);
1797 1.31 bouyer #endif
1798 1.53 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
1799 1.53 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
1800 1.35 bouyer sc->script_free_lo * 4, lun_switch,
1801 1.31 bouyer sizeof(lun_switch) / sizeof(lun_switch[0]));
1802 1.53 bouyer bus_space_write_4(sc->sc_c.sc_ramt, sc->sc_c.sc_ramh,
1803 1.35 bouyer (sc->script_free_lo + E_abs_lunsw_return_Used[0]) * 4,
1804 1.53 bouyer sc->sc_c.sc_scriptaddr + Ent_lunsw_return);
1805 1.31 bouyer } else {
1806 1.31 bouyer for (i = 0; i < sizeof(lun_switch) / sizeof(lun_switch[0]);
1807 1.31 bouyer i++)
1808 1.53 bouyer sc->sc_c.sc_script[sc->script_free_lo + i] =
1809 1.31 bouyer htole32(lun_switch[i]);
1810 1.53 bouyer sc->sc_c.sc_script[
1811 1.53 bouyer sc->script_free_lo + E_abs_lunsw_return_Used[0]] =
1812 1.53 bouyer htole32(sc->sc_c.sc_scriptaddr + Ent_lunsw_return);
1813 1.31 bouyer }
1814 1.35 bouyer lunsw->lunsw_off = sc->script_free_lo;
1815 1.35 bouyer lunsw->lunsw_size = sizeof(lun_switch) / sizeof(lun_switch[0]);
1816 1.35 bouyer sc->script_free_lo += lunsw->lunsw_size;
1817 1.35 bouyer siop_script_sync(sc, BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE);
1818 1.31 bouyer return lunsw;
1819 1.31 bouyer }
1820 1.31 bouyer
1821 1.31 bouyer void
1822 1.31 bouyer siop_add_reselsw(sc, target)
1823 1.31 bouyer struct siop_softc *sc;
1824 1.31 bouyer int target;
1825 1.31 bouyer {
1826 1.31 bouyer int i;
1827 1.53 bouyer struct siop_target *siop_target;
1828 1.31 bouyer struct siop_lun *siop_lun;
1829 1.53 bouyer
1830 1.53 bouyer siop_target = (struct siop_target *)sc->sc_c.targets[target];
1831 1.32 bouyer /*
1832 1.32 bouyer * add an entry to resel switch
1833 1.32 bouyer */
1834 1.32 bouyer siop_script_sync(sc, BUS_DMASYNC_POSTWRITE);
1835 1.31 bouyer for (i = 0; i < 15; i++) {
1836 1.53 bouyer siop_target->reseloff = Ent_resel_targ0 / 4 + i * 2;
1837 1.53 bouyer if ((siop_script_read(sc, siop_target->reseloff) & 0xff)
1838 1.31 bouyer == 0xff) { /* it's free */
1839 1.35 bouyer #ifdef SIOP_DEBUG
1840 1.31 bouyer printf("siop: target %d slot %d offset %d\n",
1841 1.53 bouyer target, i, siop_target->reseloff);
1842 1.31 bouyer #endif
1843 1.31 bouyer /* JUMP abs_foo, IF target | 0x80; */
1844 1.53 bouyer siop_script_write(sc, siop_target->reseloff,
1845 1.31 bouyer 0x800c0080 | target);
1846 1.53 bouyer siop_script_write(sc, siop_target->reseloff + 1,
1847 1.53 bouyer sc->sc_c.sc_scriptaddr +
1848 1.53 bouyer siop_target->lunsw->lunsw_off * 4 +
1849 1.33 bouyer Ent_lun_switch_entry);
1850 1.31 bouyer break;
1851 1.31 bouyer }
1852 1.31 bouyer }
1853 1.31 bouyer if (i == 15) /* no free slot, shouldn't happen */
1854 1.31 bouyer panic("siop: resel switch full");
1855 1.31 bouyer
1856 1.35 bouyer sc->sc_ntargets++;
1857 1.31 bouyer for (i = 0; i < 8; i++) {
1858 1.53 bouyer siop_lun = siop_target->siop_lun[i];
1859 1.35 bouyer if (siop_lun == NULL)
1860 1.35 bouyer continue;
1861 1.35 bouyer if (siop_lun->reseloff > 0) {
1862 1.35 bouyer siop_lun->reseloff = 0;
1863 1.35 bouyer siop_add_dev(sc, target, i);
1864 1.35 bouyer }
1865 1.31 bouyer }
1866 1.53 bouyer siop_update_scntl3(sc, sc->sc_c.targets[target]);
1867 1.32 bouyer siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
1868 1.31 bouyer }
1869 1.31 bouyer
1870 1.31 bouyer void
1871 1.53 bouyer siop_update_scntl3(sc, _siop_target)
1872 1.31 bouyer struct siop_softc *sc;
1873 1.53 bouyer struct siop_common_target *_siop_target;
1874 1.31 bouyer {
1875 1.53 bouyer struct siop_target *siop_target = (struct siop_target *)_siop_target;
1876 1.31 bouyer /* MOVE target->id >> 24 TO SCNTL3 */
1877 1.31 bouyer siop_script_write(sc,
1878 1.31 bouyer siop_target->lunsw->lunsw_off + (Ent_restore_scntl3 / 4),
1879 1.53 bouyer 0x78030000 | ((siop_target->target_c.id >> 16) & 0x0000ff00));
1880 1.31 bouyer /* MOVE target->id >> 8 TO SXFER */
1881 1.31 bouyer siop_script_write(sc,
1882 1.31 bouyer siop_target->lunsw->lunsw_off + (Ent_restore_scntl3 / 4) + 2,
1883 1.53 bouyer 0x78050000 | (siop_target->target_c.id & 0x0000ff00));
1884 1.32 bouyer siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
1885 1.31 bouyer }
1886 1.31 bouyer
1887 1.35 bouyer void
1888 1.35 bouyer siop_add_dev(sc, target, lun)
1889 1.35 bouyer struct siop_softc *sc;
1890 1.35 bouyer int target;
1891 1.35 bouyer int lun;
1892 1.35 bouyer {
1893 1.35 bouyer struct siop_lunsw *lunsw;
1894 1.53 bouyer struct siop_target *siop_target =
1895 1.53 bouyer (struct siop_target *)sc->sc_c.targets[target];
1896 1.53 bouyer struct siop_lun *siop_lun = siop_target->siop_lun[lun];
1897 1.35 bouyer int i, ntargets;
1898 1.35 bouyer
1899 1.35 bouyer if (siop_lun->reseloff > 0)
1900 1.35 bouyer return;
1901 1.53 bouyer lunsw = siop_target->lunsw;
1902 1.35 bouyer if ((lunsw->lunsw_off + lunsw->lunsw_size) < sc->script_free_lo) {
1903 1.35 bouyer /*
1904 1.35 bouyer * can't extend this slot. Probably not worth trying to deal
1905 1.35 bouyer * with this case
1906 1.35 bouyer */
1907 1.35 bouyer #ifdef DEBUG
1908 1.35 bouyer printf("%s:%d:%d: can't allocate a lun sw slot\n",
1909 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target, lun);
1910 1.35 bouyer #endif
1911 1.35 bouyer return;
1912 1.35 bouyer }
1913 1.35 bouyer /* count how many free targets we still have to probe */
1914 1.53 bouyer ntargets = sc->sc_c.sc_chan.chan_ntargets - 1 - sc->sc_ntargets;
1915 1.35 bouyer
1916 1.35 bouyer /*
1917 1.35 bouyer * we need 8 bytes for the lun sw additionnal entry, and
1918 1.35 bouyer * eventually sizeof(tag_switch) for the tag switch entry.
1919 1.35 bouyer * Keep enouth free space for the free targets that could be
1920 1.35 bouyer * probed later.
1921 1.35 bouyer */
1922 1.35 bouyer if (sc->script_free_lo + 2 +
1923 1.35 bouyer (ntargets * sizeof(lun_switch) / sizeof(lun_switch[0])) >=
1924 1.53 bouyer ((siop_target->target_c.flags & TARF_TAG) ?
1925 1.35 bouyer sc->script_free_hi - (sizeof(tag_switch) / sizeof(tag_switch[0])) :
1926 1.35 bouyer sc->script_free_hi)) {
1927 1.35 bouyer /*
1928 1.35 bouyer * not enouth space, probably not worth dealing with it.
1929 1.35 bouyer * We can hold 13 tagged-queuing capable devices in the 4k RAM.
1930 1.35 bouyer */
1931 1.35 bouyer #ifdef DEBUG
1932 1.35 bouyer printf("%s:%d:%d: not enouth memory for a lun sw slot\n",
1933 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target, lun);
1934 1.35 bouyer #endif
1935 1.35 bouyer return;
1936 1.35 bouyer }
1937 1.35 bouyer #ifdef SIOP_DEBUG
1938 1.35 bouyer printf("%s:%d:%d: allocate lun sw entry\n",
1939 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target, lun);
1940 1.35 bouyer #endif
1941 1.35 bouyer /* INT int_resellun */
1942 1.35 bouyer siop_script_write(sc, sc->script_free_lo, 0x98080000);
1943 1.35 bouyer siop_script_write(sc, sc->script_free_lo + 1, A_int_resellun);
1944 1.35 bouyer /* Now the slot entry: JUMP abs_foo, IF lun */
1945 1.35 bouyer siop_script_write(sc, sc->script_free_lo - 2,
1946 1.35 bouyer 0x800c0000 | lun);
1947 1.35 bouyer siop_script_write(sc, sc->script_free_lo - 1, 0);
1948 1.35 bouyer siop_lun->reseloff = sc->script_free_lo - 2;
1949 1.35 bouyer lunsw->lunsw_size += 2;
1950 1.35 bouyer sc->script_free_lo += 2;
1951 1.53 bouyer if (siop_target->target_c.flags & TARF_TAG) {
1952 1.35 bouyer /* we need a tag switch */
1953 1.35 bouyer sc->script_free_hi -=
1954 1.35 bouyer sizeof(tag_switch) / sizeof(tag_switch[0]);
1955 1.53 bouyer if (sc->sc_c.features & SF_CHIP_RAM) {
1956 1.53 bouyer bus_space_write_region_4(sc->sc_c.sc_ramt,
1957 1.53 bouyer sc->sc_c.sc_ramh,
1958 1.35 bouyer sc->script_free_hi * 4, tag_switch,
1959 1.35 bouyer sizeof(tag_switch) / sizeof(tag_switch[0]));
1960 1.35 bouyer } else {
1961 1.35 bouyer for(i = 0;
1962 1.35 bouyer i < sizeof(tag_switch) / sizeof(tag_switch[0]);
1963 1.35 bouyer i++) {
1964 1.53 bouyer sc->sc_c.sc_script[sc->script_free_hi + i] =
1965 1.35 bouyer htole32(tag_switch[i]);
1966 1.35 bouyer }
1967 1.35 bouyer }
1968 1.35 bouyer siop_script_write(sc,
1969 1.35 bouyer siop_lun->reseloff + 1,
1970 1.53 bouyer sc->sc_c.sc_scriptaddr + sc->script_free_hi * 4 +
1971 1.35 bouyer Ent_tag_switch_entry);
1972 1.35 bouyer
1973 1.35 bouyer for (i = 0; i < SIOP_NTAG; i++) {
1974 1.35 bouyer siop_lun->siop_tag[i].reseloff =
1975 1.35 bouyer sc->script_free_hi + (Ent_resel_tag0 / 4) + i * 2;
1976 1.35 bouyer }
1977 1.35 bouyer } else {
1978 1.35 bouyer /* non-tag case; just work with the lun switch */
1979 1.35 bouyer siop_lun->siop_tag[0].reseloff =
1980 1.53 bouyer siop_target->siop_lun[lun]->reseloff;
1981 1.35 bouyer }
1982 1.35 bouyer siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
1983 1.35 bouyer }
1984 1.35 bouyer
1985 1.35 bouyer void
1986 1.35 bouyer siop_del_dev(sc, target, lun)
1987 1.35 bouyer struct siop_softc *sc;
1988 1.35 bouyer int target;
1989 1.35 bouyer int lun;
1990 1.35 bouyer {
1991 1.35 bouyer int i;
1992 1.53 bouyer struct siop_target *siop_target;
1993 1.35 bouyer #ifdef SIOP_DEBUG
1994 1.35 bouyer printf("%s:%d:%d: free lun sw entry\n",
1995 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target, lun);
1996 1.35 bouyer #endif
1997 1.53 bouyer if (sc->sc_c.targets[target] == NULL)
1998 1.35 bouyer return;
1999 1.53 bouyer siop_target = (struct siop_target *)sc->sc_c.targets[target];
2000 1.53 bouyer free(siop_target->siop_lun[lun], M_DEVBUF);
2001 1.53 bouyer siop_target->siop_lun[lun] = NULL;
2002 1.35 bouyer /* XXX compact sw entry too ? */
2003 1.35 bouyer /* check if we can free the whole target */
2004 1.35 bouyer for (i = 0; i < 8; i++) {
2005 1.53 bouyer if (siop_target->siop_lun[i] != NULL)
2006 1.35 bouyer return;
2007 1.35 bouyer }
2008 1.35 bouyer #ifdef SIOP_DEBUG
2009 1.35 bouyer printf("%s: free siop_target for target %d lun %d lunsw offset %d\n",
2010 1.53 bouyer sc->sc_c.sc_dev.dv_xname, target, lun,
2011 1.53 bouyer sc->sc_c.targets[target]->lunsw->lunsw_off);
2012 1.35 bouyer #endif
2013 1.35 bouyer /*
2014 1.35 bouyer * nothing here, free the target struct and resel
2015 1.35 bouyer * switch entry
2016 1.35 bouyer */
2017 1.53 bouyer siop_script_write(sc, siop_target->reseloff, 0x800c00ff);
2018 1.35 bouyer siop_script_sync(sc, BUS_DMASYNC_PREWRITE);
2019 1.53 bouyer TAILQ_INSERT_TAIL(&sc->lunsw_list, siop_target->lunsw, next);
2020 1.53 bouyer free(sc->sc_c.targets[target], M_DEVBUF);
2021 1.53 bouyer sc->sc_c.targets[target] = NULL;
2022 1.35 bouyer sc->sc_ntargets--;
2023 1.35 bouyer }
2024 1.35 bouyer
2025 1.2 bouyer #ifdef SIOP_STATS
2026 1.2 bouyer void
2027 1.2 bouyer siop_printstats()
2028 1.2 bouyer {
2029 1.2 bouyer printf("siop_stat_intr %d\n", siop_stat_intr);
2030 1.2 bouyer printf("siop_stat_intr_shortxfer %d\n", siop_stat_intr_shortxfer);
2031 1.2 bouyer printf("siop_stat_intr_xferdisc %d\n", siop_stat_intr_xferdisc);
2032 1.2 bouyer printf("siop_stat_intr_sdp %d\n", siop_stat_intr_sdp);
2033 1.2 bouyer printf("siop_stat_intr_done %d\n", siop_stat_intr_done);
2034 1.35 bouyer printf("siop_stat_intr_lunresel %d\n", siop_stat_intr_lunresel);
2035 1.36 bouyer printf("siop_stat_intr_qfull %d\n", siop_stat_intr_qfull);
2036 1.2 bouyer }
2037 1.2 bouyer #endif
2038