ppa.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*  Driver for the PPA3 parallel port SCSI HBA embedded in 
  2.  * the Iomega ZIP drive
  3.  * 
  4.  * (c) 1996     Grant R. Guenther  grant@torque.net
  5.  *              David Campbell     campbell@torque.net
  6.  *
  7.  *      All comments to David.
  8.  */
  9. #ifndef _PPA_H
  10. #define _PPA_H
  11. #define   PPA_VERSION   "2.07 (for Linux 2.4.x)"
  12. /* 
  13.  * this driver has been hacked by Matteo Frigo (athena@theory.lcs.mit.edu)
  14.  * to support EPP and scatter-gather.                        [0.26-athena]
  15.  *
  16.  * additional hacks by David Campbell
  17.  * in response to this driver "mis-behaving" on his machine.
  18.  *      Fixed EPP to handle "software" changing of EPP port data direction.
  19.  *      Chased down EPP timeouts
  20.  *      Made this driver "kernel version friendly"           [0.28-athena]
  21.  *
  22.  * [ Stuff removed ]
  23.  *
  24.  * Corrected ppa.h for 2.1.x kernels (>=2.1.85)
  25.  * Modified "Nat Semi Kludge" for extended chipsets
  26.  *                                                      [1.41]
  27.  *
  28.  * Fixed id_probe for EPP 1.9 chipsets (misdetected as EPP 1.7)
  29.  *                                                      [1.42]
  30.  *
  31.  * Development solely for 2.1.x kernels from now on!
  32.  *                                                      [2.00]
  33.  *
  34.  * Hack and slash at the init code (EPP device check routine)
  35.  * Added INSANE option.
  36.  *                                                      [2.01]
  37.  *
  38.  * Patch applied to sync against the 2.1.x kernel code
  39.  * Included qboot_zip.sh
  40.  *                                                      [2.02]
  41.  *
  42.  * Cleaned up the mess left by someone else trying to fix the
  43.  * asm section to keep egcc happy. The asm section no longer
  44.  * exists, the nibble code is *almost* as fast as the asm code
  45.  * providing it is compiled with egcc.
  46.  *
  47.  * Other clean ups include the follow changes:
  48.  *    CONFIG_SCSI_PPA_HAVE_PEDANTIC => CONFIG_SCSI_IZIP_EPP16
  49.  *    added CONFIG_SCSI_IZIP_SLOW_CTR option
  50.  *                                                      [2.03]
  51.  *
  52.  * Use ppa_wait() to check for ready AND connected status bits
  53.  * Add ppa_wait() calls to ppa_completion()
  54.  *  by Peter Cherriman <pjc@ecs.soton.ac.uk> and
  55.  *     Tim Waugh <twaugh@redhat.com>
  56.  * [2.04]
  57.  *
  58.  * Fix kernel panic on scsi timeout, 2000-08-18 [2.05]
  59.  *
  60.  * Avoid io_request_lock problems.
  61.  * John Cavan <johncavan@home.com> [2.06]
  62.  *
  63.  * Busy wait for connected status bit in ppa_completion()
  64.  *  in order to cope with some hardware that has this bit low
  65.  *  for short periods of time.
  66.  * Add udelay() to ppa_select()
  67.  *  by Peter Cherriman <pjc@ecs.soton.ac.uk> and
  68.  *     Oleg Makarenko <omakarenko@cyberplat.ru>         
  69.  *                                                      [2.07]
  70.  */
  71. /* ------ END OF USER CONFIGURABLE PARAMETERS ----- */
  72. #ifdef PPA_CODE
  73. #include  <linux/config.h>
  74. #include  <linux/stddef.h>
  75. #include  <linux/module.h>
  76. #include  <linux/kernel.h>
  77. #include  <linux/tqueue.h>
  78. #include  <linux/ioport.h>
  79. #include  <linux/delay.h>
  80. #include  <linux/proc_fs.h>
  81. #include  <linux/stat.h>
  82. #include  <linux/blk.h>
  83. #include  <linux/sched.h>
  84. #include  <linux/interrupt.h>
  85. #include  <asm/io.h>
  86. #include  "sd.h"
  87. #include  "hosts.h"
  88. /* batteries not included :-) */
  89. /*
  90.  * modes in which the driver can operate 
  91.  */
  92. #define   PPA_AUTODETECT        0 /* Autodetect mode                */
  93. #define   PPA_NIBBLE            1 /* work in standard 4 bit mode    */
  94. #define   PPA_PS2               2 /* PS/2 byte mode         */
  95. #define   PPA_EPP_8             3 /* EPP mode, 8 bit                */
  96. #define   PPA_EPP_16            4 /* EPP mode, 16 bit               */
  97. #define   PPA_EPP_32            5 /* EPP mode, 32 bit               */
  98. #define   PPA_UNKNOWN           6 /* Just in case...                */
  99. static char *PPA_MODE_STRING[] =
  100. {
  101.     "Autodetect",
  102.     "SPP",
  103.     "PS/2",
  104.     "EPP 8 bit",
  105.     "EPP 16 bit",
  106. #ifdef CONFIG_SCSI_IZIP_EPP16
  107.     "EPP 16 bit",
  108. #else
  109.     "EPP 32 bit",
  110. #endif
  111.     "Unknown"};
  112. /* This is a global option */
  113. int ppa_sg = SG_ALL; /* enable/disable scatter-gather. */
  114. /* other options */
  115. #define PPA_CAN_QUEUE   1 /* use "queueing" interface */
  116. #define PPA_BURST_SIZE 512 /* data burst size */
  117. #define PPA_SELECT_TMO  5000 /* how long to wait for target ? */
  118. #define PPA_SPIN_TMO    50000 /* ppa_wait loop limiter */
  119. #define PPA_RECON_TMO   500 /* scsi reconnection loop limiter */
  120. #define PPA_DEBUG 0 /* debugging option */
  121. #define IN_EPP_MODE(x) (x == PPA_EPP_8 || x == PPA_EPP_16 || x == PPA_EPP_32)
  122. /* args to ppa_connect */
  123. #define CONNECT_EPP_MAYBE 1
  124. #define CONNECT_NORMAL  0
  125. #define r_dtr(x)        (unsigned char)inb((x))
  126. #define r_str(x)        (unsigned char)inb((x)+1)
  127. #define r_ctr(x)        (unsigned char)inb((x)+2)
  128. #define r_epp(x)        (unsigned char)inb((x)+4)
  129. #define r_fifo(x)       (unsigned char)inb((x)) /* x must be base_hi */
  130. /* On PCI is base+0x400 != base_hi */
  131. #define r_ecr(x)        (unsigned char)inb((x)+0x2) /* x must be base_hi */
  132. #define w_dtr(x,y)      outb(y, (x))
  133. #define w_str(x,y)      outb(y, (x)+1)
  134. #define w_epp(x,y)      outb(y, (x)+4)
  135. #define w_fifo(x,y)     outb(y, (x)) /* x must be base_hi */
  136. #define w_ecr(x,y)      outb(y, (x)+0x2)/* x must be base_hi */
  137. #ifdef CONFIG_SCSI_IZIP_SLOW_CTR
  138. #define w_ctr(x,y)      outb_p(y, (x)+2)
  139. #else
  140. #define w_ctr(x,y)      outb(y, (x)+2)
  141. #endif
  142. static int ppa_engine(ppa_struct *, Scsi_Cmnd *);
  143. static int ppa_in(int, char *, int);
  144. static int ppa_init(int);
  145. static void ppa_interrupt(void *);
  146. static int ppa_out(int, char *, int);
  147. #else
  148. #define ppa_release 0
  149. #endif
  150. int ppa_detect(Scsi_Host_Template *);
  151. const char *ppa_info(struct Scsi_Host *);
  152. int ppa_command(Scsi_Cmnd *);
  153. int ppa_queuecommand(Scsi_Cmnd *, void (*done) (Scsi_Cmnd *));
  154. int ppa_abort(Scsi_Cmnd *);
  155. int ppa_reset(Scsi_Cmnd *);
  156. int ppa_proc_info(char *, char **, off_t, int, int, int);
  157. int ppa_biosparam(Disk *, kdev_t, int *);
  158. #define PPA { proc_name: "ppa",
  159. proc_info: ppa_proc_info,
  160. name: "Iomega VPI0 (ppa) interface",
  161. detect: ppa_detect,
  162. release: ppa_release,
  163. command: ppa_command,
  164. queuecommand: ppa_queuecommand,
  165. eh_abort_handler: ppa_abort,
  166. eh_device_reset_handler: NULL,
  167. eh_bus_reset_handler: ppa_reset,
  168. eh_host_reset_handler: ppa_reset,
  169. use_new_eh_code: 1,
  170. bios_param: ppa_biosparam,
  171. this_id: -1,
  172. sg_tablesize: SG_ALL,
  173. cmd_per_lun: 1,
  174. use_clustering: ENABLE_CLUSTERING
  175. }
  176. #endif /* _PPA_H */