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

驱动编程

开发平台:

Unix_Linux

  1. /* 
  2.         dstr.c    (c) 1997-8  Grant R. Guenther <grant@torque.net>
  3.                               Under the terms of the GNU General Public License.
  4.         dstr.c is a low-level protocol driver for the 
  5.         DataStor EP2000 parallel to IDE adapter chip.
  6. */
  7. /* Changes:
  8.         1.01    GRG 1998.05.06 init_proto, release_proto
  9. */
  10. #define DSTR_VERSION      "1.01"
  11. #include <linux/module.h>
  12. #include <linux/init.h>
  13. #include <linux/delay.h>
  14. #include <linux/kernel.h>
  15. #include <linux/types.h>
  16. #include <linux/wait.h>
  17. #include <asm/io.h>
  18. #include "paride.h"
  19. /* mode codes:  0  nybble reads, 8-bit writes
  20.                 1  8-bit reads and writes
  21.                 2  8-bit EPP mode
  22. 3  EPP-16
  23. 4  EPP-32
  24. */
  25. #define j44(a,b)  (((a>>3)&0x07)|((~a>>4)&0x08)|((b<<1)&0x70)|((~b)&0x80))
  26. #define P1 w2(5);w2(0xd);w2(5);w2(4);
  27. #define P2 w2(5);w2(7);w2(5);w2(4);
  28. #define P3      w2(6);w2(4);w2(6);w2(4);
  29. /* cont = 0 - access the IDE register file 
  30.    cont = 1 - access the IDE command set 
  31. */
  32. static int  cont_map[2] = { 0x20, 0x40 };
  33. static int dstr_read_regr( PIA *pi, int cont, int regr )
  34. {       int     a, b, r;
  35.         r = regr + cont_map[cont];
  36. w0(0x81); P1;
  37. if (pi->mode) { w0(0x11); } else { w0(1); }
  38. P2; w0(r); P1;
  39.         switch (pi->mode)  {
  40.         case 0: w2(6); a = r1(); w2(4); w2(6); b = r1(); w2(4);
  41.                 return j44(a,b);
  42.         case 1: w0(0); w2(0x26); a = r0(); w2(4);
  43.                 return a;
  44. case 2:
  45. case 3:
  46.         case 4: w2(0x24); a = r4(); w2(4);
  47.                 return a;
  48.         }
  49.         return -1;
  50. }       
  51. static void dstr_write_regr(  PIA *pi, int cont, int regr, int val )
  52. {       int  r;
  53.         r = regr + cont_map[cont];
  54. w0(0x81); P1; 
  55. if (pi->mode >= 2) { w0(0x11); } else { w0(1); }
  56. P2; w0(r); P1;
  57.         switch (pi->mode)  {
  58.         case 0:
  59.         case 1: w0(val); w2(5); w2(7); w2(5); w2(4);
  60. break;
  61. case 2:
  62. case 3:
  63.         case 4: w4(val); 
  64.                 break;
  65.         }
  66. }
  67. #define  CCP(x)  w0(0xff);w2(0xc);w2(4);
  68.  w0(0xaa);w0(0x55);w0(0);w0(0xff);w0(0x87);w0(0x78);
  69.  w0(x);w2(5);w2(4);
  70. static void dstr_connect ( PIA *pi  )
  71. {       pi->saved_r0 = r0();
  72.         pi->saved_r2 = r2();
  73.         w2(4); CCP(0xe0); w0(0xff);
  74. }
  75. static void dstr_disconnect ( PIA *pi )
  76. {       CCP(0x30);
  77.         w0(pi->saved_r0);
  78.         w2(pi->saved_r2);
  79. static void dstr_read_block( PIA *pi, char * buf, int count )
  80. {       int     k, a, b;
  81.         w0(0x81); P1;
  82.         if (pi->mode) { w0(0x19); } else { w0(9); }
  83. P2; w0(0x82); P1; P3; w0(0x20); P1;
  84.         switch (pi->mode) {
  85.         case 0: for (k=0;k<count;k++) {
  86.                         w2(6); a = r1(); w2(4);
  87.                         w2(6); b = r1(); w2(4);
  88.                         buf[k] = j44(a,b);
  89.                 } 
  90.                 break;
  91.         case 1: w0(0);
  92.                 for (k=0;k<count;k++) {
  93.                         w2(0x26); buf[k] = r0(); w2(0x24);
  94.                 }
  95.                 w2(4);
  96.                 break;
  97.         case 2: w2(0x24); 
  98.                 for (k=0;k<count;k++) buf[k] = r4();
  99.                 w2(4);
  100.                 break;
  101.         case 3: w2(0x24); 
  102.                 for (k=0;k<count/2;k++) ((u16 *)buf)[k] = r4w();
  103.                 w2(4);
  104.                 break;
  105.         case 4: w2(0x24); 
  106.                 for (k=0;k<count/4;k++) ((u32 *)buf)[k] = r4l();
  107.                 w2(4);
  108.                 break;
  109.         }
  110. }
  111. static void dstr_write_block( PIA *pi, char * buf, int count )
  112. {       int k;
  113.         w0(0x81); P1;
  114.         if (pi->mode) { w0(0x19); } else { w0(9); }
  115.         P2; w0(0x82); P1; P3; w0(0x20); P1;
  116.         switch (pi->mode) {
  117.         case 0:
  118.         case 1: for (k=0;k<count;k++) {
  119.                         w2(5); w0(buf[k]); w2(7);
  120.                 }
  121.                 w2(5); w2(4);
  122.                 break;
  123.         case 2: w2(0xc5);
  124.                 for (k=0;k<count;k++) w4(buf[k]);
  125. w2(0xc4);
  126.                 break;
  127.         case 3: w2(0xc5);
  128.                 for (k=0;k<count/2;k++) w4w(((u16 *)buf)[k]);
  129.                 w2(0xc4);
  130.                 break;
  131.         case 4: w2(0xc5);
  132.                 for (k=0;k<count/4;k++) w4l(((u32 *)buf)[k]);
  133.                 w2(0xc4);
  134.                 break;
  135.         }
  136. }
  137. static void dstr_log_adapter( PIA *pi, char * scratch, int verbose )
  138. {       char    *mode_string[5] = {"4-bit","8-bit","EPP-8",
  139.    "EPP-16","EPP-32"};
  140.         printk("%s: dstr %s, DataStor EP2000 at 0x%x, ",
  141.                 pi->device,DSTR_VERSION,pi->port);
  142.         printk("mode %d (%s), delay %dn",pi->mode,
  143. mode_string[pi->mode],pi->delay);
  144. }
  145. static struct pi_protocol dstr = {
  146. .owner = THIS_MODULE,
  147. .name = "dstr",
  148. .max_mode = 5,
  149. .epp_first = 2,
  150. .default_delay = 1,
  151. .max_units = 1,
  152. .write_regr = dstr_write_regr,
  153. .read_regr = dstr_read_regr,
  154. .write_block = dstr_write_block,
  155. .read_block = dstr_read_block,
  156. .connect = dstr_connect,
  157. .disconnect = dstr_disconnect,
  158. .log_adapter = dstr_log_adapter,
  159. };
  160. static int __init dstr_init(void)
  161. {
  162. return pi_register(&dstr)-1;
  163. }
  164. static void __exit dstr_exit(void)
  165. {
  166. pi_unregister(&dstr);
  167. }
  168. MODULE_LICENSE("GPL");
  169. module_init(dstr_init)
  170. module_exit(dstr_exit)