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

驱动编程

开发平台:

Unix_Linux

  1. /* 
  2.         fit2.c        (c) 1998  Grant R. Guenther <grant@torque.net>
  3.                           Under the terms of the GNU General Public License.
  4. fit2.c is a low-level protocol driver for the older version
  5.         of the Fidelity International Technology parallel port adapter.  
  6. This adapter is used in their TransDisk 2000 and older TransDisk
  7. 3000 portable hard-drives.  As far as I can tell, this device
  8. supports 4-bit mode _only_.  
  9. Newer models of the FIT products use an enhanced protocol.
  10. The "fit3" protocol module should support current drives.
  11. */
  12. #define FIT2_VERSION      "1.0"
  13. #include <linux/module.h>
  14. #include <linux/init.h>
  15. #include <linux/delay.h>
  16. #include <linux/kernel.h>
  17. #include <linux/types.h>
  18. #include <linux/wait.h>
  19. #include <asm/io.h>
  20. #include "paride.h"
  21. #define j44(a,b)                (((a>>4)&0x0f)|(b&0xf0))
  22. /* cont = 0 - access the IDE register file 
  23.    cont = 1 - access the IDE command set 
  24. NB:  The FIT adapter does not appear to use the control registers.
  25. So, we map ALT_STATUS to STATUS and NO-OP writes to the device
  26. control register - this means that IDE reset will not work on these
  27. devices.
  28. */
  29. static void  fit2_write_regr( PIA *pi, int cont, int regr, int val)
  30. { if (cont == 1) return;
  31. w2(0xc); w0(regr); w2(4); w0(val); w2(5); w0(0); w2(4);
  32. }
  33. static int fit2_read_regr( PIA *pi, int cont, int regr )
  34. { int  a, b, r;
  35. if (cont) {
  36.   if (regr != 6) return 0xff;
  37.   r = 7;
  38. } else r = regr + 0x10;
  39. w2(0xc); w0(r); w2(4); w2(5); 
  40.          w0(0); a = r1();
  41.          w0(1); b = r1();
  42. w2(4);
  43. return j44(a,b);
  44. }
  45. static void fit2_read_block( PIA *pi, char * buf, int count )
  46. { int  k, a, b, c, d;
  47. w2(0xc); w0(0x10);
  48. for (k=0;k<count/4;k++) {
  49. w2(4); w2(5);
  50. w0(0); a = r1(); w0(1); b = r1();
  51. w0(3); c = r1(); w0(2); d = r1(); 
  52. buf[4*k+0] = j44(a,b);
  53. buf[4*k+1] = j44(d,c);
  54.                 w2(4); w2(5);
  55.                        a = r1(); w0(3); b = r1();
  56.                 w0(1); c = r1(); w0(0); d = r1(); 
  57.                 buf[4*k+2] = j44(d,c);
  58.                 buf[4*k+3] = j44(a,b);
  59. }
  60. w2(4);
  61. }
  62. static void fit2_write_block( PIA *pi, char * buf, int count )
  63. { int k;
  64. w2(0xc); w0(0); 
  65. for (k=0;k<count/2;k++) {
  66. w2(4); w0(buf[2*k]); 
  67. w2(5); w0(buf[2*k+1]);
  68. }
  69. w2(4);
  70. }
  71. static void fit2_connect ( PIA *pi  )
  72. {       pi->saved_r0 = r0();
  73.         pi->saved_r2 = r2();
  74. w2(0xcc); 
  75. }
  76. static void fit2_disconnect ( PIA *pi )
  77. {       w0(pi->saved_r0);
  78.         w2(pi->saved_r2);
  79. static void fit2_log_adapter( PIA *pi, char * scratch, int verbose )
  80. {       printk("%s: fit2 %s, FIT 2000 adapter at 0x%x, delay %dn",
  81.                 pi->device,FIT2_VERSION,pi->port,pi->delay);
  82. }
  83. static struct pi_protocol fit2 = {
  84. .owner = THIS_MODULE,
  85. .name = "fit2",
  86. .max_mode = 1,
  87. .epp_first = 2,
  88. .default_delay = 1,
  89. .max_units = 1,
  90. .write_regr = fit2_write_regr,
  91. .read_regr = fit2_read_regr,
  92. .write_block = fit2_write_block,
  93. .read_block = fit2_read_block,
  94. .connect = fit2_connect,
  95. .disconnect = fit2_disconnect,
  96. .log_adapter = fit2_log_adapter,
  97. };
  98. static int __init fit2_init(void)
  99. {
  100. return pi_register(&fit2)-1;
  101. }
  102. static void __exit fit2_exit(void)
  103. {
  104. pi_unregister(&fit2);
  105. }
  106. MODULE_LICENSE("GPL");
  107. module_init(fit2_init)
  108. module_exit(fit2_exit)