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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* 
  2. pg.c    (c) 1998  Grant R. Guenther <grant@torque.net>
  3.   Under the terms of the GNU General Public License.
  4. The pg driver provides a simple character device interface for
  5. sending ATAPI commands to a device.  With the exception of the
  6. ATAPI reset operation, all operations are performed by a pair
  7. of read and write operations to the appropriate /dev/pgN device.
  8. A write operation delivers a command and any outbound data in
  9. a single buffer.  Normally, the write will succeed unless the
  10. device is offline or malfunctioning, or there is already another
  11. command pending.  If the write succeeds, it should be followed
  12. immediately by a read operation, to obtain any returned data and
  13. status information.  A read will fail if there is no operation
  14. in progress.
  15. As a special case, the device can be reset with a write operation,
  16. and in this case, no following read is expected, or permitted.
  17. There are no ioctl() operations.  Any single operation
  18. may transfer at most PG_MAX_DATA bytes.  Note that the driver must
  19. copy the data through an internal buffer.  In keeping with all
  20. current ATAPI devices, command packets are assumed to be exactly
  21. 12 bytes in length.
  22. To permit future changes to this interface, the headers in the
  23. read and write buffers contain a single character "magic" flag.
  24. Currently this flag must be the character "P".
  25. By default, the driver will autoprobe for a single parallel
  26. port ATAPI device, but if their individual parameters are
  27. specified, the driver can handle up to 4 devices.
  28. To use this device, you must have the following device 
  29. special files defined:
  30. /dev/pg0 c 97 0
  31. /dev/pg1 c 97 1
  32. /dev/pg2 c 97 2
  33. /dev/pg3 c 97 3
  34. (You'll need to change the 97 to something else if you use
  35. the 'major' parameter to install the driver on a different
  36. major number.)
  37. The behaviour of the pg driver can be altered by setting
  38. some parameters from the insmod command line.  The following
  39. parameters are adjustable:
  40.     drive0      These four arguments can be arrays of       
  41.     drive1      1-6 integers as follows:
  42.     drive2
  43.     drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<dly>
  44. Where,
  45. <prt>   is the base of the parallel port address for
  46. the corresponding drive.  (required)
  47. <pro>   is the protocol number for the adapter that
  48. supports this drive.  These numbers are
  49. logged by 'paride' when the protocol modules
  50. are initialised.  (0 if not given)
  51. <uni>   for those adapters that support chained
  52. devices, this is the unit selector for the
  53. chain of devices on the given port.  It should
  54. be zero for devices that don't support chaining.
  55. (0 if not given)
  56. <mod>   this can be -1 to choose the best mode, or one
  57. of the mode numbers supported by the adapter.
  58. (-1 if not given)
  59. <slv>   ATAPI devices can be jumpered to master or slave.
  60. Set this to 0 to choose the master drive, 1 to
  61. choose the slave, -1 (the default) to choose the
  62. first drive found.
  63. <dly>   some parallel ports require the driver to 
  64. go more slowly.  -1 sets a default value that
  65. should work with the chosen protocol.  Otherwise,
  66. set this to a small integer, the larger it is
  67. the slower the port i/o.  In some cases, setting
  68. this to zero will speed up the device. (default -1)
  69.     major You may use this parameter to overide the
  70. default major number (97) that this driver
  71. will use.  Be sure to change the device
  72. name as well.
  73.     name This parameter is a character string that
  74. contains the name the kernel will use for this
  75. device (in /proc output, for instance).
  76. (default "pg").
  77.     verbose     This parameter controls the amount of logging
  78. that is done by the driver.  Set it to 0 for 
  79. quiet operation, to 1 to enable progress
  80. messages while the driver probes for devices,
  81. or to 2 for full debug logging.  (default 0)
  82. If this driver is built into the kernel, you can use 
  83. the following command line parameters, with the same values
  84. as the corresponding module parameters listed above:
  85.     pg.drive0
  86.     pg.drive1
  87.     pg.drive2
  88.     pg.drive3
  89. In addition, you can use the parameter pg.disable to disable
  90. the driver entirely.
  91. */
  92. /* Changes:
  93. 1.01 GRG 1998.06.16 Bug fixes
  94. 1.02    GRG 1998.09.24  Added jumbo support
  95. */
  96. #define PG_VERSION      "1.02"
  97. #define PG_MAJOR 97
  98. #define PG_NAME "pg"
  99. #define PG_UNITS 4
  100. #ifndef PI_PG
  101. #define PI_PG 4
  102. #endif
  103. /* Here are things one can override from the insmod command.
  104.    Most are autoprobed by paride unless set here.  Verbose is 0
  105.    by default.
  106. */
  107. static int verbose = 0;
  108. static int major = PG_MAJOR;
  109. static char *name = PG_NAME;
  110. static int      disable = 0;
  111. static int drive0[6] = {0,0,0,-1,-1,-1};
  112. static int drive1[6] = {0,0,0,-1,-1,-1};
  113. static int drive2[6] = {0,0,0,-1,-1,-1};
  114. static int drive3[6] = {0,0,0,-1,-1,-1};
  115. static int (*drives[4])[6] = {&drive0,&drive1,&drive2,&drive3};
  116. static int pg_drive_count;
  117. #define D_PRT   0
  118. #define D_PRO   1
  119. #define D_UNI   2
  120. #define D_MOD   3
  121. #define D_SLV   4
  122. #define D_DLY   5
  123. #define DU              (*drives[unit])
  124. /* end of parameters */
  125. #include <linux/module.h>
  126. #include <linux/errno.h>
  127. #include <linux/fs.h>
  128. #include <linux/devfs_fs_kernel.h>
  129. #include <linux/kernel.h>
  130. #include <linux/delay.h>
  131. #include <linux/slab.h>
  132. #include <linux/mtio.h>
  133. #include <linux/pg.h>
  134. #include <linux/wait.h>
  135. #include <linux/smp_lock.h>
  136. #include <asm/uaccess.h>
  137. #ifndef MODULE
  138. #include "setup.h"
  139. static STT pg_stt[5] = {{"drive0",6,drive0},
  140. {"drive1",6,drive1},
  141. {"drive2",6,drive2},
  142. {"drive3",6,drive3},
  143. {"disable",1,&disable}};
  144. void pg_setup( char *str, int *ints)
  145. {       generic_setup(pg_stt,5,str);
  146. }
  147. #endif
  148. MODULE_PARM(verbose,"i");
  149. MODULE_PARM(major,"i");
  150. MODULE_PARM(name,"s");
  151. MODULE_PARM(drive0,"1-6i");
  152. MODULE_PARM(drive1,"1-6i");
  153. MODULE_PARM(drive2,"1-6i");
  154. MODULE_PARM(drive3,"1-6i");
  155. #include "paride.h"
  156. #define PG_SPIN_DEL     50              /* spin delay in micro-seconds  */
  157. #define PG_SPIN         200
  158. #define PG_TMO HZ
  159. #define PG_RESET_TMO 10*HZ
  160. #define STAT_ERR        0x01
  161. #define STAT_INDEX      0x02
  162. #define STAT_ECC        0x04
  163. #define STAT_DRQ        0x08
  164. #define STAT_SEEK       0x10
  165. #define STAT_WRERR      0x20
  166. #define STAT_READY      0x40
  167. #define STAT_BUSY       0x80
  168. #define ATAPI_IDENTIFY 0x12
  169. int pg_init(void);
  170. #ifdef MODULE
  171. void cleanup_module( void );
  172. #endif
  173. static int pg_open(struct inode *inode, struct file *file);
  174. static int pg_release (struct inode *inode, struct file *file);
  175. static ssize_t pg_read(struct file * filp, char * buf, 
  176.        size_t count, loff_t *ppos);
  177. static ssize_t pg_write(struct file * filp, const char * buf, 
  178. size_t count, loff_t *ppos);
  179. static int pg_detect(void);
  180. static int pg_identify (int unit, int log);
  181. #define PG_NAMELEN      8
  182. struct pg_unit {
  183. struct pi_adapter pia;    /* interface to paride layer */
  184. struct pi_adapter *pi;
  185. int busy;           /* write done, read expected */
  186. int start;   /* jiffies at command start */
  187. int dlen;   /* transfer size requested */
  188. int timeout;   /* timeout requested */
  189. int status;   /* last sense key */
  190. int drive;   /* drive */
  191. int access;               /* count of active opens ... */
  192. int present;   /* device present ? */
  193. char *bufptr;
  194. char name[PG_NAMELEN];   /* pg0, pg1, ... */
  195. };
  196. struct pg_unit pg[PG_UNITS];
  197. /*  'unit' must be defined in all functions - either as a local or a param */
  198. #define PG pg[unit]
  199. #define PI PG.pi
  200. static char pg_scratch[512];            /* scratch block buffer */
  201. /* kernel glue structures */
  202. static struct file_operations pg_fops = {
  203. owner: THIS_MODULE,
  204. read: pg_read,
  205. write: pg_write,
  206. open: pg_open,
  207. release: pg_release,
  208. };
  209. void pg_init_units( void )
  210. {       int     unit, j;
  211. pg_drive_count = 0;
  212. for (unit=0;unit<PG_UNITS;unit++) {
  213. PG.pi = & PG.pia;
  214. PG.access = 0;
  215. PG.busy = 0;
  216. PG.present = 0;
  217. PG.bufptr = NULL;
  218. PG.drive = DU[D_SLV];
  219. j = 0;
  220. while ((j < PG_NAMELEN-2) && (PG.name[j]=name[j])) j++;
  221. PG.name[j++] = '0' + unit;
  222. PG.name[j] = 0;
  223. if (DU[D_PRT]) pg_drive_count++;
  224. }
  225. static devfs_handle_t devfs_handle;
  226. int pg_init (void)      /* preliminary initialisation */
  227. {       int unit;
  228. if (disable) return -1;
  229. pg_init_units();
  230. if (pg_detect()) return -1;
  231. if (devfs_register_chrdev(major,name,&pg_fops)) {
  232. printk("pg_init: unable to get major number %dn",
  233. major);
  234. for (unit=0;unit<PG_UNITS;unit++)
  235.   if (PG.present) pi_release(PI);
  236. return -1;
  237. }
  238. devfs_handle = devfs_mk_dir (NULL, "pg", NULL);
  239. devfs_register_series (devfs_handle, "%u", 4, DEVFS_FL_DEFAULT,
  240.        major, 0, S_IFCHR | S_IRUSR | S_IWUSR,
  241.        &pg_fops, NULL);
  242. return 0;
  243. }
  244. #ifdef MODULE
  245. /* Glue for modules ... */
  246. void    cleanup_module(void);
  247. int     init_module(void)
  248. {       int     err;
  249. #ifdef PARIDE_JUMBO
  250.        { extern paride_init();
  251.          paride_init();
  252.        } 
  253. #endif
  254. err = pg_init();
  255. return err;
  256. }
  257. void    cleanup_module(void)
  258. {       int unit;
  259. devfs_unregister (devfs_handle);
  260. devfs_unregister_chrdev(major,name);
  261. for (unit=0;unit<PG_UNITS;unit++)
  262.   if (PG.present) pi_release(PI);
  263. }
  264. #endif
  265. #define WR(c,r,v) pi_write_regr(PI,c,r,v)
  266. #define RR(c,r) (pi_read_regr(PI,c,r))
  267. #define DRIVE           (0xa0+0x10*PG.drive)
  268. static void pg_sleep( int cs )
  269. {       current->state = TASK_INTERRUPTIBLE;
  270. schedule_timeout(cs);
  271. }
  272. static int pg_wait( int unit, int go, int stop, int tmo, char * msg )
  273. {       int j, r, e, s, p;
  274. PG.status = 0;
  275. j = 0;
  276. while ((((r=RR(1,6))&go)||(stop&&(!(r&stop))))&&(time_before(jiffies,tmo))) {
  277. if (j++ < PG_SPIN) udelay(PG_SPIN_DEL);
  278. else pg_sleep(1);
  279. }
  280. if ((r&(STAT_ERR&stop))||time_after_eq(jiffies, tmo)) {
  281.    s = RR(0,7);
  282.    e = RR(0,1);
  283.    p = RR(0,2);
  284.    if (verbose > 1)
  285.      printk("%s: %s: stat=0x%x err=0x%x phase=%d%sn",
  286.    PG.name,msg,s,e,p,time_after_eq(jiffies, tmo)?" timeout":"");
  287.    if (time_after_eq(jiffies, tmo)) e |= 0x100;
  288.    PG.status = (e >> 4) & 0xff;
  289.    return -1;
  290. }
  291. return 0;
  292. }
  293. static int pg_command( int unit, char * cmd, int dlen, int tmo )
  294. {       int k;
  295. pi_connect(PI);
  296. WR(0,6,DRIVE);
  297. if (pg_wait(unit,STAT_BUSY|STAT_DRQ,0,tmo,"before command")) {
  298. pi_disconnect(PI);
  299. return -1;
  300. }
  301. WR(0,4,dlen % 256);
  302. WR(0,5,dlen / 256);
  303. WR(0,7,0xa0);          /* ATAPI packet command */
  304. if (pg_wait(unit,STAT_BUSY,STAT_DRQ,tmo,"command DRQ")) {
  305. pi_disconnect(PI);
  306. return -1;
  307. }
  308. if (RR(0,2) != 1) {
  309.    printk("%s: command phase errorn",PG.name);
  310.    pi_disconnect(PI);
  311.    return -1;
  312. }
  313. pi_write_block(PI,cmd,12);
  314. if (verbose > 1) {
  315. printk("%s: Command sent, dlen=%d packet= ", PG.name,dlen);
  316. for (k=0;k<12;k++) printk("%02x ",cmd[k]&0xff);
  317. printk("n");
  318. }
  319. return 0;
  320. }
  321. static int pg_completion( int unit, char * buf, int tmo)
  322. {       int r, d, n, p;
  323. r = pg_wait(unit,STAT_BUSY,STAT_DRQ|STAT_READY|STAT_ERR,
  324. tmo,"completion");
  325. PG.dlen = 0;
  326. while (RR(0,7)&STAT_DRQ) {
  327.    d = (RR(0,4)+256*RR(0,5));
  328.    n = ((d+3)&0xfffc);
  329.    p = RR(0,2)&3;
  330.    if (p == 0) pi_write_block(PI,buf,n);
  331.    if (p == 2) pi_read_block(PI,buf,n);
  332.    if (verbose > 1) printk("%s: %s %d bytesn",PG.name,
  333.     p?"Read":"Write",n);
  334.    PG.dlen += (1-p)*d;
  335.    buf += d;
  336.    r = pg_wait(unit,STAT_BUSY,STAT_DRQ|STAT_READY|STAT_ERR,
  337. tmo,"completion");
  338. }
  339. pi_disconnect(PI); 
  340. return r;
  341. }
  342. static int pg_reset( int unit )
  343. { int i, k, flg;
  344. int expect[5] = {1,1,1,0x14,0xeb};
  345. pi_connect(PI);
  346. WR(0,6,DRIVE);
  347. WR(0,7,8);
  348. pg_sleep(20*HZ/1000);
  349. k = 0;
  350. while ((k++ < PG_RESET_TMO) && (RR(1,6)&STAT_BUSY))
  351. pg_sleep(1);
  352. flg = 1;
  353. for(i=0;i<5;i++) flg &= (RR(0,i+1) == expect[i]);
  354. if (verbose) {
  355. printk("%s: Reset (%d) signature = ",PG.name,k);
  356. for (i=0;i<5;i++) printk("%3x",RR(0,i+1));
  357. if (!flg) printk(" (incorrect)");
  358. printk("n");
  359. }
  360. pi_disconnect(PI);
  361. return flg-1;
  362. }
  363. static void xs( char *buf, char *targ, int offs, int len )
  364. { int j,k,l;
  365. j=0; l=0;
  366. for (k=0;k<len;k++) 
  367.    if((buf[k+offs]!=0x20)||(buf[k+offs]!=l))
  368. l=targ[j++]=buf[k+offs];
  369. if (l==0x20) j--;
  370. targ[j]=0;
  371. }
  372. static int pg_identify( int unit, int log )
  373. { int  s;
  374. char *ms[2] = {"master","slave"};
  375. char mf[10], id[18];
  376. char    id_cmd[12] = { ATAPI_IDENTIFY,0,0,0,36,0,0,0,0,0,0,0};
  377. char buf[36];
  378. s = pg_command(unit,id_cmd,36,jiffies+PG_TMO);
  379. if (s) return -1;
  380. s = pg_completion(unit,buf,jiffies+PG_TMO);
  381. if (s) return -1;
  382. if (log) {
  383. xs(buf,mf,8,8);
  384. xs(buf,id,16,16);
  385. printk("%s: %s %s, %sn",PG.name,mf,id,ms[PG.drive]);
  386. }
  387. return 0;
  388. }
  389. static int pg_probe( int unit )
  390. /* returns  0, with id set if drive is detected
  391. -1, if drive detection failed
  392. */
  393. { if (PG.drive == -1) {
  394.    for (PG.drive=0;PG.drive<=1;PG.drive++)
  395. if (!pg_reset(unit)) return pg_identify(unit,1);
  396. } else {
  397.    if (!pg_reset(unit)) return pg_identify(unit,1);
  398. }
  399. return -1; 
  400. }
  401. static int pg_detect( void )
  402. { int k, unit;
  403. printk("%s: %s version %s, major %dn",
  404. name,name,PG_VERSION,major);
  405. k = 0;
  406. if (pg_drive_count == 0) {
  407.     unit = 0;
  408.     if (pi_init(PI,1,-1,-1,-1,-1,-1,pg_scratch,
  409. PI_PG,verbose,PG.name)) {
  410. if (!pg_probe(unit)) {
  411. PG.present = 1;
  412. k++;
  413. } else pi_release(PI);
  414.     }
  415. } else for (unit=0;unit<PG_UNITS;unit++) if (DU[D_PRT])
  416.     if (pi_init(PI,0,DU[D_PRT],DU[D_MOD],DU[D_UNI],
  417. DU[D_PRO],DU[D_DLY],pg_scratch,PI_PG,verbose,
  418. PG.name)) { 
  419. if (!pg_probe(unit)) {
  420. PG.present = 1;
  421. k++;
  422. } else pi_release(PI);
  423.     }
  424. if (k) return 0;
  425. printk("%s: No ATAPI device detectedn",name);
  426. return -1;
  427. }
  428. #define DEVICE_NR(dev) (MINOR(dev) % 128)
  429. static int pg_open (struct inode *inode, struct file *file)
  430. {       int unit = DEVICE_NR(inode->i_rdev);
  431. if ((unit >= PG_UNITS) || (!PG.present)) return -ENODEV;
  432. PG.access++;
  433. if (PG.access > 1) {
  434. PG.access--;
  435. return -EBUSY;
  436. }
  437. if (PG.busy) {
  438. pg_reset(unit);
  439. PG.busy = 0;
  440. }
  441. pg_identify(unit,(verbose>1));
  442. PG.bufptr = kmalloc(PG_MAX_DATA,GFP_KERNEL);
  443. if (PG.bufptr == NULL) {
  444. PG.access--;
  445. printk("%s: buffer allocation failedn",PG.name);
  446. return -ENOMEM;
  447. }
  448. return 0;
  449. }
  450. static int pg_release (struct inode *inode, struct file *file)
  451. {
  452. int unit = DEVICE_NR(inode->i_rdev);
  453. if ((unit >= PG_UNITS) || (PG.access <= 0)) 
  454. return -EINVAL;
  455. lock_kernel();
  456. PG.access--;
  457. kfree(PG.bufptr);
  458. PG.bufptr = NULL;
  459. unlock_kernel();
  460. return 0;
  461. }
  462. static ssize_t pg_write(struct file * filp, const char * buf, 
  463. size_t count, loff_t *ppos)
  464. {       struct inode            *ino = filp->f_dentry->d_inode;
  465. int                     unit = DEVICE_NR(ino->i_rdev);
  466. struct pg_write_hdr     hdr;
  467. int                     hs = sizeof(hdr);
  468. if (PG.busy) return -EBUSY;
  469. if (count < hs) return -EINVAL;
  470. if (copy_from_user((char *)&hdr, buf, hs))
  471. return -EFAULT;
  472. if (hdr.magic != PG_MAGIC) return -EINVAL;
  473. if (hdr.dlen > PG_MAX_DATA) return -EINVAL;
  474. if ((count - hs) > PG_MAX_DATA) return -EINVAL;
  475. if (hdr.func == PG_RESET) {
  476. if (count != hs) return -EINVAL;
  477. if (pg_reset(unit)) return -EIO;
  478. return count;
  479. }
  480. if (hdr.func != PG_COMMAND) return -EINVAL;
  481. PG.start = jiffies;
  482. PG.timeout = hdr.timeout*HZ + HZ/2 + jiffies;
  483. if (pg_command(unit,hdr.packet,hdr.dlen,jiffies+PG_TMO)) {
  484. if (PG.status & 0x10) return -ETIME;
  485. return -EIO;
  486. }
  487. PG.busy = 1;
  488. if (copy_from_user(PG.bufptr, buf + hs, count - hs))
  489. return -EFAULT;
  490. return count;
  491. }
  492. static ssize_t pg_read(struct file * filp, char * buf, 
  493.        size_t count, loff_t *ppos)
  494. {   struct inode  *ino = filp->f_dentry->d_inode;
  495. int unit = DEVICE_NR(ino->i_rdev);
  496. struct pg_read_hdr  hdr;
  497. int hs = sizeof(hdr);
  498. int copy;
  499. if (!PG.busy) return -EINVAL;
  500. if (count < hs) return -EINVAL;
  501. PG.busy = 0;
  502. if (pg_completion(unit,PG.bufptr,PG.timeout))
  503.   if (PG.status & 0x10) return -ETIME;
  504. hdr.magic = PG_MAGIC;
  505. hdr.dlen = PG.dlen;
  506. copy = 0;
  507. if (hdr.dlen < 0) {
  508. hdr.dlen = -1 * hdr.dlen;
  509. copy = hdr.dlen;
  510. if (copy > (count - hs)) copy = count - hs;
  511. }
  512. hdr.duration = (jiffies - PG.start + HZ/2) / HZ;
  513. hdr.scsi = PG.status & 0x0f;
  514. if (copy_to_user(buf, (char *)&hdr, hs))
  515. return -EFAULT;
  516. if (copy > 0)
  517. if (copy_to_user(buf+hs,PG.bufptr,copy))
  518. return -EFAULT;
  519. return copy+hs;
  520. }
  521. /* end of pg.c */
  522. MODULE_LICENSE("GPL");