wt.c revision 1.3 1 1.1 cgd /*-
2 1.1 cgd * Copyright (c) 1991 The Regents of the University of California.
3 1.1 cgd * All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd *
33 1.2 cgd * from: @(#)wt.c 7.1 (Berkeley) 5/9/91
34 1.3 cgd * $Id: wt.c,v 1.3 1993/07/19 16:44:38 cgd Exp $
35 1.1 cgd */
36 1.1 cgd
37 1.1 cgd /*
38 1.1 cgd *
39 1.1 cgd * Copyright (c) 1989 Carnegie-Mellon University.
40 1.1 cgd * All rights reserved.
41 1.1 cgd *
42 1.1 cgd * Authors: Robert Baron
43 1.1 cgd *
44 1.1 cgd * Permission to use, copy, modify and distribute this software and
45 1.1 cgd * its documentation is hereby granted, provided that both the copyright
46 1.1 cgd * notice and this permission notice appear in all copies of the
47 1.1 cgd * software, derivative works or modified versions, and any portions
48 1.1 cgd * thereof, and that both notices appear in supporting documentation.
49 1.1 cgd *
50 1.1 cgd * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
51 1.1 cgd * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
52 1.1 cgd * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
53 1.1 cgd *
54 1.1 cgd * Carnegie Mellon requests users of this software to return to
55 1.1 cgd *
56 1.1 cgd * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
57 1.1 cgd * School of Computer Science
58 1.1 cgd * Carnegie Mellon University
59 1.1 cgd * Pittsburgh PA 15213-3890
60 1.1 cgd *
61 1.1 cgd * any improvements or extensions that they make and grant Carnegie the
62 1.1 cgd * rights to redistribute these changes.
63 1.1 cgd */
64 1.1 cgd
65 1.1 cgd #include "wt.h"
66 1.1 cgd #if NWT > 0
67 1.1 cgd /*
68 1.1 cgd * HISTORY
69 1.2 cgd * $Log: wt.c,v $
70 1.3 cgd * Revision 1.3 1993/07/19 16:44:38 cgd
71 1.3 cgd * Reading file marks or writing end of tape return 0 bytes, AND THEY
72 1.3 cgd * DON'T SET THE ERROR BIT ON THE BUFFER UNLESS THE AUTHOR OF PHYSIO
73 1.2 cgd * IS STUPID!
74 1.2 cgd *
75 1.2 cgd * Revision 1.2 1993/05/22 08:01:48 cgd
76 1.1 cgd * add rcsids to everything and clean up headers
77 1.1 cgd *
78 1.1 cgd * Revision 1.1.1.1 1993/03/21 09:46:00 cgd
79 1.1 cgd * initial import of 386bsd-0.1 sources
80 1.1 cgd *
81 1.1 cgd * Revision 2.2.1.3 90/01/08 13:29:38 rvb
82 1.1 cgd * Add Intel copyright.
83 1.1 cgd * [90/01/08 rvb]
84 1.1 cgd *
85 1.1 cgd * Revision 2.2.1.2 89/12/21 18:00:09 rvb
86 1.1 cgd * Change WTPRI to make the streamer tape read/write
87 1.1 cgd * interruptible. [lin]
88 1.1 cgd *
89 1.1 cgd * Revision 2.2.1.1 89/11/10 09:49:49 rvb
90 1.1 cgd * ORC likes their streamer port at 0x288.
91 1.1 cgd * [89/11/08 rvb]
92 1.1 cgd *
93 1.1 cgd * Revision 2.2 89/09/25 12:33:02 rvb
94 1.1 cgd * Driver was provided by Intel 9/18/89.
95 1.1 cgd * [89/09/23 rvb]
96 1.1 cgd *
97 1.1 cgd */
98 1.1 cgd
99 1.1 cgd /*
100 1.1 cgd *
101 1.1 cgd * Copyright 1988, 1989 by Intel Corporation
102 1.1 cgd *
103 1.1 cgd * Support Bell Tech QIC-02 and WANGTEK QIC-36 or QIC-02
104 1.1 cgd */
105 1.1 cgd
106 1.1 cgd /*#include <sys/errno.h>
107 1.1 cgd #include <sys/signal.h>
108 1.1 cgd #include <sys/types.h>*/
109 1.1 cgd #include "sys/param.h"
110 1.1 cgd #include "sys/buf.h"
111 1.1 cgd #include "sys/file.h"
112 1.1 cgd #include "sys/proc.h"
113 1.1 cgd #include "sys/user.h"
114 1.1 cgd #include "i386/isa/wtreg.h"
115 1.1 cgd
116 1.1 cgd #ifdef ORC
117 1.1 cgd unsigned wtport = 0x288; /* base I/O port of controller */
118 1.1 cgd #else ORC
119 1.1 cgd unsigned wtport = 0x300; /* base I/O port of controller */
120 1.1 cgd #endif ORC
121 1.1 cgd /* standard = 0x300 */
122 1.1 cgd /* alternate = 0x338 */
123 1.1 cgd
124 1.1 cgd unsigned wtchan = 1; /* DMA channel number */
125 1.1 cgd /* stardard = 1 */
126 1.1 cgd /* hardware permits 1, 2 or 3. */
127 1.1 cgd /* (Avoid DMA 2: used by disks) */
128 1.1 cgd
129 1.1 cgd int first_wtopen_ever = 1;
130 1.1 cgd
131 1.1 cgd
132 1.1 cgd #define ERROR 1 /* return from tape routines */
133 1.1 cgd #define SUCCESS 0 /* return from tape routines */
134 1.1 cgd
135 1.1 cgd int wci = 0;
136 1.1 cgd int exflag = 0;
137 1.1 cgd int bytes = 0;
138 1.1 cgd
139 1.1 cgd static unsigned char eqdma = 0x8;
140 1.1 cgd static unsigned char pagereg = 0x83;
141 1.1 cgd static unsigned char dmareg = 2;
142 1.1 cgd static unsigned char dma_write = 0x49;
143 1.1 cgd static unsigned char dma_read = 0x45;
144 1.1 cgd static unsigned char dma_done = 2;
145 1.1 cgd static unsigned char mode = 0;
146 1.1 cgd static unsigned char mbits; /* map bits into each other */
147 1.1 cgd static long bufptr;
148 1.1 cgd static unsigned numbytes;
149 1.1 cgd /*
150 1.1 cgd _wci dw 0 ; interrupt chain finished normally
151 1.1 cgd _exflag dw 0 ; exception variable
152 1.1 cgd _bytes dw 0 ; current bytes
153 1.1 cgd
154 1.1 cgd eqdma db 8h ; enable dma command: ch1,ch2=8h, ch3=10h
155 1.1 cgd pagereg db 83h ; ch1=83h, ch2=81h, ch3=82h
156 1.1 cgd dmareg db 2 ; ch1=2, ch2=4, ch3=6
157 1.1 cgd dma_write db 49h ; write dma command: 48h+_wtchan
158 1.1 cgd dma_read db 45h ; read dma command: 44h+_wtchan
159 1.1 cgd dma_done db 2 ; dma done flag: 1<<_wtchan
160 1.1 cgd mode db 0 ; dma operation mode
161 1.1 cgd lbufptr dw 0 ; buffer pointer to data buffers, low word
162 1.1 cgd hbufptr dw 0 ; buffer pointer to data buffers, high word
163 1.1 cgd numbytes dw 0 ; number of bytes to read or write (new)
164 1.1 cgd */
165 1.1 cgd
166 1.1 cgd #define PAGESIZ 4096
167 1.1 cgd #define HZ 60
168 1.1 cgd
169 1.1 cgd /* tape controller ports */
170 1.1 cgd #define STATPORT wtport
171 1.1 cgd #define CTLPORT STATPORT
172 1.1 cgd #define CMDPORT (wtport+1)
173 1.1 cgd #define DATAPORT CMDPORT
174 1.1 cgd
175 1.1 cgd /* defines for reading out status from wangtek tape controller */
176 1.1 cgd #define READY 0x01 /* ready bit define */
177 1.1 cgd #define EXCEP 0x02 /* exception bit define */
178 1.1 cgd #define STAT (READY|EXCEP)
179 1.1 cgd #define RESETMASK 0x7
180 1.1 cgd #define RESETVAL (RESETMASK & ~EXCEP)
181 1.1 cgd
182 1.1 cgd /* tape controller control bits (CTLPORT) */
183 1.1 cgd #define ONLINE 0x01
184 1.1 cgd #define RESET 0x02
185 1.1 cgd #define REQUEST 0x04 /* request command */
186 1.1 cgd #define CMDOFF 0xC0
187 1.1 cgd
188 1.1 cgd /* QIC-02 commands (CMDPORT) */
189 1.1 cgd #define RDDATA 0x80 /* read data */
190 1.1 cgd #define READFM 0xA0 /* read file mark */
191 1.1 cgd #define WRTDATA 0x40 /* write data */
192 1.1 cgd #define WRITEFM 0x60 /* write file mark */
193 1.1 cgd #define RDSTAT 0xC0 /* read status command */
194 1.1 cgd #define REWIND 0x21 /* rewind command (position+bot) */
195 1.1 cgd
196 1.1 cgd /* 8237 DMA controller regs */
197 1.1 cgd #define STATUSREG 0x8
198 1.1 cgd #define MASKREG 0xA
199 1.1 cgd #define MODEREG 0xB
200 1.1 cgd #define CLEARFF 0xC
201 1.1 cgd
202 1.1 cgd /* streamer tape block size */
203 1.1 cgd #define BLKSIZE 512
204 1.1 cgd
205 1.1 cgd /* Tape characteristics */
206 1.1 cgd #define NBPS 512 /* 512-byte blocks */
207 1.1 cgd #define ERROR 1 /* return from tape routines */
208 1.1 cgd #define SUCCESS 0 /* return from tape routines */
209 1.1 cgd
210 1.1 cgd /* Minor devs */
211 1.1 cgd #define TP_REWCLOSE(d) ((minor(d)&04) == 0) /* Rewind tape on close if read/write */
212 1.1 cgd #define TP_DENS(dev) ((minor(dev) >> 3) & 03) /* set density */
213 1.1 cgd #define TPHOG(d) 0 /* use Hogproc during tape I/O */
214 1.1 cgd
215 1.1 cgd /* defines for wtflags */
216 1.1 cgd #define TPINUSE 0x0001 /* tape is already open */
217 1.1 cgd #define TPREAD 0x0002 /* tape is only open for reading */
218 1.1 cgd #define TPWRITE 0x0004 /* tape is only open for writing */
219 1.1 cgd #define TPSTART 0x0008 /* tape must be rewound and reset */
220 1.1 cgd #define TPDEAD 0x0010 /* tape drive does not work or driver error */
221 1.1 cgd #define TPSESS 0x0020 /* no more reads or writes allowed in session */
222 1.1 cgd /* for example, when tape has to be changed */
223 1.1 cgd #define TPSTOP 0x0040 /* Stop command outstanding */
224 1.1 cgd #define TPREW 0x0080 /* Rewind command outstanding, see wtdsl2() */
225 1.1 cgd #define TPVOL 0x0100 /* Read file mark, or hit end of tape */
226 1.1 cgd #define TPWO 0x0200 /* write command outstanding */
227 1.1 cgd #define TPRO 0x0400 /* read command outstanding */
228 1.1 cgd #define TPWANY 0x0800 /* write command requested */
229 1.1 cgd #define TPRANY 0x1000 /* read command requested */
230 1.1 cgd #define TPWP 0x2000 /* write protect error seen */
231 1.1 cgd
232 1.1 cgd unsigned int wtflags = TPSTART; /* state of tape drive */
233 1.1 cgd
234 1.1 cgd struct buf rwtbuf; /* header for raw i/o */
235 1.1 cgd struct proc *myproc; /* process which opened tape driver */
236 1.1 cgd
237 1.1 cgd char wtimeron; /* wtimer() active flag */
238 1.1 cgd char wtio; /* dma (i/o) active flag */
239 1.1 cgd char isrlock; /* isr() flag */
240 1.1 cgd
241 1.1 cgd struct proc * Hogproc; /* no Hogproc on Microport */
242 1.1 cgd #define ftoseg(x) ((unsigned) (x >> 16))
243 1.1 cgd
244 1.1 cgd struct wtstatus {
245 1.1 cgd ushort wt_err; /* code for error encountered */
246 1.1 cgd ushort wt_ercnt; /* number of error blocks */
247 1.1 cgd ushort wt_urcnt; /* number of underruns */
248 1.1 cgd } wterror;
249 1.1 cgd
250 1.1 cgd /* defines for wtstatus.wt_err */
251 1.1 cgd #define TP_POR 0x100 /* Power on/reset occurred */
252 1.1 cgd #define TP_RES1 0x200 /* Reserved for end of media */
253 1.1 cgd #define TP_RES2 0x400 /* Reserved for bus parity */
254 1.1 cgd #define TP_BOM 0x800 /* Beginning of media */
255 1.1 cgd #define TP_MBD 0x1000 /* Marginal block detected */
256 1.1 cgd #define TP_NDT 0x2000 /* No data detected */
257 1.1 cgd #define TP_ILL 0x4000 /* Illegal command */
258 1.1 cgd #define TP_ST1 0x8000 /* Status byte 1 bits */
259 1.1 cgd #define TP_FIL 0x01 /* File mark detected */
260 1.1 cgd #define TP_BNL 0x02 /* Bad block not located */
261 1.1 cgd #define TP_UDA 0x04 /* Unrecoverable data error */
262 1.1 cgd #define TP_EOM 0x08 /* End of media */
263 1.1 cgd #define TP_WRP 0x10 /* Write protected cartridge */
264 1.1 cgd #define TP_USL 0x20 /* Unselected drive */
265 1.1 cgd #define TP_CNI 0x40 /* Cartridge not in place */
266 1.1 cgd #define TP_ST0 0x80 /* Status byte 0 bits */
267 1.1 cgd
268 1.1 cgd /* Grounds for reporting I/O error to user */
269 1.1 cgd #define TP_ERR0 (TP_BNL|TP_UDA|TP_WRP|TP_CNI|TP_FIL|TP_EOM|TP_USL)
270 1.1 cgd #define TP_ERR1 (TP_MBD|TP_NDT|TP_ILL)
271 1.1 cgd /* TP_ILL should never happen! */
272 1.1 cgd /*
273 1.1 cgd #define TP_ERR0 0x7f
274 1.1 cgd #define TP_ERR1 0x7700
275 1.1 cgd */
276 1.1 cgd
277 1.1 cgd /* defines for reading out status from wangtek tape controller */
278 1.1 cgd #define READY 0x01 /* ready bit define */
279 1.1 cgd #define EXCEP 0x02 /* exception bit define */
280 1.1 cgd
281 1.1 cgd /* sleep priority */
282 1.1 cgd #define WTPRI (PZERO+10)
283 1.1 cgd
284 1.1 cgd char pagebuf[NBPS]; /* buffer of size NBPS */
285 1.1 cgd unsigned long pageaddr; /* physical addr of pagebuf */
286 1.1 cgd /* pageaddr is used with DMA controller */
287 1.1 cgd time_t Hogtime; /* lbolt when Hog timer started */
288 1.1 cgd extern time_t lbolt;
289 1.1 cgd
290 1.1 cgd #define debug printf
291 1.1 cgd
292 1.1 cgd /*
293 1.1 cgd * Strategy routine.
294 1.1 cgd *
295 1.1 cgd * Arguments:
296 1.1 cgd * Pointer to buffer structure
297 1.1 cgd * Function:
298 1.1 cgd * Start transfer.
299 1.1 cgd *
300 1.1 cgd * It would be nice to have this multiple-threaded.
301 1.1 cgd * There is a version of dump from Berkeley that works with multiple processes
302 1.1 cgd * trading off with disk & tape I/O.
303 1.1 cgd */
304 1.1 cgd
305 1.1 cgd int
306 1.1 cgd wtstrategy(bp)
307 1.1 cgd register struct buf *bp;
308 1.1 cgd {
309 1.1 cgd unsigned ucnt1, ucnt2, finished;
310 1.1 cgd unsigned long adr1, adr2;
311 1.1 cgd int bad;
312 1.1 cgd
313 1.1 cgd adr1 = kvtop(bp->b_un.b_addr);
314 1.1 cgd #ifdef DEBUG
315 1.1 cgd debug("bpaddr %x\n", adr1);
316 1.1 cgd #endif
317 1.1 cgd ucnt1 = bp->b_bcount % NBPG;
318 1.1 cgd ucnt2 = 0;
319 1.1 cgd adr2 = 0;
320 1.1 cgd #ifdef DEBUG
321 1.1 cgd debug("WTstart: adr1 %lx cnt %x\n", adr1, ucnt1);
322 1.1 cgd #endif
323 1.1 cgd /* 64K boundary? (XXX) */
324 1.1 cgd if (ftoseg(adr1) != ftoseg(adr1 + (unsigned) ucnt1 - 1))
325 1.1 cgd {
326 1.1 cgd adr2 = (adr1 & 0xffff0000L) + 0x10000L;
327 1.1 cgd ucnt2 = (adr1 + ucnt1) - adr2;
328 1.1 cgd ucnt1 -= ucnt2;
329 1.1 cgd }
330 1.1 cgd /* page boundary? */
331 1.1 cgd if (trunc_page(adr1) != trunc_page(adr1 + (unsigned) ucnt1 - 1))
332 1.1 cgd { unsigned u;
333 1.1 cgd u = NBPG - ((unsigned)bp->b_un.b_addr & (NBPG-1));
334 1.1 cgd adr2 = kvtop(bp->b_un.b_addr + u);
335 1.1 cgd ucnt2 = ucnt1 - u;
336 1.1 cgd ucnt1 = u;
337 1.1 cgd }
338 1.1 cgd /* at file marks and end of tape, we just return '0 bytes available' */
339 1.1 cgd if (wtflags & TPVOL) {
340 1.1 cgd bp->b_resid = bp->b_bcount;
341 1.1 cgd goto xit;
342 1.1 cgd }
343 1.1 cgd if ((Hogproc == (struct proc *) 0) && TPHOG(bp->b_dev))
344 1.1 cgd {
345 1.1 cgd #ifdef DEBUG
346 1.1 cgd printf("setting Hogproc\n");
347 1.1 cgd #endif
348 1.1 cgd Hogtime = 0;
349 1.1 cgd Hogproc = myproc;
350 1.1 cgd }
351 1.1 cgd if (bp->b_flags & B_READ) {
352 1.1 cgd bad = 0;
353 1.1 cgd
354 1.1 cgd /* For now, we assume that all data will be copied out */
355 1.1 cgd /* If read command outstanding, just skip down */
356 1.1 cgd if (!(wtflags & TPRO)) {
357 1.1 cgd if (ERROR == wtsense(TP_WRP)) /* clear status */
358 1.1 cgd goto errxit;
359 1.1 cgd #ifdef DEBUG
360 1.1 cgd debug("WTread: Start read\n");
361 1.1 cgd #endif
362 1.1 cgd if (!(wtflags & TPREAD) || (wtflags & TPWANY) ||
363 1.1 cgd (rstart() == ERROR)) {
364 1.1 cgd #ifdef DEBUG
365 1.1 cgd debug("Tpstart: read init error\n"); /* */
366 1.1 cgd #endif
367 1.1 cgd goto errxit;
368 1.1 cgd }
369 1.1 cgd wtflags |= TPRO|TPRANY;
370 1.1 cgd }
371 1.1 cgd
372 1.1 cgd finished = 0;
373 1.1 cgd /* Take a deep breath */
374 1.1 cgd if (ucnt1) {
375 1.1 cgd if ((rtape(adr1, ucnt1) == ERROR) &&
376 1.1 cgd (wtsense(TP_WRP) == ERROR))
377 1.1 cgd goto endio;
378 1.1 cgd /* wait for it */
379 1.1 cgd bad = pollrdy();
380 1.1 cgd finished = bytes;
381 1.1 cgd if (bad)
382 1.1 cgd goto endio;
383 1.1 cgd }
384 1.1 cgd /* if a second I/O region, start it */
385 1.1 cgd if (ucnt2) {
386 1.1 cgd if ((rtape(adr2, ucnt2) == ERROR) &&
387 1.1 cgd (wtsense(TP_WRP) == ERROR))
388 1.1 cgd ucnt2 = 0; /* don't poll for me */
389 1.1 cgd }
390 1.1 cgd
391 1.1 cgd /* if second i/o pending wait for it */
392 1.1 cgd if (ucnt2) {
393 1.1 cgd pollrdy();
394 1.1 cgd /* whether pollrdy is ok or not */
395 1.1 cgd finished += bytes;
396 1.1 cgd }
397 1.1 cgd } else {
398 1.1 cgd if (wtflags & TPWP) /* write protected */
399 1.1 cgd goto errxit;
400 1.1 cgd
401 1.1 cgd /* If write command outstanding, just skip down */
402 1.1 cgd if (!(wtflags & TPWO)) {
403 1.1 cgd if (ERROR == wtsense(0)) /* clear status */
404 1.1 cgd {
405 1.1 cgd #ifdef DEBUG
406 1.1 cgd debug("TPstart: sense 0\n");
407 1.1 cgd #endif
408 1.1 cgd goto errxit;
409 1.1 cgd }
410 1.1 cgd if (!(wtflags & TPWRITE) || (wtflags & TPRANY) ||
411 1.1 cgd (wstart() == ERROR)) {
412 1.1 cgd #ifdef DEBUG
413 1.1 cgd debug("Tpstart: write init error\n"); /* */
414 1.1 cgd #endif
415 1.1 cgd wtsense(0);
416 1.1 cgd
417 1.1 cgd errxit: bp->b_flags |= B_ERROR;
418 1.1 cgd bp->b_resid = bp->b_bcount;
419 1.1 cgd goto xit;
420 1.1 cgd }
421 1.1 cgd wtflags |= TPWO|TPWANY;
422 1.1 cgd }
423 1.1 cgd
424 1.1 cgd /* and hold your nose */
425 1.1 cgd if (ucnt1 && ((wtape(adr1, ucnt1) == ERROR)
426 1.1 cgd && (wtsense(0) == ERROR)))
427 1.1 cgd finished = bytes;
428 1.1 cgd
429 1.1 cgd else if (ucnt2 &&
430 1.1 cgd (((ucnt1 && pollrdy()) ||
431 1.1 cgd (wtape(adr2, ucnt2) == ERROR)) &&
432 1.1 cgd (wtsense(0) == ERROR)))
433 1.1 cgd finished = ucnt1 + NBPS + bytes;
434 1.1 cgd /* All writes and/or copyins were fine! */
435 1.1 cgd else
436 1.1 cgd finished = bp->b_bcount;
437 1.1 cgd bad = pollrdy();
438 1.1 cgd }
439 1.1 cgd
440 1.1 cgd endio:
441 1.1 cgd if(bad == EIO) bad = 0;
442 1.1 cgd wterror.wt_err = 0;
443 1.1 cgd if (exflag && wtsense((bp->b_flags & B_READ) ? TP_WRP : 0)) {
444 1.1 cgd if ((wterror.wt_err & TP_ST0)
445 1.1 cgd && (wterror.wt_err & (TP_FIL|TP_EOM))) {
446 1.1 cgd #ifdef DEBUG
447 1.1 cgd debug("WTsta: Hit end of tape\n"); /* */
448 1.1 cgd #endif
449 1.1 cgd wtflags |= TPVOL;
450 1.1 cgd if (wterror.wt_err & TP_FIL) {
451 1.1 cgd if (wtflags & TPRO)
452 1.1 cgd /* interrupter is bogus */
453 1.1 cgd rstart(); /* restart read command */
454 1.1 cgd else
455 1.3 cgd wtflags &= ~TPWO;
456 1.3 cgd finished += NBPS;
457 1.3 cgd }
458 1.1 cgd /* Reading file marks or writing end of tape return 0 bytes */
459 1.1 cgd } else {
460 1.1 cgd /* XXX (cgd) - for broken 386bsd physio only:
461 1.1 cgd * bp->b_flags |= B_ERROR;
462 1.1 cgd */
463 1.1 cgd wtflags &= ~(TPWO|TPRO);
464 1.1 cgd }
465 1.1 cgd }
466 1.1 cgd
467 1.1 cgd if(bad) {
468 1.1 cgd bp->b_flags |= B_ERROR;
469 1.1 cgd bp->b_error = bad;
470 1.1 cgd }
471 1.1 cgd bp->b_resid = bp->b_bcount - finished;
472 1.1 cgd xit:
473 1.1 cgd biodone(bp);
474 1.1 cgd if (wtimeron)
475 1.1 cgd Hogtime = lbolt;
476 1.1 cgd else if (Hogproc == myproc)
477 1.1 cgd Hogproc = (struct proc *) 0;
478 1.1 cgd }
479 1.1 cgd
480 1.1 cgd /*
481 1.1 cgd * simulate an interrupt periodically while I/O is going
482 1.1 cgd * this is necessary in case interrupts get eaten due to
483 1.1 cgd * multiple devices on a single IRQ line
484 1.1 cgd */
485 1.1 cgd wtimer()
486 1.1 cgd {
487 1.1 cgd /* If I/O going and not in isr(), simulate interrupt
488 1.1 cgd * If no I/O for at least 1 second, stop being a Hog
489 1.1 cgd * If I/O done and not a Hog, turn off wtimer()
490 1.1 cgd */
491 1.1 cgd if (wtio && !isrlock)
492 1.1 cgd isr();
493 1.1 cgd
494 1.1 cgd if ((Hogproc == myproc) && Hogtime && (lbolt-Hogtime > HZ))
495 1.1 cgd Hogproc = (struct proc *) 0;
496 1.1 cgd
497 1.1 cgd if (wtio || (Hogproc == myproc))
498 1.1 cgd timeout(wtimer, (caddr_t) 0, HZ);
499 1.1 cgd else
500 1.1 cgd wtimeron = 0;
501 1.1 cgd }
502 1.1 cgd
503 1.1 cgd
504 1.1 cgd wtrawio(bp)
505 1.1 cgd struct buf *bp;
506 1.1 cgd {
507 1.1 cgd wtstrategy(bp);
508 1.1 cgd biowait(bp);
509 1.1 cgd return(0);
510 1.1 cgd }
511 1.1 cgd
512 1.1 cgd /*
513 1.1 cgd * ioctl routine
514 1.1 cgd * for user level QIC commands only
515 1.1 cgd */
516 1.1 cgd wtioctl(dev, cmd, arg, mode)
517 1.1 cgd int dev, cmd;
518 1.1 cgd unsigned long arg;
519 1.1 cgd int mode;
520 1.1 cgd {
521 1.1 cgd if (cmd == WTQICMD)
522 1.1 cgd {
523 1.1 cgd if ((qicmd((int)arg) == ERROR) || (rdyexc(HZ) == ERROR))
524 1.1 cgd {
525 1.1 cgd wtsense(0);
526 1.1 cgd return(EIO);
527 1.1 cgd }
528 1.1 cgd return(0);
529 1.1 cgd }
530 1.1 cgd return(EINVAL);
531 1.1 cgd }
532 1.1 cgd
533 1.1 cgd /*
534 1.1 cgd * open routine
535 1.1 cgd * called on every device open
536 1.1 cgd */
537 1.1 cgd wtopen(dev, flag)
538 1.1 cgd int dev, flag;
539 1.1 cgd {
540 1.1 cgd if (first_wtopen_ever) {
541 1.1 cgd wtinit();
542 1.1 cgd first_wtopen_ever = 0;
543 1.1 cgd }
544 1.1 cgd #ifdef DEBUG
545 1.1 cgd printf("wtopen ...\n");
546 1.1 cgd #endif
547 1.1 cgd if (!pageaddr) {
548 1.1 cgd return(ENXIO);
549 1.1 cgd }
550 1.1 cgd if (wtflags & (TPINUSE)) {
551 1.1 cgd return(ENXIO);
552 1.1 cgd }
553 1.1 cgd if (wtflags & (TPDEAD)) {
554 1.1 cgd return(EIO);
555 1.1 cgd }
556 1.1 cgd /* If a rewind from the last session is going on, wait */
557 1.1 cgd while(wtflags & TPREW) {
558 1.1 cgd #ifdef DEBUG
559 1.1 cgd debug("Waiting for rew to finish\n");
560 1.1 cgd #endif
561 1.1 cgd DELAY(1000000); /* delay one second */
562 1.1 cgd }
563 1.1 cgd /* Only do reset and select when tape light is off, and tape is rewound.
564 1.1 cgd * This allows multiple volumes. */
565 1.1 cgd if (wtflags & TPSTART) {
566 1.1 cgd if (t_reset() != SUCCESS) {
567 1.1 cgd return(ENXIO);
568 1.1 cgd }
569 1.1 cgd #ifdef DEBUG
570 1.1 cgd debug("reset done. calling wtsense\n");
571 1.1 cgd #endif
572 1.1 cgd if (wtsense(TP_WRP) == ERROR) {
573 1.1 cgd return (EIO);
574 1.1 cgd }
575 1.1 cgd #ifdef DEBUG
576 1.1 cgd debug("wtsense done\n");
577 1.1 cgd #endif
578 1.1 cgd wtflags &= ~TPSTART;
579 1.1 cgd }
580 1.1 cgd
581 1.1 cgd wtflags = TPINUSE;
582 1.1 cgd if (flag & FREAD)
583 1.1 cgd wtflags |= TPREAD;
584 1.1 cgd if (flag & FWRITE)
585 1.1 cgd wtflags |= TPWRITE;
586 1.1 cgd rwtbuf.b_flags = 0;
587 1.1 cgd myproc = curproc; /* for comparison */
588 1.1 cgd #ifdef not
589 1.1 cgd switch(TP_DENS(dev)) {
590 1.1 cgd case 0:
591 1.1 cgd cmds(0x28);
592 1.1 cgd break;
593 1.1 cgd case 1:
594 1.1 cgd cmds(0x29);
595 1.1 cgd break;
596 1.1 cgd case 2:
597 1.1 cgd cmds(0x27);
598 1.1 cgd break;
599 1.1 cgd case 3:
600 1.1 cgd cmds(0x24);
601 1.1 cgd }
602 1.1 cgd #endif
603 1.1 cgd return(0);
604 1.1 cgd }
605 1.1 cgd
606 1.1 cgd /*
607 1.1 cgd * close routine
608 1.1 cgd * called on last device close
609 1.1 cgd * If not rewind-on-close, leave read or write command intact.
610 1.1 cgd */
611 1.1 cgd wtclose(dev)
612 1.1 cgd {
613 1.1 cgd int wtdsl2();
614 1.1 cgd
615 1.1 cgd #ifdef DEBUG
616 1.1 cgd debug("WTclose:\n");
617 1.1 cgd #endif
618 1.1 cgd if (Hogproc == myproc)
619 1.1 cgd Hogproc = (struct proc *) 0;
620 1.1 cgd if (!exflag && (wtflags & TPWANY) && !(wtflags & (TPSESS|TPDEAD))) {
621 1.1 cgd if (!(wtflags & TPWO))
622 1.1 cgd wstart();
623 1.1 cgd #ifdef DEBUG
624 1.1 cgd debug("WT: Writing file mark\n");
625 1.1 cgd #endif
626 1.1 cgd wmark(); /* write file mark */
627 1.1 cgd #ifdef DEBUG
628 1.1 cgd debug("WT: Wrote file mark, going to wait\n");
629 1.1 cgd #endif
630 1.1 cgd if (rdyexc(HZ/10) == ERROR) {
631 1.1 cgd wtsense(0);
632 1.1 cgd }
633 1.1 cgd }
634 1.1 cgd if (TP_REWCLOSE(dev) || (wtflags & (TPSESS|TPDEAD))) {
635 1.1 cgd /* rewind tape to beginning of tape, deselect tape, and make a note */
636 1.1 cgd /* don't wait until rewind, though */
637 1.1 cgd /* Ending read or write causes rewind to happen, if no error,
638 1.1 cgd * and READY and EXCEPTION stay up until it finishes */
639 1.1 cgd if (wtflags & (TPRO|TPWO))
640 1.1 cgd {
641 1.1 cgd #ifdef DEBUG
642 1.1 cgd debug("End read or write\n");
643 1.1 cgd #endif
644 1.1 cgd rdyexc(HZ/10);
645 1.1 cgd ioend();
646 1.1 cgd wtflags &= ~(TPRO|TPWO);
647 1.1 cgd }
648 1.1 cgd else wtwind();
649 1.1 cgd wtflags |= TPSTART | TPREW;
650 1.1 cgd timeout(wtdsl2, 0, HZ);
651 1.1 cgd }
652 1.1 cgd else if (!(wtflags & (TPVOL|TPWANY)))
653 1.1 cgd {
654 1.1 cgd /* space forward to after next file mark no writing done */
655 1.1 cgd /* This allows skipping data without reading it.*/
656 1.1 cgd #ifdef DEBUG
657 1.1 cgd debug("Reading past file mark\n");
658 1.1 cgd #endif
659 1.1 cgd if (!(wtflags & TPRO))
660 1.1 cgd rstart();
661 1.1 cgd rmark();
662 1.1 cgd if (rdyexc(HZ/10))
663 1.1 cgd {
664 1.1 cgd wtsense(TP_WRP);
665 1.1 cgd }
666 1.1 cgd }
667 1.1 cgd wtflags &= TPREW|TPDEAD|TPSTART|TPRO|TPWO;
668 1.1 cgd return(0);
669 1.1 cgd }
670 1.1 cgd
671 1.1 cgd /* return ERROR if user I/O request should receive an I/O error code */
672 1.1 cgd
673 1.1 cgd wtsense(ignor)
674 1.1 cgd {
675 1.1 cgd wtflags &= ~(TPRO|TPWO);
676 1.1 cgd #ifdef DEBUGx
677 1.1 cgd debug("WTsense: start ");
678 1.1 cgd #endif
679 1.1 cgd if (rdstatus(&wterror) == ERROR)
680 1.1 cgd {
681 1.1 cgd #ifdef DEBUG
682 1.1 cgd debug("WTsense: Can't read status\n");
683 1.1 cgd #endif
684 1.1 cgd return(ERROR);
685 1.1 cgd }
686 1.1 cgd #ifdef DEBUG
687 1.1 cgd if (wterror.wt_err & (TP_ST0|TP_ST1))
688 1.1 cgd {
689 1.1 cgd debug("Tperror: status %x error %d underruns %d\n",
690 1.1 cgd wterror.wt_err, wterror.wt_ercnt, wterror.wt_urcnt);
691 1.1 cgd }
692 1.1 cgd else
693 1.1 cgd debug("done. no error\n");
694 1.1 cgd #endif
695 1.1 cgd wterror.wt_err &= ~ignor; /* ignore certain errors */
696 1.1 cgd reperr(wterror.wt_err);
697 1.1 cgd if (((wterror.wt_err & TP_ST0) && (wterror.wt_err & TP_ERR0)) ||
698 1.1 cgd ((wterror.wt_err & TP_ST1) && (wterror.wt_err & TP_ERR1)))
699 1.1 cgd return ERROR;
700 1.1 cgd
701 1.1 cgd return SUCCESS;
702 1.1 cgd }
703 1.1 cgd
704 1.1 cgd /* lifted from tdriver.c from Wangtek */
705 1.1 cgd reperr(srb0)
706 1.1 cgd int srb0;
707 1.1 cgd {
708 1.1 cgd int s0 = srb0 & (TP_ERR0|TP_ERR1); /* find out which exception to report */
709 1.1 cgd
710 1.1 cgd if (s0) {
711 1.1 cgd if (s0 & TP_USL)
712 1.1 cgd sterr("Drive not online");
713 1.1 cgd else if (s0 & TP_CNI)
714 1.1 cgd sterr("No cartridge");
715 1.1 cgd else if ((s0 & TP_WRP) && !(wtflags & TPWP))
716 1.1 cgd {
717 1.1 cgd sterr("Tape is write protected");
718 1.1 cgd wtflags |= TPWP;
719 1.1 cgd }
720 1.1 cgd /*
721 1.1 cgd if (s0 & TP_FIL)
722 1.1 cgd sterr("Filemark detected");
723 1.1 cgd */
724 1.1 cgd else if (s0 & TP_BNL)
725 1.1 cgd sterr("Block in error not located");
726 1.1 cgd else if (s0 & TP_UDA)
727 1.1 cgd sterr("Unrecoverable data error");
728 1.1 cgd /*
729 1.1 cgd else if (s0 & TP_EOM)
730 1.1 cgd sterr("End of tape");
731 1.1 cgd */
732 1.1 cgd else if (s0 & TP_NDT)
733 1.1 cgd sterr("No data detected");
734 1.1 cgd /*
735 1.1 cgd if (s0 & TP_POR)
736 1.1 cgd sterr("Reset occured");
737 1.1 cgd */
738 1.1 cgd else if (s0 & TP_BOM)
739 1.1 cgd sterr("Beginning of tape");
740 1.1 cgd else if (s0 & TP_ILL)
741 1.1 cgd sterr("Illegal command");
742 1.1 cgd }
743 1.1 cgd }
744 1.1 cgd
745 1.1 cgd sterr(errstr)
746 1.1 cgd char *errstr;
747 1.1 cgd {
748 1.1 cgd printf("Streamer: %s\n", errstr);
749 1.1 cgd }
750 1.1 cgd
751 1.1 cgd /* Wait until rewind finishes, and deselect drive */
752 1.1 cgd wtdsl2() {
753 1.1 cgd int stat;
754 1.1 cgd
755 1.1 cgd stat = inb(wtport) & (READY|EXCEP);
756 1.1 cgd #ifdef DEBUG
757 1.1 cgd debug("Timeout: Waiting for rewind to finish: stat %x\n", stat);
758 1.1 cgd #endif
759 1.1 cgd switch (stat) {
760 1.1 cgd /* They're active low, ya'know */
761 1.1 cgd case READY|EXCEP:
762 1.1 cgd timeout(wtdsl2, (caddr_t) 0, HZ);
763 1.1 cgd return;
764 1.1 cgd case EXCEP:
765 1.1 cgd wtflags &= ~TPREW;
766 1.1 cgd return;
767 1.1 cgd case READY:
768 1.1 cgd case 0:
769 1.1 cgd wtflags &= ~TPREW;
770 1.1 cgd sterr("Rewind failed");
771 1.1 cgd wtsense(TP_WRP);
772 1.1 cgd return;
773 1.1 cgd }
774 1.1 cgd }
775 1.1 cgd
776 1.1 cgd wtwind() {
777 1.1 cgd #ifdef DEBUG
778 1.1 cgd debug("WT: About to rewind\n");
779 1.1 cgd #endif
780 1.1 cgd rwind(); /* actually start rewind */
781 1.1 cgd }
782 1.1 cgd
783 1.1 cgd wtintr(unit) {
784 1.1 cgd if (wtflags & (TPWO|TPRO))
785 1.1 cgd {
786 1.1 cgd isrlock = 1;
787 1.1 cgd if (wtio) isr();
788 1.1 cgd isrlock = 0;
789 1.1 cgd }
790 1.1 cgd }
791 1.1 cgd
792 1.1 cgd wtinit() {
793 1.1 cgd if (wtchan < 1 || wtchan > 3)
794 1.1 cgd {
795 1.1 cgd sterr("Bad DMA channel, cannot init driver");
796 1.1 cgd return;
797 1.1 cgd }
798 1.1 cgd wtlinit(); /* init assembly language variables */
799 1.1 cgd pageset();
800 1.1 cgd }
801 1.1 cgd
802 1.1 cgd rdyexc(ticks)
803 1.1 cgd {
804 1.1 cgd int s;
805 1.1 cgd #ifdef DEBUG
806 1.1 cgd int os = 0xffff; /* force printout first time */
807 1.1 cgd #endif
808 1.1 cgd for (;;) { /* loop until ready or exception */
809 1.1 cgd s=(inb(wtport) & 0xff); /* read the status register */
810 1.1 cgd #ifdef DEBUG
811 1.1 cgd if (os != s) {
812 1.1 cgd debug("Status reg = %x\n", s); /* */
813 1.1 cgd os = s;
814 1.1 cgd }
815 1.1 cgd #endif
816 1.1 cgd if (!(s & EXCEP)) /* check if exception have occured */
817 1.1 cgd break;
818 1.1 cgd if (!(s & READY)) /* check if controller is ready */
819 1.1 cgd break;
820 1.1 cgd s = splbio();
821 1.1 cgd DELAY((ticks/HZ)*1000000); /* */
822 1.1 cgd splx(s);
823 1.1 cgd }
824 1.1 cgd #ifdef DEBUG
825 1.1 cgd debug("Status reg = %x on return\n", s); /* */
826 1.1 cgd #endif
827 1.1 cgd return((s & EXCEP)?SUCCESS:ERROR); /* return exception if it occured */
828 1.1 cgd }
829 1.1 cgd
830 1.1 cgd pollrdy()
831 1.1 cgd {
832 1.1 cgd int sps;
833 1.1 cgd #ifdef DEBUG
834 1.1 cgd debug("Pollrdy\n");
835 1.1 cgd #endif
836 1.1 cgd sps = splbio();
837 1.1 cgd while (wtio) {
838 1.1 cgd int error;
839 1.1 cgd
840 1.1 cgd if (error = tsleep((caddr_t)&wci, WTPRI | PCATCH,
841 1.1 cgd "wtpoll", 0)) {
842 1.1 cgd splx(sps);
843 1.1 cgd return(error);
844 1.1 cgd }
845 1.1 cgd }
846 1.1 cgd splx(sps);
847 1.1 cgd #ifdef DEBUG
848 1.1 cgd debug("Finish poll, wci %d exflag %d\n", wci, exflag);
849 1.1 cgd #endif
850 1.1 cgd return (EIO);
851 1.1 cgd }
852 1.1 cgd
853 1.1 cgd wtdma() /* start up i/o operation, called from dma() in wtlib1.s */
854 1.1 cgd {
855 1.1 cgd wtio = 1;
856 1.1 cgd if (!wtimeron)
857 1.1 cgd {
858 1.1 cgd wtimeron = 1;
859 1.1 cgd timeout(wtimer, (caddr_t) 0, HZ/2);
860 1.1 cgd }
861 1.1 cgd }
862 1.1 cgd
863 1.1 cgd wtwake() /* end i/o operation, called from isr() in wtlib1.s */
864 1.1 cgd {
865 1.1 cgd wtio = 0;
866 1.1 cgd wakeup(&wci);
867 1.1 cgd }
868 1.1 cgd
869 1.1 cgd pageset()
870 1.1 cgd {
871 1.1 cgd unsigned long pp;
872 1.1 cgd
873 1.1 cgd pp = (unsigned long) pagebuf;
874 1.1 cgd pageaddr = kvtop(pp);
875 1.1 cgd #ifdef DEBUG
876 1.1 cgd debug("pageset: addr %lx\n", pageaddr);
877 1.1 cgd #endif
878 1.1 cgd }
879 1.1 cgd
880 1.1 cgd
881 1.1 cgd
882 1.1 cgd #define near
883 1.1 cgd
884 1.1 cgd static near
885 1.1 cgd sendcmd()
886 1.1 cgd {
887 1.1 cgd /* desired command in global mbits */
888 1.1 cgd
889 1.1 cgd outb(CTLPORT, mbits | REQUEST); /* set request */
890 1.1 cgd while (inb(STATPORT) & READY); /* wait for ready */
891 1.1 cgd outb(CTLPORT, mbits & ~REQUEST); /* reset request */
892 1.1 cgd while ((inb(STATPORT) & READY) == 0); /* wait for not ready */
893 1.1 cgd }
894 1.1 cgd
895 1.1 cgd static near /* execute command */
896 1.1 cgd cmds(cmd)
897 1.1 cgd {
898 1.1 cgd register s;
899 1.1 cgd
900 1.1 cgd do s = inb(STATPORT);
901 1.1 cgd while ((s & STAT) == STAT); /* wait for ready */
902 1.1 cgd
903 1.1 cgd if ((s & EXCEP) == 0) /* if exception */
904 1.1 cgd return ERROR; /* error */
905 1.1 cgd
906 1.1 cgd outb(CMDPORT, cmd); /* output the command */
907 1.1 cgd
908 1.1 cgd outb(CTLPORT, mbits=ONLINE); /* set & send ONLINE */
909 1.1 cgd sendcmd();
910 1.1 cgd
911 1.1 cgd return SUCCESS;
912 1.1 cgd }
913 1.1 cgd
914 1.1 cgd qicmd(cmd)
915 1.1 cgd {
916 1.1 cgd return cmds(cmd);
917 1.1 cgd }
918 1.1 cgd
919 1.1 cgd rstart()
920 1.1 cgd {
921 1.1 cgd return cmds(RDDATA);
922 1.1 cgd }
923 1.1 cgd
924 1.1 cgd rmark()
925 1.1 cgd {
926 1.1 cgd return cmds(READFM);
927 1.1 cgd }
928 1.1 cgd
929 1.1 cgd wstart()
930 1.1 cgd {
931 1.1 cgd return cmds(WRTDATA);
932 1.1 cgd }
933 1.1 cgd
934 1.1 cgd ioend()
935 1.1 cgd {
936 1.1 cgd register s;
937 1.1 cgd register rval = SUCCESS;
938 1.1 cgd
939 1.1 cgd do s = inb(STATPORT);
940 1.1 cgd while ((s & STAT) == STAT); /* wait for ready */
941 1.1 cgd
942 1.1 cgd if ((s & EXCEP) == 0) /* if exception */
943 1.1 cgd rval = ERROR; /* error */
944 1.1 cgd
945 1.1 cgd mbits &= ~ONLINE;
946 1.1 cgd outb(CTLPORT, mbits); /* reset ONLINE */
947 1.1 cgd outb(MASKREG, wtchan+4); /* turn off dma */
948 1.1 cgd outb(CLEARFF, 0); /* reset direction flag */
949 1.1 cgd
950 1.1 cgd return rval;
951 1.1 cgd }
952 1.1 cgd
953 1.1 cgd wmark()
954 1.1 cgd {
955 1.1 cgd register s;
956 1.1 cgd
957 1.1 cgd if (cmds(WRITEFM) == ERROR)
958 1.1 cgd return ERROR;
959 1.1 cgd
960 1.1 cgd do s = inb(STATPORT);
961 1.1 cgd while ((s & STAT) == STAT); /* wait for ready */
962 1.1 cgd
963 1.1 cgd if ((s & EXCEP) == 0) /* if exception */
964 1.1 cgd return ERROR; /* error */
965 1.1 cgd
966 1.1 cgd return SUCCESS;
967 1.1 cgd }
968 1.1 cgd
969 1.1 cgd rwind()
970 1.1 cgd {
971 1.1 cgd register s;
972 1.1 cgd
973 1.1 cgd mbits = CMDOFF;
974 1.1 cgd
975 1.1 cgd do s = inb(STATPORT);
976 1.1 cgd while ((s & STAT) == STAT); /* wait for ready */
977 1.1 cgd
978 1.1 cgd outb(CMDPORT, REWIND);
979 1.1 cgd sendcmd();
980 1.1 cgd
981 1.1 cgd return SUCCESS;
982 1.1 cgd }
983 1.1 cgd
984 1.1 cgd rdstatus(stp)
985 1.1 cgd char *stp; /* pointer to 6 byte buffer */
986 1.1 cgd {
987 1.1 cgd register s;
988 1.1 cgd int n;
989 1.1 cgd
990 1.1 cgd do s = inb(STATPORT);
991 1.1 cgd while ((s & STAT) == STAT); /* wait for ready or exception */
992 1.1 cgd
993 1.1 cgd outb(CMDPORT, RDSTAT);
994 1.1 cgd sendcmd(); /* send read status command */
995 1.1 cgd
996 1.1 cgd for (n=0; n<6; n++)
997 1.1 cgd {
998 1.1 cgd #ifdef DEBUGx
999 1.1 cgd debug("rdstatus: waiting, byte %d\n", n);
1000 1.1 cgd #endif
1001 1.1 cgd do s = inb(STATPORT);
1002 1.1 cgd while ((s & STAT) == STAT); /* wait for ready */
1003 1.1 cgd #ifdef DEBUGx
1004 1.1 cgd debug("rdstatus: done\n");
1005 1.1 cgd #endif
1006 1.1 cgd if ((s & EXCEP) == 0) /* if exception */
1007 1.1 cgd return ERROR; /* error */
1008 1.1 cgd
1009 1.1 cgd *stp++ = inb(DATAPORT); /* read status byte */
1010 1.1 cgd
1011 1.1 cgd outb(CTLPORT, mbits | REQUEST); /* set request */
1012 1.1 cgd #ifdef DEBUGx
1013 1.1 cgd debug("rdstatus: waiting after request, byte %d\n", n);
1014 1.1 cgd #endif
1015 1.1 cgd while ((inb(STATPORT)&READY) == 0); /* wait for not ready */
1016 1.1 cgd for (s=100; s>0; s--); /* wait an additional time */
1017 1.1 cgd
1018 1.1 cgd outb(CTLPORT, mbits & ~REQUEST);/* unset request */
1019 1.1 cgd #ifdef DEBUGx
1020 1.1 cgd debug("rdstatus: done\n");
1021 1.1 cgd #endif
1022 1.1 cgd }
1023 1.1 cgd return SUCCESS;
1024 1.1 cgd }
1025 1.1 cgd
1026 1.1 cgd t_reset()
1027 1.1 cgd {
1028 1.1 cgd register i;
1029 1.1 cgd mbits |= RESET;
1030 1.1 cgd outb(CTLPORT, mbits); /* send reset */
1031 1.1 cgd DELAY(20);
1032 1.1 cgd mbits &= ~RESET;
1033 1.1 cgd outb(CTLPORT, mbits); /* turn off reset */
1034 1.1 cgd if ((inb(STATPORT) & RESETMASK) == RESETVAL)
1035 1.1 cgd return SUCCESS;
1036 1.1 cgd return ERROR;
1037 1.1 cgd }
1038 1.1 cgd
1039 1.1 cgd static
1040 1.1 cgd dma()
1041 1.1 cgd {
1042 1.1 cgd int x=splbio();
1043 1.1 cgd wtdma();
1044 1.1 cgd outb(CLEARFF, 0);
1045 1.1 cgd outb(MODEREG, mode); /* set dma mode */
1046 1.1 cgd outb(dmareg, bufptr & 0xFF);
1047 1.1 cgd outb(dmareg, (bufptr>>8) & 0xFF);
1048 1.1 cgd outb(pagereg, (bufptr>>16) & 0xFF);
1049 1.1 cgd outb(dmareg+1, (BLKSIZE-1) & 0xFF);
1050 1.1 cgd outb(dmareg+1, (BLKSIZE-1) >> 8);
1051 1.1 cgd outb(wtport, eqdma+ONLINE);
1052 1.1 cgd outb(MASKREG, wtchan); /* enable command to 8237, start dma */
1053 1.1 cgd splx(x);
1054 1.1 cgd }
1055 1.1 cgd
1056 1.1 cgd static near
1057 1.1 cgd wtstart(buf, cnt)
1058 1.1 cgd long buf;
1059 1.1 cgd int cnt;
1060 1.1 cgd {
1061 1.1 cgd register s;
1062 1.1 cgd
1063 1.1 cgd bufptr = buf; /* init statics */
1064 1.1 cgd numbytes = cnt;
1065 1.1 cgd wci = 0; /* init flags */
1066 1.1 cgd exflag = 0;
1067 1.1 cgd bytes = 0; /* init counter */
1068 1.1 cgd
1069 1.1 cgd do s = inb(STATPORT) & STAT;
1070 1.1 cgd while (s == STAT); /* wait for ready or error */
1071 1.1 cgd
1072 1.1 cgd if (s & EXCEP) /* no error */
1073 1.1 cgd {
1074 1.1 cgd dma();
1075 1.1 cgd return SUCCESS;
1076 1.1 cgd }
1077 1.1 cgd return ERROR; /* error */
1078 1.1 cgd }
1079 1.1 cgd
1080 1.1 cgd rtape(buf, cnt)
1081 1.1 cgd long buf; /* physical address */
1082 1.1 cgd int cnt; /* number of bytes */
1083 1.1 cgd {
1084 1.1 cgd mode = dma_read;
1085 1.1 cgd return wtstart(buf,cnt);
1086 1.1 cgd }
1087 1.1 cgd
1088 1.1 cgd wtape(buf, cnt)
1089 1.1 cgd long buf; /* physical address */
1090 1.1 cgd int cnt; /* number of bytes */
1091 1.1 cgd {
1092 1.1 cgd mode = dma_write;
1093 1.1 cgd return wtstart(buf,cnt);
1094 1.1 cgd }
1095 1.1 cgd
1096 1.1 cgd isr()
1097 1.1 cgd {
1098 1.1 cgd int stat = inb(wtport);
1099 1.1 cgd if (!(stat & EXCEP)) /* exception during I/O */
1100 1.1 cgd {
1101 1.1 cgd if (bytes + BLKSIZE >= numbytes) wci = 1;
1102 1.1 cgd exflag = 1;
1103 1.1 cgd goto isrwake;
1104 1.1 cgd }
1105 1.1 cgd if ((stat & READY) || !(inb(STATUSREG) & dma_done))
1106 1.1 cgd return;
1107 1.1 cgd exflag = 0;
1108 1.1 cgd outb(wtport, ONLINE);
1109 1.1 cgd bytes += BLKSIZE;
1110 1.1 cgd if (bytes >= numbytes) /* normal completion of I/O */
1111 1.1 cgd {
1112 1.1 cgd wci = 1;
1113 1.1 cgd isrwake:
1114 1.1 cgd outb(MASKREG, 4+wtchan); /* turn off dma */
1115 1.1 cgd wtwake(); /* wake up user level */
1116 1.1 cgd }
1117 1.1 cgd else
1118 1.1 cgd { /* continue I/O */
1119 1.1 cgd bufptr += BLKSIZE;
1120 1.1 cgd dma();
1121 1.1 cgd }
1122 1.1 cgd }
1123 1.1 cgd
1124 1.1 cgd wtlinit()
1125 1.1 cgd {
1126 1.1 cgd switch (wtchan) {
1127 1.1 cgd case 1:
1128 1.1 cgd return;
1129 1.1 cgd case 2:
1130 1.1 cgd pagereg = 0x81;
1131 1.1 cgd dma_done = 4;
1132 1.1 cgd break;
1133 1.1 cgd case 3:
1134 1.1 cgd eqdma = 0x10;
1135 1.1 cgd pagereg = 0x82;
1136 1.1 cgd dma_done = 8;
1137 1.1 cgd break;
1138 1.1 cgd }
1139 1.1 cgd dma_write = wtchan+0x48;
1140 1.1 cgd dma_read = wtchan+0x44;
1141 1.1 cgd dmareg = wtchan+wtchan;
1142 1.1 cgd }
1143 1.1 cgd
1144 1.1 cgd wtsize()
1145 1.1 cgd {
1146 1.1 cgd }
1147 1.1 cgd
1148 1.1 cgd wtdump()
1149 1.1 cgd {
1150 1.1 cgd }
1151 1.1 cgd
1152 1.1 cgd #include "i386/isa/isa_device.h"
1153 1.1 cgd #include "i386/isa/icu.h"
1154 1.1 cgd
1155 1.1 cgd int wtprobe(), wtattach();
1156 1.1 cgd struct isa_driver wtdriver = {
1157 1.1 cgd wtprobe, wtattach, "wt",
1158 1.1 cgd };
1159 1.1 cgd
1160 1.1 cgd wtprobe(dvp)
1161 1.1 cgd struct isa_device *dvp;
1162 1.1 cgd {
1163 1.1 cgd int val,i,s;
1164 1.1 cgd
1165 1.1 cgd #ifdef lint
1166 1.1 cgd wtintr(0);
1167 1.1 cgd #endif
1168 1.1 cgd
1169 1.1 cgd wtport = dvp->id_iobase;
1170 1.1 cgd if(t_reset() != SUCCESS) return(0);
1171 1.1 cgd return(1);
1172 }
1173
1174 wtattach() { }
1175
1176 #endif NWT
1177