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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.         ktti.c        (c) 1998  Grant R. Guenther <grant@torque.net>
  3.                           Under the terms of the GNU General Public License.
  4. ktti.c is a low-level protocol driver for the KT Technology
  5. parallel port adapter.  This adapter is used in the "PHd" 
  6.         portable hard-drives.  As far as I can tell, this device
  7. supports 4-bit mode _only_.  
  8. */
  9. #define KTTI_VERSION      "1.0"
  10. #include <linux/module.h>
  11. #include <linux/delay.h>
  12. #include <linux/kernel.h>
  13. #include <linux/types.h>
  14. #include <linux/wait.h>
  15. #include <asm/io.h>
  16. #include "paride.h"
  17. #define j44(a,b)                (((a>>4)&0x0f)|(b&0xf0))
  18. /* cont = 0 - access the IDE register file 
  19.    cont = 1 - access the IDE command set 
  20. */
  21. static int  cont_map[2] = { 0x10, 0x08 };
  22. static void  ktti_write_regr( PIA *pi, int cont, int regr, int val)
  23. { int r;
  24. r = regr + cont_map[cont];
  25. w0(r); w2(0xb); w2(0xa); w2(3); w2(6); 
  26. w0(val); w2(3); w0(0); w2(6); w2(0xb);
  27. }
  28. static int ktti_read_regr( PIA *pi, int cont, int regr )
  29. { int  a, b, r;
  30.         r = regr + cont_map[cont];
  31.         w0(r); w2(0xb); w2(0xa); w2(9); w2(0xc); w2(9); 
  32. a = r1(); w2(0xc);  b = r1(); w2(9); w2(0xc); w2(9);
  33. return j44(a,b);
  34. }
  35. static void ktti_read_block( PIA *pi, char * buf, int count )
  36. { int  k, a, b;
  37. for (k=0;k<count/2;k++) {
  38. w0(0x10); w2(0xb); w2(0xa); w2(9); w2(0xc); w2(9);
  39. a = r1(); w2(0xc); b = r1(); w2(9);
  40. buf[2*k] = j44(a,b);
  41. a = r1(); w2(0xc); b = r1(); w2(9);
  42. buf[2*k+1] = j44(a,b);
  43. }
  44. }
  45. static void ktti_write_block( PIA *pi, char * buf, int count )
  46. { int k;
  47. for (k=0;k<count/2;k++) {
  48. w0(0x10); w2(0xb); w2(0xa); w2(3); w2(6);
  49. w0(buf[2*k]); w2(3);
  50. w0(buf[2*k+1]); w2(6);
  51. w2(0xb);
  52. }
  53. }
  54. static void ktti_connect ( PIA *pi  )
  55. {       pi->saved_r0 = r0();
  56.         pi->saved_r2 = r2();
  57. w2(0xb); w2(0xa); w0(0); w2(3); w2(6);
  58. }
  59. static void ktti_disconnect ( PIA *pi )
  60. {       w2(0xb); w2(0xa); w0(0xa0); w2(3); w2(4);
  61. w0(pi->saved_r0);
  62.         w2(pi->saved_r2);
  63. static void ktti_log_adapter( PIA *pi, char * scratch, int verbose )
  64. {       printk("%s: ktti %s, KT adapter at 0x%x, delay %dn",
  65.                 pi->device,KTTI_VERSION,pi->port,pi->delay);
  66. }
  67. static void ktti_init_proto( PIA *pi)
  68. {       MOD_INC_USE_COUNT;
  69. }
  70. static void ktti_release_proto( PIA *pi)
  71. {       MOD_DEC_USE_COUNT;
  72. }
  73. struct pi_protocol ktti = {"ktti",0,1,2,1,1,
  74.                            ktti_write_regr,
  75.                            ktti_read_regr,
  76.                            ktti_write_block,
  77.                            ktti_read_block,
  78.                            ktti_connect,
  79.                            ktti_disconnect,
  80.                            0,
  81.                            0,
  82.                            0,
  83.                            ktti_log_adapter,
  84.                            ktti_init_proto,
  85.                            ktti_release_proto
  86.                           };
  87. #ifdef MODULE
  88. int     init_module(void)
  89. {       return pi_register( &ktti ) - 1;
  90. }
  91. void    cleanup_module(void)
  92. {       pi_unregister( &ktti );
  93. }
  94. #endif
  95. /* end of ktti.c */
  96. MODULE_LICENSE("GPL");