ftape-init.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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