ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / drivers / char / ftape / lowlevel / ftape-init.c
1 /*
2  *      Copyright (C) 1993-1996 Bas Laarhoven,
3  *                (C) 1996-1997 Claus-Justus Heine.
4
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2, or (at your option)
8  any later version.
9
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  GNU General Public License for more details.
14
15  You should have received a copy of the GNU General Public License
16  along with this program; see the file COPYING.  If not, write to
17  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18
19  *
20  *      This file contains the code that interfaces the kernel
21  *      for the QIC-40/80/3010/3020 floppy-tape driver for Linux.
22  */
23
24 #include <linux/config.h>
25 #include <linux/module.h>
26 #include <linux/version.h>
27 #include <linux/errno.h>
28 #include <linux/fs.h>
29 #include <linux/kernel.h>
30 #include <linux/signal.h>
31 #include <linux/major.h>
32
33 #include <linux/ftape.h>
34 #include <linux/init.h>
35 #include <linux/qic117.h>
36 #ifdef CONFIG_ZFTAPE
37 #include <linux/zftape.h>
38 #endif
39
40 #include "../lowlevel/ftape-init.h"
41 #include "../lowlevel/ftape-io.h"
42 #include "../lowlevel/ftape-read.h"
43 #include "../lowlevel/ftape-write.h"
44 #include "../lowlevel/ftape-ctl.h"
45 #include "../lowlevel/ftape-rw.h"
46 #include "../lowlevel/fdc-io.h"
47 #include "../lowlevel/ftape-buffer.h"
48 #include "../lowlevel/ftape-proc.h"
49 #include "../lowlevel/ftape-tracing.h"
50
51 /*      Global vars.
52  */
53 char ft_src[] __initdata = "$Source: /homes/cvs/ftape-stacked/ftape/lowlevel/ftape-init.c,v $";
54 char ft_rev[] __initdata = "$Revision: 1.8 $";
55 char ft_dat[] __initdata = "$Date: 1997/11/06 00:38:08 $";
56
57
58 #ifndef CONFIG_FT_NO_TRACE_AT_ALL
59 static int ft_tracing = -1;
60 #endif
61
62
63 /*  Called by modules package when installing the driver
64  *  or by kernel during the initialization phase
65  */
66 static int __init ftape_init(void)
67 {
68         TRACE_FUN(ft_t_flow);
69
70 #ifdef MODULE
71 #ifndef CONFIG_FT_NO_TRACE_AT_ALL
72         if (ft_tracing != -1) {
73                 ftape_tracing = ft_tracing;
74         }
75 #endif
76         printk(KERN_INFO FTAPE_VERSION "\n");
77         if (TRACE_LEVEL >= ft_t_info) {
78                 printk(
79 KERN_INFO "(c) 1993-1996 Bas Laarhoven (bas@vimec.nl)\n"
80 KERN_INFO "(c) 1995-1996 Kai Harrekilde-Petersen (khp@dolphinics.no)\n"
81 KERN_INFO "(c) 1996-1997 Claus-Justus Heine (claus@momo.math.rwth-aachen.de)\n"
82 KERN_INFO "QIC-117 driver for QIC-40/80/3010/3020 floppy tape drives\n"
83 KERN_INFO "Compiled for Linux version %s\n", UTS_RELEASE);
84         }
85 #else /* !MODULE */
86         /* print a short no-nonsense boot message */
87         printk(KERN_INFO FTAPE_VERSION " for Linux " UTS_RELEASE "\n");
88 #endif /* MODULE */
89         TRACE(ft_t_info, "installing QIC-117 floppy tape hardware drive ... ");
90         TRACE(ft_t_info, "ftape_init @ 0x%p", ftape_init);
91         /*  Allocate the DMA buffers. They are deallocated at cleanup() time.
92          */
93 #if TESTING
94 #ifdef MODULE
95         while (ftape_set_nr_buffers(CONFIG_FT_NR_BUFFERS) < 0) {
96                 ftape_sleep(FT_SECOND/20);
97                 if (signal_pending(current)) {
98                         (void)ftape_set_nr_buffers(0);
99                         TRACE(ft_t_bug,
100                               "Killed by signal while allocating buffers.");
101                         TRACE_ABORT(-EINTR, 
102                                     ft_t_bug, "Free up memory and retry");
103                 }
104         }
105 #else
106         TRACE_CATCH(ftape_set_nr_buffers(CONFIG_FT_NR_BUFFERS),
107                     (void)ftape_set_nr_buffers(0));
108 #endif
109 #else
110         TRACE_CATCH(ftape_set_nr_buffers(CONFIG_FT_NR_BUFFERS),
111                     (void)ftape_set_nr_buffers(0));
112 #endif
113         ft_drive_sel = -1;
114         ft_failure   = 1;         /* inhibit any operation but open */
115         ftape_udelay_calibrate(); /* must be before fdc_wait_calibrate ! */
116         fdc_wait_calibrate();
117 #if defined(CONFIG_PROC_FS) && defined(CONFIG_FT_PROC_FS)
118         (void)ftape_proc_init();
119 #endif
120 #ifdef CONFIG_ZFTAPE
121         (void)zft_init();
122 #endif
123         TRACE_EXIT 0;
124 }
125 #define FT_MOD_PARM(var,type,desc) \
126         MODULE_PARM(var,type); MODULE_PARM_DESC(var,desc)
127
128 FT_MOD_PARM(ft_fdc_base,       "i", "Base address of FDC controller.");
129 FT_MOD_PARM(ft_fdc_irq,        "i", "IRQ (interrupt channel) to use.");
130 FT_MOD_PARM(ft_fdc_dma,        "i", "DMA channel to use.");
131 FT_MOD_PARM(ft_fdc_threshold,  "i", "Threshold of the FDC Fifo.");
132 FT_MOD_PARM(ft_fdc_rate_limit, "i", "Maximal data rate for FDC.");
133 FT_MOD_PARM(ft_probe_fc10,     "i", 
134             "If non-zero, probe for a Colorado FC-10/FC-20 controller.");
135 FT_MOD_PARM(ft_mach2,          "i",
136             "If non-zero, probe for a Mountain MACH-2 controller.");
137 FT_MOD_PARM(ft_tracing,        "i", 
138             "Amount of debugging output, 0 <= tracing <= 8, default 3.");
139 MODULE_AUTHOR(
140         "(c) 1993-1996 Bas Laarhoven (bas@vimec.nl), "
141         "(c) 1995-1996 Kai Harrekilde-Petersen (khp@dolphinics.no), "
142         "(c) 1996, 1997 Claus-Justus Heine (claus@momo.math.rwth-aachen.de)");
143 MODULE_DESCRIPTION(
144         "QIC-117 driver for QIC-40/80/3010/3020 floppy tape drives.");
145 MODULE_LICENSE("GPL");
146
147 static void __exit ftape_exit(void)
148 {
149         TRACE_FUN(ft_t_flow);
150
151 #if defined(CONFIG_PROC_FS) && defined(CONFIG_FT_PROC_FS)
152         ftape_proc_destroy();
153 #endif
154         (void)ftape_set_nr_buffers(0);
155         printk(KERN_INFO "ftape: unloaded.\n");
156         TRACE_EXIT;
157 }
158
159 module_init(ftape_init);
160 module_exit(ftape_exit);