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