fit3.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:4k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /* 
  2.         fit3.c        (c) 1998  Grant R. Guenther <grant@torque.net>
  3.                           Under the terms of the GNU General Public License.
  4. fit3.c is a low-level protocol driver for newer models 
  5.         of the Fidelity International Technology parallel port adapter.  
  6. This adapter is used in their TransDisk 3000 portable 
  7. hard-drives, as well as CD-ROM, PD-CD and other devices.
  8. The TD-2000 and certain older devices use a different protocol.
  9. Try the fit2 protocol module with them.
  10.         NB:  The FIT adapters do not appear to support the control 
  11. registers.  So, we map ALT_STATUS to STATUS and NO-OP writes 
  12. to the device control register - this means that IDE reset 
  13. will not work on these devices.
  14. */
  15. #define FIT3_VERSION      "1.0"
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/delay.h>
  19. #include <linux/kernel.h>
  20. #include <linux/types.h>
  21. #include <linux/wait.h>
  22. #include <asm/io.h>
  23. #include "paride.h"
  24. #define j44(a,b)                (((a>>3)&0x0f)|((b<<1)&0xf0))
  25. #define w7(byte)                {out_p(7,byte);}
  26. #define r7()                    (in_p(7) & 0xff)
  27. /* cont = 0 - access the IDE register file 
  28.    cont = 1 - access the IDE command set 
  29. */
  30. static void  fit3_write_regr( PIA *pi, int cont, int regr, int val)
  31. { if (cont == 1) return;
  32. switch (pi->mode) {
  33. case 0:
  34. case 1: w2(0xc); w0(regr); w2(0x8); w2(0xc); 
  35. w0(val); w2(0xd); 
  36. w0(0);   w2(0xc);
  37. break;
  38. case 2: w2(0xc); w0(regr); w2(0x8); w2(0xc);
  39. w4(val); w4(0);
  40. w2(0xc);
  41. break;
  42. }
  43. }
  44. static int fit3_read_regr( PIA *pi, int cont, int regr )
  45. { int  a, b;
  46. if (cont) {
  47.   if (regr != 6) return 0xff;
  48.   regr = 7;
  49. switch (pi->mode) {
  50. case 0: w2(0xc); w0(regr + 0x10); w2(0x8); w2(0xc);
  51. w2(0xd); a = r1();
  52. w2(0xf); b = r1(); 
  53. w2(0xc);
  54. return j44(a,b);
  55. case 1: w2(0xc); w0(regr + 0x90); w2(0x8); w2(0xc);
  56. w2(0xec); w2(0xee); w2(0xef); a = r0(); 
  57. w2(0xc);
  58. return a;
  59. case 2: w2(0xc); w0(regr + 0x90); w2(0x8); w2(0xc); 
  60. w2(0xec); 
  61. a = r4(); b = r4(); 
  62. w2(0xc);
  63. return a;
  64. }
  65. return -1; 
  66. }
  67. static void fit3_read_block( PIA *pi, char * buf, int count )
  68. { int  k, a, b, c, d;
  69. switch (pi->mode) {
  70. case 0: w2(0xc); w0(0x10); w2(0x8); w2(0xc);
  71. for (k=0;k<count/2;k++) {
  72.     w2(0xd); a = r1();
  73.     w2(0xf); b = r1();
  74.     w2(0xc); c = r1();
  75.     w2(0xe); d = r1();
  76.     buf[2*k  ] = j44(a,b);
  77.     buf[2*k+1] = j44(c,d);
  78. }
  79. w2(0xc);
  80. break;
  81. case 1: w2(0xc); w0(0x90); w2(0x8); w2(0xc); 
  82. w2(0xec); w2(0xee);
  83. for (k=0;k<count/2;k++) {
  84.     w2(0xef); a = r0();
  85.     w2(0xee); b = r0();
  86.                     buf[2*k  ] = a;
  87.                     buf[2*k+1] = b;
  88. }
  89. w2(0xec); 
  90. w2(0xc);
  91. break;
  92. case 2: w2(0xc); w0(0x90); w2(0x8); w2(0xc); 
  93.                 w2(0xec);
  94. for (k=0;k<count;k++) buf[k] = r4();
  95.                 w2(0xc);
  96. break;
  97. }
  98. }
  99. static void fit3_write_block( PIA *pi, char * buf, int count )
  100. { int k;
  101.         switch (pi->mode) {
  102. case 0:
  103.         case 1: w2(0xc); w0(0); w2(0x8); w2(0xc);
  104.                 for (k=0;k<count/2;k++) {
  105.       w0(buf[2*k  ]); w2(0xd);
  106.       w0(buf[2*k+1]); w2(0xc);
  107. }
  108. break;
  109.         case 2: w2(0xc); w0(0); w2(0x8); w2(0xc); 
  110.                 for (k=0;k<count;k++) w4(buf[k]);
  111.                 w2(0xc);
  112. break;
  113. }
  114. }
  115. static void fit3_connect ( PIA *pi  )
  116. {       pi->saved_r0 = r0();
  117.         pi->saved_r2 = r2();
  118. w2(0xc); w0(0); w2(0xa);
  119. if (pi->mode == 2) { 
  120. w2(0xc); w0(0x9); w2(0x8); w2(0xc); 
  121. }
  122. }
  123. static void fit3_disconnect ( PIA *pi )
  124. {       w2(0xc); w0(0xa); w2(0x8); w2(0xc);
  125. w0(pi->saved_r0);
  126.         w2(pi->saved_r2);
  127. static void fit3_log_adapter( PIA *pi, char * scratch, int verbose )
  128. {       char    *mode_string[3] = {"4-bit","8-bit","EPP"};
  129. printk("%s: fit3 %s, FIT 3000 adapter at 0x%x, "
  130.        "mode %d (%s), delay %dn",
  131.                 pi->device,FIT3_VERSION,pi->port,
  132. pi->mode,mode_string[pi->mode],pi->delay);
  133. }
  134. static struct pi_protocol fit3 = {
  135. .owner = THIS_MODULE,
  136. .name = "fit3",
  137. .max_mode = 3,
  138. .epp_first = 2,
  139. .default_delay = 1,
  140. .max_units = 1,
  141. .write_regr = fit3_write_regr,
  142. .read_regr = fit3_read_regr,
  143. .write_block = fit3_write_block,
  144. .read_block = fit3_read_block,
  145. .connect = fit3_connect,
  146. .disconnect = fit3_disconnect,
  147. .log_adapter = fit3_log_adapter,
  148. };
  149. static int __init fit3_init(void)
  150. {
  151. return pi_register(&fit3)-1;
  152. }
  153. static void __exit fit3_exit(void)
  154. {
  155. pi_unregister(&fit3);
  156. }
  157. MODULE_LICENSE("GPL");
  158. module_init(fit3_init)
  159. module_exit(fit3_exit)