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

嵌入式Linux

开发平台:

Unix_Linux

  1. Intro
  2. =====
  3. This file describes some issues involved when using the "ftape"
  4. floppy tape device driver that comes with the Linux kernel. This
  5. document deals with ftape-3.04 and later. Please read the section
  6. "Changes" for the most striking differences between version 3.04 and
  7. 2.08; the latter was the version of ftape delivered with the kernel
  8. until kernel version 2.0.30 and 2.1.57. ftape-3.x developed as the
  9. re-unification of ftape-2.x and zftape. zftape was developed in
  10. parallel with the stock ftape-2.x driver sharing the same hardware
  11. support but providing an enhanced file system interface. zftape also
  12. provided user transparent block-wise on-the-fly compression (regard it
  13. as a feature or bug of zftape).
  14. ftape has a home page at
  15. http://www-math.math.rwth-aachen.de/~LBFM/claus/ftape
  16. which contains further information about ftape. Please cross check
  17. this WWW address against the address given (if any) in the MAINTAINERS
  18. file located in the top level directory of the Linux kernel source
  19. tree.
  20. Contents
  21. ========
  22. A minus 1: Ftape documentation
  23. A. Changes
  24.    1. Goal
  25.    2. I/O Block Size
  26.    3. Write Access when not at EOD (End Of Data) or BOT (Begin Of Tape)
  27.    4. MTBSF - backspace over file mark and position at its EOT side
  28.    5. Formatting
  29.    6. Interchanging cartridges with other operating systems
  30. B. Debugging Output
  31.    1. Introduction
  32.    2. Tuning the debugging output
  33. C. Boot and load time configuration
  34.    1. Setting boot time parameters
  35.    2. Module load time parameters
  36.    3. Ftape boot- and load time options
  37.    4. Example kernel parameter setting
  38.    5. Example module parameter setting
  39. D. Support and contacts
  40. *******************************************************************************
  41. A minus 1. Ftape documentation
  42. ==============================
  43. Unluckily, the ftape-HOWTO is out of date. This really needs to be
  44. changed. Up to date documentation as well as recent development
  45. versions of ftape and useful links to related topics can be found at
  46. the ftape home page at
  47. http://www-math.math.rwth-aachen.de/~LBFM/claus/ftape
  48. *******************************************************************************
  49. A. Changes
  50. ==========
  51. 1. Goal
  52.    ~~~~
  53.    The goal of all that incompatibilities was to give ftape an interface
  54.    that resembles the interface provided by SCSI tape drives as close
  55.    as possible. Thus any Unix backup program that is known to work
  56.    with SCSI tape drives should also work with ftape-3.04 and above.
  57.    The concept of a fixed block size for read/write transfers is
  58.    rather unrelated to this SCSI tape compatibility at the file system
  59.    interface level. It developed out of a feature of zftape, a
  60.    block wise user transparent on-the-fly compression. That compression
  61.    support will not be dropped in future releases for compatibility
  62.    reasons with previous releases of zftape.
  63. 2. I/O Block Size
  64.    ~~~~~~~~~~~~~~
  65.    The probably most striking difference between ftape-2.x and
  66.    ftape-3.x with the zftape file system interface is the concept of a
  67.    fixed block size: data must be written to or read from the tape in
  68.    multiples of a fixed block size. The block size defaults to 10k
  69.    which is the default block size of GNU tar. While this is quite
  70.    usual for SCSI tapes (block size of 32k?) and the QIC-150 driver
  71.    `./drivers/char/tpqic02.c' ftape-2.x allowed data to be written in
  72.    arbitrary portions to the tape.
  73.    The block size can be tuned either during kernel configuration or
  74.    at runtime with the MTIOCTOP ioctl using the MTSETBLK operation
  75.    (i.e. do "mt -f /dev/qft0" setblk #BLKSZ). A block size of 0
  76.    switches to variable block size mode i.e. "mt setblk 0" switches
  77.    off the block size restriction. However, this disables zftape's
  78.    built in on-the-fly compression which doesn't work with variable
  79.    block size mode.
  80.    The BLKSZ parameter must be given as a byte count and must be a
  81.    multiple of 32k or 0, i.e. use "mt setblk 32768" to switch to a
  82.    block size of 32k.
  83.    The typical symptom of a block size mismatch is an "invalid
  84.    argument" error message.
  85. 3. Write Access when not at EOD (End Of Data) or BOT (Begin Of Tape)
  86.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  87.    zftape (the file system interface of ftape-3.x) denies write access
  88.    to the tape cartridge when it isn't positioned either at BOT or
  89.    EOD. This inconvenience has been introduced as it was reported that
  90.    the former behavior of ftape-2.x which allowed write access at
  91.    arbitrary locations already has caused data loss with some backup
  92.    programs.
  93. 4. MTBSF - backspace over file mark and position at its EOT side
  94.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  95.    ftape-2.x didn't handle the MTBSF tape operation correctly. A MTBSF
  96.    call (i.e. "mt -f /dev/nqft0 bsf #COUNT") should space over #COUNT
  97.    file marks and then position at the EOT tape side of the file
  98.    mark. This has to be taken literally, i.e. "mt -f /dev/nqft0 bsf 1"
  99.    should simply position at the start of the current volume.
  100. 5. Formatting
  101.    ~~~~~~~~~~
  102.    ftape-3.x DOES support formatting of floppy tape cartridges. You
  103.    need the `ftformat' program that is shipped with the modules version
  104.    of ftape-3.x. Please get the latest version of ftape from
  105.    ftp://sunsite.unc.edu/pub/Linux/kernel/tapes
  106.    or from the ftape home page at
  107.    http://www-math.math.rwth-aachen.de/~LBFM/claus/ftape
  108.    `ftformat' is contained in the `./contrib/' subdirectory of that
  109.    separate ftape package.
  110. 6. Interchanging cartridges with other operating systems
  111.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  112.    The internal emulation of Unix tape device file marks has changed
  113.    completely. ftape-3.x now uses the volume table segment as specified
  114.    by the QIC-40/80/3010/3020/113 standards to emulate file marks. As
  115.    a consequence there is limited support to interchange cartridges
  116.    with other operating systems.
  117.    To be more precise: ftape will detect volumes written by other OS's
  118.    programs and other OS's programs will detect volumes written by
  119.    ftape-3.x.
  120.    However, it isn't possible to extract the data dumped to the tape
  121.    by some MSDOG program with ftape-3.x. This exceeds the scope of a
  122.    kernel device driver. If you need such functionality, then go ahead
  123.    and write a user space utility that is able to do
  124.    that. ftape-3.x/zftape already provides all kernel level support
  125.    necessary to do that.
  126. *******************************************************************************
  127. B. Debugging Output
  128.    ================
  129. 1. Introduction
  130.    ~~~~~~~~~~~~
  131.    The ftape driver can be very noisy in that is can print lots of
  132.    debugging messages to the kernel log files and the system console.
  133.    While this is useful for debugging it might be annoying during
  134.    normal use and enlarges the size of the driver by several kilobytes.
  135.    To reduce the size of the driver you can trim the maximal amount of
  136.    debugging information available during kernel configuration. Please
  137.    refer to the kernel configuration script and its on-line help
  138.    functionality.
  139.    The amount of debugging output maps to the "tracing" boot time
  140.    option and the "ft_tracing" modules option as follows:
  141.    0              bugs
  142.    1              + errors (with call-stack dump)
  143.    2              + warnings
  144.    3              + information
  145.    4              + more information
  146.    5              + program flow
  147.    6              + fdc/dma info
  148.    7              + data flow
  149.    8              + everything else
  150. 2. Tuning the debugging output
  151.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  152.    To reduce the amount of debugging output printed to the system
  153.    console you can
  154.    i)  trim the debugging output at run-time with
  155.        mt -f /dev/nqft0 setdensity #DBGLVL
  156.        where "#DBGLVL" is a number between 0 and 9
  157.    ii) trim the debugging output at module load time with
  158.        insmod ftape.o ft_tracing=#DBGLVL
  159.        Of course, this applies only if you have configured ftape to be
  160.        compiled as a module.
  161.    iii) trim the debugging output during system boot time. Add the
  162.        following to the kernel command line:
  163.        ftape=#DBGLVL,tracing
  164.        Please refer also to the next section if you don't know how to
  165.        set boot time parameters.
  166. *******************************************************************************
  167. C. Boot and load time configuration
  168.    ================================
  169. 1. Setting boot time parameters
  170.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  171.    Assuming that you use lilo, the LI)nux LO)ader, boot time kernel
  172.    parameters can be set by adding a line
  173.    append some_kernel_boot_time_parameter
  174.    to `/etc/lilo.conf' or at real boot time by typing in the options
  175.    at the prompt provided by LILO. I can't give you advice on how to
  176.    specify those parameters with other loaders as I don't use them.
  177.    For ftape, each "some_kernel_boot_time_parameter" looks like
  178.    "ftape=value,option". As an example, the debugging output can be
  179.    increased with
  180.    ftape=4,tracing
  181.    NOTE: the value precedes the option name.
  182. 2. Module load time parameters
  183.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  184.    Module parameters can be specified either directly when invoking
  185.    the program 'insmod' at the shell prompt:
  186.    insmod ftape.o ft_tracing=4
  187.    or by editing the file `/etc/modules.conf' in which case they take
  188.    effect each time when the module is loaded with `modprobe' (please
  189.    refer to the modules documentation, i.e. `modules.txt' and the
  190.    respective manual pages). Thus, you should add a line
  191.    options ftape ft_tracing=4
  192.    to `/etc/modules.conf` if you intend to increase the debugging
  193.    output of the driver.
  194. 3. Ftape boot- and load time options
  195.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  196.    i.   Controlling the amount of debugging output
  197.         DBGLVL has to be replaced by a number between 0 and 8.
  198.         module                 |  kernel command line
  199.         -----------------------|----------------------
  200.         ft_tracing=DBGLVL      |  ftape=DBGLVL,tracing
  201.    ii.  Hardware setup
  202. BASE is the base address of your floppy disk controller,
  203.         IRQ and DMA give its interrupt and DMA channel, respectively.
  204.         BOOL is an integer, "0" means "no"; any other value means
  205. "yes". You don't need to specify anything if connecting your tape
  206.         drive to the standard floppy disk controller. All of these
  207. values have reasonable defaults. The defaults can be modified
  208. during kernel configuration, i.e. while running "make config",
  209. "make menuconfig" or "make xconfig" in the top level directory
  210. of the Linux kernel source tree. Please refer also to the on
  211. line documentation provided during that kernel configuration
  212. process.
  213.         module                 |  kernel command line
  214.         -----------------------|----------------------
  215.         ft_fdc_base=BASE       |  ftape=BASE,ioport
  216.         ft_fdc_irq=IRQ         |  ftape=IRQ,irq
  217.         ft_fdc_dma=DMA         |  ftape=DMA,dma
  218.         ft_probe_fc10=BOOL     |  ftape=BOOL,fc10
  219.         ft_mach2=BOOL          |  ftape=BOOL,mach2
  220.         ft_fdc_threshold=THR   |  ftape=THR,threshold
  221.         ft_fdc_rate_limit=RATE |  ftape=RATE,datarate
  222. 4. Example kernel parameter setting
  223.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  224.    To configure ftape to probe for a Colorado FC-10/FC-20 controller
  225.    and to increase the amount of debugging output a little bit, add
  226.    the following line to `/etc/lilo.conf':
  227.    append ftape=1,fc10 ftape=4,tracing
  228. 5. Example module parameter setting
  229.    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  230.    To do the same, but with ftape compiled as a loadable kernel
  231.    module, add the following line to `/etc/modules.conf':
  232.    options ftape ft_probe_fc10=1 ft_tracing=4
  233. *******************************************************************************
  234. D. Support and contacts
  235.    ====================
  236.    Ftape is distributed under the GNU General Public License. There is
  237.    absolutely no warranty for this software. However, you can reach
  238.    the current maintainer of the ftape package under the email address
  239.    given in the MAINTAINERS file which is located in the top level
  240.    directory of the Linux kernel source tree. There you'll find also
  241.    the relevant mailing list to use as a discussion forum and the web
  242.    page to query for the most recent documentation, related work and
  243.    development versions of ftape.
  244.  LocalWords:  ftape Linux zftape http www rwth aachen LBFM claus EOD config
  245.  LocalWords:  datarate LocalWords BOT MTBSF EOT HOWTO QIC tpqic menuconfig
  246.  LocalWords:  MTIOCTOP MTSETBLK mt dev qft setblk BLKSZ bsf zftape's xconfig
  247.  LocalWords:  nqft ftformat ftp sunsite unc edu contrib ft MSDOG fdc
  248.  LocalWords:  dma setdensity DBGLVL insmod lilo LI nux ader conf txt
  249.  LocalWords:  modprobe IRQ BOOL ioport irq fc mach THR