sci.c revision 1.23 1 1.23 mrg /* $NetBSD: sci.c,v 1.23 2000/06/26 14:20:31 mrg Exp $ */
2 1.8 cgd
3 1.5 chopps /*
4 1.5 chopps * Copyright (c) 1994 Michael L. Hitch
5 1.1 chopps * Copyright (c) 1990 The Regents of the University of California.
6 1.1 chopps * All rights reserved.
7 1.1 chopps *
8 1.1 chopps * This code is derived from software contributed to Berkeley by
9 1.1 chopps * Van Jacobson of Lawrence Berkeley Laboratory.
10 1.1 chopps *
11 1.1 chopps * Redistribution and use in source and binary forms, with or without
12 1.1 chopps * modification, are permitted provided that the following conditions
13 1.1 chopps * are met:
14 1.1 chopps * 1. Redistributions of source code must retain the above copyright
15 1.1 chopps * notice, this list of conditions and the following disclaimer.
16 1.1 chopps * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 chopps * notice, this list of conditions and the following disclaimer in the
18 1.1 chopps * documentation and/or other materials provided with the distribution.
19 1.1 chopps * 3. All advertising materials mentioning features or use of this software
20 1.1 chopps * must display the following acknowledgement:
21 1.1 chopps * This product includes software developed by the University of
22 1.1 chopps * California, Berkeley and its contributors.
23 1.1 chopps * 4. Neither the name of the University nor the names of its contributors
24 1.1 chopps * may be used to endorse or promote products derived from this software
25 1.1 chopps * without specific prior written permission.
26 1.1 chopps *
27 1.1 chopps * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 1.1 chopps * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 1.1 chopps * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 1.1 chopps * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 1.1 chopps * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 1.1 chopps * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 1.1 chopps * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 1.1 chopps * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 1.1 chopps * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 1.1 chopps * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 1.1 chopps * SUCH DAMAGE.
38 1.1 chopps *
39 1.5 chopps * @(#)scsi.c 7.5 (Berkeley) 5/4/91
40 1.1 chopps */
41 1.1 chopps
42 1.1 chopps /*
43 1.1 chopps * AMIGA NCR 5380 scsi adaptor driver
44 1.1 chopps */
45 1.1 chopps
46 1.1 chopps #include <sys/param.h>
47 1.1 chopps #include <sys/systm.h>
48 1.5 chopps #include <sys/device.h>
49 1.11 chopps #include <sys/disklabel.h>
50 1.11 chopps #include <sys/dkstat.h>
51 1.1 chopps #include <sys/buf.h>
52 1.20 bouyer #include <dev/scsipi/scsi_all.h>
53 1.20 bouyer #include <dev/scsipi/scsipi_all.h>
54 1.20 bouyer #include <dev/scsipi/scsiconf.h>
55 1.1 chopps #include <vm/vm.h>
56 1.23 mrg #include <uvm/uvm_extern.h>
57 1.1 chopps #include <machine/pmap.h>
58 1.5 chopps #include <machine/cpu.h>
59 1.5 chopps #include <amiga/amiga/device.h>
60 1.5 chopps #include <amiga/amiga/custom.h>
61 1.11 chopps #include <amiga/amiga/isr.h>
62 1.5 chopps #include <amiga/dev/scireg.h>
63 1.1 chopps #include <amiga/dev/scivar.h>
64 1.1 chopps
65 1.1 chopps /*
66 1.1 chopps * SCSI delays
67 1.1 chopps * In u-seconds, primarily for state changes on the SPC.
68 1.1 chopps */
69 1.5 chopps #define SCI_CMD_WAIT 50000 /* wait per step of 'immediate' cmds */
70 1.5 chopps #define SCI_DATA_WAIT 50000 /* wait per data in/out step */
71 1.5 chopps #define SCI_INIT_WAIT 50000 /* wait per step (both) during init */
72 1.1 chopps
73 1.5 chopps int sciicmd __P((struct sci_softc *, int, void *, int, void *, int,u_char));
74 1.20 bouyer int scigo __P((struct sci_softc *, struct scsipi_xfer *));
75 1.20 bouyer int scigetsense __P((struct sci_softc *, struct scsipi_xfer *));
76 1.5 chopps int sciselectbus __P((struct sci_softc *, u_char, u_char));
77 1.5 chopps void sciabort __P((struct sci_softc *, char *));
78 1.5 chopps void scierror __P((struct sci_softc *, u_char));
79 1.5 chopps void scisetdelay __P((int));
80 1.5 chopps void sci_scsidone __P((struct sci_softc *, int));
81 1.5 chopps void sci_donextcmd __P((struct sci_softc *));
82 1.16 veego int sci_ixfer_out __P((struct sci_softc *, int, register u_char *, int));
83 1.16 veego void sci_ixfer_in __P((struct sci_softc *, int, register u_char *, int));
84 1.5 chopps
85 1.5 chopps int sci_cmd_wait = SCI_CMD_WAIT;
86 1.5 chopps int sci_data_wait = SCI_DATA_WAIT;
87 1.5 chopps int sci_init_wait = SCI_INIT_WAIT;
88 1.1 chopps
89 1.5 chopps int sci_no_dma = 0;
90 1.5 chopps
91 1.5 chopps #ifdef DEBUG
92 1.19 christos #define QPRINTF(a) if (sci_debug > 1) printf a
93 1.5 chopps int sci_debug = 0;
94 1.1 chopps #else
95 1.16 veego #define QPRINTF(a)
96 1.1 chopps #endif
97 1.1 chopps
98 1.5 chopps /*
99 1.5 chopps * default minphys routine for sci based controllers
100 1.5 chopps */
101 1.13 mycroft void
102 1.5 chopps sci_minphys(bp)
103 1.5 chopps struct buf *bp;
104 1.5 chopps {
105 1.13 mycroft
106 1.5 chopps /*
107 1.13 mycroft * No max transfer at this level.
108 1.5 chopps */
109 1.13 mycroft minphys(bp);
110 1.5 chopps }
111 1.5 chopps
112 1.5 chopps /*
113 1.5 chopps * used by specific sci controller
114 1.5 chopps *
115 1.5 chopps * it appears that the higher level code does nothing with LUN's
116 1.5 chopps * so I will too. I could plug it in, however so could they
117 1.20 bouyer * in scsi_scsipi_cmd().
118 1.5 chopps */
119 1.5 chopps int
120 1.5 chopps sci_scsicmd(xs)
121 1.20 bouyer struct scsipi_xfer *xs;
122 1.5 chopps {
123 1.5 chopps struct sci_pending *pendp;
124 1.5 chopps struct sci_softc *dev;
125 1.20 bouyer struct scsipi_link *slp;
126 1.5 chopps int flags, s;
127 1.1 chopps
128 1.5 chopps slp = xs->sc_link;
129 1.5 chopps dev = slp->adapter_softc;
130 1.21 thorpej flags = xs->xs_control;
131 1.1 chopps
132 1.21 thorpej if (flags & XS_CTL_DATA_UIO)
133 1.5 chopps panic("sci: scsi data uio requested");
134 1.13 mycroft
135 1.21 thorpej if (dev->sc_xs && flags & XS_CTL_POLL)
136 1.5 chopps panic("sci_scsicmd: busy");
137 1.1 chopps
138 1.5 chopps s = splbio();
139 1.20 bouyer pendp = &dev->sc_xsstore[slp->scsipi_scsi.target][slp->scsipi_scsi.lun];
140 1.5 chopps if (pendp->xs) {
141 1.5 chopps splx(s);
142 1.5 chopps return(TRY_AGAIN_LATER);
143 1.5 chopps }
144 1.1 chopps
145 1.5 chopps if (dev->sc_xs) {
146 1.5 chopps pendp->xs = xs;
147 1.5 chopps TAILQ_INSERT_TAIL(&dev->sc_xslist, pendp, link);
148 1.5 chopps splx(s);
149 1.5 chopps return(SUCCESSFULLY_QUEUED);
150 1.5 chopps }
151 1.5 chopps pendp->xs = NULL;
152 1.5 chopps dev->sc_xs = xs;
153 1.5 chopps splx(s);
154 1.1 chopps
155 1.5 chopps /*
156 1.5 chopps * nothing is pending do it now.
157 1.5 chopps */
158 1.5 chopps sci_donextcmd(dev);
159 1.1 chopps
160 1.21 thorpej if (flags & XS_CTL_POLL)
161 1.5 chopps return(COMPLETE);
162 1.5 chopps return(SUCCESSFULLY_QUEUED);
163 1.5 chopps }
164 1.1 chopps
165 1.5 chopps /*
166 1.5 chopps * entered with dev->sc_xs pointing to the next xfer to perform
167 1.5 chopps */
168 1.5 chopps void
169 1.5 chopps sci_donextcmd(dev)
170 1.5 chopps struct sci_softc *dev;
171 1.5 chopps {
172 1.20 bouyer struct scsipi_xfer *xs;
173 1.20 bouyer struct scsipi_link *slp;
174 1.5 chopps int flags, phase, stat;
175 1.5 chopps
176 1.5 chopps xs = dev->sc_xs;
177 1.5 chopps slp = xs->sc_link;
178 1.21 thorpej flags = xs->xs_control;
179 1.5 chopps
180 1.21 thorpej if (flags & XS_CTL_DATA_IN)
181 1.5 chopps phase = DATA_IN_PHASE;
182 1.21 thorpej else if (flags & XS_CTL_DATA_OUT)
183 1.5 chopps phase = DATA_OUT_PHASE;
184 1.5 chopps else
185 1.5 chopps phase = STATUS_PHASE;
186 1.13 mycroft
187 1.21 thorpej if (flags & XS_CTL_RESET)
188 1.5 chopps scireset(dev);
189 1.1 chopps
190 1.5 chopps dev->sc_stat[0] = -1;
191 1.20 bouyer xs->cmd->bytes[0] |= slp->scsipi_scsi.lun << 5;
192 1.21 thorpej if (phase == STATUS_PHASE || flags & XS_CTL_POLL)
193 1.20 bouyer stat = sciicmd(dev, slp->scsipi_scsi.target, xs->cmd, xs->cmdlen,
194 1.5 chopps xs->data, xs->datalen, phase);
195 1.5 chopps else if (scigo(dev, xs) == 0)
196 1.5 chopps return;
197 1.13 mycroft else
198 1.5 chopps stat = dev->sc_stat[0];
199 1.13 mycroft
200 1.5 chopps sci_scsidone(dev, stat);
201 1.5 chopps }
202 1.1 chopps
203 1.5 chopps void
204 1.5 chopps sci_scsidone(dev, stat)
205 1.5 chopps struct sci_softc *dev;
206 1.5 chopps int stat;
207 1.5 chopps {
208 1.5 chopps struct sci_pending *pendp;
209 1.20 bouyer struct scsipi_xfer *xs;
210 1.5 chopps int s, donext;
211 1.5 chopps
212 1.5 chopps xs = dev->sc_xs;
213 1.5 chopps #ifdef DIAGNOSTIC
214 1.5 chopps if (xs == NULL)
215 1.5 chopps panic("sci_scsidone");
216 1.11 chopps #endif
217 1.5 chopps /*
218 1.5 chopps * is this right?
219 1.5 chopps */
220 1.5 chopps xs->status = stat;
221 1.1 chopps
222 1.10 chopps if (stat == 0)
223 1.5 chopps xs->resid = 0;
224 1.5 chopps else {
225 1.5 chopps switch(stat) {
226 1.5 chopps case SCSI_CHECK:
227 1.16 veego stat = scigetsense(dev, xs);
228 1.16 veego if (stat != 0)
229 1.5 chopps goto bad_sense;
230 1.5 chopps xs->error = XS_SENSE;
231 1.5 chopps break;
232 1.5 chopps case SCSI_BUSY:
233 1.5 chopps xs->error = XS_BUSY;
234 1.5 chopps break;
235 1.5 chopps bad_sense:
236 1.5 chopps default:
237 1.5 chopps xs->error = XS_DRIVER_STUFFUP;
238 1.5 chopps QPRINTF(("sci_scsicmd() bad %x\n", stat));
239 1.5 chopps break;
240 1.5 chopps }
241 1.5 chopps }
242 1.21 thorpej
243 1.21 thorpej xs->xs_status |= XS_STS_DONE;
244 1.1 chopps
245 1.5 chopps /*
246 1.20 bouyer * grab next command before scsipi_done()
247 1.5 chopps * this way no single device can hog scsi resources.
248 1.5 chopps */
249 1.5 chopps s = splbio();
250 1.5 chopps pendp = dev->sc_xslist.tqh_first;
251 1.5 chopps if (pendp == NULL) {
252 1.5 chopps donext = 0;
253 1.5 chopps dev->sc_xs = NULL;
254 1.5 chopps } else {
255 1.5 chopps donext = 1;
256 1.5 chopps TAILQ_REMOVE(&dev->sc_xslist, pendp, link);
257 1.5 chopps dev->sc_xs = pendp->xs;
258 1.5 chopps pendp->xs = NULL;
259 1.5 chopps }
260 1.5 chopps splx(s);
261 1.20 bouyer scsipi_done(xs);
262 1.1 chopps
263 1.5 chopps if (donext)
264 1.5 chopps sci_donextcmd(dev);
265 1.5 chopps }
266 1.1 chopps
267 1.5 chopps int
268 1.5 chopps scigetsense(dev, xs)
269 1.5 chopps struct sci_softc *dev;
270 1.20 bouyer struct scsipi_xfer *xs;
271 1.1 chopps {
272 1.20 bouyer struct scsipi_sense rqs;
273 1.20 bouyer struct scsipi_link *slp;
274 1.1 chopps
275 1.5 chopps slp = xs->sc_link;
276 1.13 mycroft
277 1.10 chopps rqs.opcode = REQUEST_SENSE;
278 1.20 bouyer rqs.byte2 = slp->scsipi_scsi.lun << 5;
279 1.5 chopps #ifdef not_yet
280 1.13 mycroft rqs.length = xs->req_sense_length ? xs->req_sense_length :
281 1.20 bouyer sizeof(xs->sense.scsi_sense);
282 1.5 chopps #else
283 1.20 bouyer rqs.length = sizeof(xs->sense.scsi_sense);
284 1.5 chopps #endif
285 1.13 mycroft
286 1.5 chopps rqs.unused[0] = rqs.unused[1] = rqs.control = 0;
287 1.13 mycroft
288 1.20 bouyer return(sciicmd(dev, slp->scsipi_scsi.target, &rqs, sizeof(rqs),
289 1.20 bouyer &xs->sense.scsi_sense,
290 1.5 chopps rqs.length, DATA_IN_PHASE));
291 1.1 chopps }
292 1.1 chopps
293 1.5 chopps void
294 1.5 chopps sciabort(dev, where)
295 1.5 chopps struct sci_softc *dev;
296 1.1 chopps char *where;
297 1.1 chopps {
298 1.19 christos printf ("%s: abort %s: csr = 0x%02x, bus = 0x%02x\n",
299 1.5 chopps dev->sc_dev.dv_xname, where, *dev->sci_csr, *dev->sci_bus_csr);
300 1.1 chopps
301 1.1 chopps if (dev->sc_flags & SCI_SELECTED) {
302 1.1 chopps
303 1.7 chopps /* lets just hope it worked.. */
304 1.7 chopps dev->sc_flags &= ~SCI_SELECTED;
305 1.1 chopps /* XXX */
306 1.5 chopps scireset (dev);
307 1.1 chopps }
308 1.1 chopps }
309 1.1 chopps
310 1.1 chopps /*
311 1.1 chopps * XXX Set/reset long delays.
312 1.1 chopps *
313 1.1 chopps * if delay == 0, reset default delays
314 1.1 chopps * if delay < 0, set both delays to default long initialization values
315 1.1 chopps * if delay > 0, set both delays to this value
316 1.1 chopps *
317 1.1 chopps * Used when a devices is expected to respond slowly (e.g. during
318 1.1 chopps * initialization).
319 1.1 chopps */
320 1.1 chopps void
321 1.5 chopps scisetdelay(del)
322 1.5 chopps int del;
323 1.1 chopps {
324 1.1 chopps static int saved_cmd_wait, saved_data_wait;
325 1.1 chopps
326 1.5 chopps if (del) {
327 1.1 chopps saved_cmd_wait = sci_cmd_wait;
328 1.1 chopps saved_data_wait = sci_data_wait;
329 1.5 chopps if (del > 0)
330 1.5 chopps sci_cmd_wait = sci_data_wait = del;
331 1.1 chopps else
332 1.1 chopps sci_cmd_wait = sci_data_wait = sci_init_wait;
333 1.1 chopps } else {
334 1.1 chopps sci_cmd_wait = saved_cmd_wait;
335 1.1 chopps sci_data_wait = saved_data_wait;
336 1.1 chopps }
337 1.1 chopps }
338 1.1 chopps
339 1.1 chopps void
340 1.5 chopps scireset(dev)
341 1.5 chopps struct sci_softc *dev;
342 1.1 chopps {
343 1.16 veego u_int s;
344 1.16 veego u_char my_id;
345 1.1 chopps
346 1.7 chopps dev->sc_flags &= ~SCI_SELECTED;
347 1.1 chopps if (dev->sc_flags & SCI_ALIVE)
348 1.5 chopps sciabort(dev, "reset");
349 1.1 chopps
350 1.19 christos printf("%s: ", dev->sc_dev.dv_xname);
351 1.1 chopps
352 1.1 chopps s = splbio();
353 1.1 chopps /* preserve our ID for now */
354 1.1 chopps my_id = 7;
355 1.1 chopps
356 1.1 chopps /*
357 1.5 chopps * Reset the chip
358 1.1 chopps */
359 1.1 chopps *dev->sci_icmd = SCI_ICMD_TEST;
360 1.1 chopps *dev->sci_icmd = SCI_ICMD_TEST | SCI_ICMD_RST;
361 1.6 chopps delay (25);
362 1.1 chopps *dev->sci_icmd = 0;
363 1.1 chopps
364 1.1 chopps /*
365 1.1 chopps * Set up various chip parameters
366 1.1 chopps */
367 1.1 chopps *dev->sci_icmd = 0;
368 1.1 chopps *dev->sci_tcmd = 0;
369 1.1 chopps *dev->sci_sel_enb = 0;
370 1.1 chopps
371 1.1 chopps /* anything else was zeroed by reset */
372 1.1 chopps
373 1.1 chopps splx (s);
374 1.1 chopps
375 1.19 christos printf("sci id %d\n", my_id);
376 1.1 chopps dev->sc_flags |= SCI_ALIVE;
377 1.1 chopps }
378 1.1 chopps
379 1.5 chopps void
380 1.5 chopps scierror(dev, csr)
381 1.5 chopps struct sci_softc *dev;
382 1.1 chopps u_char csr;
383 1.1 chopps {
384 1.20 bouyer struct scsipi_xfer *xs;
385 1.1 chopps
386 1.5 chopps xs = dev->sc_xs;
387 1.5 chopps
388 1.5 chopps #ifdef DIAGNOSTIC
389 1.5 chopps if (xs == NULL)
390 1.5 chopps panic("scierror");
391 1.5 chopps #endif
392 1.21 thorpej if (xs->xs_control & XS_CTL_SILENT)
393 1.5 chopps return;
394 1.5 chopps
395 1.19 christos printf("%s: ", dev->sc_dev.dv_xname);
396 1.19 christos printf("csr == 0x%02i\n", csr); /* XXX */
397 1.1 chopps }
398 1.1 chopps
399 1.5 chopps /*
400 1.5 chopps * select the bus, return when selected or error.
401 1.5 chopps */
402 1.5 chopps int
403 1.5 chopps sciselectbus(dev, target, our_addr)
404 1.5 chopps struct sci_softc *dev;
405 1.1 chopps u_char target, our_addr;
406 1.1 chopps {
407 1.1 chopps register int timeo = 2500;
408 1.1 chopps
409 1.5 chopps QPRINTF (("sciselectbus %d\n", target));
410 1.1 chopps
411 1.1 chopps /* if we're already selected, return */
412 1.1 chopps if (dev->sc_flags & SCI_SELECTED) /* XXXX */
413 1.1 chopps return 1;
414 1.1 chopps
415 1.1 chopps if ((*dev->sci_bus_csr & (SCI_BUS_BSY|SCI_BUS_SEL)) &&
416 1.1 chopps (*dev->sci_bus_csr & (SCI_BUS_BSY|SCI_BUS_SEL)) &&
417 1.1 chopps (*dev->sci_bus_csr & (SCI_BUS_BSY|SCI_BUS_SEL)))
418 1.1 chopps return 1;
419 1.1 chopps
420 1.1 chopps *dev->sci_tcmd = 0;
421 1.1 chopps *dev->sci_odata = 0x80 + (1 << target);
422 1.1 chopps *dev->sci_icmd = SCI_ICMD_DATA|SCI_ICMD_SEL;
423 1.1 chopps while ((*dev->sci_bus_csr & SCI_BUS_BSY) == 0) {
424 1.1 chopps if (--timeo > 0) {
425 1.6 chopps delay(100);
426 1.1 chopps } else {
427 1.1 chopps break;
428 1.1 chopps }
429 1.1 chopps }
430 1.1 chopps if (timeo) {
431 1.1 chopps *dev->sci_icmd = 0;
432 1.1 chopps dev->sc_flags |= SCI_SELECTED;
433 1.1 chopps return (0);
434 1.1 chopps }
435 1.1 chopps *dev->sci_icmd = 0;
436 1.1 chopps return (1);
437 1.1 chopps }
438 1.1 chopps
439 1.5 chopps int
440 1.5 chopps sci_ixfer_out(dev, len, buf, phase)
441 1.1 chopps register struct sci_softc *dev;
442 1.1 chopps int len;
443 1.1 chopps register u_char *buf;
444 1.1 chopps int phase;
445 1.1 chopps {
446 1.1 chopps register int wait = sci_data_wait;
447 1.1 chopps u_char csr;
448 1.1 chopps
449 1.5 chopps QPRINTF(("sci_ixfer_out {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
450 1.1 chopps len, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5],
451 1.1 chopps buf[6], buf[7], buf[8], buf[9]));
452 1.1 chopps
453 1.1 chopps *dev->sci_tcmd = phase;
454 1.1 chopps *dev->sci_icmd = SCI_ICMD_DATA;
455 1.1 chopps for (;len > 0; len--) {
456 1.1 chopps csr = *dev->sci_bus_csr;
457 1.1 chopps while (!(csr & SCI_BUS_REQ)) {
458 1.1 chopps if ((csr & SCI_BUS_BSY) == 0 || --wait < 0) {
459 1.1 chopps #ifdef DEBUG
460 1.1 chopps if (sci_debug)
461 1.19 christos printf("sci_ixfer_out fail: l%d i%x w%d\n",
462 1.1 chopps len, csr, wait);
463 1.1 chopps #endif
464 1.1 chopps return (len);
465 1.1 chopps }
466 1.6 chopps delay(1);
467 1.1 chopps csr = *dev->sci_bus_csr;
468 1.1 chopps }
469 1.1 chopps
470 1.1 chopps if (!(*dev->sci_csr & SCI_CSR_PHASE_MATCH))
471 1.1 chopps break;
472 1.1 chopps *dev->sci_odata = *buf;
473 1.1 chopps *dev->sci_icmd = SCI_ICMD_DATA|SCI_ICMD_ACK;
474 1.1 chopps buf++;
475 1.1 chopps while (*dev->sci_bus_csr & SCI_BUS_REQ);
476 1.1 chopps *dev->sci_icmd = SCI_ICMD_DATA;
477 1.1 chopps }
478 1.1 chopps
479 1.5 chopps QPRINTF(("sci_ixfer_out done\n"));
480 1.1 chopps return (0);
481 1.1 chopps }
482 1.1 chopps
483 1.5 chopps void
484 1.5 chopps sci_ixfer_in(dev, len, buf, phase)
485 1.1 chopps struct sci_softc *dev;
486 1.1 chopps int len;
487 1.1 chopps register u_char *buf;
488 1.1 chopps int phase;
489 1.1 chopps {
490 1.1 chopps int wait = sci_data_wait;
491 1.1 chopps u_char csr;
492 1.1 chopps volatile register u_char *sci_bus_csr = dev->sci_bus_csr;
493 1.1 chopps volatile register u_char *sci_data = dev->sci_data;
494 1.1 chopps volatile register u_char *sci_icmd = dev->sci_icmd;
495 1.16 veego #ifdef DEBUG
496 1.16 veego u_char *obp = buf;
497 1.16 veego #endif
498 1.1 chopps
499 1.1 chopps csr = *sci_bus_csr;
500 1.1 chopps
501 1.5 chopps QPRINTF(("sci_ixfer_in %d, csr=%02x\n", len, csr));
502 1.1 chopps
503 1.1 chopps *dev->sci_tcmd = phase;
504 1.1 chopps *sci_icmd = 0;
505 1.1 chopps for (;len > 0; len--) {
506 1.1 chopps csr = *sci_bus_csr;
507 1.1 chopps while (!(csr & SCI_BUS_REQ)) {
508 1.1 chopps if (!(csr & SCI_BUS_BSY) || --wait < 0) {
509 1.1 chopps #ifdef DEBUG
510 1.1 chopps if (sci_debug)
511 1.19 christos printf("sci_ixfer_in fail: l%d i%x w%d\n",
512 1.1 chopps len, csr, wait);
513 1.1 chopps #endif
514 1.1 chopps return;
515 1.1 chopps }
516 1.1 chopps
517 1.6 chopps delay(1);
518 1.1 chopps csr = *sci_bus_csr;
519 1.1 chopps }
520 1.1 chopps
521 1.1 chopps if (!(*dev->sci_csr & SCI_CSR_PHASE_MATCH))
522 1.1 chopps break;
523 1.1 chopps *buf = *sci_data;
524 1.1 chopps *sci_icmd = SCI_ICMD_ACK;
525 1.1 chopps buf++;
526 1.1 chopps while (*sci_bus_csr & SCI_BUS_REQ);
527 1.1 chopps *sci_icmd = 0;
528 1.1 chopps }
529 1.1 chopps
530 1.5 chopps QPRINTF(("sci_ixfer_in {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
531 1.1 chopps len, obp[0], obp[1], obp[2], obp[3], obp[4], obp[5],
532 1.1 chopps obp[6], obp[7], obp[8], obp[9]));
533 1.1 chopps }
534 1.1 chopps
535 1.1 chopps /*
536 1.1 chopps * SCSI 'immediate' command: issue a command to some SCSI device
537 1.1 chopps * and get back an 'immediate' response (i.e., do programmed xfer
538 1.1 chopps * to get the response data). 'cbuf' is a buffer containing a scsi
539 1.1 chopps * command of length clen bytes. 'buf' is a buffer of length 'len'
540 1.1 chopps * bytes for data. The transfer direction is determined by the device
541 1.1 chopps * (i.e., by the scsi bus data xfer phase). If 'len' is zero, the
542 1.1 chopps * command must supply no data. 'xferphase' is the bus phase the
543 1.1 chopps * caller expects to happen after the command is issued. It should
544 1.1 chopps * be one of DATA_IN_PHASE, DATA_OUT_PHASE or STATUS_PHASE.
545 1.1 chopps */
546 1.5 chopps int
547 1.5 chopps sciicmd(dev, target, cbuf, clen, buf, len, xferphase)
548 1.1 chopps struct sci_softc *dev;
549 1.5 chopps void *cbuf, *buf;
550 1.5 chopps int clen, len;
551 1.1 chopps u_char xferphase;
552 1.1 chopps {
553 1.16 veego u_char phase;
554 1.1 chopps register int wait;
555 1.1 chopps
556 1.1 chopps /* select the SCSI bus (it's an error if bus isn't free) */
557 1.5 chopps if (sciselectbus (dev, target, dev->sc_scsi_addr))
558 1.1 chopps return -1;
559 1.1 chopps /*
560 1.1 chopps * Wait for a phase change (or error) then let the device
561 1.1 chopps * sequence us through the various SCSI phases.
562 1.1 chopps */
563 1.1 chopps dev->sc_stat[0] = 0xff;
564 1.1 chopps dev->sc_msg[0] = 0xff;
565 1.1 chopps phase = CMD_PHASE;
566 1.1 chopps while (1) {
567 1.1 chopps wait = sci_cmd_wait;
568 1.1 chopps
569 1.1 chopps while ((*dev->sci_bus_csr & (SCI_BUS_REQ|SCI_BUS_BSY)) == SCI_BUS_BSY);
570 1.1 chopps
571 1.1 chopps QPRINTF((">CSR:%02x<", *dev->sci_bus_csr));
572 1.1 chopps if ((*dev->sci_bus_csr & SCI_BUS_REQ) == 0) {
573 1.1 chopps return -1;
574 1.1 chopps }
575 1.1 chopps phase = SCI_PHASE(*dev->sci_bus_csr);
576 1.1 chopps
577 1.1 chopps switch (phase) {
578 1.1 chopps case CMD_PHASE:
579 1.5 chopps if (sci_ixfer_out (dev, clen, cbuf, phase))
580 1.1 chopps goto abort;
581 1.1 chopps phase = xferphase;
582 1.1 chopps break;
583 1.1 chopps
584 1.1 chopps case DATA_IN_PHASE:
585 1.1 chopps if (len <= 0)
586 1.1 chopps goto abort;
587 1.1 chopps wait = sci_data_wait;
588 1.5 chopps sci_ixfer_in (dev, len, buf, phase);
589 1.1 chopps phase = STATUS_PHASE;
590 1.1 chopps break;
591 1.1 chopps
592 1.1 chopps case DATA_OUT_PHASE:
593 1.1 chopps if (len <= 0)
594 1.1 chopps goto abort;
595 1.1 chopps wait = sci_data_wait;
596 1.5 chopps if (sci_ixfer_out (dev, len, buf, phase))
597 1.1 chopps goto abort;
598 1.1 chopps phase = STATUS_PHASE;
599 1.1 chopps break;
600 1.1 chopps
601 1.1 chopps case MESG_IN_PHASE:
602 1.1 chopps dev->sc_msg[0] = 0xff;
603 1.5 chopps sci_ixfer_in (dev, 1, dev->sc_msg,phase);
604 1.1 chopps dev->sc_flags &= ~SCI_SELECTED;
605 1.1 chopps while (*dev->sci_bus_csr & SCI_BUS_BSY);
606 1.1 chopps goto out;
607 1.1 chopps break;
608 1.1 chopps
609 1.1 chopps case MESG_OUT_PHASE:
610 1.1 chopps phase = STATUS_PHASE;
611 1.1 chopps break;
612 1.1 chopps
613 1.1 chopps case STATUS_PHASE:
614 1.5 chopps sci_ixfer_in (dev, 1, dev->sc_stat, phase);
615 1.1 chopps phase = MESG_IN_PHASE;
616 1.1 chopps break;
617 1.1 chopps
618 1.1 chopps case BUS_FREE_PHASE:
619 1.1 chopps goto out;
620 1.1 chopps
621 1.1 chopps default:
622 1.19 christos printf("sci: unexpected phase %d in icmd from %d\n",
623 1.1 chopps phase, target);
624 1.1 chopps goto abort;
625 1.1 chopps }
626 1.1 chopps #if 0
627 1.1 chopps if (wait <= 0)
628 1.1 chopps goto abort;
629 1.1 chopps #endif
630 1.1 chopps }
631 1.1 chopps
632 1.1 chopps abort:
633 1.5 chopps sciabort(dev, "icmd");
634 1.1 chopps out:
635 1.1 chopps QPRINTF(("=STS:%02x=", dev->sc_stat[0]));
636 1.1 chopps return (dev->sc_stat[0]);
637 1.1 chopps }
638 1.1 chopps
639 1.1 chopps int
640 1.5 chopps scigo(dev, xs)
641 1.5 chopps struct sci_softc *dev;
642 1.20 bouyer struct scsipi_xfer *xs;
643 1.1 chopps {
644 1.16 veego int count, target;
645 1.16 veego u_char phase, *addr;
646 1.5 chopps
647 1.20 bouyer target = xs->sc_link->scsipi_scsi.target;
648 1.5 chopps count = xs->datalen;
649 1.5 chopps addr = xs->data;
650 1.1 chopps
651 1.1 chopps if (sci_no_dma) {
652 1.5 chopps sciicmd (dev, target, (u_char *) xs->cmd, xs->cmdlen,
653 1.1 chopps addr, count,
654 1.21 thorpej xs->xs_control & XS_CTL_DATA_IN ? DATA_IN_PHASE : DATA_OUT_PHASE);
655 1.1 chopps
656 1.5 chopps return (1);
657 1.1 chopps }
658 1.1 chopps
659 1.1 chopps /* select the SCSI bus (it's an error if bus isn't free) */
660 1.5 chopps if (sciselectbus (dev, target, dev->sc_scsi_addr))
661 1.1 chopps return -1;
662 1.1 chopps /*
663 1.1 chopps * Wait for a phase change (or error) then let the device
664 1.1 chopps * sequence us through the various SCSI phases.
665 1.1 chopps */
666 1.1 chopps dev->sc_stat[0] = 0xff;
667 1.1 chopps dev->sc_msg[0] = 0xff;
668 1.1 chopps phase = CMD_PHASE;
669 1.1 chopps while (1) {
670 1.1 chopps while ((*dev->sci_bus_csr & (SCI_BUS_REQ|SCI_BUS_BSY)) ==
671 1.1 chopps SCI_BUS_BSY);
672 1.1 chopps
673 1.1 chopps QPRINTF((">CSR:%02x<", *dev->sci_bus_csr));
674 1.1 chopps if ((*dev->sci_bus_csr & SCI_BUS_REQ) == 0) {
675 1.1 chopps goto abort;
676 1.1 chopps }
677 1.1 chopps phase = SCI_PHASE(*dev->sci_bus_csr);
678 1.1 chopps
679 1.1 chopps switch (phase) {
680 1.1 chopps case CMD_PHASE:
681 1.16 veego if (sci_ixfer_out (dev, xs->cmdlen, (u_char *) xs->cmd, phase))
682 1.1 chopps goto abort;
683 1.21 thorpej phase = xs->xs_control & XS_CTL_DATA_IN ? DATA_IN_PHASE : DATA_OUT_PHASE;
684 1.1 chopps break;
685 1.1 chopps
686 1.1 chopps case DATA_IN_PHASE:
687 1.1 chopps if (count <= 0)
688 1.1 chopps goto abort;
689 1.1 chopps /* XXX use psuedo DMA if available */
690 1.1 chopps if (count >= 128 && dev->dma_xfer_in)
691 1.1 chopps (*dev->dma_xfer_in)(dev, count, addr, phase);
692 1.1 chopps else
693 1.5 chopps sci_ixfer_in (dev, count, addr, phase);
694 1.1 chopps phase = STATUS_PHASE;
695 1.1 chopps break;
696 1.1 chopps
697 1.1 chopps case DATA_OUT_PHASE:
698 1.1 chopps if (count <= 0)
699 1.1 chopps goto abort;
700 1.1 chopps /* XXX use psuedo DMA if available */
701 1.1 chopps if (count >= 128 && dev->dma_xfer_out)
702 1.1 chopps (*dev->dma_xfer_out)(dev, count, addr, phase);
703 1.1 chopps else
704 1.5 chopps if (sci_ixfer_out (dev, count, addr, phase))
705 1.1 chopps goto abort;
706 1.1 chopps phase = STATUS_PHASE;
707 1.1 chopps break;
708 1.1 chopps
709 1.1 chopps case MESG_IN_PHASE:
710 1.1 chopps dev->sc_msg[0] = 0xff;
711 1.5 chopps sci_ixfer_in (dev, 1, dev->sc_msg,phase);
712 1.1 chopps dev->sc_flags &= ~SCI_SELECTED;
713 1.1 chopps while (*dev->sci_bus_csr & SCI_BUS_BSY);
714 1.1 chopps goto out;
715 1.1 chopps break;
716 1.1 chopps
717 1.1 chopps case MESG_OUT_PHASE:
718 1.1 chopps phase = STATUS_PHASE;
719 1.1 chopps break;
720 1.1 chopps
721 1.1 chopps case STATUS_PHASE:
722 1.5 chopps sci_ixfer_in (dev, 1, dev->sc_stat, phase);
723 1.1 chopps phase = MESG_IN_PHASE;
724 1.1 chopps break;
725 1.1 chopps
726 1.1 chopps case BUS_FREE_PHASE:
727 1.1 chopps goto out;
728 1.1 chopps
729 1.1 chopps default:
730 1.19 christos printf("sci: unexpected phase %d in icmd from %d\n",
731 1.5 chopps phase, target);
732 1.1 chopps goto abort;
733 1.1 chopps }
734 1.1 chopps }
735 1.1 chopps
736 1.1 chopps abort:
737 1.5 chopps sciabort(dev, "go");
738 1.1 chopps out:
739 1.1 chopps QPRINTF(("=STS:%02x=", dev->sc_stat[0]));
740 1.5 chopps return (1);
741 1.1 chopps }
742