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