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

Linux/Unix编程

开发平台:

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/delay.h>
  18. #include <linux/kernel.h>
  19. #include <linux/types.h>
  20. #include <linux/wait.h>
  21. #include <asm/io.h>
  22. #include "paride.h"
  23. #define j44(a,b)                (((a>>3)&0x0f)|((b<<1)&0xf0))
  24. #define w7(byte)                {out_p(7,byte);}
  25. #define r7()                    (in_p(7) & 0xff)
  26. /* cont = 0 - access the IDE register file 
  27.    cont = 1 - access the IDE command set 
  28. */
  29. static void  fit3_write_regr( PIA *pi, int cont, int regr, int val)
  30. { if (cont == 1) return;
  31. switch (pi->mode) {
  32. case 0:
  33. case 1: w2(0xc); w0(regr); w2(0x8); w2(0xc); 
  34. w0(val); w2(0xd); 
  35. w0(0);   w2(0xc);
  36. break;
  37. case 2: w2(0xc); w0(regr); w2(0x8); w2(0xc);
  38. w4(val); w4(0);
  39. w2(0xc);
  40. break;
  41. }
  42. }
  43. static int fit3_read_regr( PIA *pi, int cont, int regr )
  44. { int  a, b;
  45. if (cont) {
  46.   if (regr != 6) return 0xff;
  47.   regr = 7;
  48. switch (pi->mode) {
  49. case 0: w2(0xc); w0(regr + 0x10); w2(0x8); w2(0xc);
  50. w2(0xd); a = r1();
  51. w2(0xf); b = r1(); 
  52. w2(0xc);
  53. return j44(a,b);
  54. case 1: w2(0xc); w0(regr + 0x90); w2(0x8); w2(0xc);
  55. w2(0xec); w2(0xee); w2(0xef); a = r0(); 
  56. w2(0xc);
  57. return a;
  58. case 2: w2(0xc); w0(regr + 0x90); w2(0x8); w2(0xc); 
  59. w2(0xec); 
  60. a = r4(); b = r4(); 
  61. w2(0xc);
  62. return a;
  63. }
  64. return -1; 
  65. }
  66. static void fit3_read_block( PIA *pi, char * buf, int count )
  67. { int  k, a, b, c, d;
  68. switch (pi->mode) {
  69. case 0: w2(0xc); w0(0x10); w2(0x8); w2(0xc);
  70. for (k=0;k<count/2;k++) {
  71.     w2(0xd); a = r1();
  72.     w2(0xf); b = r1();
  73.     w2(0xc); c = r1();
  74.     w2(0xe); d = r1();
  75.     buf[2*k  ] = j44(a,b);
  76.     buf[2*k+1] = j44(c,d);
  77. }
  78. w2(0xc);
  79. break;
  80. case 1: w2(0xc); w0(0x90); w2(0x8); w2(0xc); 
  81. w2(0xec); w2(0xee);
  82. for (k=0;k<count/2;k++) {
  83.     w2(0xef); a = r0();
  84.     w2(0xee); b = r0();
  85.                     buf[2*k  ] = a;
  86.                     buf[2*k+1] = b;
  87. }
  88. w2(0xec); 
  89. w2(0xc);
  90. break;
  91. case 2: w2(0xc); w0(0x90); w2(0x8); w2(0xc); 
  92.                 w2(0xec);
  93. for (k=0;k<count;k++) buf[k] = r4();
  94.                 w2(0xc);
  95. break;
  96. }
  97. }
  98. static void fit3_write_block( PIA *pi, char * buf, int count )
  99. { int k;
  100.         switch (pi->mode) {
  101. case 0:
  102.         case 1: w2(0xc); w0(0); w2(0x8); w2(0xc);
  103.                 for (k=0;k<count/2;k++) {
  104.       w0(buf[2*k  ]); w2(0xd);
  105.       w0(buf[2*k+1]); w2(0xc);
  106. }
  107. break;
  108.         case 2: w2(0xc); w0(0); w2(0x8); w2(0xc); 
  109.                 for (k=0;k<count;k++) w4(buf[k]);
  110.                 w2(0xc);
  111. break;
  112. }
  113. }
  114. static void fit3_connect ( PIA *pi  )
  115. {       pi->saved_r0 = r0();
  116.         pi->saved_r2 = r2();
  117. w2(0xc); w0(0); w2(0xa);
  118. if (pi->mode == 2) { 
  119. w2(0xc); w0(0x9); w2(0x8); w2(0xc); 
  120. }
  121. }
  122. static void fit3_disconnect ( PIA *pi )
  123. {       w2(0xc); w0(0xa); w2(0x8); w2(0xc);
  124. w0(pi->saved_r0);
  125.         w2(pi->saved_r2);
  126. static void fit3_log_adapter( PIA *pi, char * scratch, int verbose )
  127. {       char    *mode_string[3] = {"4-bit","8-bit","EPP"};
  128. printk("%s: fit3 %s, FIT 3000 adapter at 0x%x, "
  129.        "mode %d (%s), delay %dn",
  130.                 pi->device,FIT3_VERSION,pi->port,
  131. pi->mode,mode_string[pi->mode],pi->delay);
  132. }
  133. static void fit3_init_proto(PIA *pi)
  134. {       MOD_INC_USE_COUNT;
  135. }
  136. static void fit3_release_proto(PIA *pi)
  137. {       MOD_DEC_USE_COUNT;
  138. }
  139. struct pi_protocol fit3 = {"fit3",0,3,2,1,1,
  140.                            fit3_write_regr,
  141.                            fit3_read_regr,
  142.                            fit3_write_block,
  143.                            fit3_read_block,
  144.                            fit3_connect,
  145.                            fit3_disconnect,
  146.                            0,
  147.                            0,
  148.                            0,
  149.                            fit3_log_adapter,
  150.                            fit3_init_proto,
  151.                            fit3_release_proto
  152.                           };
  153. #ifdef MODULE
  154. int     init_module(void)
  155. {       return pi_register( &fit3 ) - 1;
  156. }
  157. void    cleanup_module(void)
  158. {       pi_unregister( &fit3 );
  159. }
  160. #endif
  161. /* end of fit3.c */
  162. MODULE_LICENSE("GPL");