5 * Copyright (C) 1994-1996 Bas Laarhoven,
6 * (C) 1996-1997 Claus-Justus Heine.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; see the file COPYING. If not, write to
20 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 * $Source: /homes/cvs/ftape-stacked/include/linux/ftape.h,v $
24 * $Revision: 1.17.6.4 $
25 * $Date: 1997/11/25 01:52:54 $
27 * This file contains global definitions, typedefs and macro's
28 * for the QIC-40/80/3010/3020 floppy-tape driver for Linux.
31 #define FTAPE_VERSION "ftape v3.04d 25/11/97"
34 #include <linux/interrupt.h>
37 #include <linux/types.h>
38 #include <linux/mtio.h>
40 #define FT_SECTOR(x) (x+1) /* sector offset into real sector */
41 #define FT_SECTOR_SIZE 1024
42 #define FT_SECTORS_PER_SEGMENT 32
43 #define FT_ECC_SECTORS 3
44 #define FT_SEGMENT_SIZE ((FT_SECTORS_PER_SEGMENT - FT_ECC_SECTORS) * FT_SECTOR_SIZE)
45 #define FT_BUFF_SIZE (FT_SECTORS_PER_SEGMENT * FT_SECTOR_SIZE)
48 * bits of the minor device number that define drive selection
49 * methods. Could be used one day to access multiple tape
50 * drives on the same controller.
56 #define FTAPE_SEL_MASK 3
57 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
58 #define FTAPE_NO_REWIND 4 /* mask for minor nr */
60 /* the following two may be reported when MTIOCGET is requested ... */
79 #define FT_RQM_DELAY 12
80 #define FT_MILLISECOND 1
81 #define FT_SECOND 1000
84 #error "HZ undefined."
86 #define FT_USPT (1000000/HZ) /* microseconds per tick */
88 /* This defines the number of retries that the driver will allow
89 * before giving up (and letting a higher level handle the error).
92 #define FT_SOFT_RETRIES 1 /* number of low level retries */
93 #define FT_RETRIES_ON_ECC_ERROR 3 /* ecc error when correcting segment */
95 #define FT_SOFT_RETRIES 6 /* number of low level retries (triple) */
96 #define FT_RETRIES_ON_ECC_ERROR 3 /* ecc error when correcting segment */
99 #ifndef THE_FTAPE_MAINTAINER
100 #define THE_FTAPE_MAINTAINER "the ftape maintainer"
103 /* Initialize missing configuration parameters.
105 #ifndef CONFIG_FT_NR_BUFFERS
106 # define CONFIG_FT_NR_BUFFERS 3
108 #ifndef CONFIG_FT_FDC_THR
109 # define CONFIG_FT_FDC_THR 8
111 #ifndef CONFIG_FT_FDC_MAX_RATE
112 # define CONFIG_FT_FDC_MAX_RATE 2000
114 #ifndef CONFIG_FT_FDC_BASE
115 # define CONFIG_FT_FDC_BASE 0
117 #ifndef CONFIG_FT_FDC_IRQ
118 # define CONFIG_FT_FDC_IRQ 0
120 #ifndef CONFIG_FT_FDC_DMA
121 # define CONFIG_FT_FDC_DMA 0
124 /* Turn some booleans into numbers.
126 #ifdef CONFIG_FT_PROBE_FC10
127 # undef CONFIG_FT_PROBE_FC10
128 # define CONFIG_FT_PROBE_FC10 1
130 # define CONFIG_FT_PROBE_FC10 0
132 #ifdef CONFIG_FT_MACH2
133 # undef CONFIG_FT_MACH2
134 # define CONFIG_FT_MACH2 1
136 # define CONFIG_FT_MACH2 0
139 /* Insert default settings
141 #if CONFIG_FT_PROBE_FC10 == 1
142 # if CONFIG_FT_FDC_BASE == 0
143 # undef CONFIG_FT_FDC_BASE
144 # define CONFIG_FT_FDC_BASE 0x180
146 # if CONFIG_FT_FDC_IRQ == 0
147 # undef CONFIG_FT_FDC_IRQ
148 # define CONFIG_FT_FDC_IRQ 9
150 # if CONFIG_FT_FDC_DMA == 0
151 # undef CONFIG_FT_FDC_DMA
152 # define CONFIG_FT_FDC_DMA 3
154 #elif CONFIG_FT_MACH2 == 1 /* CONFIG_FT_PROBE_FC10 == 1 */
155 # if CONFIG_FT_FDC_BASE == 0
156 # undef CONFIG_FT_FDC_BASE
157 # define CONFIG_FT_FDC_BASE 0x1E0
159 # if CONFIG_FT_FDC_IRQ == 0
160 # undef CONFIG_FT_FDC_IRQ
161 # define CONFIG_FT_FDC_IRQ 6
163 # if CONFIG_FT_FDC_DMA == 0
164 # undef CONFIG_FT_FDC_DMA
165 # define CONFIG_FT_FDC_DMA 2
167 #elif defined(CONFIG_FT_ALT_FDC) /* CONFIG_FT_MACH2 */
168 # if CONFIG_FT_FDC_BASE == 0
169 # undef CONFIG_FT_FDC_BASE
170 # define CONFIG_FT_FDC_BASE 0x370
172 # if CONFIG_FT_FDC_IRQ == 0
173 # undef CONFIG_FT_FDC_IRQ
174 # define CONFIG_FT_FDC_IRQ 6
176 # if CONFIG_FT_FDC_DMA == 0
177 # undef CONFIG_FT_FDC_DMA
178 # define CONFIG_FT_FDC_DMA 2
180 #else /* CONFIG_FT_ALT_FDC */
181 # if CONFIG_FT_FDC_BASE == 0
182 # undef CONFIG_FT_FDC_BASE
183 # define CONFIG_FT_FDC_BASE 0x3f0
185 # if CONFIG_FT_FDC_IRQ == 0
186 # undef CONFIG_FT_FDC_IRQ
187 # define CONFIG_FT_FDC_IRQ 6
189 # if CONFIG_FT_FDC_DMA == 0
190 # undef CONFIG_FT_FDC_DMA
191 # define CONFIG_FT_FDC_DMA 2
193 #endif /* standard FDC */
195 /* some useful macro's
197 #define NR_ITEMS(x) (int)(sizeof(x)/ sizeof(*x))
199 #endif /* __KERNEL__ */