1 /*	$OpenBSD: wtreg.h,v 1.2 1997/11/07 08:07:13 niklas Exp $	*/
2 /*	$NetBSD: wtreg.h,v 1.5 1994/10/27 04:18:33 cgd Exp $	*/
3 
4 /*
5  * Streamer tape driver.
6  * Supports Archive and Wangtek compatible QIC-02/QIC-36 boards.
7  *
8  * Copyright (C) 1993 by:
9  *      Sergey Ryzhkov       <sir@kiae.su>
10  *      Serge Vakulenko      <vak@zebub.msk.su>
11  *
12  * This software is distributed with NO WARRANTIES, not even the implied
13  * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  *
15  * Authors grant any other persons or organisations permission to use
16  * or modify this software as long as this message is kept with the software,
17  * all derivative works or modified versions.
18  *
19  * This driver is derived from the old 386bsd Wangtek streamer tape driver,
20  * made by Robert Baron at CMU, based on Intel sources.
21  */
22 
23 /*
24  * Copyright (c) 1989 Carnegie-Mellon University.
25  * All rights reserved.
26  *
27  * Authors: Robert Baron
28  *
29  * Permission to use, copy, modify and distribute this software and
30  * its documentation is hereby granted, provided that both the copyright
31  * notice and this permission notice appear in all copies of the
32  * software, derivative works or modified versions, and any portions
33  * thereof, and that both notices appear in supporting documentation.
34  *
35  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
36  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
37  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
38  *
39  * Carnegie Mellon requests users of this software to return to
40  *
41  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
42  *  School of Computer Science
43  *  Carnegie Mellon University
44  *  Pittsburgh PA 15213-3890
45  *
46  * any improvements or extensions that they make and grant Carnegie the
47  * rights to redistribute these changes.
48  */
49 
50 /*
51  *  Copyright 1988, 1989 by Intel Corporation
52  */
53 
54 /* ioctl for direct QIC commands */
55 #define WTQICMD         _IO('W', 0)
56 
57 /* QIC-02 commands allowed for WTQICMD */
58 #define QIC_ERASE       0x22    /* erase the tape */
59 #define QIC_RETENS      0x24    /* retension the tape */
60 
61 /* internal QIC-02 commands */
62 #define QIC_RDDATA      0x80    /* read data */
63 #define QIC_READFM      0xa0    /* read file mark */
64 #define QIC_WRTDATA     0x40    /* write data */
65 #define QIC_WRITEFM     0x60    /* write file mark */
66 #define QIC_RDSTAT      0xc0    /* read status command */
67 #define QIC_REWIND      0x21    /* rewind command (position+bot) */
68 #define QIC_FMT11       0x26    /* set format QIC-11 */
69 #define QIC_FMT24       0x27    /* set format QIC-24 */
70 #define QIC_FMT120      0x28    /* set format QIC-120 */
71 #define QIC_FMT150      0x29    /* set format QIC-150 */
72 #define QIC_FMT300      0x2a    /* set format QIC-300/QIC-2100 */
73 #define QIC_FMT600      0x2b    /* set format QIC-600/QIC-2200 */
74 
75 /* tape driver flags */
76 #define TPINUSE         0x0001  /* tape is already open */
77 #define TPREAD          0x0002  /* tape is only open for reading */
78 #define TPWRITE         0x0004  /* tape is only open for writing */
79 #define TPSTART         0x0008  /* tape must be rewound and reset */
80 #define TPRMARK         0x0010  /* read file mark command outstanding */
81 #define TPWMARK         0x0020  /* write file mark command outstanding */
82 #define TPREW           0x0040  /* rewind command outstanding */
83 #define TPEXCEP         0x0080  /* i/o exception flag */
84 #define TPVOL           0x0100  /* read file mark or hit end of tape */
85 #define TPWO            0x0200  /* write command outstanding */
86 #define TPRO            0x0400  /* read command outstanding */
87 #define TPWANY          0x0800  /* write command requested */
88 #define TPRANY          0x1000  /* read command requested */
89 #define TPWP            0x2000  /* write protect error seen */
90 #define TPTIMER         0x4000  /* timer() is active */
91 #define TPACTIVE        0x8000  /* dma i/o active */
92 
93 /* controller error register bits */
94 #define TP_FIL          0x0001  /* File mark detected */
95 #define TP_BNL          0x0002  /* Block not located */
96 #define TP_UDA          0x0004  /* Unrecoverable data error */
97 #define TP_EOM          0x0008  /* End of media */
98 #define TP_WRP          0x0010  /* Write protected cartridge */
99 #define TP_USL          0x0020  /* Unselected drive */
100 #define TP_CNI          0x0040  /* Cartridge not in place */
101 #define TP_ST0          0x0080  /* Status byte 0 bits */
102 #define TP_ST0MASK      0x00ff  /* Status byte 0 mask */
103 #define TP_POR          0x0100  /* Power on/reset occurred */
104 #define TP_ERM          0x0200  /* Reserved for end of recorded media */
105 #define TP_BPE          0x0400  /* Reserved for bus parity error */
106 #define TP_BOM          0x0800  /* Beginning of media */
107 #define TP_MBD          0x1000  /* Marginal block detected */
108 #define TP_NDT          0x2000  /* No data detected */
109 #define TP_ILL          0x4000  /* Illegal command - should not happen! */
110 #define TP_ST1          0x8000  /* Status byte 1 bits */
111 #define TP_ST1MASK      0xff00  /* Status byte 1 mask */
112 
113 /* formats for printing flags and error values */
114 #define WTDS_BITS "\20\1inuse\2read\3write\4start\5rmark\6wmark\7rew\10excep\11vol\12wo\13ro\14wany\15rany\16wp\17timer\20active"
115 #define WTER_BITS "\20\1eof\2bnl\3uda\4eom\5wrp\6usl\7cni\11por\12erm\13bpe\14bom\15mbd\16ndt\17ill"
116 
117 /* device minor number */
118 #define WT_BSIZE        0100    /* long block flag */
119 #define WT_DENSEL       0070    /* density select mask */
120 #define WT_DENSDFLT     0000    /* default density */
121 #define WT_QIC11        0010    /* 11 megabytes? */
122 #define WT_QIC24        0020    /* 60 megabytes */
123 #define WT_QIC120       0030    /* 120 megabytes */
124 #define WT_QIC150       0040    /* 150 megabytes */
125 #define WT_QIC300       0050    /* 300 megabytes? */
126 #define WT_QIC600       0060    /* 600 megabytes? */
127