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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.         pt.c    (c) 1998  Grant R. Guenther <grant@torque.net>
  3.                           Under the terms of the GNU General Public License.
  4.         This is the high-level driver for parallel port ATAPI tape
  5.         drives based on chips supported by the paride module.
  6. The driver implements both rewinding and non-rewinding
  7. devices, filemarks, and the rewind ioctl.  It allocates
  8. a small internal "bounce buffer" for each open device, but
  9.         otherwise expects buffering and blocking to be done at the
  10.         user level.  As with most block-structured tapes, short
  11. writes are padded to full tape blocks, so reading back a file
  12.         may return more data than was actually written.
  13.         By default, the driver will autoprobe for a single parallel
  14.         port ATAPI tape drive, but if their individual parameters are
  15.         specified, the driver can handle up to 4 drives.
  16. The rewinding devices are named /dev/pt0, /dev/pt1, ...
  17. while the non-rewinding devices are /dev/npt0, /dev/npt1, etc.
  18.         The behaviour of the pt driver can be altered by setting
  19.         some parameters from the insmod command line.  The following
  20.         parameters are adjustable:
  21.             drive0      These four arguments can be arrays of       
  22.             drive1      1-6 integers as follows:
  23.             drive2
  24.             drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<dly>
  25.                         Where,
  26.                 <prt>   is the base of the parallel port address for
  27.                         the corresponding drive.  (required)
  28.                 <pro>   is the protocol number for the adapter that
  29.                         supports this drive.  These numbers are
  30.                         logged by 'paride' when the protocol modules
  31.                         are initialised.  (0 if not given)
  32.                 <uni>   for those adapters that support chained
  33.                         devices, this is the unit selector for the
  34.                         chain of devices on the given port.  It should
  35.                         be zero for devices that don't support chaining.
  36.                         (0 if not given)
  37.                 <mod>   this can be -1 to choose the best mode, or one
  38.                         of the mode numbers supported by the adapter.
  39.                         (-1 if not given)
  40.                 <slv>   ATAPI devices can be jumpered to master or slave.
  41.                         Set this to 0 to choose the master drive, 1 to
  42.                         choose the slave, -1 (the default) to choose the
  43.                         first drive found.
  44.                 <dly>   some parallel ports require the driver to 
  45.                         go more slowly.  -1 sets a default value that
  46.                         should work with the chosen protocol.  Otherwise,
  47.                         set this to a small integer, the larger it is
  48.                         the slower the port i/o.  In some cases, setting
  49.                         this to zero will speed up the device. (default -1)
  50.     major You may use this parameter to overide the
  51. default major number (96) that this driver
  52. will use.  Be sure to change the device
  53. name as well.
  54.     name This parameter is a character string that
  55. contains the name the kernel will use for this
  56. device (in /proc output, for instance).
  57. (default "pt").
  58.             verbose     This parameter controls the amount of logging
  59.                         that the driver will do.  Set it to 0 for
  60.                         normal operation, 1 to see autoprobe progress
  61.                         messages, or 2 to see additional debugging
  62.                         output.  (default 0)
  63.  
  64.         If this driver is built into the kernel, you can use 
  65.         the following command line parameters, with the same values
  66.         as the corresponding module parameters listed above:
  67.             pt.drive0
  68.             pt.drive1
  69.             pt.drive2
  70.             pt.drive3
  71.         In addition, you can use the parameter pt.disable to disable
  72.         the driver entirely.
  73. */
  74. /*   Changes:
  75. 1.01 GRG 1998.05.06 Round up transfer size, fix ready_wait,
  76.         loosed interpretation of ATAPI standard
  77. for clearing error status.
  78. Eliminate sti();
  79. 1.02    GRG 1998.06.16  Eliminate an Ugh.
  80. 1.03    GRG 1998.08.15  Adjusted PT_TMO, use HZ in loop timing,
  81. extra debugging
  82. 1.04    GRG 1998.09.24  Repair minor coding error, added jumbo support
  83. */
  84. #define PT_VERSION      "1.04"
  85. #define PT_MAJOR 96
  86. #define PT_NAME "pt"
  87. #define PT_UNITS 4
  88. /* Here are things one can override from the insmod command.
  89.    Most are autoprobed by paride unless set here.  Verbose is on
  90.    by default.
  91. */
  92. static int verbose = 0;
  93. static int major = PT_MAJOR;
  94. static char *name = PT_NAME;
  95. static int      disable = 0;
  96. static int drive0[6] = {0,0,0,-1,-1,-1};
  97. static int drive1[6] = {0,0,0,-1,-1,-1};
  98. static int drive2[6] = {0,0,0,-1,-1,-1};
  99. static int drive3[6] = {0,0,0,-1,-1,-1};
  100. static int (*drives[4])[6] = {&drive0,&drive1,&drive2,&drive3};
  101. static int pt_drive_count;
  102. #define D_PRT   0
  103. #define D_PRO   1
  104. #define D_UNI   2
  105. #define D_MOD   3
  106. #define D_SLV   4
  107. #define D_DLY   5
  108. #define DU              (*drives[unit])
  109. /* end of parameters */
  110. #include <linux/module.h>
  111. #include <linux/errno.h>
  112. #include <linux/fs.h>
  113. #include <linux/devfs_fs_kernel.h>
  114. #include <linux/kernel.h>
  115. #include <linux/delay.h>
  116. #include <linux/slab.h>
  117. #include <linux/mtio.h>
  118. #include <linux/wait.h>
  119. #include <linux/smp_lock.h>
  120. #include <asm/uaccess.h>
  121. #ifndef MODULE
  122. #include "setup.h"
  123. static STT pt_stt[5] = {{"drive0",6,drive0},
  124.                         {"drive1",6,drive1},
  125.                         {"drive2",6,drive2},
  126.                         {"drive3",6,drive3},
  127. {"disable",1,&disable}};
  128. void pt_setup( char *str, int *ints)
  129. {       generic_setup(pt_stt,5,str);
  130. }
  131. #endif
  132. MODULE_PARM(verbose,"i");
  133. MODULE_PARM(major,"i");
  134. MODULE_PARM(name,"s");
  135. MODULE_PARM(drive0,"1-6i");
  136. MODULE_PARM(drive1,"1-6i");
  137. MODULE_PARM(drive2,"1-6i");
  138. MODULE_PARM(drive3,"1-6i");
  139. #include "paride.h"
  140. #define PT_MAX_RETRIES  5
  141. #define PT_TMO          3000            /* interrupt timeout in jiffies */
  142. #define PT_SPIN_DEL     50              /* spin delay in micro-seconds  */
  143. #define PT_RESET_TMO    30 /* 30 seconds */
  144. #define PT_READY_TMO 60 /* 60 seconds */
  145. #define PT_REWIND_TMO 1200 /* 20 minutes */
  146. #define PT_SPIN         ((1000000/(HZ*PT_SPIN_DEL))*PT_TMO)  
  147. #define STAT_ERR        0x00001
  148. #define STAT_INDEX      0x00002
  149. #define STAT_ECC        0x00004
  150. #define STAT_DRQ        0x00008
  151. #define STAT_SEEK       0x00010
  152. #define STAT_WRERR      0x00020
  153. #define STAT_READY      0x00040
  154. #define STAT_BUSY       0x00080
  155. #define STAT_SENSE 0x1f000
  156. #define ATAPI_TEST_READY 0x00
  157. #define ATAPI_REWIND 0x01
  158. #define ATAPI_REQ_SENSE 0x03
  159. #define ATAPI_READ_6 0x08
  160. #define ATAPI_WRITE_6 0x0a
  161. #define ATAPI_WFM 0x10
  162. #define ATAPI_IDENTIFY 0x12
  163. #define ATAPI_MODE_SENSE 0x1a
  164. #define ATAPI_LOG_SENSE 0x4d
  165. int pt_init(void);
  166. #ifdef MODULE
  167. void cleanup_module( void );
  168. #endif
  169. static int pt_open(struct inode *inode, struct file *file);
  170. static int pt_ioctl(struct inode *inode,struct file *file,
  171.                     unsigned int cmd, unsigned long arg);
  172. static int pt_release (struct inode *inode, struct file *file);
  173. static ssize_t pt_read(struct file * filp, char * buf, 
  174.                        size_t count, loff_t *ppos);
  175. static ssize_t pt_write(struct file * filp, const char * buf, 
  176.                         size_t count, loff_t *ppos);
  177. static int pt_detect(void);
  178. static int pt_identify (int unit);
  179. /* bits in PT.flags */
  180. #define PT_MEDIA 1
  181. #define PT_WRITE_OK 2
  182. #define PT_REWIND 4
  183. #define PT_WRITING      8
  184. #define PT_READING     16
  185. #define PT_EOF        32
  186. #define PT_NAMELEN      8
  187. #define PT_BUFSIZE  16384
  188. struct pt_unit {
  189. struct pi_adapter pia;    /* interface to paride layer */
  190. struct pi_adapter *pi;
  191. int flags;           /* various state flags */
  192. int last_sense;   /* result of last request sense */
  193. int drive;   /* drive */
  194. int access;               /* count of active opens ... */
  195. int bs;   /* block size */
  196. int capacity;             /* Size of tape in KB */
  197. int present;   /* device present ? */
  198. char *bufptr;
  199. char name[PT_NAMELEN];   /* pf0, pf1, ... */
  200. };
  201. struct pt_unit pt[PT_UNITS];
  202. /*  'unit' must be defined in all functions - either as a local or a param */
  203. #define PT pt[unit]
  204. #define PI PT.pi
  205. static char pt_scratch[512];            /* scratch block buffer */
  206. /* kernel glue structures */
  207. static struct file_operations pt_fops = {
  208. owner: THIS_MODULE,
  209. read: pt_read,
  210. write: pt_write,
  211. ioctl: pt_ioctl,
  212. open: pt_open,
  213. release: pt_release,
  214. };
  215. void pt_init_units( void )
  216. {       int     unit, j;
  217.         pt_drive_count = 0;
  218.         for (unit=0;unit<PT_UNITS;unit++) {
  219.                 PT.pi = & PT.pia;
  220.                 PT.access = 0;
  221.                 PT.flags = 0;
  222. PT.last_sense = 0;
  223.                 PT.present = 0;
  224. PT.bufptr = NULL;
  225. PT.drive = DU[D_SLV];
  226.                 j = 0;
  227.                 while ((j < PT_NAMELEN-2) && (PT.name[j]=name[j])) j++;
  228.                 PT.name[j++] = '0' + unit;
  229.                 PT.name[j] = 0;
  230.                 if (DU[D_PRT]) pt_drive_count++;
  231.         }
  232. static devfs_handle_t devfs_handle;
  233. int pt_init (void)      /* preliminary initialisation */
  234. {       int unit;
  235. if (disable) return -1;
  236. pt_init_units();
  237. if (pt_detect()) return -1;
  238. if (devfs_register_chrdev(major,name,&pt_fops)) {
  239.                 printk("pt_init: unable to get major number %dn",
  240.                         major);
  241.         for (unit=0;unit<PT_UNITS;unit++)
  242.            if (PT.present) pi_release(PI);
  243.                 return -1;
  244.         }
  245. devfs_handle = devfs_mk_dir (NULL, "pt", NULL);
  246. devfs_register_series (devfs_handle, "%u", 4, DEVFS_FL_DEFAULT,
  247.        major, 0, S_IFCHR | S_IRUSR | S_IWUSR,
  248.        &pt_fops, NULL);
  249. devfs_register_series (devfs_handle, "%un", 4, DEVFS_FL_DEFAULT,
  250.        major, 128, S_IFCHR | S_IRUSR | S_IWUSR,
  251.        &pt_fops, NULL);
  252.         return 0;
  253. }
  254. #ifdef MODULE
  255. /* Glue for modules ... */
  256. void    cleanup_module(void);
  257. int     init_module(void)
  258. {       int     err;
  259. #ifdef PARIDE_JUMBO
  260.        { extern paride_init();
  261.          paride_init();
  262.        } 
  263. #endif
  264.         err = pt_init();
  265.         return err;
  266. }
  267. void    cleanup_module(void)
  268. { int unit;
  269. devfs_unregister (devfs_handle);
  270. devfs_unregister_chrdev(major,name);
  271. for (unit=0;unit<PT_UNITS;unit++)
  272.   if (PT.present) pi_release(PI);
  273. }
  274. #endif
  275. #define WR(c,r,v) pi_write_regr(PI,c,r,v)
  276. #define RR(c,r) (pi_read_regr(PI,c,r))
  277. #define DRIVE           (0xa0+0x10*PT.drive)
  278. static int pt_wait( int unit, int go, int stop, char * fun, char * msg )
  279. {       int j, r, e, s, p;
  280.         j = 0;
  281.         while ((((r=RR(1,6))&go)||(stop&&(!(r&stop))))&&(j++<PT_SPIN))
  282.                 udelay(PT_SPIN_DEL);
  283.         if ((r&(STAT_ERR&stop))||(j>=PT_SPIN)) {
  284.            s = RR(0,7);
  285.            e = RR(0,1);
  286.            p = RR(0,2);
  287.            if (j >= PT_SPIN) e |= 0x100;
  288.            if (fun) printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x"
  289.                            " loop=%d phase=%dn",
  290.                             PT.name,fun,msg,r,s,e,j,p);
  291.            return (e<<8)+s;
  292.         }
  293.         return 0;
  294. }
  295. static int pt_command( int unit, char * cmd, int dlen, char * fun )
  296. {       pi_connect(PI);
  297.         WR(0,6,DRIVE);
  298.         if (pt_wait(unit,STAT_BUSY|STAT_DRQ,0,fun,"before command")) {
  299.                 pi_disconnect(PI);
  300.                 return -1;
  301.         }
  302.         WR(0,4,dlen % 256);
  303.         WR(0,5,dlen / 256);
  304.         WR(0,7,0xa0);          /* ATAPI packet command */
  305.         if (pt_wait(unit,STAT_BUSY,STAT_DRQ,fun,"command DRQ")) {
  306.                 pi_disconnect(PI);
  307.                 return -1;
  308.         }
  309.         if (RR(0,2) != 1) {
  310.            printk("%s: %s: command phase errorn",PT.name,fun);
  311.            pi_disconnect(PI);
  312.            return -1;
  313.         }
  314.         pi_write_block(PI,cmd,12);
  315.         return 0;
  316. }
  317. static int pt_completion( int unit, char * buf, char * fun )
  318. {       int r, s, n, p;
  319.         r = pt_wait(unit,STAT_BUSY,STAT_DRQ|STAT_READY|STAT_ERR,
  320. fun,"completion");
  321.         if (RR(0,7)&STAT_DRQ) { 
  322.            n = (((RR(0,4)+256*RR(0,5))+3)&0xfffc);
  323.    p = RR(0,2)&3;
  324.    if (p == 0) pi_write_block(PI,buf,n);
  325.    if (p == 2) pi_read_block(PI,buf,n);
  326.         }
  327.         s = pt_wait(unit,STAT_BUSY,STAT_READY|STAT_ERR,fun,"data done");
  328.         pi_disconnect(PI); 
  329.         return (r?r:s);
  330. }
  331. static void pt_req_sense( int unit, int quiet )
  332. {       char    rs_cmd[12] = { ATAPI_REQ_SENSE,0,0,0,16,0,0,0,0,0,0,0 };
  333.         char    buf[16];
  334.         int     r;
  335.         r = pt_command(unit,rs_cmd,16,"Request sense");
  336.         mdelay(1);
  337.         if (!r) pt_completion(unit,buf,"Request sense");
  338. PT.last_sense = -1;
  339.         if (!r) {
  340.     if (!quiet) printk("%s: Sense key: %x, ASC: %x, ASQ: %xn",
  341.                                     PT.name,buf[2]&0xf,buf[12],buf[13]);
  342.     PT.last_sense = (buf[2]&0xf) | ((buf[12]&0xff)<<8)
  343.  | ((buf[13]&0xff)<<16) ;
  344. }
  345. static int pt_atapi( int unit, char * cmd, int dlen, char * buf, char * fun )
  346. {       int r;
  347.         r = pt_command(unit,cmd,dlen,fun);
  348.         mdelay(1);
  349.         if (!r) r = pt_completion(unit,buf,fun);
  350.         if (r) pt_req_sense(unit,!fun);
  351.         
  352.         return r;
  353. }
  354. static void pt_sleep( int cs )
  355. {       current->state = TASK_INTERRUPTIBLE;
  356.         schedule_timeout(cs);
  357. }
  358. static int pt_poll_dsc( int unit, int pause, int tmo, char *msg )
  359. { int k, e, s;
  360. k = 0; e = 0; s = 0;
  361. while (k < tmo) {
  362. pt_sleep(pause);
  363. k++;
  364. pi_connect(PI);
  365. WR(0,6,DRIVE);
  366. s = RR(0,7);
  367. e = RR(0,1);
  368. pi_disconnect(PI);
  369. if (s & (STAT_ERR|STAT_SEEK)) break;
  370. }
  371. if ((k >= tmo) || (s & STAT_ERR)) {
  372.    if (k >= tmo) printk("%s: %s DSC timeoutn",PT.name,msg);
  373.      else printk("%s: %s stat=0x%x err=0x%xn",PT.name,msg,s,e);
  374.    pt_req_sense(unit,0);
  375.    return 0;
  376. }
  377. return 1;
  378. }
  379. static void pt_media_access_cmd( int unit, int tmo, char *cmd, char *fun)
  380. { if (pt_command(unit,cmd,0,fun)) {
  381. pt_req_sense(unit,0);
  382. return;
  383. }
  384. pi_disconnect(PI);
  385. pt_poll_dsc(unit,HZ,tmo,fun);
  386. }
  387. static void pt_rewind( int unit )
  388. { char rw_cmd[12] = {ATAPI_REWIND,0,0,0,0,0,0,0,0,0,0,0};
  389. pt_media_access_cmd(unit,PT_REWIND_TMO,rw_cmd,"rewind");
  390. }
  391. static void pt_write_fm( int unit )
  392. { char wm_cmd[12] = {ATAPI_WFM,0,0,0,1,0,0,0,0,0,0,0};
  393.         pt_media_access_cmd(unit,PT_TMO,wm_cmd,"write filemark");
  394. }
  395. #define DBMSG(msg)      ((verbose>1)?(msg):NULL)
  396. static int pt_reset( int unit )
  397. { int i, k, flg;
  398. int expect[5] = {1,1,1,0x14,0xeb};
  399. pi_connect(PI);
  400. WR(0,6,DRIVE);
  401. WR(0,7,8);
  402. pt_sleep(20*HZ/1000);
  403.         k = 0;
  404.         while ((k++ < PT_RESET_TMO) && (RR(1,6)&STAT_BUSY))
  405.                 pt_sleep(HZ/10);
  406. flg = 1;
  407. for(i=0;i<5;i++) flg &= (RR(0,i+1) == expect[i]);
  408. if (verbose) {
  409. printk("%s: Reset (%d) signature = ",PT.name,k);
  410. for (i=0;i<5;i++) printk("%3x",RR(0,i+1));
  411. if (!flg) printk(" (incorrect)");
  412. printk("n");
  413. }
  414. pi_disconnect(PI);
  415. return flg-1;
  416. }
  417. static int pt_ready_wait( int unit, int tmo )
  418. { char tr_cmd[12] = {ATAPI_TEST_READY,0,0,0,0,0,0,0,0,0,0,0};
  419. int k, p;
  420. k = 0;
  421. while (k < tmo) {
  422.   PT.last_sense = 0;
  423.   pt_atapi(unit,tr_cmd,0,NULL,DBMSG("test unit ready"));
  424.   p = PT.last_sense;
  425.   if (!p) return 0;
  426.   if (!(((p & 0xffff) == 0x0402)||((p & 0xff) == 6))) return p;
  427.   k++;
  428.           pt_sleep(HZ);
  429. }
  430. return 0x000020; /* timeout */
  431. }
  432. static void xs( char *buf, char *targ, int offs, int len )
  433. { int j,k,l;
  434. j=0; l=0;
  435. for (k=0;k<len;k++) 
  436.    if((buf[k+offs]!=0x20)||(buf[k+offs]!=l))
  437. l=targ[j++]=buf[k+offs];
  438. if (l==0x20) j--;
  439. targ[j]=0;
  440. }
  441. static int xn( char *buf, int offs, int size )
  442. { int v,k;
  443. v=0; 
  444. for(k=0;k<size;k++) v=v*256+(buf[k+offs]&0xff);
  445. return v;
  446. }
  447. static int pt_identify( int unit )
  448. { int  dt, s;
  449. char *ms[2] = {"master","slave"};
  450. char mf[10], id[18];
  451. char    id_cmd[12] = { ATAPI_IDENTIFY,0,0,0,36,0,0,0,0,0,0,0};
  452.         char    ms_cmd[12] = { ATAPI_MODE_SENSE,0,0x2a,0,36,0,0,0,0,0,0,0};
  453. char    ls_cmd[12] = { ATAPI_LOG_SENSE,0,0x71,0,0,0,0,0,36,0,0,0};
  454. char buf[36];
  455.         s = pt_atapi(unit,id_cmd,36,buf,"identify");
  456. if (s) return -1;
  457. dt = buf[0] & 0x1f;
  458. if (dt != 1) {
  459.    if (verbose) 
  460.    printk("%s: Drive %d, unsupported type %dn",
  461. PT.name,PT.drive,dt);
  462.    return -1;
  463.         }
  464. xs(buf,mf,8,8);
  465. xs(buf,id,16,16);
  466. PT.flags = 0;
  467. PT.capacity = 0;
  468. PT.bs = 0;
  469. if (!pt_ready_wait(unit,PT_READY_TMO)) PT.flags |= PT_MEDIA;
  470.         if (!pt_atapi(unit,ms_cmd,36,buf,"mode sense")) {
  471.           if (!(buf[2] & 0x80)) PT.flags |= PT_WRITE_OK;
  472.   PT.bs = xn(buf,10,2);
  473. }
  474.         if (!pt_atapi(unit,ls_cmd,36,buf,"log sense")) 
  475. PT.capacity = xn(buf,24,4);
  476.         printk("%s: %s %s, %s",
  477. PT.name,mf,id,ms[PT.drive]);
  478.         if (!(PT.flags & PT_MEDIA)) 
  479.                 printk(", no median");
  480.         else {  if (!(PT.flags & PT_WRITE_OK)) printk(", RO");
  481.                 printk(", blocksize %d, %d MBn",
  482.        PT.bs,PT.capacity/1024);
  483.         }
  484. return 0;
  485. }
  486. static int pt_probe( int unit )
  487. /* returns  0, with id set if drive is detected
  488.         -1, if drive detection failed
  489. */
  490. { if (PT.drive == -1) {
  491.    for (PT.drive=0;PT.drive<=1;PT.drive++)
  492. if (!pt_reset(unit)) return pt_identify(unit);
  493. } else {
  494.    if (!pt_reset(unit)) return pt_identify(unit);
  495. }
  496.         return -1; 
  497. }
  498. static int pt_detect( void )
  499. { int k, unit;
  500. printk("%s: %s version %s, major %dn",
  501. name,name,PT_VERSION,major);
  502. k = 0;
  503. if (pt_drive_count == 0) {
  504.     unit = 0;
  505.     if (pi_init(PI,1,-1,-1,-1,-1,-1,pt_scratch,
  506.                         PI_PT,verbose,PT.name)) {
  507.         if (!pt_probe(unit)) {
  508. PT.present = 1;
  509. k++;
  510.         } else pi_release(PI);
  511.     }
  512. } else for (unit=0;unit<PT_UNITS;unit++) if (DU[D_PRT])
  513.     if (pi_init(PI,0,DU[D_PRT],DU[D_MOD],DU[D_UNI],
  514. DU[D_PRO],DU[D_DLY],pt_scratch,PI_PT,verbose,
  515. PT.name)) { 
  516.                 if (!pt_probe(unit)) {
  517.                         PT.present = 1;
  518.                         k++;
  519.                 } else pi_release(PI);
  520.             }
  521. if (k) return 0;
  522. printk("%s: No ATAPI tape drive detectedn",name);
  523. return -1;
  524. }
  525. #define DEVICE_NR(dev) (MINOR(dev) % 128)
  526. static int pt_open (struct inode *inode, struct file *file)
  527. {       int unit = DEVICE_NR(inode->i_rdev);
  528.         if ((unit >= PT_UNITS) || (!PT.present)) return -ENODEV;
  529.         PT.access++;
  530. if (PT.access > 1) {
  531. PT.access--;
  532. return -EBUSY;
  533. }
  534. pt_identify(unit);
  535. if (!PT.flags & PT_MEDIA) {
  536. PT.access--;
  537. return -ENODEV;
  538. }
  539. if ((!PT.flags & PT_WRITE_OK) && (file ->f_mode & 2)) {
  540. PT.access--;
  541. return -EROFS;
  542. }
  543. if (!(MINOR(inode->i_rdev) & 128))
  544. PT.flags |= PT_REWIND;
  545. PT.bufptr = kmalloc(PT_BUFSIZE,GFP_KERNEL);
  546. if (PT.bufptr == NULL) {
  547. PT.access--;
  548. printk("%s: buffer allocation failedn",PT.name);
  549. return -ENOMEM;
  550. }
  551.         return 0;
  552. }
  553. static int pt_ioctl(struct inode *inode,struct file *file,
  554.                     unsigned int cmd, unsigned long arg)
  555. {
  556. int unit;
  557. struct mtop mtop;
  558.         if (!inode || !inode->i_rdev)
  559. return -EINVAL;
  560.         unit = DEVICE_NR(inode->i_rdev);
  561.         if (unit >= PT_UNITS)
  562. return -EINVAL;
  563.         if (!PT.present)
  564. return -ENODEV;
  565.         switch (cmd) {
  566.     case MTIOCTOP:
  567. if (copy_from_user((char *)&mtop, (char *)arg, 
  568.            sizeof(struct mtop))) return -EFAULT;
  569. switch (mtop.mt_op) {
  570.     case MTREW: 
  571. pt_rewind(unit);
  572. return 0;
  573.     case MTWEOF:
  574. pt_write_fm(unit);
  575. return 0;
  576.     default:
  577. printk("%s: Unimplemented mt_op %dn",PT.name,
  578. mtop.mt_op);
  579. return -EINVAL;
  580. }
  581.             default:
  582. printk("%s: Unimplemented ioctl 0x%xn",PT.name,cmd);
  583.                 return -EINVAL;
  584.         }
  585. }
  586. static int pt_release (struct inode *inode, struct file *file)
  587. {
  588.         int unit = DEVICE_NR(inode->i_rdev);
  589.         if ((unit >= PT_UNITS) || (PT.access <= 0)) 
  590.                 return -EINVAL;
  591. lock_kernel();
  592. if (PT.flags & PT_WRITING) pt_write_fm(unit);
  593. if (PT.flags & PT_REWIND) pt_rewind(unit);
  594. PT.access--;
  595. kfree(PT.bufptr);
  596. PT.bufptr = NULL;
  597. unlock_kernel();
  598. return 0;
  599. }
  600. static ssize_t pt_read(struct file * filp, char * buf, 
  601.                        size_t count, loff_t *ppos)
  602. {
  603.    struct  inode *ino = filp->f_dentry->d_inode;
  604. int unit = DEVICE_NR(ino->i_rdev);
  605. char rd_cmd[12] = {ATAPI_READ_6,1,0,0,0,0,0,0,0,0,0,0};
  606. int k, n, r, p, s, t, b;
  607. if (!(PT.flags & (PT_READING|PT_WRITING))) {
  608.     PT.flags |= PT_READING;
  609.     if (pt_atapi(unit,rd_cmd,0,NULL,"start read-ahead"))
  610. return -EIO;
  611. } else if (PT.flags & PT_WRITING) return -EIO;
  612. if (PT.flags & PT_EOF) return 0;
  613. t = 0;
  614. while (count > 0) {
  615.     if (!pt_poll_dsc(unit,HZ/100,PT_TMO,"read")) return -EIO;
  616.     n = count;
  617.     if (n > 32768) n = 32768;   /* max per command */
  618.     b = (n-1+PT.bs)/PT.bs;
  619.     n = b*PT.bs; /* rounded up to even block */
  620.     rd_cmd[4] = b;
  621.     r = pt_command(unit,rd_cmd,n,"read");
  622.     mdelay(1);
  623.     if (r) {
  624.         pt_req_sense(unit,0);
  625.         return -EIO;
  626.     }
  627.     while (1) {
  628.         r = pt_wait(unit,STAT_BUSY,STAT_DRQ|STAT_ERR|STAT_READY,
  629.                                            DBMSG("read DRQ"),"");
  630.         if (r & STAT_SENSE) {
  631.             pi_disconnect(PI);
  632.     pt_req_sense(unit,0);
  633.     return -EIO;
  634.         }
  635.         if (r) PT.flags |= PT_EOF; 
  636.         s = RR(0,7);
  637.         if (!(s & STAT_DRQ)) break;
  638.      n = (RR(0,4)+256*RR(0,5));
  639.      p = (RR(0,2)&3);
  640.      if (p != 2) {
  641.     pi_disconnect(PI);
  642.     printk("%s: Phase error on read: %dn",PT.name,p);
  643.     return -EIO;
  644.      }
  645.         while (n > 0) {
  646.     k = n;
  647.     if (k > PT_BUFSIZE) k = PT_BUFSIZE; 
  648.     pi_read_block(PI,PT.bufptr,k);
  649.     n -= k;
  650.     b = k;
  651.     if (b > count) b = count;
  652.     copy_to_user(buf+t,PT.bufptr,b);
  653.     t += b;
  654.     count -= b;
  655.         }
  656.     }
  657.     pi_disconnect(PI);
  658.     if (PT.flags & PT_EOF) break;
  659. }
  660. return t;
  661. }
  662. static ssize_t pt_write(struct file * filp, const char * buf, 
  663.                         size_t count, loff_t *ppos)
  664. {
  665.         struct inode *ino = filp->f_dentry->d_inode;
  666.         int unit = DEVICE_NR(ino->i_rdev);
  667.         char    wr_cmd[12] = {ATAPI_WRITE_6,1,0,0,0,0,0,0,0,0,0,0};
  668.         int     k, n, r, p, s, t, b;
  669. if (!(PT.flags & PT_WRITE_OK)) return -EROFS;
  670.         if (!(PT.flags & (PT_READING|PT_WRITING))) {
  671.             PT.flags |= PT_WRITING;
  672.             if (pt_atapi(unit,wr_cmd,0,NULL,"start buffer-available mode"))
  673.                         return -EIO;
  674.         } else if (PT.flags&PT_READING) return -EIO;
  675. if (PT.flags & PT_EOF) return -ENOSPC;
  676. t = 0;
  677. while (count > 0) {
  678.     if (!pt_poll_dsc(unit,HZ/100,PT_TMO,"write")) return -EIO;
  679.             n = count;
  680.             if (n > 32768) n = 32768; /* max per command */
  681.             b = (n-1+PT.bs)/PT.bs;
  682.             n = b*PT.bs;                /* rounded up to even block */
  683.             wr_cmd[4] = b;
  684.             r = pt_command(unit,wr_cmd,n,"write");
  685.             mdelay(1);
  686.             if (r) { /* error delivering command only */
  687.                 pt_req_sense(unit,0);
  688.                 return -EIO;
  689.             }
  690.     while (1) {
  691.                 r = pt_wait(unit,STAT_BUSY,STAT_DRQ|STAT_ERR|STAT_READY,
  692.                         DBMSG("write DRQ"),NULL);
  693.                 if (r & STAT_SENSE) {
  694.                     pi_disconnect(PI);
  695.                     pt_req_sense(unit,0);
  696.                     return -EIO;
  697.                 }
  698.                 if (r) PT.flags |= PT_EOF;
  699.         s = RR(0,7);
  700.         if (!(s & STAT_DRQ)) break;
  701.                 n = (RR(0,4)+256*RR(0,5));
  702.                 p = (RR(0,2)&3);
  703.                 if (p != 0) {
  704.                     pi_disconnect(PI);
  705.                     printk("%s: Phase error on write: %d n",PT.name,p);
  706.                     return -EIO;
  707.                 }
  708.                 while (n > 0) {
  709.     k = n;
  710.     if (k > PT_BUFSIZE) k = PT_BUFSIZE;
  711.     b = k;
  712.     if (b > count) b = count;
  713.     copy_from_user(PT.bufptr,buf+t,b);
  714.                     pi_write_block(PI,PT.bufptr,k);
  715.     t += b;
  716.     count -= b;
  717.     n -= k;
  718.                 }
  719.     }
  720.     pi_disconnect(PI);
  721.     if (PT.flags & PT_EOF) break;
  722. }
  723. return t;
  724. }
  725. /* end of pt.c */
  726. MODULE_LICENSE("GPL");