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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.         pf.c    (c) 1997-8  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 disk
  5.         drives based on chips supported by the paride module.
  6.         By default, the driver will autoprobe for a single parallel
  7.         port ATAPI disk drive, but if their individual parameters are
  8.         specified, the driver can handle up to 4 drives.
  9.         The behaviour of the pf driver can be altered by setting
  10.         some parameters from the insmod command line.  The following
  11.         parameters are adjustable:
  12.             drive0      These four arguments can be arrays of       
  13.             drive1      1-7 integers as follows:
  14.             drive2
  15.             drive3      <prt>,<pro>,<uni>,<mod>,<slv>,<lun>,<dly>
  16.                         Where,
  17.                 <prt>   is the base of the parallel port address for
  18.                         the corresponding drive.  (required)
  19.                 <pro>   is the protocol number for the adapter that
  20.                         supports this drive.  These numbers are
  21.                         logged by 'paride' when the protocol modules
  22.                         are initialised.  (0 if not given)
  23.                 <uni>   for those adapters that support chained
  24.                         devices, this is the unit selector for the
  25.                         chain of devices on the given port.  It should
  26.                         be zero for devices that don't support chaining.
  27.                         (0 if not given)
  28.                 <mod>   this can be -1 to choose the best mode, or one
  29.                         of the mode numbers supported by the adapter.
  30.                         (-1 if not given)
  31.                 <slv>   ATAPI CDroms can be jumpered to master or slave.
  32.                         Set this to 0 to choose the master drive, 1 to
  33.                         choose the slave, -1 (the default) to choose the
  34.                         first drive found.
  35. <lun>   Some ATAPI devices support multiple LUNs.
  36.                         One example is the ATAPI PD/CD drive from
  37.                         Matshita/Panasonic.  This device has a 
  38.                         CD drive on LUN 0 and a PD drive on LUN 1.
  39.                         By default, the driver will search for the
  40.                         first LUN with a supported device.  Set 
  41.                         this parameter to force it to use a specific
  42.                         LUN.  (default -1)
  43.                 <dly>   some parallel ports require the driver to 
  44.                         go more slowly.  -1 sets a default value that
  45.                         should work with the chosen protocol.  Otherwise,
  46.                         set this to a small integer, the larger it is
  47.                         the slower the port i/o.  In some cases, setting
  48.                         this to zero will speed up the device. (default -1)
  49.     major You may use this parameter to overide the
  50. default major number (47) that this driver
  51. will use.  Be sure to change the device
  52. name as well.
  53.     name This parameter is a character string that
  54. contains the name the kernel will use for this
  55. device (in /proc output, for instance).
  56. (default "pf").
  57.             cluster     The driver will attempt to aggregate requests
  58.                         for adjacent blocks into larger multi-block
  59.                         clusters.  The maximum cluster size (in 512
  60.                         byte sectors) is set with this parameter.
  61.                         (default 64)
  62.             verbose     This parameter controls the amount of logging
  63.                         that the driver will do.  Set it to 0 for
  64.                         normal operation, 1 to see autoprobe progress
  65.                         messages, or 2 to see additional debugging
  66.                         output.  (default 0)
  67.  
  68.     nice        This parameter controls the driver's use of
  69. idle CPU time, at the expense of some speed.
  70.         If this driver is built into the kernel, you can use the
  71.         following command line parameters, with the same values
  72.         as the corresponding module parameters listed above:
  73.             pf.drive0
  74.             pf.drive1
  75.             pf.drive2
  76.             pf.drive3
  77.     pf.cluster
  78.             pf.nice
  79.         In addition, you can use the parameter pf.disable to disable
  80.         the driver entirely.
  81. */
  82. /* Changes:
  83. 1.01 GRG 1998.05.03  Changes for SMP.  Eliminate sti().
  84. Fix for drives that don't clear STAT_ERR
  85.         until after next CDB delivered.
  86. Small change in pf_completion to round
  87. up transfer size.
  88. 1.02    GRG 1998.06.16  Eliminated an Ugh
  89. 1.03    GRG 1998.08.16  Use HZ in loop timings, extra debugging
  90. 1.04    GRG 1998.09.24  Added jumbo support
  91. */
  92. #define PF_VERSION      "1.04"
  93. #define PF_MAJOR 47
  94. #define PF_NAME "pf"
  95. #define PF_UNITS 4
  96. /* Here are things one can override from the insmod command.
  97.    Most are autoprobed by paride unless set here.  Verbose is off
  98.    by default.
  99. */
  100. static int verbose = 0;
  101. static int major = PF_MAJOR;
  102. static char *name = PF_NAME;
  103. static int      cluster = 64;
  104. static int      nice = 0;
  105. static int      disable = 0;
  106. static int drive0[7] = {0,0,0,-1,-1,-1,-1};
  107. static int drive1[7] = {0,0,0,-1,-1,-1,-1};
  108. static int drive2[7] = {0,0,0,-1,-1,-1,-1};
  109. static int drive3[7] = {0,0,0,-1,-1,-1,-1};
  110. static int (*drives[4])[7] = {&drive0,&drive1,&drive2,&drive3};
  111. static int pf_drive_count;
  112. #define D_PRT   0
  113. #define D_PRO   1
  114. #define D_UNI   2
  115. #define D_MOD   3
  116. #define D_SLV   4
  117. #define D_LUN   5
  118. #define D_DLY   6
  119. #define DU              (*drives[unit])
  120. /* end of parameters */
  121. #include <linux/module.h>
  122. #include <linux/errno.h>
  123. #include <linux/fs.h>
  124. #include <linux/kernel.h>
  125. #include <linux/delay.h>
  126. #include <linux/genhd.h>
  127. #include <linux/hdreg.h>
  128. #include <linux/cdrom.h>
  129. #include <linux/spinlock.h>
  130. #include <asm/uaccess.h>
  131. #ifndef MODULE
  132. #include "setup.h"
  133. static STT pf_stt[7] = {{"drive0",7,drive0},
  134.                         {"drive1",7,drive1},
  135.                         {"drive2",7,drive2},
  136.                         {"drive3",7,drive3},
  137. {"disable",1,&disable},
  138.                         {"cluster",1,&cluster},
  139.                         {"nice",1,&nice}};
  140. void pf_setup( char *str, int *ints)
  141. {       generic_setup(pf_stt,7,str);
  142. }
  143. #endif
  144. MODULE_PARM(verbose,"i");
  145. MODULE_PARM(major,"i");
  146. MODULE_PARM(name,"s");
  147. MODULE_PARM(cluster,"i");
  148. MODULE_PARM(nice,"i");
  149. MODULE_PARM(drive0,"1-7i");
  150. MODULE_PARM(drive1,"1-7i");
  151. MODULE_PARM(drive2,"1-7i");
  152. MODULE_PARM(drive3,"1-7i");
  153. #include "paride.h"
  154. /* set up defines for blk.h,  why don't all drivers do it this way ? */
  155. #define MAJOR_NR   major
  156. #define DEVICE_NAME "PF"
  157. #define DEVICE_REQUEST do_pf_request
  158. #define DEVICE_NR(device) MINOR(device)
  159. #define DEVICE_ON(device)
  160. #define DEVICE_OFF(device)
  161. #include <linux/blk.h>
  162. #include <linux/blkpg.h>
  163. #include "pseudo.h"
  164. /* constants for faking geometry numbers */
  165. #define PF_FD_MAX 8192 /* use FD geometry under this size */
  166. #define PF_FD_HDS 2
  167. #define PF_FD_SPT 18
  168. #define PF_HD_HDS 64
  169. #define PF_HD_SPT 32
  170. #define PF_MAX_RETRIES  5
  171. #define PF_TMO          800             /* interrupt timeout in jiffies */
  172. #define PF_SPIN_DEL     50              /* spin delay in micro-seconds  */
  173. #define PF_SPIN         (1000000*PF_TMO)/(HZ*PF_SPIN_DEL)
  174. #define STAT_ERR        0x00001
  175. #define STAT_INDEX      0x00002
  176. #define STAT_ECC        0x00004
  177. #define STAT_DRQ        0x00008
  178. #define STAT_SEEK       0x00010
  179. #define STAT_WRERR      0x00020
  180. #define STAT_READY      0x00040
  181. #define STAT_BUSY       0x00080
  182. #define ATAPI_REQ_SENSE 0x03
  183. #define ATAPI_LOCK 0x1e
  184. #define ATAPI_DOOR 0x1b
  185. #define ATAPI_MODE_SENSE 0x5a
  186. #define ATAPI_CAPACITY 0x25
  187. #define ATAPI_IDENTIFY 0x12
  188. #define ATAPI_READ_10 0x28
  189. #define ATAPI_WRITE_10 0x2a
  190. int pf_init(void);
  191. #ifdef MODULE
  192. void cleanup_module( void );
  193. #endif
  194. static int pf_open(struct inode *inode, struct file *file);
  195. static void do_pf_request(request_queue_t * q);
  196. static int pf_ioctl(struct inode *inode,struct file *file,
  197.                     unsigned int cmd, unsigned long arg);
  198. static int pf_release (struct inode *inode, struct file *file);
  199. static int pf_detect(void);
  200. static void do_pf_read(void);
  201. static void do_pf_read_start(void);
  202. static void do_pf_write(void);
  203. static void do_pf_write_start(void);
  204. static void do_pf_read_drq( void );
  205. static void do_pf_write_done( void );
  206. static int pf_identify (int unit);
  207. static void pf_lock(int unit, int func);
  208. static void pf_eject(int unit);
  209. static int pf_check_media(kdev_t dev);
  210. static int pf_blocksizes[PF_UNITS];
  211. #define PF_NM           0
  212. #define PF_RO           1
  213. #define PF_RW           2
  214. #define PF_NAMELEN      8
  215. struct pf_unit {
  216. struct pi_adapter pia;    /* interface to paride layer */
  217. struct pi_adapter *pi;
  218. int removable;   /* removable media device  ?  */
  219. int media_status;   /* media present ?  WP ? */
  220. int drive;   /* drive */
  221. int lun;
  222. int access;               /* count of active opens ... */
  223. int capacity;             /* Size of this volume in sectors */
  224. int present;   /* device present ? */
  225. char name[PF_NAMELEN];   /* pf0, pf1, ... */
  226. };
  227. struct pf_unit pf[PF_UNITS];
  228. /*  'unit' must be defined in all functions - either as a local or a param */
  229. #define PF pf[unit]
  230. #define PI PF.pi
  231. static char pf_scratch[512];            /* scratch block buffer */
  232. /* the variables below are used mainly in the I/O request engine, which
  233.    processes only one request at a time.
  234. */
  235. static int pf_retries = 0;              /* i/o error retry count */
  236. static int pf_busy = 0;                 /* request being processed ? */
  237. static int pf_block;                    /* address of next requested block */
  238. static int pf_count;                    /* number of blocks still to do */
  239. static int pf_run; /* sectors in current cluster */
  240. static int pf_cmd; /* current command READ/WRITE */
  241. static int pf_unit; /* unit of current request */
  242. static int pf_mask; /* stopper for pseudo-int */
  243. static char * pf_buf;                   /* buffer for request in progress */
  244. /* kernel glue structures */
  245. static struct block_device_operations pf_fops = {
  246. owner: THIS_MODULE,
  247. open: pf_open,
  248. release: pf_release,
  249. ioctl: pf_ioctl,
  250. check_media_change: pf_check_media,
  251. };
  252. void pf_init_units( void )
  253. {       int     unit, j;
  254.         pf_drive_count = 0;
  255.         for (unit=0;unit<PF_UNITS;unit++) {
  256.                 PF.pi = & PF.pia;
  257.                 PF.access = 0;
  258.                 PF.media_status = PF_NM;
  259.                 PF.capacity = 0;
  260.                 PF.present = 0;
  261. PF.drive = DU[D_SLV];
  262. PF.lun = DU[D_LUN];
  263.                 j = 0;
  264.                 while ((j < PF_NAMELEN-2) && (PF.name[j]=name[j])) j++;
  265.                 PF.name[j++] = '0' + unit;
  266.                 PF.name[j] = 0;
  267.                 if (DU[D_PRT]) pf_drive_count++;
  268.         }
  269. static inline int pf_new_segment(request_queue_t *q, struct request *req, int max_segments)
  270. {
  271. if (max_segments > cluster)
  272. max_segments = cluster;
  273. if (req->nr_segments < max_segments) {
  274. req->nr_segments++;
  275. return 1;
  276. }
  277. return 0;
  278. }
  279. static int pf_back_merge_fn(request_queue_t *q, struct request *req, 
  280.     struct buffer_head *bh, int max_segments)
  281. {
  282. if (req->bhtail->b_data + req->bhtail->b_size == bh->b_data)
  283. return 1;
  284. return pf_new_segment(q, req, max_segments);
  285. }
  286. static int pf_front_merge_fn(request_queue_t *q, struct request *req, 
  287.      struct buffer_head *bh, int max_segments)
  288. {
  289. if (bh->b_data + bh->b_size == req->bh->b_data)
  290. return 1;
  291. return pf_new_segment(q, req, max_segments);
  292. }
  293. static int pf_merge_requests_fn(request_queue_t *q, struct request *req,
  294. struct request *next, int max_segments)
  295. {
  296. int total_segments = req->nr_segments + next->nr_segments;
  297. int same_segment;
  298. if (max_segments > cluster)
  299. max_segments = cluster;
  300. same_segment = 0;
  301. if (req->bhtail->b_data + req->bhtail->b_size == next->bh->b_data) {
  302. total_segments--;
  303. same_segment = 1;
  304. }
  305.     
  306. if (total_segments > max_segments)
  307. return 0;
  308. req->nr_segments = total_segments;
  309. return 1;
  310. }
  311. int pf_init (void)      /* preliminary initialisation */
  312. {       int i;
  313. request_queue_t * q; 
  314. if (disable) return -1;
  315. pf_init_units();
  316. if (pf_detect()) return -1;
  317. pf_busy = 0;
  318.         if (register_blkdev(MAJOR_NR,name,&pf_fops)) {
  319.                 printk("pf_init: unable to get major number %dn",
  320.                         major);
  321.                 return -1;
  322.         }
  323. q = BLK_DEFAULT_QUEUE(MAJOR_NR);
  324. blk_init_queue(q, DEVICE_REQUEST);
  325. q->back_merge_fn = pf_back_merge_fn;
  326. q->front_merge_fn = pf_front_merge_fn;
  327. q->merge_requests_fn = pf_merge_requests_fn;
  328.         read_ahead[MAJOR_NR] = 8;       /* 8 sector (4kB) read ahead */
  329.         
  330. for (i=0;i<PF_UNITS;i++) pf_blocksizes[i] = 1024;
  331. blksize_size[MAJOR_NR] = pf_blocksizes;
  332. for (i=0;i<PF_UNITS;i++)
  333. register_disk(NULL, MKDEV(MAJOR_NR, i), 1, &pf_fops, 0);
  334.         return 0;
  335. }
  336. static int pf_open (struct inode *inode, struct file *file)
  337. {       int unit = DEVICE_NR(inode->i_rdev);
  338.         if ((unit >= PF_UNITS) || (!PF.present)) return -ENODEV;
  339. pf_identify(unit);
  340. if (PF.media_status == PF_NM)
  341. return -ENODEV;
  342. if ((PF.media_status == PF_RO) && (file ->f_mode & 2))
  343. return -EROFS;
  344.         PF.access++;
  345.         if (PF.removable) pf_lock(unit,1);
  346.         return 0;
  347. }
  348. static int pf_ioctl(struct inode *inode,struct file *file,
  349.                     unsigned int cmd, unsigned long arg)
  350. {       int err, unit;
  351. struct hd_geometry *geo = (struct hd_geometry *) arg;
  352.         if ((!inode) || (!inode->i_rdev)) return -EINVAL;
  353.         unit = DEVICE_NR(inode->i_rdev);
  354.         if (unit >= PF_UNITS) return -EINVAL;
  355.         if (!PF.present) return -ENODEV;
  356.         switch (cmd) {
  357.     case CDROMEJECT: 
  358. if (PF.access == 1) {
  359. pf_eject(unit);
  360. return 0;
  361. }
  362.     case HDIO_GETGEO:
  363.                 if (!geo) return -EINVAL;
  364.                 err = verify_area(VERIFY_WRITE,geo,sizeof(*geo));
  365.                 if (err) return err;
  366.                 if (PF.capacity < PF_FD_MAX) {
  367.                     put_user(PF.capacity/(PF_FD_HDS*PF_FD_SPT),
  368.                                 (short *) &geo->cylinders);
  369.                     put_user(PF_FD_HDS, (char *) &geo->heads);
  370.                     put_user(PF_FD_SPT, (char *) &geo->sectors);
  371.                 } else {
  372.                     put_user(PF.capacity/(PF_HD_HDS*PF_HD_SPT), 
  373. (short *) &geo->cylinders);
  374.                     put_user(PF_HD_HDS, (char *) &geo->heads);
  375.                     put_user(PF_HD_SPT, (char *) &geo->sectors);
  376.                 }
  377.                 put_user(0,(long *)&geo->start);
  378.                 return 0;
  379.             case BLKGETSIZE:
  380.                 return put_user(PF.capacity,(long *) arg);
  381.             case BLKGETSIZE64:
  382.                 return put_user((u64)PF.capacity << 9,(u64 *)arg);
  383.     case BLKROSET:
  384.     case BLKROGET:
  385.     case BLKRASET:
  386.     case BLKRAGET:
  387.     case BLKFLSBUF:
  388. return blk_ioctl(inode->i_rdev, cmd, arg);
  389.             default:
  390.                 return -EINVAL;
  391.         }
  392. }
  393. static int pf_release (struct inode *inode, struct file *file)
  394. {       kdev_t devp;
  395. int unit;
  396.         devp = inode->i_rdev;
  397.         unit = DEVICE_NR(devp);
  398.         if ((unit >= PF_UNITS) || (PF.access <= 0)) 
  399.                 return -EINVAL;
  400. PF.access--;
  401. if (!PF.access && PF.removable)
  402. pf_lock(unit,0);
  403. return 0;
  404. }
  405. static int pf_check_media( kdev_t dev)
  406. {       return 1;
  407. }
  408. #ifdef MODULE
  409. /* Glue for modules ... */
  410. void    cleanup_module(void);
  411. int     init_module(void)
  412. {       int     err;
  413. #ifdef PARIDE_JUMBO
  414.        { extern paride_init();
  415.          paride_init();
  416.        } 
  417. #endif
  418.         err = pf_init();
  419.         return err;
  420. }
  421. void    cleanup_module(void)
  422. {       int unit;
  423.         unregister_blkdev(MAJOR_NR,name);
  424. for (unit=0;unit<PF_UNITS;unit++)
  425.   if (PF.present) pi_release(PI);
  426. }
  427. #endif
  428. #define WR(c,r,v) pi_write_regr(PI,c,r,v)
  429. #define RR(c,r) (pi_read_regr(PI,c,r))
  430. #define LUN             (0x20*PF.lun)
  431. #define DRIVE           (0xa0+0x10*PF.drive)
  432. static int pf_wait( int unit, int go, int stop, char * fun, char * msg )
  433. {       int j, r, e, s, p;
  434.         j = 0;
  435.         while ((((r=RR(1,6))&go)||(stop&&(!(r&stop))))&&(j++<PF_SPIN))
  436.                 udelay(PF_SPIN_DEL);
  437.         if ((r&(STAT_ERR&stop))||(j>=PF_SPIN)) {
  438.            s = RR(0,7);
  439.            e = RR(0,1);
  440.            p = RR(0,2);
  441.            if (j >= PF_SPIN) e |= 0x100;
  442.            if (fun) printk("%s: %s %s: alt=0x%x stat=0x%x err=0x%x"
  443.                            " loop=%d phase=%dn",
  444.                             PF.name,fun,msg,r,s,e,j,p);
  445.            return (e<<8)+s;
  446.         }
  447.         return 0;
  448. }
  449. static int pf_command( int unit, char * cmd, int dlen, char * fun )
  450. {       pi_connect(PI);
  451.         WR(0,6,DRIVE);
  452.         if (pf_wait(unit,STAT_BUSY|STAT_DRQ,0,fun,"before command")) {
  453.                 pi_disconnect(PI);
  454.                 return -1;
  455.         }
  456.         WR(0,4,dlen % 256);
  457.         WR(0,5,dlen / 256);
  458.         WR(0,7,0xa0);          /* ATAPI packet command */
  459.         if (pf_wait(unit,STAT_BUSY,STAT_DRQ,fun,"command DRQ")) {
  460.                 pi_disconnect(PI);
  461.                 return -1;
  462.         }
  463.         if (RR(0,2) != 1) {
  464.            printk("%s: %s: command phase errorn",PF.name,fun);
  465.            pi_disconnect(PI);
  466.            return -1;
  467.         }
  468.         pi_write_block(PI,cmd,12);
  469.         return 0;
  470. }
  471. static int pf_completion( int unit, char * buf, char * fun )
  472. {       int r, s, n;
  473.         r = pf_wait(unit,STAT_BUSY,STAT_DRQ|STAT_READY|STAT_ERR,
  474. fun,"completion");
  475.         if ((RR(0,2)&2) && (RR(0,7)&STAT_DRQ)) { 
  476.                 n = (((RR(0,4)+256*RR(0,5))+3)&0xfffc);
  477.                 pi_read_block(PI,buf,n);
  478.         }
  479.         s = pf_wait(unit,STAT_BUSY,STAT_READY|STAT_ERR,fun,"data done");
  480.         pi_disconnect(PI); 
  481.         return (r?r:s);
  482. }
  483. static void pf_req_sense( int unit, int quiet )
  484. {       char    rs_cmd[12] = { ATAPI_REQ_SENSE,LUN,0,0,16,0,0,0,0,0,0,0 };
  485.         char    buf[16];
  486.         int     r;
  487.         r = pf_command(unit,rs_cmd,16,"Request sense");
  488.         mdelay(1);
  489.         if (!r) pf_completion(unit,buf,"Request sense");
  490.         if ((!r)&&(!quiet)) 
  491.                 printk("%s: Sense key: %x, ASC: %x, ASQ: %xn",
  492.                        PF.name,buf[2]&0xf,buf[12],buf[13]);
  493. }
  494. static int pf_atapi( int unit, char * cmd, int dlen, char * buf, char * fun )
  495. {       int r;
  496.         r = pf_command(unit,cmd,dlen,fun);
  497.         mdelay(1);
  498.         if (!r) r = pf_completion(unit,buf,fun);
  499.         if (r) pf_req_sense(unit,!fun);
  500.         
  501.         return r;
  502. }
  503. #define DBMSG(msg)      ((verbose>1)?(msg):NULL)
  504. static void pf_lock(int unit, int func)
  505. { char lo_cmd[12] = { ATAPI_LOCK,LUN,0,0,func,0,0,0,0,0,0,0 };
  506.         pf_atapi(unit,lo_cmd,0,pf_scratch,func?"unlock":"lock");
  507. }
  508. static void pf_eject( int unit )
  509. { char ej_cmd[12] = { ATAPI_DOOR,LUN,0,0,2,0,0,0,0,0,0,0 };
  510. pf_lock(unit,0);
  511. pf_atapi(unit,ej_cmd,0,pf_scratch,"eject");
  512. }
  513. #define PF_RESET_TMO   30              /* in tenths of a second */
  514. static void pf_sleep( int cs )
  515. {       current->state = TASK_INTERRUPTIBLE;
  516.         schedule_timeout(cs);
  517. }
  518. static int pf_reset( int unit )
  519. /* the ATAPI standard actually specifies the contents of all 7 registers
  520.    after a reset, but the specification is ambiguous concerning the last
  521.    two bytes, and different drives interpret the standard differently.
  522. */
  523. { int i, k, flg;
  524. int expect[5] = {1,1,1,0x14,0xeb};
  525. pi_connect(PI);
  526. WR(0,6,DRIVE);
  527. WR(0,7,8);
  528. pf_sleep(20*HZ/1000);
  529.         k = 0;
  530.         while ((k++ < PF_RESET_TMO) && (RR(1,6)&STAT_BUSY))
  531.                 pf_sleep(HZ/10);
  532. flg = 1;
  533. for(i=0;i<5;i++) flg &= (RR(0,i+1) == expect[i]);
  534. if (verbose) {
  535. printk("%s: Reset (%d) signature = ",PF.name,k);
  536. for (i=0;i<5;i++) printk("%3x",RR(0,i+1));
  537. if (!flg) printk(" (incorrect)");
  538. printk("n");
  539. }
  540. pi_disconnect(PI);
  541. return flg-1;
  542. }
  543. static void pf_mode_sense( int unit )
  544. {       char    ms_cmd[12] = { ATAPI_MODE_SENSE,LUN,0,0,0,0,0,0,8,0,0,0};
  545. char buf[8];
  546.         pf_atapi(unit,ms_cmd,8,buf,DBMSG("mode sense"));
  547. PF.media_status = PF_RW;
  548. if (buf[3] & 0x80) PF.media_status = PF_RO;
  549. }
  550. static void xs( char *buf, char *targ, int offs, int len )
  551. { int j,k,l;
  552. j=0; l=0;
  553. for (k=0;k<len;k++) 
  554.    if((buf[k+offs]!=0x20)||(buf[k+offs]!=l))
  555. l=targ[j++]=buf[k+offs];
  556. if (l==0x20) j--;
  557. targ[j]=0;
  558. }
  559. static int xl( char *buf, int offs )
  560. { int v,k;
  561. v=0; 
  562. for(k=0;k<4;k++) v=v*256+(buf[k+offs]&0xff);
  563. return v;
  564. }
  565. static void pf_get_capacity( int unit )
  566. { char    rc_cmd[12] = { ATAPI_CAPACITY,LUN,0,0,0,0,0,0,0,0,0,0};
  567. char buf[8];
  568.         int  bs;
  569. if (pf_atapi(unit,rc_cmd,8,buf,DBMSG("get capacity"))) {
  570. PF.media_status = PF_NM;
  571. return;
  572. }
  573. PF.capacity = xl(buf,0) + 1;  
  574. bs = xl(buf,4);
  575. if (bs != 512) {
  576. PF.capacity = 0;
  577. if (verbose) printk("%s: Drive %d, LUN %d,"
  578.             " unsupported block size %dn",
  579.             PF.name,PF.drive,PF.lun,bs);
  580. }
  581. }
  582. static int pf_identify( int unit )
  583. { int  dt, s;
  584. char *ms[2] = {"master","slave"};
  585. char mf[10], id[18];
  586. char    id_cmd[12] = { ATAPI_IDENTIFY,LUN,0,0,36,0,0,0,0,0,0,0};
  587. char buf[36];
  588.         s = pf_atapi(unit,id_cmd,36,buf,"identify");
  589. if (s) return -1;
  590. dt = buf[0] & 0x1f;
  591. if ((dt != 0) && (dt != 7)) {
  592.    if (verbose) 
  593.    printk("%s: Drive %d, LUN %d, unsupported type %dn",
  594. PF.name,PF.drive,PF.lun,dt);
  595.    return -1;
  596.         }
  597. xs(buf,mf,8,8);
  598. xs(buf,id,16,16);
  599. PF.removable = (buf[1] & 0x80);
  600. pf_mode_sense(unit);
  601. pf_mode_sense(unit);
  602. pf_mode_sense(unit);
  603. pf_get_capacity(unit);
  604.         printk("%s: %s %s, %s LUN %d, type %d",
  605. PF.name,mf,id,ms[PF.drive],PF.lun,dt);
  606.         if (PF.removable) printk(", removable");
  607.         if (PF.media_status == PF_NM) 
  608.                 printk(", no median");
  609.         else {  if (PF.media_status == PF_RO) printk(", RO");
  610.                 printk(", %d blocksn",PF.capacity);
  611.         }
  612. return 0;
  613. }
  614. static int pf_probe( int unit )
  615. /* returns  0, with id set if drive is detected
  616.         -1, if drive detection failed
  617. */
  618. { if (PF.drive == -1) {
  619.    for (PF.drive=0;PF.drive<=1;PF.drive++)
  620. if (!pf_reset(unit)) {
  621.    if (PF.lun != -1) return pf_identify(unit);
  622.    else for (PF.lun=0;PF.lun<8;PF.lun++) 
  623.                            if (!pf_identify(unit)) return 0;
  624. }
  625. } else {
  626.    if (pf_reset(unit)) return -1;
  627.    if (PF.lun != -1) return pf_identify(unit);
  628.    for (PF.lun=0;PF.lun<8;PF.lun++) 
  629.       if (!pf_identify(unit)) return 0;
  630. }
  631.         return -1; 
  632. }
  633. static int pf_detect( void )
  634. { int k, unit;
  635. printk("%s: %s version %s, major %d, cluster %d, nice %dn",
  636. name,name,PF_VERSION,major,cluster,nice);
  637. k = 0;
  638. if (pf_drive_count == 0) {
  639.     unit = 0;
  640.     if (pi_init(PI,1,-1,-1,-1,-1,-1,pf_scratch,
  641.                         PI_PF,verbose,PF.name)) {
  642.         if (!pf_probe(unit)) {
  643. PF.present = 1;
  644. k++;
  645.         } else pi_release(PI);
  646.     }
  647. } else for (unit=0;unit<PF_UNITS;unit++) if (DU[D_PRT])
  648.     if (pi_init(PI,0,DU[D_PRT],DU[D_MOD],DU[D_UNI],
  649. DU[D_PRO],DU[D_DLY],pf_scratch,PI_PF,verbose,
  650. PF.name)) { 
  651.                 if (!pf_probe(unit)) {
  652.                         PF.present = 1;
  653.                         k++;
  654.                 } else pi_release(PI);
  655.             }
  656. if (k) return 0;
  657. printk("%s: No ATAPI disk detectedn",name);
  658. return -1;
  659. }
  660. /* The i/o request engine */
  661. static int pf_start( int unit, int cmd, int b, int c )
  662. { int i;
  663. char io_cmd[12] = {cmd,LUN,0,0,0,0,0,0,0,0,0,0};
  664. for(i=0;i<4;i++) { 
  665.    io_cmd[5-i] = b & 0xff;
  666.    b = b >> 8;
  667. }
  668. io_cmd[8] = c & 0xff;
  669. io_cmd[7] = (c >> 8) & 0xff;
  670. i = pf_command(unit,io_cmd,c*512,"start i/o");
  671.         mdelay(1);
  672. return i;
  673. }
  674. static int pf_ready( void )
  675. { int unit = pf_unit;
  676. return (((RR(1,6)&(STAT_BUSY|pf_mask)) == pf_mask));
  677. }
  678. static void do_pf_request (request_queue_t * q)
  679. {       struct buffer_head * bh;
  680. int unit;
  681.         if (pf_busy) return;
  682. repeat:
  683.         if (QUEUE_EMPTY || (CURRENT->rq_status == RQ_INACTIVE)) return;
  684.         INIT_REQUEST;
  685.         pf_unit = unit = DEVICE_NR(CURRENT->rq_dev);
  686.         pf_block = CURRENT->sector;
  687.         pf_run = CURRENT->nr_sectors;
  688.         pf_count = CURRENT->current_nr_sectors;
  689. bh = CURRENT->bh;
  690.         if ((pf_unit >= PF_UNITS) || (pf_block+pf_count > PF.capacity)) {
  691.                 end_request(0);
  692.                 goto repeat;
  693.         }
  694. pf_cmd = CURRENT->cmd;
  695.         pf_buf = CURRENT->buffer;
  696.         pf_retries = 0;
  697. pf_busy = 1;
  698.         if (pf_cmd == READ) pi_do_claimed(PI,do_pf_read);
  699.         else if (pf_cmd == WRITE) pi_do_claimed(PI,do_pf_write);
  700.         else {  pf_busy = 0;
  701. end_request(0);
  702.                 goto repeat;
  703.         }
  704. }
  705. static void pf_next_buf( int unit )
  706. { long saved_flags;
  707. spin_lock_irqsave(&io_request_lock,saved_flags);
  708. end_request(1);
  709. if (!pf_run) { spin_unlock_irqrestore(&io_request_lock,saved_flags);
  710.        return; 
  711. }
  712. /* paranoia */
  713. if (QUEUE_EMPTY ||
  714.     (CURRENT->cmd != pf_cmd) ||
  715.     (DEVICE_NR(CURRENT->rq_dev) != pf_unit) ||
  716.     (CURRENT->rq_status == RQ_INACTIVE) ||
  717.     (CURRENT->sector != pf_block)) 
  718. printk("%s: OUCH: request list changed unexpectedlyn",
  719. PF.name);
  720. pf_count = CURRENT->current_nr_sectors;
  721. pf_buf = CURRENT->buffer;
  722. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  723. }
  724. static void do_pf_read( void )
  725. /* detach from the calling context - in case the spinlock is held */
  726. { ps_set_intr(do_pf_read_start,0,0,nice);
  727. }
  728. static void do_pf_read_start( void )
  729. {       int unit = pf_unit;
  730. long saved_flags;
  731. pf_busy = 1;
  732. if (pf_start(unit,ATAPI_READ_10,pf_block,pf_run)) {
  733.                 pi_disconnect(PI);
  734.                 if (pf_retries < PF_MAX_RETRIES) {
  735.                         pf_retries++;
  736.                         pi_do_claimed(PI,do_pf_read_start);
  737. return;
  738.                 }
  739. spin_lock_irqsave(&io_request_lock,saved_flags);
  740.                 end_request(0);
  741.                 pf_busy = 0;
  742. do_pf_request(NULL);
  743. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  744.                 return;
  745.         }
  746. pf_mask = STAT_DRQ;
  747.         ps_set_intr(do_pf_read_drq,pf_ready,PF_TMO,nice);
  748. }
  749. static void do_pf_read_drq( void )
  750. {       int unit = pf_unit;
  751. long saved_flags;
  752. while (1) {
  753.             if (pf_wait(unit,STAT_BUSY,STAT_DRQ|STAT_ERR,
  754. "read block","completion") & STAT_ERR) {
  755.                 pi_disconnect(PI);
  756.                 if (pf_retries < PF_MAX_RETRIES) {
  757. pf_req_sense(unit,0);
  758.                         pf_retries++;
  759.                         pi_do_claimed(PI,do_pf_read_start);
  760.                         return;
  761.                 }
  762. spin_lock_irqsave(&io_request_lock,saved_flags);
  763.                 end_request(0);
  764.                 pf_busy = 0;
  765. do_pf_request(NULL);
  766. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  767.                 return;
  768.             }
  769.             pi_read_block(PI,pf_buf,512);
  770.             pf_count--; pf_run--;
  771.             pf_buf += 512;
  772.     pf_block++;
  773.     if (!pf_run) break;
  774.     if (!pf_count) pf_next_buf(unit);
  775.         }
  776.         pi_disconnect(PI);
  777. spin_lock_irqsave(&io_request_lock,saved_flags); 
  778.         end_request(1);
  779.         pf_busy = 0;
  780. do_pf_request(NULL);
  781. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  782. }
  783. static void do_pf_write( void )
  784. { ps_set_intr(do_pf_write_start,0,0,nice);
  785. }
  786. static void do_pf_write_start( void )
  787. {       int unit = pf_unit;
  788. long saved_flags;
  789. pf_busy = 1;
  790. if (pf_start(unit,ATAPI_WRITE_10,pf_block,pf_run)) {
  791.                 pi_disconnect(PI);
  792.                 if (pf_retries < PF_MAX_RETRIES) {
  793.                         pf_retries++;
  794.                         pi_do_claimed(PI,do_pf_write_start);
  795. return;
  796.                 }
  797. spin_lock_irqsave(&io_request_lock,saved_flags);
  798.                 end_request(0);
  799.                 pf_busy = 0;
  800. do_pf_request(NULL);
  801. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  802.                 return;
  803.         }
  804. while (1) {
  805.             if (pf_wait(unit,STAT_BUSY,STAT_DRQ|STAT_ERR,
  806. "write block","data wait") & STAT_ERR) {
  807.                 pi_disconnect(PI);
  808.                 if (pf_retries < PF_MAX_RETRIES) {
  809.                         pf_retries++;
  810.                         pi_do_claimed(PI,do_pf_write_start);
  811.                         return;
  812.                 }
  813. spin_lock_irqsave(&io_request_lock,saved_flags);
  814.                 end_request(0);
  815.                 pf_busy = 0;
  816. do_pf_request(NULL);
  817. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  818.                 return;
  819.             }
  820.             pi_write_block(PI,pf_buf,512);
  821.     pf_count--; pf_run--;
  822.     pf_buf += 512;
  823.     pf_block++;
  824.     if (!pf_run) break;
  825.     if (!pf_count) pf_next_buf(unit);
  826. }
  827. pf_mask = 0;
  828.         ps_set_intr(do_pf_write_done,pf_ready,PF_TMO,nice);
  829. }
  830. static void do_pf_write_done( void )
  831. {       int unit = pf_unit;
  832. long saved_flags;
  833.         if (pf_wait(unit,STAT_BUSY,0,"write block","done") & STAT_ERR) {
  834.                 pi_disconnect(PI);
  835.                 if (pf_retries < PF_MAX_RETRIES) {
  836.                         pf_retries++;
  837. pi_do_claimed(PI,do_pf_write_start);
  838.                         return;
  839.                 }
  840. spin_lock_irqsave(&io_request_lock,saved_flags);
  841.                 end_request(0);
  842.                 pf_busy = 0;
  843. do_pf_request(NULL);
  844. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  845.                 return;
  846.         }
  847.         pi_disconnect(PI);
  848. spin_lock_irqsave(&io_request_lock,saved_flags);
  849.         end_request(1);
  850.         pf_busy = 0;
  851. do_pf_request(NULL);
  852. spin_unlock_irqrestore(&io_request_lock,saved_flags);
  853. }
  854. /* end of pf.c */
  855. MODULE_LICENSE("GPL");