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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. backpack.c (c) 2001 Micro Solutions Inc.
  3. Released under the terms of the GNU General Public license
  4. backpack.c is a low-level protocol driver for the Micro Solutions
  5. "BACKPACK" parallel port IDE adapter
  6. (Works on Series 6 drives)
  7. Written by: Ken Hahn     (linux-dev@micro-solutions.com)
  8.             Clive Turvey (linux-dev@micro-solutions.com)
  9. */
  10. /*
  11.    This is Ken's linux wrapper for the PPC library
  12.    Version 1.0.0 is the backpack driver for which source is not available
  13.    Version 2.0.0 is the first to have source released 
  14.    Version 2.0.1 is the "Cox-ified" source code 
  15.    Version 2.0.2 - fixed version string usage, and made ppc functions static 
  16.    Version 2.0.2ac - additional cleanup (privptr now not private to fix 64bit
  17.        platforms), use memset, rename clashing PPC define.
  18. */
  19. /* PARAMETERS */
  20. int verbose=0; /* set this to 1 to see debugging messages and whatnot */
  21. #define BACKPACK_VERSION "2.0.2ac"
  22. #include <linux/module.h>
  23. #include <linux/kernel.h>
  24. #include <linux/slab.h>
  25. #include <linux/types.h>
  26. #include <asm/io.h>
  27. #if defined(CONFIG_PARPORT_MODULE)||defined(CONFIG_PARPORT)
  28. #include <linux/parport.h>
  29. #endif
  30. #include "ppc6lnx.c"
  31. #include "paride.h"
  32.  
  33. #define PPCSTRUCT(pi) ((PPC_STORAGE *)(pi->privptr))
  34. /****************************************************************/
  35. /*
  36.  ATAPI CDROM DRIVE REGISTERS
  37. */
  38. #define ATAPI_DATA       0      /* data port                  */
  39. #define ATAPI_ERROR      1      /* error register (read)      */
  40. #define ATAPI_FEATURES   1      /* feature register (write)   */
  41. #define ATAPI_INT_REASON 2      /* interrupt reason register  */
  42. #define ATAPI_COUNT_LOW  4      /* byte count register (low)  */
  43. #define ATAPI_COUNT_HIGH 5      /* byte count register (high) */
  44. #define ATAPI_DRIVE_SEL  6      /* drive select register      */
  45. #define ATAPI_STATUS     7      /* status port (read)         */
  46. #define ATAPI_COMMAND    7      /* command port (write)       */
  47. #define ATAPI_ALT_STATUS 0x0e /* alternate status reg (read) */
  48. #define ATAPI_DEVICE_CONTROL 0x0e /* device control (write)   */
  49. /****************************************************************/
  50. static int bpck6_read_regr(PIA *pi, int cont, int reg)
  51. {
  52. unsigned int out;
  53. /* check for bad settings */
  54. if (reg<0 || reg>7 || cont<0 || cont>2)
  55. {
  56. return(-1);
  57. }
  58. out=ppc6_rd_port(PPCSTRUCT(pi),cont?reg|8:reg);
  59. return(out);
  60. }
  61. static void bpck6_write_regr(PIA *pi, int cont, int reg, int val)
  62. {
  63. /* check for bad settings */
  64. if (reg>=0 && reg<=7 && cont>=0 && cont<=1)
  65. {
  66. ppc6_wr_port(PPCSTRUCT(pi),cont?reg|8:reg,(u8)val);
  67. }
  68. }
  69. static void bpck6_write_block( PIA *pi, char * buf, int len )
  70. {
  71. ppc6_wr_port16_blk(PPCSTRUCT(pi),ATAPI_DATA,buf,(u32)len>>1); 
  72. }
  73. static void bpck6_read_block( PIA *pi, char * buf, int len )
  74. {
  75. ppc6_rd_port16_blk(PPCSTRUCT(pi),ATAPI_DATA,buf,(u32)len>>1);
  76. }
  77. static void bpck6_connect ( PIA *pi  )
  78. {
  79. if(verbose)
  80. {
  81. printk(KERN_DEBUG "connectn");
  82. }
  83. if(pi->mode >=2)
  84.    {
  85. PPCSTRUCT(pi)->mode=4+pi->mode-2;
  86. }
  87. else if(pi->mode==1)
  88. {
  89. PPCSTRUCT(pi)->mode=3;
  90. }
  91. else
  92. {
  93. PPCSTRUCT(pi)->mode=1;
  94. }
  95. ppc6_open(PPCSTRUCT(pi));  
  96. ppc6_wr_extout(PPCSTRUCT(pi),0x3);
  97. }
  98. static void bpck6_disconnect ( PIA *pi )
  99. {
  100. if(verbose)
  101. {
  102. printk("disconnectn");
  103. }
  104. ppc6_wr_extout(PPCSTRUCT(pi),0x0);
  105. ppc6_close(PPCSTRUCT(pi));
  106. }
  107. static int bpck6_test_port ( PIA *pi )   /* check for 8-bit port */
  108. {
  109. if(verbose)
  110. {
  111. printk(KERN_DEBUG "PARPORT indicates modes=%x for lp=0x%lxn",
  112.                 ((struct pardevice*)(pi->pardev))->port->modes,
  113. ((struct pardevice *)(pi->pardev))->port->base); 
  114. }
  115. /*copy over duplicate stuff.. initialize state info*/
  116. PPCSTRUCT(pi)->ppc_id=pi->unit;
  117. PPCSTRUCT(pi)->lpt_addr=pi->port;
  118. #ifdef CONFIG_PARPORT_PC_MODULE
  119. #define CONFIG_PARPORT_PC
  120. #endif
  121. #ifdef CONFIG_PARPORT_PC
  122. /* look at the parport device to see if what modes we can use */
  123. if(((struct pardevice *)(pi->pardev))->port->modes & 
  124. (PARPORT_MODE_EPP)
  125.           )
  126. {
  127. return 5; /* Can do EPP*/
  128. }
  129. else if(((struct pardevice *)(pi->pardev))->port->modes & 
  130. (PARPORT_MODE_TRISTATE)
  131.                )
  132. {
  133. return 2;
  134. }
  135. else /*Just flat SPP*/
  136. {
  137. return 1;
  138. }
  139. #else
  140. /* there is no way of knowing what kind of port we have
  141.    default to the highest mode possible */
  142. return 5;
  143. #endif
  144. }
  145. static int bpck6_probe_unit ( PIA *pi )
  146. {
  147. int out;
  148. if(verbose)
  149. {
  150. printk(KERN_DEBUG "PROBE UNIT %x on port:%xn",pi->unit,pi->port);
  151. }
  152. /*SET PPC UNIT NUMBER*/
  153. PPCSTRUCT(pi)->ppc_id=pi->unit;
  154. /*LOWER DOWN TO UNIDIRECTIONAL*/
  155. PPCSTRUCT(pi)->mode=1;
  156. out=ppc6_open(PPCSTRUCT(pi));
  157. if(verbose)
  158. {
  159. printk(KERN_DEBUG "ppc_open returned %2xn",out);
  160. }
  161.    if(out)
  162.   {
  163. ppc6_close(PPCSTRUCT(pi));
  164. return(1);
  165. if(verbose)
  166. {
  167. printk(KERN_DEBUG "leaving proben");
  168. }
  169. }
  170.    else
  171.    {
  172. if(verbose)
  173. {
  174. printk(KERN_DEBUG "Failed openn");
  175. }
  176.      return(0);
  177.    }
  178. }
  179. static void bpck6_log_adapter( PIA *pi, char * scratch, int verbose )
  180. {
  181. char *mode_string[5]=
  182. {"4-bit","8-bit","EPP-8","EPP-16","EPP-32"};
  183. printk("%s: BACKPACK Protocol Driver V"BACKPACK_VERSION"n",pi->device);
  184. printk("%s: Copyright 2001 by Micro Solutions, Inc., DeKalb IL.n",pi->device);
  185. printk("%s: BACKPACK %s, Micro Solutions BACKPACK Drive at 0x%xn",
  186. pi->device,BACKPACK_VERSION,pi->port);
  187. printk("%s: Unit: %d Mode:%d (%s) Delay %dn",pi->device,
  188. pi->unit,pi->mode,mode_string[pi->mode],pi->delay);
  189. }
  190. static void bpck6_init_proto(PIA *pi)
  191. {
  192. /* allocate a state structure for this item */
  193. pi->privptr=kmalloc(sizeof(PPC_STORAGE),GFP_KERNEL);
  194. if(pi->privptr==NULL)
  195. {
  196. printk(KERN_ERR "%s: ERROR COULDN'T ALLOCATE MEMORYn",pi->device); 
  197. return;
  198. }
  199. else
  200. {
  201. MOD_INC_USE_COUNT; 
  202. }
  203. memset(pi->privptr, 0, sizeof(PPC_STORAGE));
  204. }
  205. static void bpck6_release_proto(PIA *pi)
  206. {
  207. MOD_DEC_USE_COUNT;
  208. /* free after use count decremented so that we aren't using it
  209. when it is decremented */
  210. kfree(pi->privptr); 
  211. }
  212. struct pi_protocol bpck6 = { "bpck6", /* name for proto*/
  213. 0, /* index into proto table */
  214. 5, /* max mode =5 */
  215. 2, /* 2-5 use epp (need 8 ports) */
  216. 0, /* no delay (not used anyway) */
  217. 255, /* we can have units  up to 255 */
  218. bpck6_write_regr,
  219. bpck6_read_regr,
  220. bpck6_write_block,
  221. bpck6_read_block,
  222. bpck6_connect,
  223. bpck6_disconnect,
  224. bpck6_test_port,
  225.   bpck6_probe_unit,
  226. 0,
  227. bpck6_log_adapter,
  228. bpck6_init_proto,
  229. bpck6_release_proto
  230.                         };
  231. EXPORT_SYMBOL(bpck6_write_regr);
  232. EXPORT_SYMBOL(bpck6_read_regr);
  233. EXPORT_SYMBOL(bpck6_write_block);
  234. EXPORT_SYMBOL(bpck6_read_block);
  235. EXPORT_SYMBOL(bpck6_connect);
  236. EXPORT_SYMBOL(bpck6_disconnect);
  237. EXPORT_SYMBOL(bpck6_test_port);
  238. EXPORT_SYMBOL(bpck6_probe_unit);
  239. EXPORT_SYMBOL(bpck6_log_adapter);
  240. EXPORT_SYMBOL(bpck6_init_proto);
  241. EXPORT_SYMBOL(bpck6_release_proto);
  242. /*---------------------------MODULE STUFF-----------------------*/
  243. #ifdef MODULE
  244. /*module information*/
  245. int init_module(void)
  246. {
  247. printk(KERN_INFO "bpck6: BACKPACK Protocol Driver V"BACKPACK_VERSION"n");
  248. printk(KERN_INFO "bpck6: Copyright 2001 by Micro Solutions, Inc., DeKalb IL. USAn");
  249. if(verbose)
  250. {
  251. printk(KERN_DEBUG "bpck6: verbose debug enabled.n");
  252. }
  253. return pi_register(&bpck6) - 1;  
  254. }
  255. void cleanup_module(void)
  256. {
  257. pi_unregister(&bpck6);
  258. }
  259. MODULE_AUTHOR("Micro Solutions Inc.");
  260. MODULE_DESCRIPTION("BACKPACK Protocol module, compatible with PARIDE");
  261. MODULE_PARM(verbose,"i");
  262. #endif