siop_common.c revision 1.9 1 1.9 bouyer /* $NetBSD: siop_common.c,v 1.9 2000/10/18 17:06:52 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.1 bouyer * This product includes software developed by Manuel Bouyer
17 1.1 bouyer * 4. The name of the author may not be used to endorse or promote products
18 1.1 bouyer * derived from this software without specific prior written permission.
19 1.1 bouyer *
20 1.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.1 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.1 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.1 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.1 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.1 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.1 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.1 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.1 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.1 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.1 bouyer *
31 1.1 bouyer */
32 1.1 bouyer
33 1.1 bouyer /* SYM53c7/8xx PCI-SCSI I/O Processors driver */
34 1.1 bouyer
35 1.1 bouyer #include <sys/param.h>
36 1.1 bouyer #include <sys/systm.h>
37 1.1 bouyer #include <sys/device.h>
38 1.1 bouyer #include <sys/malloc.h>
39 1.1 bouyer #include <sys/buf.h>
40 1.1 bouyer #include <sys/kernel.h>
41 1.1 bouyer #include <sys/scsiio.h>
42 1.1 bouyer
43 1.1 bouyer #include <machine/endian.h>
44 1.1 bouyer #include <machine/bus.h>
45 1.1 bouyer
46 1.1 bouyer #include <dev/scsipi/scsi_all.h>
47 1.1 bouyer #include <dev/scsipi/scsi_message.h>
48 1.1 bouyer #include <dev/scsipi/scsipi_all.h>
49 1.1 bouyer
50 1.1 bouyer #include <dev/scsipi/scsiconf.h>
51 1.1 bouyer
52 1.1 bouyer #include <dev/ic/siopreg.h>
53 1.1 bouyer #include <dev/ic/siopvar.h>
54 1.1 bouyer #include <dev/ic/siopvar_common.h>
55 1.1 bouyer
56 1.2 bouyer #undef DEBUG
57 1.2 bouyer #undef DEBUG_DR
58 1.1 bouyer
59 1.1 bouyer void
60 1.1 bouyer siop_common_reset(sc)
61 1.1 bouyer struct siop_softc *sc;
62 1.1 bouyer {
63 1.1 bouyer u_int32_t stest3;
64 1.1 bouyer
65 1.1 bouyer /* reset the chip */
66 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT, ISTAT_SRST);
67 1.1 bouyer delay(1000);
68 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_ISTAT, 0);
69 1.1 bouyer
70 1.1 bouyer /* init registers */
71 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL0,
72 1.1 bouyer SCNTL0_ARB_MASK | SCNTL0_EPC | SCNTL0_AAP);
73 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1, 0);
74 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL3, sc->clock_div);
75 1.7 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SXFER, 0);
76 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_DIEN, 0xff);
77 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SIEN0,
78 1.1 bouyer 0xff & ~(SIEN0_CMP | SIEN0_SEL | SIEN0_RSL));
79 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SIEN1,
80 1.1 bouyer 0xff & ~(SIEN1_HTH | SIEN1_GEN));
81 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2, 0);
82 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3, STEST3_TE);
83 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STIME0,
84 1.1 bouyer (0xb << STIME0_SEL_SHIFT));
85 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCID,
86 1.1 bouyer sc->sc_link.scsipi_scsi.adapter_target | SCID_RRE);
87 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_RESPID0,
88 1.1 bouyer 1 << sc->sc_link.scsipi_scsi.adapter_target);
89 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_DCNTL,
90 1.1 bouyer (sc->features & SF_CHIP_PF) ? DCNTL_COM | DCNTL_PFEN : DCNTL_COM);
91 1.1 bouyer
92 1.1 bouyer /* enable clock doubler or quadruler if appropriate */
93 1.1 bouyer if (sc->features & (SF_CHIP_DBLR | SF_CHIP_QUAD)) {
94 1.1 bouyer stest3 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3);
95 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST1,
96 1.1 bouyer STEST1_DBLEN);
97 1.1 bouyer if (sc->features & SF_CHIP_QUAD) {
98 1.1 bouyer /* wait for PPL to lock */
99 1.1 bouyer while ((bus_space_read_1(sc->sc_rt, sc->sc_rh,
100 1.1 bouyer SIOP_STEST4) & STEST4_LOCK) == 0)
101 1.1 bouyer delay(10);
102 1.1 bouyer } else {
103 1.1 bouyer /* data sheet says 20us - more won't hurt */
104 1.1 bouyer delay(100);
105 1.1 bouyer }
106 1.1 bouyer /* halt scsi clock, select doubler/quad, restart clock */
107 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3,
108 1.1 bouyer stest3 | STEST3_HSC);
109 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST1,
110 1.1 bouyer STEST1_DBLEN | STEST1_DBLSEL);
111 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST3, stest3);
112 1.1 bouyer } else {
113 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST1, 0);
114 1.1 bouyer }
115 1.1 bouyer if (sc->features & SF_CHIP_FIFO)
116 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST5,
117 1.1 bouyer bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST5) |
118 1.1 bouyer CTEST5_DFS);
119 1.1 bouyer
120 1.1 bouyer sc->sc_reset(sc);
121 1.1 bouyer }
122 1.1 bouyer
123 1.1 bouyer int
124 1.1 bouyer siop_wdtr_neg(siop_cmd)
125 1.1 bouyer struct siop_cmd *siop_cmd;
126 1.1 bouyer {
127 1.9 bouyer struct siop_softc *sc = siop_cmd->siop_sc;
128 1.1 bouyer struct siop_target *siop_target = siop_cmd->siop_target;
129 1.1 bouyer int target = siop_cmd->xs->sc_link->scsipi_scsi.target;
130 1.9 bouyer struct siop_xfer_common *tables = &siop_cmd->siop_xfer->tables;
131 1.1 bouyer
132 1.1 bouyer if (siop_target->status == TARST_WIDE_NEG) {
133 1.1 bouyer /* we initiated wide negotiation */
134 1.9 bouyer switch (tables->msg_in[3]) {
135 1.1 bouyer case MSG_EXT_WDTR_BUS_8_BIT:
136 1.1 bouyer printf("%s: target %d using 8bit transfers\n",
137 1.1 bouyer sc->sc_dev.dv_xname, target);
138 1.9 bouyer siop_target->flags &= ~TARF_ISWIDE;
139 1.1 bouyer sc->targets[target]->id &= ~(SCNTL3_EWS << 24);
140 1.1 bouyer break;
141 1.1 bouyer case MSG_EXT_WDTR_BUS_16_BIT:
142 1.9 bouyer if (siop_target->flags & TARF_WIDE) {
143 1.1 bouyer printf("%s: target %d using 16bit transfers\n",
144 1.1 bouyer sc->sc_dev.dv_xname, target);
145 1.9 bouyer siop_target->flags |= TARF_ISWIDE;
146 1.1 bouyer sc->targets[target]->id |= (SCNTL3_EWS << 24);
147 1.1 bouyer break;
148 1.1 bouyer }
149 1.1 bouyer /* FALLTHROUH */
150 1.1 bouyer default:
151 1.1 bouyer /*
152 1.1 bouyer * hum, we got more than what we can handle, shoudn't
153 1.1 bouyer * happen. Reject, and stay async
154 1.1 bouyer */
155 1.9 bouyer siop_target->flags &= ~TARF_ISWIDE;
156 1.1 bouyer siop_target->status = TARST_OK;
157 1.1 bouyer printf("%s: rejecting invalid wide negotiation from "
158 1.1 bouyer "target %d (%d)\n", sc->sc_dev.dv_xname, target,
159 1.9 bouyer tables->msg_in[3]);
160 1.9 bouyer tables->t_msgout.count= htole32(1);
161 1.9 bouyer tables->t_msgout.addr = htole32(siop_cmd->dsa);
162 1.9 bouyer tables->msg_out[0] = MSG_MESSAGE_REJECT;
163 1.1 bouyer return SIOP_NEG_MSGOUT;
164 1.1 bouyer }
165 1.9 bouyer tables->id = htole32(sc->targets[target]->id);
166 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh,
167 1.1 bouyer SIOP_SCNTL3,
168 1.1 bouyer (sc->targets[target]->id >> 24) & 0xff);
169 1.1 bouyer /* we now need to do sync */
170 1.9 bouyer if (siop_target->flags & TARF_SYNC) {
171 1.6 bouyer siop_target->status = TARST_SYNC_NEG;
172 1.9 bouyer tables->msg_out[0] = MSG_EXTENDED;
173 1.9 bouyer tables->msg_out[1] = MSG_EXT_SDTR_LEN;
174 1.9 bouyer tables->msg_out[2] = MSG_EXT_SDTR;
175 1.9 bouyer tables->msg_out[3] = sc->minsync;
176 1.9 bouyer tables->msg_out[4] = sc->maxoff;
177 1.9 bouyer tables->t_msgout.count = htole32(MSG_EXT_SDTR_LEN + 2);
178 1.9 bouyer tables->t_msgout.addr = htole32(siop_cmd->dsa);
179 1.6 bouyer return SIOP_NEG_MSGOUT;
180 1.6 bouyer } else {
181 1.6 bouyer siop_target->status = TARST_OK;
182 1.6 bouyer return SIOP_NEG_ACK;
183 1.6 bouyer }
184 1.1 bouyer } else {
185 1.1 bouyer /* target initiated wide negotiation */
186 1.9 bouyer if (tables->msg_in[3] >= MSG_EXT_WDTR_BUS_16_BIT
187 1.9 bouyer && (siop_target->flags & TARF_WIDE)) {
188 1.1 bouyer printf("%s: target %d using 16bit transfers\n",
189 1.1 bouyer sc->sc_dev.dv_xname, target);
190 1.9 bouyer siop_target->flags |= TARF_ISWIDE;
191 1.1 bouyer sc->targets[target]->id |= SCNTL3_EWS << 24;
192 1.9 bouyer tables->msg_out[3] = MSG_EXT_WDTR_BUS_16_BIT;
193 1.1 bouyer } else {
194 1.1 bouyer printf("%s: target %d using 8bit transfers\n",
195 1.1 bouyer sc->sc_dev.dv_xname, target);
196 1.9 bouyer siop_target->flags &= ~TARF_ISWIDE;
197 1.1 bouyer sc->targets[target]->id &= ~(SCNTL3_EWS << 24);
198 1.9 bouyer tables->msg_out[3] = MSG_EXT_WDTR_BUS_8_BIT;
199 1.1 bouyer }
200 1.9 bouyer tables->id = htole32(sc->targets[target]->id);
201 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL3,
202 1.1 bouyer (sc->targets[target]->id >> 24) & 0xff);
203 1.1 bouyer /*
204 1.1 bouyer * we did reset wide parameters, so fall back to async,
205 1.8 bouyer * but don't schedule a sync neg, target should initiate it
206 1.1 bouyer */
207 1.1 bouyer siop_target->status = TARST_OK;
208 1.9 bouyer tables->msg_out[0] = MSG_EXTENDED;
209 1.9 bouyer tables->msg_out[1] = MSG_EXT_WDTR_LEN;
210 1.9 bouyer tables->msg_out[2] = MSG_EXT_WDTR;
211 1.9 bouyer tables->t_msgout.count=
212 1.1 bouyer htole32(MSG_EXT_WDTR_LEN + 2);
213 1.9 bouyer tables->t_msgout.addr = htole32(siop_cmd->dsa);
214 1.1 bouyer return SIOP_NEG_MSGOUT;
215 1.1 bouyer }
216 1.1 bouyer }
217 1.1 bouyer
218 1.1 bouyer int
219 1.1 bouyer siop_sdtr_neg(siop_cmd)
220 1.1 bouyer struct siop_cmd *siop_cmd;
221 1.1 bouyer {
222 1.9 bouyer struct siop_softc *sc = siop_cmd->siop_sc;
223 1.1 bouyer struct siop_target *siop_target = siop_cmd->siop_target;
224 1.1 bouyer int target = siop_cmd->xs->sc_link->scsipi_scsi.target;
225 1.1 bouyer int sync, offset, i;
226 1.1 bouyer int send_msgout = 0;
227 1.9 bouyer struct siop_xfer_common *tables = &siop_cmd->siop_xfer->tables;
228 1.1 bouyer
229 1.9 bouyer sync = tables->msg_in[3];
230 1.9 bouyer offset = tables->msg_in[4];
231 1.1 bouyer
232 1.1 bouyer if (siop_target->status == TARST_SYNC_NEG) {
233 1.1 bouyer /* we initiated sync negotiation */
234 1.1 bouyer siop_target->status = TARST_OK;
235 1.1 bouyer #ifdef DEBUG
236 1.1 bouyer printf("sdtr: sync %d offset %d\n", sync, offset);
237 1.1 bouyer #endif
238 1.1 bouyer if (offset > sc->maxoff || sync < sc->minsync ||
239 1.1 bouyer sync > sc->maxsync)
240 1.1 bouyer goto reject;
241 1.1 bouyer for (i = 0; i < sizeof(scf_period) / sizeof(scf_period[0]);
242 1.1 bouyer i++) {
243 1.1 bouyer if (sc->clock_period != scf_period[i].clock)
244 1.1 bouyer continue;
245 1.1 bouyer if (scf_period[i].period == sync) {
246 1.1 bouyer /* ok, found it. we now are sync. */
247 1.1 bouyer printf("%s: target %d now synchronous at "
248 1.1 bouyer "%sMhz, offset %d\n", sc->sc_dev.dv_xname,
249 1.1 bouyer target, scf_period[i].rate, offset);
250 1.1 bouyer sc->targets[target]->id &=
251 1.1 bouyer ~(SCNTL3_SCF_MASK << 24);
252 1.1 bouyer sc->targets[target]->id |= scf_period[i].scf
253 1.1 bouyer << (24 + SCNTL3_SCF_SHIFT);
254 1.1 bouyer if (sync < 25) /* Ultra */
255 1.1 bouyer sc->targets[target]->id |=
256 1.1 bouyer SCNTL3_ULTRA << 24;
257 1.1 bouyer else
258 1.1 bouyer sc->targets[target]->id &=
259 1.1 bouyer ~(SCNTL3_ULTRA << 24);
260 1.1 bouyer sc->targets[target]->id &=
261 1.7 bouyer ~(SXFER_MO_MASK << 8);
262 1.1 bouyer sc->targets[target]->id |=
263 1.7 bouyer (offset & SXFER_MO_MASK) << 8;
264 1.1 bouyer goto end;
265 1.1 bouyer }
266 1.1 bouyer }
267 1.1 bouyer /*
268 1.1 bouyer * we didn't find it in our table, do async and send reject
269 1.1 bouyer * msg
270 1.1 bouyer */
271 1.1 bouyer reject:
272 1.1 bouyer send_msgout = 1;
273 1.9 bouyer tables->t_msgout.count= htole32(1);
274 1.9 bouyer tables->msg_out[0] = MSG_MESSAGE_REJECT;
275 1.1 bouyer printf("%s: target %d asynchronous\n", sc->sc_dev.dv_xname,
276 1.1 bouyer target);
277 1.1 bouyer sc->targets[target]->id &= ~(SCNTL3_SCF_MASK << 24);
278 1.1 bouyer sc->targets[target]->id &= ~(SCNTL3_ULTRA << 24);
279 1.7 bouyer sc->targets[target]->id &= ~(SXFER_MO_MASK << 8);
280 1.1 bouyer } else { /* target initiated sync neg */
281 1.1 bouyer #ifdef DEBUG
282 1.1 bouyer printf("sdtr (target): sync %d offset %d\n", sync, offset);
283 1.1 bouyer #endif
284 1.1 bouyer if (offset == 0 || sync > sc->maxsync) { /* async */
285 1.1 bouyer goto async;
286 1.1 bouyer }
287 1.1 bouyer if (offset > sc->maxoff)
288 1.1 bouyer offset = sc->maxoff;
289 1.1 bouyer if (sync < sc->minsync)
290 1.1 bouyer sync = sc->minsync;
291 1.1 bouyer /* look for sync period */
292 1.1 bouyer for (i = 0; i < sizeof(scf_period) / sizeof(scf_period[0]);
293 1.1 bouyer i++) {
294 1.1 bouyer if (sc->clock_period != scf_period[i].clock)
295 1.1 bouyer continue;
296 1.1 bouyer if (scf_period[i].period == sync) {
297 1.1 bouyer /* ok, found it. we now are sync. */
298 1.1 bouyer printf("%s: target %d now synchronous at "
299 1.1 bouyer "%sMhz, offset %d\n", sc->sc_dev.dv_xname,
300 1.1 bouyer target, scf_period[i].rate, offset);
301 1.1 bouyer sc->targets[target]->id &=
302 1.1 bouyer ~(SCNTL3_SCF_MASK << 24);
303 1.1 bouyer sc->targets[target]->id |= scf_period[i].scf
304 1.1 bouyer << (24 + SCNTL3_SCF_SHIFT);
305 1.1 bouyer if (sync < 25) /* Ultra */
306 1.1 bouyer sc->targets[target]->id |=
307 1.1 bouyer SCNTL3_ULTRA << 24;
308 1.1 bouyer else
309 1.1 bouyer sc->targets[target]->id &=
310 1.1 bouyer ~(SCNTL3_ULTRA << 24);
311 1.1 bouyer sc->targets[target]->id &=
312 1.7 bouyer ~(SXFER_MO_MASK << 8);
313 1.1 bouyer sc->targets[target]->id |=
314 1.7 bouyer (offset & SXFER_MO_MASK) << 8;
315 1.9 bouyer tables->msg_out[0] = MSG_EXTENDED;
316 1.9 bouyer tables->msg_out[1] = MSG_EXT_SDTR_LEN;
317 1.9 bouyer tables->msg_out[2] = MSG_EXT_SDTR;
318 1.9 bouyer tables->msg_out[3] = sync;
319 1.9 bouyer tables->msg_out[4] = offset;
320 1.9 bouyer tables->t_msgout.count=
321 1.1 bouyer htole32(MSG_EXT_SDTR_LEN + 2);
322 1.1 bouyer send_msgout = 1;
323 1.1 bouyer goto end;
324 1.1 bouyer }
325 1.1 bouyer }
326 1.1 bouyer async:
327 1.1 bouyer printf("%s: target %d asynchronous\n",
328 1.1 bouyer sc->sc_dev.dv_xname, target);
329 1.1 bouyer sc->targets[target]->id &= ~(SCNTL3_SCF_MASK << 24);
330 1.1 bouyer sc->targets[target]->id &= ~(SCNTL3_ULTRA << 24);
331 1.7 bouyer sc->targets[target]->id &= ~(SXFER_MO_MASK << 8);
332 1.9 bouyer tables->msg_out[0] = MSG_EXTENDED;
333 1.9 bouyer tables->msg_out[1] = MSG_EXT_SDTR_LEN;
334 1.9 bouyer tables->msg_out[2] = MSG_EXT_SDTR;
335 1.9 bouyer tables->msg_out[3] = 0;
336 1.9 bouyer tables->msg_out[4] = 0;
337 1.9 bouyer tables->t_msgout.count=
338 1.1 bouyer htole32(MSG_EXT_SDTR_LEN + 2);
339 1.1 bouyer send_msgout = 1;
340 1.1 bouyer }
341 1.1 bouyer end:
342 1.1 bouyer #ifdef DEBUG
343 1.1 bouyer printf("id now 0x%x\n", sc->targets[target]->id);
344 1.1 bouyer #endif
345 1.9 bouyer tables->id = htole32(sc->targets[target]->id);
346 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL3,
347 1.1 bouyer (sc->targets[target]->id >> 24) & 0xff);
348 1.7 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SXFER,
349 1.1 bouyer (sc->targets[target]->id >> 8) & 0xff);
350 1.1 bouyer if (send_msgout) {
351 1.9 bouyer tables->t_msgout.addr = htole32(siop_cmd->dsa);
352 1.1 bouyer return SIOP_NEG_MSGOUT;
353 1.1 bouyer } else {
354 1.1 bouyer return SIOP_NEG_ACK;
355 1.1 bouyer }
356 1.1 bouyer }
357 1.1 bouyer
358 1.1 bouyer void
359 1.1 bouyer siop_minphys(bp)
360 1.1 bouyer struct buf *bp;
361 1.1 bouyer {
362 1.1 bouyer minphys(bp);
363 1.1 bouyer }
364 1.1 bouyer
365 1.1 bouyer int
366 1.1 bouyer siop_ioctl(link, cmd, arg, flag, p)
367 1.1 bouyer struct scsipi_link *link;
368 1.1 bouyer u_long cmd;
369 1.1 bouyer caddr_t arg;
370 1.1 bouyer int flag;
371 1.1 bouyer struct proc *p;
372 1.1 bouyer {
373 1.1 bouyer struct siop_softc *sc = link->adapter_softc;
374 1.1 bouyer u_int8_t scntl1;
375 1.1 bouyer int s;
376 1.1 bouyer
377 1.1 bouyer switch (cmd) {
378 1.9 bouyer case SCBUSACCEL:
379 1.9 bouyer {
380 1.9 bouyer struct scbusaccel_args *sp = (struct scbusaccel_args *)arg;
381 1.9 bouyer s = splbio();
382 1.9 bouyer if (sp->sa_lun == 0) {
383 1.9 bouyer #if 0
384 1.9 bouyer if (sp->sa_flags & SC_ACCEL_TAGS) {
385 1.9 bouyer sc->targets[sp->sa_target]->flags |= TARF_TAG;
386 1.9 bouyer printf("%s: target %d using tagged queuing\n",
387 1.9 bouyer sc->sc_dev.dv_xname, sp->sa_target);
388 1.9 bouyer }
389 1.9 bouyer #endif
390 1.9 bouyer if ((sp->sa_flags & SC_ACCEL_WIDE) &&
391 1.9 bouyer (sc->features & SF_BUS_WIDE))
392 1.9 bouyer sc->targets[sp->sa_target]->flags |= TARF_WIDE;
393 1.9 bouyer if (sp->sa_flags & SC_ACCEL_SYNC)
394 1.9 bouyer sc->targets[sp->sa_target]->flags |= TARF_SYNC;
395 1.9 bouyer if (sp->sa_flags & (SC_ACCEL_SYNC | SC_ACCEL_WIDE) &&
396 1.9 bouyer sc->targets[sp->sa_target]->status > TARST_ASYNC)
397 1.9 bouyer sc->targets[sp->sa_target]->status =
398 1.9 bouyer TARST_ASYNC;
399 1.9 bouyer }
400 1.9 bouyer splx(s);
401 1.9 bouyer return 0;
402 1.9 bouyer }
403 1.1 bouyer case SCBUSIORESET:
404 1.1 bouyer s = splbio();
405 1.1 bouyer scntl1 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1);
406 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1,
407 1.1 bouyer scntl1 | SCNTL1_RST);
408 1.1 bouyer /* minimum 25 us, more time won't hurt */
409 1.1 bouyer delay(100);
410 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1, scntl1);
411 1.1 bouyer splx(s);
412 1.1 bouyer return (0);
413 1.1 bouyer default:
414 1.1 bouyer return (ENOTTY);
415 1.1 bouyer }
416 1.1 bouyer }
417 1.1 bouyer
418 1.1 bouyer void
419 1.1 bouyer siop_sdp(siop_cmd)
420 1.1 bouyer struct siop_cmd *siop_cmd;
421 1.1 bouyer {
422 1.1 bouyer /* save data pointer. Handle async only for now */
423 1.1 bouyer int offset, dbc, sstat;
424 1.9 bouyer struct siop_softc *sc = siop_cmd->siop_sc;
425 1.1 bouyer scr_table_t *table; /* table to patch */
426 1.1 bouyer
427 1.1 bouyer if ((siop_cmd->xs->xs_control & (XS_CTL_DATA_OUT | XS_CTL_DATA_IN))
428 1.1 bouyer == 0)
429 1.1 bouyer return; /* no data pointers to save */
430 1.1 bouyer offset = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SCRATCHA + 1);
431 1.1 bouyer if (offset >= SIOP_NSG) {
432 1.1 bouyer printf("%s: bad offset in siop_sdp (%d)\n",
433 1.1 bouyer sc->sc_dev.dv_xname, offset);
434 1.1 bouyer return;
435 1.1 bouyer }
436 1.9 bouyer table = &siop_cmd->siop_xfer->tables.data[offset];
437 1.1 bouyer #ifdef DEBUG_DR
438 1.1 bouyer printf("sdp: offset %d count=%d addr=0x%x ", offset,
439 1.1 bouyer table->count, table->addr);
440 1.1 bouyer #endif
441 1.1 bouyer dbc = bus_space_read_4(sc->sc_rt, sc->sc_rh, SIOP_DBC) & 0x00ffffff;
442 1.1 bouyer if (siop_cmd->xs->xs_control & XS_CTL_DATA_OUT) {
443 1.1 bouyer /* need to account stale data in FIFO */
444 1.1 bouyer int dfifo = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_DFIFO);
445 1.1 bouyer if (sc->features & SF_CHIP_FIFO) {
446 1.1 bouyer dfifo |= (bus_space_read_1(sc->sc_rt, sc->sc_rh,
447 1.1 bouyer SIOP_CTEST5) & CTEST5_BOMASK) << 8;
448 1.1 bouyer dbc += (dfifo - (dbc & 0x3ff)) & 0x3ff;
449 1.1 bouyer } else {
450 1.1 bouyer dbc += (dfifo - (dbc & 0x7f)) & 0x7f;
451 1.1 bouyer }
452 1.1 bouyer sstat = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SSTAT0);
453 1.1 bouyer if (sstat & SSTAT0_OLF)
454 1.1 bouyer dbc++;
455 1.1 bouyer if (sstat & SSTAT0_ORF)
456 1.1 bouyer dbc++;
457 1.9 bouyer if (siop_cmd->siop_target->flags & TARF_ISWIDE) {
458 1.1 bouyer sstat = bus_space_read_1(sc->sc_rt, sc->sc_rh,
459 1.1 bouyer SIOP_SSTAT2);
460 1.1 bouyer if (sstat & SSTAT2_OLF1)
461 1.1 bouyer dbc++;
462 1.1 bouyer if (sstat & SSTAT2_ORF1)
463 1.1 bouyer dbc++;
464 1.1 bouyer }
465 1.1 bouyer /* clear the FIFO */
466 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3,
467 1.1 bouyer bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3) |
468 1.1 bouyer CTEST3_CLF);
469 1.1 bouyer }
470 1.1 bouyer table->addr =
471 1.1 bouyer htole32(le32toh(table->addr) + le32toh(table->count) - dbc);
472 1.1 bouyer table->count = htole32(dbc);
473 1.1 bouyer #ifdef DEBUG_DR
474 1.1 bouyer printf("now count=%d addr=0x%x\n", table->count, table->addr);
475 1.1 bouyer #endif
476 1.1 bouyer }
477 1.1 bouyer
478 1.1 bouyer void
479 1.1 bouyer siop_clearfifo(sc)
480 1.1 bouyer struct siop_softc *sc;
481 1.1 bouyer {
482 1.1 bouyer int timeout = 0;
483 1.1 bouyer int ctest3 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3);
484 1.1 bouyer
485 1.1 bouyer #ifdef DEBUG_INTR
486 1.1 bouyer printf("DMA fifo not empty !\n");
487 1.1 bouyer #endif
488 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3,
489 1.1 bouyer ctest3 | CTEST3_CLF);
490 1.1 bouyer while ((bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3) &
491 1.1 bouyer CTEST3_CLF) != 0) {
492 1.1 bouyer delay(1);
493 1.1 bouyer if (++timeout > 1000) {
494 1.1 bouyer printf("clear fifo failed\n");
495 1.1 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3,
496 1.1 bouyer bus_space_read_1(sc->sc_rt, sc->sc_rh,
497 1.1 bouyer SIOP_CTEST3) & ~CTEST3_CLF);
498 1.1 bouyer return;
499 1.1 bouyer }
500 1.1 bouyer }
501 1.3 bouyer }
502 1.3 bouyer
503 1.3 bouyer int
504 1.3 bouyer siop_modechange(sc)
505 1.3 bouyer struct siop_softc *sc;
506 1.3 bouyer {
507 1.3 bouyer int retry;
508 1.3 bouyer int sist0, sist1, stest2, stest4;
509 1.3 bouyer for (retry = 0; retry < 5; retry++) {
510 1.3 bouyer /*
511 1.3 bouyer * datasheet says to wait 100ms and re-read SIST1,
512 1.3 bouyer * to check that DIFFSENSE is srable.
513 1.3 bouyer * We may delay() 5 times for 100ms at interrupt time;
514 1.3 bouyer * hopefully this will not happen often.
515 1.3 bouyer */
516 1.3 bouyer delay(100000);
517 1.3 bouyer sist0 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SIST0);
518 1.3 bouyer sist1 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SIST1);
519 1.3 bouyer if (sist1 & SIEN1_SBMC)
520 1.3 bouyer continue; /* we got an irq again */
521 1.3 bouyer stest4 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_STEST4) &
522 1.3 bouyer STEST4_MODE_MASK;
523 1.3 bouyer stest2 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2);
524 1.3 bouyer switch(stest4) {
525 1.3 bouyer case STEST4_MODE_DIF:
526 1.3 bouyer printf("%s: switching to differential mode\n",
527 1.3 bouyer sc->sc_dev.dv_xname);
528 1.3 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2,
529 1.3 bouyer stest2 | STEST2_DIF);
530 1.3 bouyer break;
531 1.3 bouyer case STEST4_MODE_SE:
532 1.3 bouyer printf("%s: switching to single-ended mode\n",
533 1.3 bouyer sc->sc_dev.dv_xname);
534 1.3 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2,
535 1.3 bouyer stest2 & ~STEST2_DIF);
536 1.3 bouyer break;
537 1.3 bouyer case STEST4_MODE_LVD:
538 1.3 bouyer printf("%s: switching to LVD mode\n",
539 1.3 bouyer sc->sc_dev.dv_xname);
540 1.3 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST2,
541 1.3 bouyer stest2 & ~STEST2_DIF);
542 1.3 bouyer break;
543 1.3 bouyer default:
544 1.3 bouyer printf("%s: invalid SCSI mode 0x%x\n",
545 1.3 bouyer sc->sc_dev.dv_xname, stest4);
546 1.3 bouyer return 0;
547 1.3 bouyer }
548 1.3 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_STEST0,
549 1.3 bouyer stest4 >> 2);
550 1.3 bouyer return 1;
551 1.3 bouyer }
552 1.3 bouyer printf("%s: timeout waiting for DIFFSENSE to stabilise\n",
553 1.3 bouyer sc->sc_dev.dv_xname);
554 1.3 bouyer return 0;
555 1.6 bouyer }
556 1.6 bouyer
557 1.6 bouyer void
558 1.6 bouyer siop_resetbus(sc)
559 1.6 bouyer struct siop_softc *sc;
560 1.6 bouyer {
561 1.6 bouyer int scntl1;
562 1.6 bouyer scntl1 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1);
563 1.6 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1,
564 1.6 bouyer scntl1 | SCNTL1_RST);
565 1.6 bouyer /* minimum 25 us, more time won't hurt */
566 1.6 bouyer delay(100);
567 1.6 bouyer bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_SCNTL1, scntl1);
568 1.1 bouyer }
569