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

驱动编程

开发平台:

Unix_Linux

  1. /* 
  2. bpck.c (c) 1996-8  Grant R. Guenther <grant@torque.net>
  3.             Under the terms of the GNU General Public License.
  4. bpck.c is a low-level protocol driver for the MicroSolutions 
  5. "backpack" parallel port IDE adapter.  
  6. */
  7. /* Changes:
  8. 1.01 GRG 1998.05.05 init_proto, release_proto, pi->delay 
  9. 1.02    GRG 1998.08.15 default pi->delay returned to 4
  10. */
  11. #define BPCK_VERSION "1.02" 
  12. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/delay.h>
  15. #include <linux/kernel.h>
  16. #include <linux/types.h>
  17. #include <linux/wait.h>
  18. #include <asm/io.h>
  19. #include "paride.h"
  20. #undef r2
  21. #undef w2
  22. #define PC pi->private
  23. #define r2() (PC=(in_p(2) & 0xff))
  24. #define w2(byte)   {out_p(2,byte); PC = byte;}
  25. #define t2(pat)    {PC ^= pat; out_p(2,PC);}
  26. #define e2() {PC &= 0xfe; out_p(2,PC);}
  27. #define o2() {PC |= 1; out_p(2,PC);}
  28. #define j44(l,h)     (((l>>3)&0x7)|((l>>4)&0x8)|((h<<1)&0x70)|(h&0x80))
  29. /* cont = 0 - access the IDE register file 
  30.    cont = 1 - access the IDE command set 
  31.    cont = 2 - use internal bpck register addressing
  32. */
  33. static int  cont_map[3] = { 0x40, 0x48, 0 };
  34. static int bpck_read_regr( PIA *pi, int cont, int regr )
  35. {       int r, l, h;
  36. r = regr + cont_map[cont];
  37. switch (pi->mode) {
  38. case 0: w0(r & 0xf); w0(r); t2(2); t2(4);
  39.         l = r1();
  40.          t2(4);
  41.          h = r1();
  42.          return j44(l,h);
  43. case 1: w0(r & 0xf); w0(r); t2(2);
  44.         e2(); t2(0x20);
  45. t2(4); h = r0();
  46.         t2(1); t2(0x20);
  47.         return h;
  48. case 2:
  49. case 3:
  50. case 4: w0(r); w2(9); w2(0); w2(0x20);
  51. h = r4();
  52. w2(0);
  53. return h;
  54. }
  55. return -1;
  56. }
  57. static void bpck_write_regr( PIA *pi, int cont, int regr, int val )
  58. { int r;
  59.         r = regr + cont_map[cont];
  60. switch (pi->mode) {
  61. case 0:
  62. case 1: w0(r);
  63. t2(2);
  64. w0(val);
  65. o2(); t2(4); t2(1);
  66. break;
  67. case 2:
  68. case 3:
  69. case 4: w0(r); w2(9); w2(0);
  70. w0(val); w2(1); w2(3); w2(0);
  71. break;
  72. }
  73. }
  74. /* These macros access the bpck registers in native addressing */
  75. #define WR(r,v) bpck_write_regr(pi,2,r,v)
  76. #define RR(r) (bpck_read_regr(pi,2,r))
  77. static void bpck_write_block( PIA *pi, char * buf, int count )
  78. { int i;
  79. switch (pi->mode) {
  80. case 0: WR(4,0x40);
  81. w0(0x40); t2(2); t2(1);
  82. for (i=0;i<count;i++) { w0(buf[i]); t2(4); }
  83. WR(4,0);
  84. break;
  85. case 1: WR(4,0x50);
  86.                 w0(0x40); t2(2); t2(1);
  87.                 for (i=0;i<count;i++) { w0(buf[i]); t2(4); }
  88.                 WR(4,0x10);
  89. break;
  90. case 2: WR(4,0x48);
  91. w0(0x40); w2(9); w2(0); w2(1);
  92. for (i=0;i<count;i++) w4(buf[i]);
  93. w2(0);
  94. WR(4,8);
  95. break;
  96.         case 3: WR(4,0x48);
  97.                 w0(0x40); w2(9); w2(0); w2(1);
  98.                 for (i=0;i<count/2;i++) w4w(((u16 *)buf)[i]);
  99.                 w2(0);
  100.                 WR(4,8);
  101.                 break;
  102.  
  103.         case 4: WR(4,0x48);
  104.                 w0(0x40); w2(9); w2(0); w2(1);
  105.                 for (i=0;i<count/4;i++) w4l(((u32 *)buf)[i]);
  106.                 w2(0);
  107.                 WR(4,8);
  108.                 break;
  109.   }
  110. }
  111. static void bpck_read_block( PIA *pi, char * buf, int count )
  112. { int i, l, h;
  113. switch (pi->mode) {
  114.        case 0: WR(4,0x40);
  115. w0(0x40); t2(2);
  116. for (i=0;i<count;i++) {
  117.     t2(4); l = r1();
  118.     t2(4); h = r1();
  119.     buf[i] = j44(l,h);
  120. }
  121. WR(4,0);
  122. break;
  123. case 1: WR(4,0x50);
  124. w0(0x40); t2(2); t2(0x20);
  125.                for(i=0;i<count;i++) { t2(4); buf[i] = r0(); }
  126.         t2(1); t2(0x20);
  127.         WR(4,0x10);
  128. break;
  129. case 2: WR(4,0x48);
  130. w0(0x40); w2(9); w2(0); w2(0x20);
  131. for (i=0;i<count;i++) buf[i] = r4();
  132. w2(0);
  133. WR(4,8);
  134. break;
  135.         case 3: WR(4,0x48);
  136.                 w0(0x40); w2(9); w2(0); w2(0x20);
  137.                 for (i=0;i<count/2;i++) ((u16 *)buf)[i] = r4w();
  138.                 w2(0);
  139.                 WR(4,8);
  140.                 break;
  141.         case 4: WR(4,0x48);
  142.                 w0(0x40); w2(9); w2(0); w2(0x20);
  143.                 for (i=0;i<count/4;i++) ((u32 *)buf)[i] = r4l();
  144.                 w2(0);
  145.                 WR(4,8);
  146.                 break;
  147. }
  148. }
  149. static int bpck_probe_unit ( PIA *pi )
  150. { int o1, o0, f7, id;
  151. int t, s;
  152. id = pi->unit;
  153. s = 0;
  154. w2(4); w2(0xe); r2(); t2(2); 
  155. o1 = r1()&0xf8;
  156. o0 = r0();
  157. w0(255-id); w2(4); w0(id);
  158. t2(8); t2(8); t2(8);
  159. t2(2); t = r1()&0xf8;
  160. f7 = ((id % 8) == 7);
  161. if ((f7) || (t != o1)) { t2(2); s = r1()&0xf8; }
  162. if ((t == o1) && ((!f7) || (s == o1)))  {
  163. w2(0x4c); w0(o0);
  164. return 0;
  165. }
  166. t2(8); w0(0); t2(2); w2(0x4c); w0(o0);
  167. return 1;
  168. }
  169. static void bpck_connect ( PIA *pi  )
  170. {       pi->saved_r0 = r0();
  171. w0(0xff-pi->unit); w2(4); w0(pi->unit);
  172. t2(8); t2(8); t2(8); 
  173. t2(2); t2(2);
  174. switch (pi->mode) {
  175. case 0: t2(8); WR(4,0);
  176. break;
  177. case 1: t2(8); WR(4,0x10);
  178. break;
  179. case 2:
  180.         case 3:
  181. case 4: w2(0); WR(4,8);
  182. break;
  183. }
  184. WR(5,8);
  185. if (pi->devtype == PI_PCD) {
  186. WR(0x46,0x10); /* fiddle with ESS logic ??? */
  187. WR(0x4c,0x38);
  188. WR(0x4d,0x88);
  189. WR(0x46,0xa0);
  190. WR(0x41,0);
  191. WR(0x4e,8);
  192. }
  193. }
  194. static void bpck_disconnect ( PIA *pi )
  195. { w0(0); 
  196. if (pi->mode >= 2) { w2(9); w2(0); } else t2(2);
  197. w2(0x4c); w0(pi->saved_r0);
  198. static void bpck_force_spp ( PIA *pi )
  199. /* This fakes the EPP protocol to turn off EPP ... */
  200. {       pi->saved_r0 = r0();
  201.         w0(0xff-pi->unit); w2(4); w0(pi->unit);
  202.         t2(8); t2(8); t2(8); 
  203.         t2(2); t2(2);
  204.         w2(0); 
  205.         w0(4); w2(9); w2(0); 
  206.         w0(0); w2(1); w2(3); w2(0);     
  207.         w0(0); w2(9); w2(0);
  208.         w2(0x4c); w0(pi->saved_r0);
  209. }
  210. #define TEST_LEN  16
  211. static int bpck_test_proto( PIA *pi, char * scratch, int verbose )
  212. { int i, e, l, h, om;
  213. char buf[TEST_LEN];
  214. bpck_force_spp(pi);
  215. switch (pi->mode) {
  216. case 0: bpck_connect(pi);
  217. WR(0x13,0x7f);
  218. w0(0x13); t2(2);
  219. for(i=0;i<TEST_LEN;i++) {
  220.                     t2(4); l = r1();
  221.                     t2(4); h = r1();
  222.                     buf[i] = j44(l,h);
  223. }
  224. bpck_disconnect(pi);
  225. break;
  226.         case 1: bpck_connect(pi);
  227. WR(0x13,0x7f);
  228.                 w0(0x13); t2(2); t2(0x20);
  229.                 for(i=0;i<TEST_LEN;i++) { t2(4); buf[i] = r0(); }
  230.                 t2(1); t2(0x20);
  231. bpck_disconnect(pi);
  232. break;
  233. case 2:
  234. case 3:
  235. case 4: om = pi->mode;
  236. pi->mode = 0;
  237. bpck_connect(pi);
  238. WR(7,3);
  239. WR(4,8);
  240. bpck_disconnect(pi);
  241. pi->mode = om;
  242. bpck_connect(pi);
  243. w0(0x13); w2(9); w2(1); w0(0); w2(3); w2(0); w2(0xe0);
  244. switch (pi->mode) {
  245.   case 2: for (i=0;i<TEST_LEN;i++) buf[i] = r4();
  246.   break;
  247.   case 3: for (i=0;i<TEST_LEN/2;i++) ((u16 *)buf)[i] = r4w();
  248.                           break;
  249.   case 4: for (i=0;i<TEST_LEN/4;i++) ((u32 *)buf)[i] = r4l();
  250.                           break;
  251. }
  252. w2(0);
  253. WR(7,0);
  254. bpck_disconnect(pi);
  255. break;
  256. }
  257. if (verbose) {
  258.     printk("%s: bpck: 0x%x unit %d mode %d: ",
  259.    pi->device,pi->port,pi->unit,pi->mode);
  260.     for (i=0;i<TEST_LEN;i++) printk("%3d",buf[i]);
  261.     printk("n");
  262. }
  263. e = 0;
  264. for (i=0;i<TEST_LEN;i++) if (buf[i] != (i+1)) e++;
  265. return e;
  266. }
  267. static void bpck_read_eeprom ( PIA *pi, char * buf )
  268. {       int i,j,k,n,p,v,f, om, od;
  269. bpck_force_spp(pi);
  270. om = pi->mode;  od = pi->delay;
  271. pi->mode = 0; pi->delay = 6;
  272. bpck_connect(pi);
  273. n = 0;
  274. WR(4,0);
  275. for (i=0;i<64;i++) {
  276.     WR(6,8);  
  277.     WR(6,0xc);
  278.     p = 0x100;
  279.     for (k=0;k<9;k++) {
  280. f = (((i + 0x180) & p) != 0) * 2;
  281. WR(6,f+0xc); 
  282. WR(6,f+0xd); 
  283. WR(6,f+0xc);
  284. p = (p >> 1);
  285.     }
  286.     for (j=0;j<2;j++) {
  287. v = 0;
  288. for (k=0;k<8;k++) {
  289.     WR(6,0xc); 
  290.     WR(6,0xd); 
  291.     WR(6,0xc); 
  292.     f = RR(0);
  293.     v = 2*v + (f == 0x84);
  294. }
  295. buf[2*i+1-j] = v;
  296.     }
  297. }
  298. WR(6,8);
  299. WR(6,0);
  300. WR(5,8);
  301. bpck_disconnect(pi);
  302.         if (om >= 2) {
  303.                 bpck_connect(pi);
  304.                 WR(7,3);
  305.                 WR(4,8);
  306.                 bpck_disconnect(pi);
  307.         }
  308. pi->mode = om; pi->delay = od;
  309. }
  310. static int bpck_test_port ( PIA *pi )  /* check for 8-bit port */
  311. { int i, r, m;
  312. w2(0x2c); i = r0(); w0(255-i); r = r0(); w0(i);
  313. m = -1;
  314. if (r == i) m = 2;
  315. if (r == (255-i)) m = 0;
  316. w2(0xc); i = r0(); w0(255-i); r = r0(); w0(i);
  317. if (r != (255-i)) m = -1;
  318. if (m == 0) { w2(6); w2(0xc); r = r0(); w0(0xaa); w0(r); w0(0xaa); }
  319. if (m == 2) { w2(0x26); w2(0xc); }
  320. if (m == -1) return 0;
  321. return 5;
  322. }
  323. static void bpck_log_adapter( PIA *pi, char * scratch, int verbose )
  324. { char *mode_string[5] = { "4-bit","8-bit","EPP-8",
  325.     "EPP-16","EPP-32" };
  326. #ifdef DUMP_EEPROM
  327. int i;
  328. #endif
  329. bpck_read_eeprom(pi,scratch);
  330. #ifdef DUMP_EEPROM
  331. if (verbose) {
  332.    for(i=0;i<128;i++)
  333. if ((scratch[i] < ' ') || (scratch[i] > '~'))
  334.     scratch[i] = '.';
  335.    printk("%s: bpck EEPROM: %64.64sn",pi->device,scratch);
  336.    printk("%s:              %64.64sn",pi->device,&scratch[64]);
  337. }
  338. #endif
  339. printk("%s: bpck %s, backpack %8.8s unit %d",
  340. pi->device,BPCK_VERSION,&scratch[110],pi->unit);
  341. printk(" at 0x%x, mode %d (%s), delay %dn",pi->port,
  342. pi->mode,mode_string[pi->mode],pi->delay);
  343. }
  344. static struct pi_protocol bpck = {
  345. .owner = THIS_MODULE,
  346. .name = "bpck",
  347. .max_mode = 5,
  348. .epp_first = 2,
  349. .default_delay = 4,
  350. .max_units = 255,
  351. .write_regr = bpck_write_regr,
  352. .read_regr = bpck_read_regr,
  353. .write_block = bpck_write_block,
  354. .read_block = bpck_read_block,
  355. .connect = bpck_connect,
  356. .disconnect = bpck_disconnect,
  357. .test_port = bpck_test_port,
  358. .probe_unit = bpck_probe_unit,
  359. .test_proto = bpck_test_proto,
  360. .log_adapter = bpck_log_adapter,
  361. };
  362. static int __init bpck_init(void)
  363. {
  364. return pi_register(&bpck)-1;
  365. }
  366. static void __exit bpck_exit(void)
  367. {
  368. pi_unregister(&bpck);
  369. }
  370. MODULE_LICENSE("GPL");
  371. module_init(bpck_init)
  372. module_exit(bpck_exit)