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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*  Driver for the Iomega MatchMaker parallel port SCSI HBA embedded in 
  2.  * the Iomega ZIP Plus drive
  3.  * 
  4.  * (c) 1998     David Campbell     campbell@torque.net
  5.  *
  6.  * Please note that I live in Perth, Western Australia. GMT+0800
  7.  */
  8. #ifndef _IMM_H
  9. #define _IMM_H
  10. #define   IMM_VERSION   "2.05 (for Linux 2.4.0)"
  11. /* 
  12.  * 10 Apr 1998 (Good Friday) - Received EN144302 by email from Iomega.
  13.  * Scarry thing is the level of support from one of their managers.
  14.  * The onus is now on us (the developers) to shut up and start coding.
  15.  *                                              11Apr98 [ 0.10 ]
  16.  *
  17.  * --- SNIP ---
  18.  *
  19.  * It manages to find the drive which is a good start. Writing data during
  20.  * data phase is known to be broken (due to requirements of two byte writes).
  21.  * Removing "Phase" debug messages.
  22.  *
  23.  * PS: Took four hours of coding after I bought a drive.
  24.  *      ANZAC Day (Aus "War Veterans Holiday")  25Apr98 [ 0.14 ]
  25.  *
  26.  * Ten minutes later after a few fixes.... (LITERALLY!!!)
  27.  * Have mounted disk, copied file, dismounted disk, remount disk, diff file
  28.  *                    -----  It actually works!!! -----
  29.  *                                              25Apr98 [ 0.15 ]
  30.  *
  31.  * Twenty minutes of mucking around, rearanged the IEEE negotiate mechanism.
  32.  * Now have byte mode working (only EPP and ECP to go now... :=)
  33.  *                                              26Apr98 [ 0.16 ]
  34.  *
  35.  * Thirty minutes of further coding results in EPP working on my machine.
  36.  *                                              27Apr98 [ 0.17 ]
  37.  *
  38.  * Due to work commitments and inability to get a "true" ECP mode functioning
  39.  * I have decided to code the parport support into imm.
  40.  *                                              09Jun98 [ 0.18 ]
  41.  *
  42.  * Driver is now out of beta testing.
  43.  * Support for parport has been added.
  44.  * Now distributed with the ppa driver.
  45.  *                                              12Jun98 [ 2.00 ]
  46.  *
  47.  * Err.. It appears that imm-2.00 was broken....
  48.  *                                              18Jun98 [ 2.01 ]
  49.  *
  50.  * Patch applied to sync this against the Linux 2.1.x kernel code
  51.  * Included qboot_zip.sh
  52.  *                                              21Jun98 [ 2.02 ]
  53.  *
  54.  * Other clean ups include the follow changes:
  55.  *    CONFIG_SCSI_PPA_HAVE_PEDANTIC => CONFIG_SCSI_IZIP_EPP16
  56.  *    added CONFIG_SCSI_IZIP_SLOW_CTR option
  57.  *                                                      [2.03]
  58.  *  Fix kernel panic on scsi timeout. 20Aug00 [2.04]
  59.  *
  60.  *  Avoid io_request_lock problems.
  61.  *  John Cavan <johncavan@home.com> 16Nov00 [2.05]
  62.  */
  63. /* ------ END OF USER CONFIGURABLE PARAMETERS ----- */
  64. #ifdef IMM_CODE
  65. #include  <linux/config.h>
  66. #include  <linux/stddef.h>
  67. #include  <linux/module.h>
  68. #include  <linux/kernel.h>
  69. #include  <linux/tqueue.h>
  70. #include  <linux/ioport.h>
  71. #include  <linux/delay.h>
  72. #include  <linux/proc_fs.h>
  73. #include  <linux/stat.h>
  74. #include  <linux/blk.h>
  75. #include  <linux/sched.h>
  76. #include  <linux/interrupt.h>
  77. #include  <asm/io.h>
  78. #include  "sd.h"
  79. #include  "hosts.h"
  80. /* batteries not included :-) */
  81. /*
  82.  * modes in which the driver can operate 
  83.  */
  84. #define   IMM_AUTODETECT        0 /* Autodetect mode                */
  85. #define   IMM_NIBBLE            1 /* work in standard 4 bit mode    */
  86. #define   IMM_PS2               2 /* PS/2 byte mode         */
  87. #define   IMM_EPP_8             3 /* EPP mode, 8 bit                */
  88. #define   IMM_EPP_16            4 /* EPP mode, 16 bit               */
  89. #define   IMM_EPP_32            5 /* EPP mode, 32 bit               */
  90. #define   IMM_UNKNOWN           6 /* Just in case...                */
  91. static char *IMM_MODE_STRING[] =
  92. {
  93.     "Autodetect",
  94.     "SPP",
  95.     "PS/2",
  96.     "EPP 8 bit",
  97.     "EPP 16 bit",
  98. #ifdef CONFIG_SCSI_IZIP_EPP16
  99.     "EPP 16 bit",
  100. #else
  101.     "EPP 32 bit",
  102. #endif
  103.     "Unknown"};
  104. /* This is a global option */
  105. int imm_sg = SG_ALL; /* enable/disable scatter-gather. */
  106. /* other options */
  107. #define IMM_CAN_QUEUE   1 /* use "queueing" interface */
  108. #define IMM_BURST_SIZE 512 /* data burst size */
  109. #define IMM_SELECT_TMO  500 /* 500 how long to wait for target ? */
  110. #define IMM_SPIN_TMO    5000 /* 50000 imm_wait loop limiter */
  111. #define IMM_DEBUG 0 /* debugging option */
  112. #define IN_EPP_MODE(x) (x == IMM_EPP_8 || x == IMM_EPP_16 || x == IMM_EPP_32)
  113. /* args to imm_connect */
  114. #define CONNECT_EPP_MAYBE 1
  115. #define CONNECT_NORMAL  0
  116. #define r_dtr(x)        (unsigned char)inb((x))
  117. #define r_str(x)        (unsigned char)inb((x)+1)
  118. #define r_ctr(x)        (unsigned char)inb((x)+2)
  119. #define r_epp(x)        (unsigned char)inb((x)+4)
  120. #define r_fifo(x)       (unsigned char)inb((x))   /* x must be base_hi */
  121. /* On PCI is: base+0x400 != base_hi */
  122. #define r_ecr(x)        (unsigned char)inb((x)+2) /* x must be base_hi */
  123. #define w_dtr(x,y)      outb(y, (x))
  124. #define w_str(x,y)      outb(y, (x)+1)
  125. #define w_epp(x,y)      outb(y, (x)+4)
  126. #define w_fifo(x,y)     outb(y, (x))     /* x must be base_hi */
  127. #define w_ecr(x,y)      outb(y, (x)+0x2) /* x must be base_hi */
  128. #ifdef CONFIG_SCSI_IZIP_SLOW_CTR
  129. #define w_ctr(x,y)      outb_p(y, (x)+2)
  130. #else
  131. #define w_ctr(x,y)      outb(y, (x)+2)
  132. #endif
  133. static int imm_engine(imm_struct *, Scsi_Cmnd *);
  134. static int imm_in(int, char *, int);
  135. static int imm_init(int);
  136. static void imm_interrupt(void *);
  137. static int imm_out(int, char *, int);
  138. #else
  139. #define imm_release 0
  140. #endif
  141. int imm_detect(Scsi_Host_Template *);
  142. const char *imm_info(struct Scsi_Host *);
  143. int imm_command(Scsi_Cmnd *);
  144. int imm_queuecommand(Scsi_Cmnd *, void (*done) (Scsi_Cmnd *));
  145. int imm_abort(Scsi_Cmnd *);
  146. int imm_reset(Scsi_Cmnd *);
  147. int imm_proc_info(char *, char **, off_t, int, int, int);
  148. int imm_biosparam(Disk *, kdev_t, int *);
  149. #define IMM { proc_name: "imm",
  150. proc_info: imm_proc_info,
  151. name: "Iomega VPI2 (imm) interface",
  152. detect: imm_detect,
  153. release: imm_release,
  154. command: imm_command,
  155. queuecommand: imm_queuecommand,
  156.                 eh_abort_handler:               imm_abort,              
  157.                 eh_device_reset_handler:        NULL,                   
  158.                 eh_bus_reset_handler:           imm_reset,              
  159.                 eh_host_reset_handler:          imm_reset,              
  160. use_new_eh_code: 1,
  161. bios_param:         imm_biosparam,
  162. this_id: 7,
  163. sg_tablesize: SG_ALL,
  164. cmd_per_lun: 1,
  165. use_clustering: ENABLE_CLUSTERING
  166. }
  167. #endif /* _IMM_H */